diff --git a/content/tracks/algorithms-101/leetcode/easy/141.en.md b/content/tracks/algorithms-101/leetcode/easy/141.en.md index 8ece944187..45e57680b0 100644 --- a/content/tracks/algorithms-101/leetcode/easy/141.en.md +++ b/content/tracks/algorithms-101/leetcode/easy/141.en.md @@ -13,13 +13,10 @@ weight: 141 [LeetCode problem 141](https://leetcode.com/problems/linked-list-cycle/) - - ## Problem Statement The problem asks us to determine if a given linked list contains a cycle. A cycle in a linked list occurs when a node's `next` pointer points back to a previous node in the list, causing an infinite loop. - ## Hints & Tips In this problem, you can take advantage of the Floyd's "Tortoise and Hare" cycle detection algorithm. This algorithm allows you to detect a cycle in O(1) space and O(n) time complexity, where n is the number of nodes. @@ -34,8 +31,6 @@ In this problem, you can take advantage of the Floyd's "Tortoise and Hare" cycle - **Step 2:** Move `slow` one step and `fast` two steps in a loop. - **Step 3:** If `fast` and `slow` meet at any point, return `True`. If `fast` reaches the end, return `False`. - - ## Solution | Pointers Here's the Python code for this algorithm, commented for clarity: @@ -75,4 +70,3 @@ class Solution: visited.add(cur) return False ``` - diff --git a/content/tracks/algorithms-101/leetcode/easy/206/index.en.md b/content/tracks/algorithms-101/leetcode/easy/206/index.en.md index 1e51b21e0a..bcccaf2798 100644 --- a/content/tracks/algorithms-101/leetcode/easy/206/index.en.md +++ b/content/tracks/algorithms-101/leetcode/easy/206/index.en.md @@ -13,7 +13,6 @@ weight: 206 [LeetCode problem 206](https://leetcode.com/problems/reverse-linked-list/description/) - ## Problem Statement Reverse a given singly linked list and return its head. A singly linked list is a data structure consisting of nodes, where each node has a value and a reference to the next node in the sequence. @@ -23,17 +22,17 @@ Reverse a given singly linked list and return its head. A singly linked list is A naive approach could be to traverse the entire linked list once to read all its elements into an array. Then, we could reverse the array and construct a new linked list from it. This would work, but it takes up additional space for the array. ![LeetCode 206. Reverse Linked List | Python solution](https://assets.leetcode.com/uploads/2021/02/19/rev1ex1.jpg) + ## Hints & Tips An efficient way to approach this problem is by using pointers to reverse the links between the nodes directly within the linked list, without using additional space. - We will discuss two approaches to solve this problem: Iterative and Recursive. - ## Iterative ### Approach + 1. Initialize three pointers: `prev` as `None`, `current` as the head of the linked list, and `next` as `None`. 2. Traverse the linked list, reversing the `next` pointers of each node to point to its previous node. @@ -62,15 +61,15 @@ class Solution: return prev ``` - ## Recursive -### Approach + +### Approach + 1. Traverse to the end of the list. 2. As the recursion stack unwinds, change the `next` pointers to create the reversed list. +### Steps - -### Steps 1. Base case: If the `head` or `head.next` is `None`, return `head`. 2. Recursively reverse the rest of the list. 3. Change the next-next pointer to reverse the list. diff --git a/content/tracks/algorithms-101/leetcode/easy/206/index.ru.md b/content/tracks/algorithms-101/leetcode/easy/206/index.ru.md index 22c43020e9..a2e44199bb 100644 --- a/content/tracks/algorithms-101/leetcode/easy/206/index.ru.md +++ b/content/tracks/algorithms-101/leetcode/easy/206/index.ru.md @@ -44,8 +44,6 @@ weight: 206 4. current = next (2) 5. После данных перестановок текущий указатель смотрит на 2, следующий по счету узел. - - ## Алгоритм 1. **Инициализация**: Инициализируем два указателя — один (`curr`) для текущего элемента и другой (`prev`) для предыдущего. Изначально `prev` будет `None`. @@ -57,7 +55,6 @@ weight: 206 3. **Возврат результата**: В конце `prev` будет указывать на новую голову списка. - ## Решение ```python diff --git a/content/tracks/algorithms-101/leetcode/medium/-01 copy 3/index.ru.md b/content/tracks/algorithms-101/leetcode/medium/-01 copy 3/index.ru.md deleted file mode 100644 index 4c2ea86195..0000000000 --- a/content/tracks/algorithms-101/leetcode/medium/-01 copy 3/index.ru.md +++ /dev/null @@ -1,8 +0,0 @@ ---- - -featuredImage: https://picsum.photos/700/241?grayscale -weight: 210 ---- - - -``` diff --git a/content/tracks/algorithms-101/leetcode/medium/-01 copy 4/index.ru.md b/content/tracks/algorithms-101/leetcode/medium/-01 copy 4/index.ru.md deleted file mode 100644 index 4c2ea86195..0000000000 --- a/content/tracks/algorithms-101/leetcode/medium/-01 copy 4/index.ru.md +++ /dev/null @@ -1,8 +0,0 @@ ---- - -featuredImage: https://picsum.photos/700/241?grayscale -weight: 210 ---- - - -``` diff --git a/content/tracks/algorithms-101/leetcode/medium/138.en.md b/content/tracks/algorithms-101/leetcode/medium/138.en.md deleted file mode 100644 index 3c9bfd5352..0000000000 --- a/content/tracks/algorithms-101/leetcode/medium/138.en.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: 138. Copy List with Random Pointer -seoTitle: Leetcode 138. Copy List with Random Pointer | Python soulution and explanation -description: Leetcode 138. Copy List with Random Pointer | Python soulution and explanation -toc: false -authors: -tags: ["LeetCode Top Interview", greedy] -categories: [Algorithms, Medium] -series: -date: 2023-05-04 -lastmod: 2023-05-04 -featuredImage: -weight: 138 ---- - -[LeetCode problem](https://leetcode.com/problems/copy-list-with-random-pointer/) - -The problem asks to create a deep copy of a given linked list with a random pointer in each node. A deep copy means that the new linked list will have completely new nodes, and none of its pointers should point to the nodes in the original list. Both the next and random pointers of the new nodes should point to the new nodes in the copied list in the same order as the original list. - -**Naive Solution:** - -A naive solution would be to first create a copy of the original linked list without the random pointers. - -Then, for each node in the copied list, search for the node in the original list that its random pointer is pointing to, and update the random pointer in the copied list accordingly. - -This solution would take `O(n^2)` time complexity, as we need to search for the random node for each node in the copied list. - -**Logic:** - -1. Initialize a hashmap to store the mapping of original nodes to new nodes -1. Iterate through the original list to create new nodes and add their mappings to the hashmap -1. Iterate through the original list again to update the next and random pointers of the new nodes using the hashmap -1. Return the head of the copied linked list - -**Solution:** - -```python -class Solution: - def copyRandomList(self, head: 'Optional[Node]') -> 'Optional[Node]': - if not head: - return None - - nodes = {} - cur = head - - new_head = Node(cur.val) - new_cur = new_head - - nodes[cur] = new_cur - - while cur: # create mapping old-new linked nodes - node = Node(cur.val) - nodes[cur] = node - cur = cur.next - - cur = head - while cur: - if cur.next: - nodes[cur].next = nodes[cur.next] - if cur.random: - nodes[cur].random = nodes[cur.random] - - cur = cur.next - - return nodes[head] -``` - -{{< video src="../../assets/138.mp4" title="Leetcode Problem 138 Video Solution" >}} diff --git a/content/tracks/algorithms-101/leetcode/medium/1448/index.ru.md b/content/tracks/algorithms-101/leetcode/medium/1448/index.ru.md index edcc37bd8e..0efef1e8de 100644 --- a/content/tracks/algorithms-101/leetcode/medium/1448/index.ru.md +++ b/content/tracks/algorithms-101/leetcode/medium/1448/index.ru.md @@ -6,7 +6,7 @@ toc: true tags: [Binary Tree, DFS, Medium] categories: [Algorithms, Medium, LeetCode] date: 2023-08-28 -lastmod: 2023-08-28 +lastMod: 2023-09-05 weight: 1448 --- @@ -18,16 +18,25 @@ weight: 1448 ## Подсказки -Используйте метод обхода в глубину (DFS) для решения этой задачи. +"Хороший" узел в дереве — это узел, для которого все узлы на пути от корня до этого узла имеют значение не больше, чем значение этого узла. + +Использовать метод обхода в глубину (DFS) для решения этой задачи. ## Подход +Идея решения задачи заключается в рекурсивном обходе дерева с сохранением максимального значения на пути от корня к текущему узлу. На каждом этапе, когда мы доходим до нового узла, мы сравниваем его значение с максимальным значением на пути. Если значение узла не меньше максимального, значит, это "хороший" узел. + +Этот метод обеспечивает простой и понятный способ решения задачи, хотя и может быть не самым оптимальным по времени и памяти. + 1. **Обход в глубину (DFS)**: Используйте рекурсивный метод для обхода дерева. 2. **Текущий максимум**: На каждом шаге рекурсии передавайте текущее максимальное значение на пути от корня. 3. **Сравнение узлов**: Сравните значение текущего узла с текущим максимумом. Если значение узла больше или равно, увеличьте счетчик "хороших" узлов. ## Алгоритм +1. Рекурсивно обходить дерево, начиная с корня. +2. В процессе обхода обновлять максимальное значение на пути и считать "хорошие" узлы. + 1. Инициализируйте счетчик "хороших" узлов как 0. 2. Запустите рекурсивный DFS, начиная с корня дерева и передавая значение корня как текущий максимум. 3. В рекурсивной функции сравните значение текущего узла с переданным максимумом. diff --git a/content/tracks/algorithms-101/leetcode/medium/437/index.ru.md b/content/tracks/algorithms-101/leetcode/medium/437/index.ru.md index 488f28b26d..4f4f713bf0 100644 --- a/content/tracks/algorithms-101/leetcode/medium/437/index.ru.md +++ b/content/tracks/algorithms-101/leetcode/medium/437/index.ru.md @@ -4,31 +4,41 @@ seoTitle: LeetCode 437. Path Sum III | Решение на Python. description: LeetCode 437. Найти количество всех путей в бинарном дереве, которые суммируются в определенное число. Разбор задачи. toc: true tags: [Binary Tree, DFS, Easy] -categories: [Algorithms, Easy, LeetCode] +categories: [Algorithms, Easy, LeetCodeTop75] date: 2023-08-28 -lastmod: 2023-08-28 +lastmod: 2023-09-05 featuredImage: https://picsum.photos/700/241?grayscale -weight: 210 +weight: 437 --- [LeetCode задача 437]() ## Задача -Вы должны вернуть количество путей в данном бинарном дереве, которые суммируются в определенное число. Путь не обязан начинаться или заканчиваться на корне или листьях, но он должен двигаться вниз (с родителя на потомка). +Дан корень бинарного дерева, в котором каждый узел содержит целочисленное значение. Найти количество путей в этом дереве, в которых сумма значений узлов равна заданному числу `sum`. + +Путь может начинаться и заканчиваться на любом узле, но он должен идти вниз (с родителя к потомку). ## Подсказки -Используйте Depth-First Search (DFS) для решения задачи. +Задачу можно решить, используя рекурсивный обход дерева. (Depth-First Search (DFS)). ## Подход +Идея заключается в рекурсивном обходе каждого узла и подсчете всех возможных путей с заданной суммой, начиная с этого узла. После этого нужно агрегировать эти значения для всех узлов. + +Одним из наиболее простых способов решения является рекурсивный обход дерева и проверка каждого возможного пути. Это можно сделать, запустив рекурсию для каждого узла в дереве, начиная с корня, и для каждого из них рекурсивно проверять все возможные пути вниз по дереву. + +## Алгоритм + 1. **DFS с "памятью"**: Мы можем использовать DFS, чтобы пройти по всем путям в дереве, и на каждом этапе проверить, сколько путей можно завершить в этом узле с нужной суммой. 2. **Хранение промежуточных сумм**: По мере движения вниз по дереву, мы можем хранить сумму всех узлов в текущем пути. Это позволит нам быстро проверить, можно ли создать подпуть с нужной суммой. 3. **Обновление ответа**: Когда мы достигаем листа, мы можем проверить, создает ли текущий путь нужную сумму. Если да, увеличьте счетчик. 4. **Возврат результата**: В конечном итоге верните количество всех подходящих путей. -## Алгоритм +1. Начните с корня дерева и рекурсивно обходите все узлы. +2. Для каждого узла запустите еще одну рекурсию, чтобы проверить все пути, начинающиеся с этого узла. +3. Подсчитайте количество путей, которые дают заданную сумму. 1. Инициализируйте переменную для подсчета количества путей. 2. Запустите DFS с корня дерева. diff --git a/content/tracks/algorithms-101/leetcode75.en.md b/content/tracks/algorithms-101/leetcode75.en.md index 6981657f0a..cd6c611858 100644 --- a/content/tracks/algorithms-101/leetcode75.en.md +++ b/content/tracks/algorithms-101/leetcode75.en.md @@ -95,8 +95,8 @@ weight: 16 | :---: | ---------------------------------------------------------------------- | ---------- | | 33 | [104. Maximum Depth of Binary Tree](../leetcode/easy/104) | Easy | | 34 | [872. Leaf-Similar Trees](../leetcode/easy/872) | Easy | -| 35 | [1448.Count Good Nodes in Binary Tree](../leetcode/medium/1448) | Medium | -| 36 | [437.Path Sum III](../leetcode/medium/437) | Medium | +| 35 | [1448. Count Good Nodes in Binary Tree](../leetcode/medium/1448) | Medium | +| 36 | [437. Path Sum III](../leetcode/medium/437) | Medium | | 37 | [1372. Longest ZigZag Path in a Binary Tree](../leetcode/medium/1372) | Medium | | 38 | [236. Lowest Common Ancestor of a Binary Tree](../leetcode/medium/236) | Medium | diff --git a/static/search/index.json b/static/search/index.json index 5e548d231f..d811b2df65 100644 --- a/static/search/index.json +++ b/static/search/index.json @@ -782,7 +782,7 @@ "uri": "/tracks/algorithms-101/leetcode/medium/437/", "title": "437. Path Sum III", "description": "LeetCode 437. Найти количество всех путей в бинарном дереве, которые суммируются в определенное число. Разбор задачи.", - "content": "\nLeetCode задача 437\n\nЗадача\n\nВы должны вернуть количество путей в данном бинарном дереве, которые суммируются в определенное число. Путь не обязан начинаться или заканчиваться на корне или листьях, но он должен двигаться вниз (с родителя на потомка).\n\nПодсказки\n\nИспользуйте Depth-First Search (DFS) для решения задачи.\n\nПодход\n\nDFS с \"памятью\": Мы можем использовать DFS, чтобы пройти по всем путям в дереве, и на каждом этапе проверить, сколько путей можно завершить в этом узле с нужной суммой.\nХранение промежуточных сумм: По мере движения вниз по дереву, мы можем хранить сумму всех узлов в текущем пути. Это позволит нам быстро проверить, можно ли создать подпуть с нужной суммой.\nОбновление ответа: Когда мы достигаем листа, мы можем проверить, создает ли текущий путь нужную сумму. Если да, увеличьте счетчик.\nВозврат результата: В конечном итоге верните количество всех подходящих путей.\n\nАлгоритм\n\nИнициализируйте переменную для подсчета количества путей.\nЗапустите DFS с корня дерева.\n\nРешение\n\nclass TreeNode:\n def init(self, val=0, left=None, right=None):\n self.val = val\n self.left = left\n self.right = right\n\ndef dfs(node, target, current_sum, prefix_sums):\n if not node:\n return 0\n\n count = 0\n current_sum += node.val\n\nНайти нужное количество путей, которые заканчиваются на текущем узле\n count += prefix_sums.get(current_sum - target, 0)\n\nОбновление префиксных сумм\n prefix_sums[current_sum] = prefix_sums.get(current_sum, 0) + 1\n\nРекурсивно проверить оба поддерева\n count += dfs(node.left, target, current_sum, prefix_sums)\n count += dfs(node.right, target, current_sum, prefix_sums)\n\nОткат изменений\n prefix_sums[current_sum] -= 1\n\n return count\n\ndef pathSum(root: TreeNode, target: int) -> int:\n return dfs(root, target, 0, {0: 1})\n", + "content": "\nLeetCode задача 437\n\nЗадача\n\n\n\nДан корень бинарного дерева, в котором каждый узел содержит целочисленное значение. Найти количество путей в этом дереве, в которых сумма значений узлов равна заданному числу sum.\n\nПуть может начинаться и заканчиваться на любом узле, но он должен идти вниз (с родителя к потомку).\n\nПодсказки\n\nЗадачу можно решить, используя рекурсивный обход дерева. (Depth-First Search (DFS)).\n\nПодход\n\nИдея заключается в рекурсивном обходе каждого узла и подсчете всех возможных путей с заданной суммой, начиная с этого узла. После этого нужно агрегировать эти значения для всех узлов.\n\nОдним из наиболее простых способов решения является рекурсивный обход дерева и проверка каждого возможного пути. Это можно сделать, запустив рекурсию для каждого узла в дереве, начиная с корня, и для каждого из них рекурсивно проверять все возможные пути вниз по дереву.\n\nАлгоритм\n\nDFS с \"памятью\": Мы можем использовать DFS, чтобы пройти по всем путям в дереве, и на каждом этапе проверить, сколько путей можно завершить в этом узле с нужной суммой.\nХранение промежуточных сумм: По мере движения вниз по дереву, мы можем хранить сумму всех узлов в текущем пути. Это позволит нам быстро проверить, можно ли создать подпуть с нужной суммой.\nОбновление ответа: Когда мы достигаем листа, мы можем проверить, создает ли текущий путь нужную сумму. Если да, увеличьте счетчик.\nВозврат результата: В конечном итоге верните количество всех подходящих путей.\n\nНачните с корня дерева и рекурсивно обходите все узлы.\nДля каждого узла запустите еще одну рекурсию, чтобы проверить все пути, начинающиеся с этого узла.\nПодсчитайте количество путей, которые дают заданную сумму.\n\n\nИнициализируйте переменную для подсчета количества путей.\nЗапустите DFS с корня дерева.\n\nРешение\n\nclass TreeNode:\n def init(self, val=0, left=None, right=None):\n self.val = val\n self.left = left\n self.right = right\n\ndef dfs(node, target, current_sum, prefix_sums):\n if not node:\n return 0\n\n count = 0\n current_sum += node.val\n\nНайти нужное количество путей, которые заканчиваются на текущем узле\n count += prefix_sums.get(current_sum - target, 0)\n\nОбновление префиксных сумм\n prefix_sums[current_sum] = prefix_sums.get(current_sum, 0) + 1\n\nРекурсивно проверить оба поддерева\n count += dfs(node.left, target, current_sum, prefix_sums)\n count += dfs(node.right, target, current_sum, prefix_sums)\n\nОткат изменений\n prefix_sums[current_sum] -= 1\n\n return count\n\ndef pathSum(root: TreeNode, target: int) -> int:\n return dfs(root, target, 0, {0: 1})\n", "tags": [ "Binary Tree", "DFS", @@ -983,7 +983,7 @@ "uri": "/tracks/algorithms-101/leetcode/medium/2130/", "title": "2130. Maximum Twin Sum of a Linked List", "description": "LeetCode 2130. Maximum Twin Sum of a Linked List. Разбор задачи.", - "content": "\nLeetCode задача 2130\n\nЗадача\n\nВам дан односвязный список четной длины. Узлы в этом списке имеют \"близнецов\" по определенным правилам. Ваша задача — найти максимальную сумму \"близнецов\".\n\nПодсказки\n\nКаждый узел i-й в списке имеет \"близнеца\", который является (n-1-i)-м узлом в списке, где n - общее число узлов в списке. \"Близнецы\" могут быть определены только для узлов, для которых 0 int:\nПройдемся по списку, сохраняя все значения в массив.\n vals = []\n curr = head\n while curr:\n vals.append(curr.val)\n curr = curr.next\n\nИнициализация максимальной суммы \"близнецов\".\n max_twin_sum = 0\n\nСнова пройдемся по списку, вычисляя сумму \"близнецов\".\n curr = head\n index = 0\n while curr:\n twin_sum = curr.val + vals[-(index + 1)]\n max_twin_sum = max(max_twin_sum, twin_sum)\n curr = curr.next\n index += 1\n\n return max_twin_sum\n", + "content": "\nLeetCode задача 2130\n\nЗадача\n\nДан односвязный список четной длины. Узлы в этом списке имеют \"близнецов\" по определенным правилам. Задача — найти максимальную сумму \"близнецов\".\n\nТ.е. у первой половины узлов списка есть свой близнец из второй половины.\n\nПример:\n для списка длиной n = 8\n i = 0, twin = n-1-i = 8-1-0 = 7\n i = 1, twin = n-1-1 = 6\n i = 2, twin = n-1-2 = 5\n ...\n\nПодсказки\n\nУ первой половины узлов списка есть свой близнец из второй половины, т.е. нужно получить значения узлов и сложить значения из первой половины со значением из второй.\n\nПодход\n\nМы можем решить эту задачу, проходя список дважды. В первый проход мы можем сохранить все значения узлов в массиве для удобства доступа. Во втором проходе, мы используем этот массив для вычисления суммы \"близнецов\" и отслеживания максимальной такой суммы.\n\nМассив здесь нужен для того, чтобы мы могли быстро получить доступ к \"близнецу\" каждого узла, не проходя список заново.\n\nАлгоритм\n\nПройдемся по связному списку, сохраняя значения всех узлов в массиве.\nИнициализируем переменную max_twin_sum как 0, которая будет хранить максимальную сумму \"близнецов\".\nСнова пройдемся по связному списку, вычисляя сумму \"близнецов\" для каждого узла и обновляя max_twin_sum, если текущая сумма больше максимальной.\n\nРешение\n\nОпределение односвязного списка.\nclass ListNode:\n def init(self, val=0, next=None):\n self.val = val\n self.next = next\n\nclass Solution:\n def maxTwinSum(self, head: ListNode) -> int:\nПроходим по списку, сохраняя все значения в массив.\n vals = []\n curr = head\n while curr:\n vals.append(curr.val)\n curr = curr.next\n\nИнициализация максимальной суммы \"близнецов\".\n max_twin_sum = 0\n\n for i in range(len(vals) // 2 + 1): # проходим по первой половине\n twin_i = -i -1\n twin_sum = vals[i] + vals[twin_i]\n max_twin_sum = max(max_twin_sum, twin_sum)\n\n\n return max_twin_sum\n", "tags": [ "Linked List", "Medium" @@ -1029,7 +1029,7 @@ "uri": "/tracks/algorithms-101/leetcode/medium/1448/", "title": "1448. Count Good Nodes in Binary Tree", "description": "LeetCode 1448. Задача о подсчете \"хороших\" узлов в бинарном дереве. Разбор задачи.", - "content": "\nLeetCode задача 1448\n\nЗадача\n\nДано бинарное дерево. Задача подсчитать количество \"хороших\" узлов. Узел считается \"хорошим\", если на пути от корня дерева до этого узла (включительно) не встречается узлов с большим значением.\n\nПодсказки\n\nИспользуйте метод обхода в глубину (DFS) для решения этой задачи.\n\nПодход\n\nОбход в глубину (DFS): Используйте рекурсивный метод для обхода дерева.\nТекущий максимум: На каждом шаге рекурсии передавайте текущее максимальное значение на пути от корня.\nСравнение узлов: Сравните значение текущего узла с текущим максимумом. Если значение узла больше или равно, увеличьте счетчик \"хороших\" узлов.\n\nАлгоритм\n\nИнициализируйте счетчик \"хороших\" узлов как 0.\nЗапустите рекурсивный DFS, начиная с корня дерева и передавая значение корня как текущий максимум.\nВ рекурсивной функции сравните значение текущего узла с переданным максимумом.\nОбновите текущий максимум, если значение текущего узла больше.\nПовторите шаги 2-4 для всех дочерних узлов.\n\nРешение\n\nclass TreeNode:\n def init(self, val=0, left=None, right=None):\n self.val = val\n self.left = left\n self.right = right\n\ndef goodNodes(root: TreeNode) -> int:\n def dfs(node, cur_max):\n if not node:\n return 0\n\n count = 0\n if node.val >= cur_max:\n count += 1\n cur_max = node.val\n\n count += dfs(node.left, cur_max)\n count += dfs(node.right, cur_max)\n\n return count\n\n return dfs(root, root.val)\n", + "content": "\nLeetCode задача 1448\n\nЗадача\n\nДано бинарное дерево. Задача подсчитать количество \"хороших\" узлов. Узел считается \"хорошим\", если на пути от корня дерева до этого узла (включительно) не встречается узлов с большим значением.\n\nПодсказки\n\n\"Хороший\" узел в дереве — это узел, для которого все узлы на пути от корня до этого узла имеют значение не больше, чем значение этого узла.\n\nИспользовать метод обхода в глубину (DFS) для решения этой задачи.\n\nПодход\n\nИдея решения задачи заключается в рекурсивном обходе дерева с сохранением максимального значения на пути от корня к текущему узлу. На каждом этапе, когда мы доходим до нового узла, мы сравниваем его значение с максимальным значением на пути. Если значение узла не меньше максимального, значит, это \"хороший\" узел.\n\nЭтот метод обеспечивает простой и понятный способ решения задачи, хотя и может быть не самым оптимальным по времени и памяти.\n\nОбход в глубину (DFS): Используйте рекурсивный метод для обхода дерева.\nТекущий максимум: На каждом шаге рекурсии передавайте текущее максимальное значение на пути от корня.\nСравнение узлов: Сравните значение текущего узла с текущим максимумом. Если значение узла больше или равно, увеличьте счетчик \"хороших\" узлов.\n\nАлгоритм\n\nРекурсивно обходить дерево, начиная с корня.\nВ процессе обхода обновлять максимальное значение на пути и считать \"хорошие\" узлы.\n\nИнициализируйте счетчик \"хороших\" узлов как 0.\nЗапустите рекурсивный DFS, начиная с корня дерева и передавая значение корня как текущий максимум.\nВ рекурсивной функции сравните значение текущего узла с переданным максимумом.\nОбновите текущий максимум, если значение текущего узла больше.\nПовторите шаги 2-4 для всех дочерних узлов.\n\nРешение\n\nclass TreeNode:\n def init(self, val=0, left=None, right=None):\n self.val = val\n self.left = left\n self.right = right\n\ndef goodNodes(root: TreeNode) -> int:\n def dfs(node, cur_max):\n if not node:\n return 0\n\n count = 0\n if node.val >= cur_max:\n count += 1\n cur_max = node.val\n\n count += dfs(node.left, cur_max)\n count += dfs(node.right, cur_max)\n\n return count\n\n return dfs(root, root.val)\n", "tags": [ "Binary Tree", "DFS", @@ -1037,6 +1037,17 @@ ], "lang": "ru" }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/138/", + "title": "138. Copy List with Random Pointer", + "description": "LeetCode 138. Создание глубокой копии связанного списка с произвольными указателями. Разбор задачи.", + "content": "\nLeetCode задача 138\n\nЗадача\n\nДан односвязный список, каждый узел которого содержит дополнительный \"произвольный\" указатель, который может указывать на любой узел в списке или быть null. Задача состоит в том, чтобы создать глубокую копию этого списка.\n\nПодсказки\n\nПростое копирование значений не сработает. Нам нужно создать новые узлы и корректно установить как основные, так и \"произвольные\" указатели.\n\nПодход / Идея решения\n\nИдея решения заключается в двухпроходном методе. В первом проходе мы создаем копии всех узлов исходного списка и сохраняем их в словаре, где ключом будет оригинальный узел, а значением — его копия. Таким образом, для каждого узла у нас будет доступна его копия.\n\nВо втором проходе мы пересматриваем исходный список и используем созданный словарь для установки основных и \"произвольных\" указателей для узлов в копии списка.\n\nАлгоритм\n\nИнициализировать словарь node_map.\nПройтись по исходному списку, создать копии узлов и сохранить их в node_map.\nПройтись по исходному списку второй раз, установить основные и \"произвольные\" указатели для узлов в копии, используя node_map.\n\nРешение\n\nОпределение для узла списка.\nclass Node:\ndef init(self, x: int, next: 'Node' = None, random: 'Node' = None):\nself.val = int(x)\nself.next = next\nself.random = random\n\ndef copyRandomList(head):\n if not head:\n return None\n\n node_map = {} # Словарь для хранения отображения оригинальных узлов на их копии\n\nПервый проход: создаем копии узлов\n curr = head\n while curr:\n node_map[curr] = Node(curr.val)\n curr = curr.next\n\nВторой проход: устанавливаем основные и \"random\" указатели\n curr = head\n while curr:\n if curr.next:\n node_map[curr].next = node_map[curr.next]\n if curr.random:\n node_map[curr].random = node_map[curr.random]\n curr = curr.next\n\n return node_map[head]\n", + "tags": [ + "LinkedList", + "Medium" + ], + "lang": "ru" + }, { "uri": "/tracks/algorithms-101/leetcode/medium/1372/", "title": "1372. Longest ZigZag Path in a Binary Tree", @@ -1072,19 +1083,55 @@ "lang": "ru" }, { - "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 4/", + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 9/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 8/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 7/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 15/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 14/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 13/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 12/", "content": "\n\n", "tags": [], "lang": "ru" }, { - "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 3/", + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 11/", "content": "\n\n", "tags": [], "lang": "ru" }, { - "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy/", + "uri": "/tracks/algorithms-101/leetcode/medium/-01 copy 10/", "content": "\n\n", "tags": [], "lang": "ru" @@ -1155,6 +1202,17 @@ ], "lang": "ru" }, + { + "uri": "/tracks/algorithms-101/leetcode/easy/872/", + "title": "872. Leaf-Similar Trees", + "description": "LeetCode 872. Сравнение листовых узлов двух бинарных деревьев. Разбор задачи.", + "content": "\nLeetCode задача 872\n\nЗадача\n\nДаны два бинарных дерева с корнями root1 и root2. Проверьте, являются ли эти деревья \"листоподобными\" (leaf-similar). Деревья считаются \"листоподобными\", если последовательность листовых узлов каждого дерева одинакова.\n\nПодсказки\n\nЛистовые узлы бинарного дерева — это узлы, у которых нет потомков. Для проверки \"листоподобности\" двух деревьев нужно сравнить последовательности листовых узлов этих деревьев.\n\nПодход / Идея решения\n\nИдея решения заключается в построении списков листовых узлов для каждого дерева, а затем сравнении этих списков. Мы можем рекурсивно обойти каждое дерево, проверяя при каждом узле, является ли он листовым. Если это так, добавляем значение этого узла в соответствующий список.\n\nТакой подход обеспечивает простое и понятное решение, несмотря на то, что он может быть не самым оптимальным по времени и памяти.\n\nАлгоритм\n\nОбойти каждое дерево рекурсивно и собрать список листовых узлов.\nСравнить полученные списки.\n\nРешение\n\nОпределение для бинарного дерева.\nclass TreeNode:\ndef init(self, val=0, left=None, right=None):\nself.val = val\nself.left = left\nself.right = right\n\ndef leafSimilar(root1, root2):\n def getLeaves(root):\n if not root:\n return []\n if not root.left and not root.right:\n return [root.val]\n return getLeaves(root.left) + getLeaves(root.right)\n\n return getLeaves(root1) == getLeaves(root2)\n", + "tags": [ + "Binary Tree", + "Easy" + ], + "lang": "ru" + }, { "uri": "/tracks/algorithms-101/leetcode/easy/605/", "title": "605. Can Place Flowers", @@ -1196,6 +1254,17 @@ ], "lang": "ru" }, + { + "uri": "/tracks/algorithms-101/leetcode/easy/206/", + "title": "206. Reverse Linked List", + "description": "LeetCode 206. Разворачиваем односвязный список. Разбор задачи.", + "content": "\n\nLeetCode задача 206\n\nЗадача\n\nДана голова односвязного списка. Задача состоит в том, чтобы развернуть этот список и вернуть его развернутую версию.\n\nПодсказки\n\nВ этой задаче нам нужно просто обойти односвязный список и изменить направление его указателей.\n\nПодход\n\nЗадача заключается в изменении направления указателей односвязного списка. Она может быть решена с помощью итеративного метода, при котором мы будем двигаться по списку, сохраняя предыдущий элемент, текущий и следующий. Затем мы просто изменим направление указателя next для текущего элемента, чтобы он указывал на предыдущий элемент.\n\nЭтот процесс можно визуализировать как переворачивание стрелок между узлами списка в обратном направлении. Изначально указатели направлены от головы списка к его концу. После разворота они будут направлены от конца к голове, превращая последний элемент в новую голову списка.\n\nПример:\n\nНачальный список: [1 -> 2] должен стать [1 None (prev)\n prev = current (1)\n current = next (2)\n После данных перестановок текущий указатель смотрит на 2, следующий по счету узел.\n\nАлгоритм\n\nИнициализация: Инициализируем два указателя — один (curr) для текущего элемента и другой (prev) для предыдущего. Изначально prev будет None.\n\nОбход списка: В цикле, пока текущий элемент не станет None, делаем следующее:\n Сохраняем указатель на следующий элемент (next).\n Изменяем указатель next текущего элемента, чтобы он указывал на prev.\n Перемещаем prev и curr на одну позицию вперед.\n\nВозврат результата: В конце prev будет указывать на новую голову списка.\n\nРешение\n\nОпределение для односвязного списка.\nclass ListNode:\ndef init(self, val=0, next=None):\nself.val = val\nself.next = next\n\ndef reverseList(head):\n prev = None # Инициализируем предыдущий элемент как None\n curr = head # текущий\n\n while curr:\n next = curr.next # Сохраняем следующий элемент\n curr.next = prev # Меняем направление указателя\n prev = curr # Перемещаем предыдущий элемент вперед\n curr = next # Перемещаем текущий элемент вперед\n\n return prev\n", + "tags": [ + "LinkedList", + "Easy" + ], + "lang": "ru" + }, { "uri": "/tracks/algorithms-101/leetcode/easy/1768/", "title": "1768. Merge Strings Alternately", @@ -1226,6 +1295,29 @@ ], "lang": "ru" }, + { + "uri": "/tracks/algorithms-101/leetcode/easy/104/", + "title": "104. Maximum Depth of Binary Tree", + "description": "LeetCode 104. Нахождение максимальной глубины бинарного дерева. Разбор задачи.", + "content": "\nLeetCode задача 104\n\nЗадача\n\nДан корень бинарного дерева. Задача состоит в том, чтобы найти его максимальную глубину. Глубина бинарного дерева определяется как максимальное количество узлов на пути от корня дерева до любого листового узла, включая сам корень.\n\nПодсказки\n\nБинарное дерево представляет собой иерархическую структуру, в которой каждый узел имеет максимум двух потомков: левого и правого.\n\nПодход / Идея решения\n\nЧтобы найти максимальную глубину бинарного дерева, можно использовать рекурсивный метод. Для каждого узла дерева, максимальная глубина поддерева с этим узлом в качестве корня будет равна максимуму из глубин левого и правого поддеревьев, увеличенному на 1 (сам узел).\n\nСам алгоритм кажется интуитивно понятным, если представить дерево как иерархию: чтобы узнать, насколько \"глубоко\" уходит каждая ветвь, просто спуститесь по ней, пока не достигнете конца, затем вернитесь, собирая информацию о глубине каждого поддерева.\n\nАлгоритм\n\nЕсли узел пуст, вернуть 0 (глубина пустого дерева равна 0).\nРекурсивно найти глубину левого поддерева.\nРекурсивно найти глубину правого поддерева.\nМаксимальная глубина для текущего узла равна максимуму из глубин левого и правого поддеревьев, увеличенному на 1.\n\nРешение\n\nОпределение для бинарного дерева.\nclass TreeNode:\ndef init(self, val=0, left=None, right=None):\nself.val = val\nself.left = left\nself.right = right\n\ndef maxDepth(root):\n if not root:\n return 0\n left_depth = maxDepth(root.left)\n right_depth = maxDepth(root.right)\n return max(left_depth, right_depth) + 1\n", + "tags": [ + "Binary Tree", + "Easy" + ], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/easy/-01 copy 4/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, + { + "uri": "/tracks/algorithms-101/leetcode/easy/-01 copy 3/", + "content": "\n\n", + "tags": [], + "lang": "ru" + }, { "uri": "/tracks/algorithms-101/data-structures/segment-tree", "title": "Дерево отрезков", @@ -2315,7 +2407,7 @@ "uri": "/posts/vps-docker-subdomains-setup/project/projects/3/", "content": { "log": { - "timeTakenInMilliseconds": 1 + "timeTakenInMilliseconds": 0 }, "result": "Hello World!", "ranges": [ @@ -3393,7 +3485,7 @@ "uri": "/tracks/algorithms-101/leetcode75", "title": "LeetCode Top 75", "description": null, - "content": "\nArray / String\n\n| # | Problem | Difficulty | Slides/Video |\n| :---: | ----------------------------------------------------------------------- | ---------- | ------------ |\n| 1 | 1768. Merge Strings Alternately | Easy | ✅ ✅ |\n| 2 | 1071. Greatest Common Divisor of Strings | Easy | ✅ ✅ |\n| 3 | 1431. Kids With the Greatest Number of Candies | Easy | ✅ ✅ |\n| 4 | 605. Can Place Flowers | Easy | |\n| 5 | 345. Reverse Vowels of a String | Easy | |\n| 6 | 151. Reverse Words in a String | Medium | ✅ |\n| 7 | 238. Product of Array Except Self | Medium | |\n| 8 | 334. Increasing Triplet Subsequence | Medium | |\n| 9 | 443. String Compression | Medium | |\n\nTwo Pointers\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------- | ---------- |\n| 10 | 283. Move Zeroes | Easy |\n| 11 | 392. Is Subsequence | Easy |\n| 12 | 11. Container With Most Water | Medium |\n| 13 | 1679. Max Number of K-Sum Pairs | Medium |\n\nSliding Window\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------------------------------------- | ---------- |\n| 14 | 643. Maximum Average Subarray I | Easy |\n| 15 | 1456. Maximum Number of Vowels in a Substring of Given Length | Medium |\n| 16 | 1004. Max Consecutive Ones III | Medium |\n| 17 | 1493. Longest Subarray of 1's After Deleting One Element | Medium |\n\nPrefix Sum\n\n| # | Problem | Difficulty |\n| :---: | -------------------------------------------------------- | ---------- |\n| 18 | 1732. Find the Highest Altitude | Easy |\n| 19 | 724. Find Pivot Index | Easy |\n\nHash Map / Set\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 20 | 2215. Find the Difference of Two Arrays | Easy |\n| 21 | 1207. Unique Number of Occurrences | Easy |\n| 22 | 1657. Determine if Two Strings Are Close | Medium |\n| 23 | 2352. Equal Row and Column Pairs | Medium |\n\nStack\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------- | ---------- |\n| 24 | 2390. Removing Stars From a String | Medium |\n| 25 | 735. Asteroid Collision | Medium |\n| 26 | 394. Decode String | Medium |\n\nQueue\n\n| # | Problem | Difficulty |\n| :---: | --------------------------------------------------- | ---------- |\n| 27 | 933. Number of Recent Calls | Easy |\n| 28 | 649. Dota2 Senate | Medium |\n\nLinked List\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------------ | ---------- |\n| 29 | 2095. Delete the Middle Node of a Linked List | Medium |\n| 30 | 328. Odd Even Linked List | Medium |\n| 31 | 206. Reverse Linked List | Easy |\n| 32 | 2130. Maximum Twin Sum of a Linked List | Medium |\n\nBinary Tree - DFS\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------------------- | ---------- |\n| 33 | 104. Maximum Depth of Binary Tree | Easy |\n| 34 | 872. Leaf-Similar Trees | Easy |\n| 35 | 1448.Count Good Nodes in Binary Tree | Medium |\n| 36 | 437.Path Sum III | Medium |\n| 37 | 1372. Longest ZigZag Path in a Binary Tree | Medium |\n| 38 | 236. Lowest Common Ancestor of a Binary Tree | Medium |\n\nBinary Tree - BFS\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 39 | 199. Binary Tree Right Side View | Medium |\n| 40 | 1161. Maximum Level Sum of a Binary Tree | Medium |\n\nBinary Search Tree\n\n| # | Problem | Difficulty |\n| :---: | ----------------------------------------------------------- | ---------- |\n| 41 | 700. Search in a Binary Search Tree | Easy |\n| 42 | 450. Delete Node in a BST | Medium |\n\nGraphs - DFS\n\n| # | Problem | Difficulty |\n| :---: | --------------------------------------------------------------------------------------- | ---------- |\n| 43 | 841. Keys and Rooms | Medium |\n| 44 | 547. Number of Provinces | Medium |\n| 45 | 1466. Reorder Routes to Make All Paths Lead to the City Zero | Medium |\n| 46 | 399. Evaluate Division | Medium |\n\nGraphs - BFS\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 47 | 1926. Nearest Exit from Entrance in Maze | Medium |\n| 48 | 994. Rotting Oranges | Medium |\n\nHeap / Priority Queue\n\n| # | Problem | Difficulty |\n| :---: | -------------------------------------------------------- | ---------- |\n| 49 | Kth Largest Element in an Array | Medium |\n| 50 | Smallest Number in Infinite Set | Medium |\n| 51 | Maximum Subsequence Score | Medium |\n| 52 | Total Cost to Hire K Workers | Medium |\n\nBinary Search\n\n| # | Problem | Difficulty |\n| :---: | --------------------------------------------------------------- | ---------- |\n| 53 | Guess Number Higher or Lower | Easy |\n| 54 | Successful Pairs of Spells and Potions | Medium |\n| 55 | 162. Find Peak Element | Medium |\n| 56 | Koko Eating Bananas | Medium |\n\nBacktracking\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------ | ---------- |\n| 57 | 17. Letter Combinations of a Phone Number | Medium |\n| 58 | Combination Sum III | Medium |\n\nDP - 1D\n\n| # | Problem | Difficulty |\n| :---: | -------------------------------------------------- | ---------- |\n| 59 | N-th Tribonacci Number | Easy |\n| 60 | Min Cost Climbing Stairs | Easy |\n| 61 | House Robber | Medium |\n| 62 | Domino and Tromino Tiling | Medium |\n\nDP - Multidimensional\n\n| # | Problem | Difficulty |\n| :---: | ----------------------------------------------------------------------------- | ---------- |\n| 63 | Unique Paths | Medium |\n| 64 | Longest Common Subsequence | Medium |\n| 65 | Best Time to Buy and Sell Stock with Transaction Fee | Medium |\n| 66 | Edit Distance | Medium |\n\nBit Manipulation\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------------- | ---------- |\n| 67 | Counting Bits | Easy |\n| 68 | 136. Single Number | Easy |\n| 69 | Minimum Flips to Make a OR b Equal to c | Medium |\n\nTrie\n\n| # | Problem | Difficulty |\n| :---: | ----------------------------------------------------------- | ---------- |\n| 70 | 208. Implement Trie (Prefix Tree) | Medium |\n| 71 | Search Suggestions System | Medium |\n\nIntervals\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 72 | 435. Non-overlapping Intervals | Medium |\n| 73 | Minimum Number of Arrows to Burst Balloons | Medium |\n\nMonotonic Stack\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------- | ---------- |\n| 74 | Daily Temperatures | Medium |\n| 75 | Online Stock Span | Medium |\n\nLinks\n\nLeetCode Top 75\n", + "content": "\nArray / String\n\n| # | Problem | Difficulty | Slides/Video |\n| :---: | ----------------------------------------------------------------------- | ---------- | ------------ |\n| 1 | 1768. Merge Strings Alternately | Easy | ✅ ✅ |\n| 2 | 1071. Greatest Common Divisor of Strings | Easy | ✅ ✅ |\n| 3 | 1431. Kids With the Greatest Number of Candies | Easy | ✅ ✅ |\n| 4 | 605. Can Place Flowers | Easy | |\n| 5 | 345. Reverse Vowels of a String | Easy | |\n| 6 | 151. Reverse Words in a String | Medium | ✅ |\n| 7 | 238. Product of Array Except Self | Medium | |\n| 8 | 334. Increasing Triplet Subsequence | Medium | |\n| 9 | 443. String Compression | Medium | |\n\nTwo Pointers\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------- | ---------- |\n| 10 | 283. Move Zeroes | Easy |\n| 11 | 392. Is Subsequence | Easy |\n| 12 | 11. Container With Most Water | Medium |\n| 13 | 1679. Max Number of K-Sum Pairs | Medium |\n\nSliding Window\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------------------------------------- | ---------- |\n| 14 | 643. Maximum Average Subarray I | Easy |\n| 15 | 1456. Maximum Number of Vowels in a Substring of Given Length | Medium |\n| 16 | 1004. Max Consecutive Ones III | Medium |\n| 17 | 1493. Longest Subarray of 1's After Deleting One Element | Medium |\n\nPrefix Sum\n\n| # | Problem | Difficulty | Slides/Video |\n| :---: | -------------------------------------------------------- | ---------- | ------------ |\n| 18 | 1732. Find the Highest Altitude | Easy | ✅ |\n| 19 | 724. Find Pivot Index | Easy | |\n\nHash Map / Set\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 20 | 2215. Find the Difference of Two Arrays | Easy |\n| 21 | 1207. Unique Number of Occurrences | Easy |\n| 22 | 1657. Determine if Two Strings Are Close | Medium |\n| 23 | 2352. Equal Row and Column Pairs | Medium |\n\nStack\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------- | ---------- |\n| 24 | 2390. Removing Stars From a String | Medium |\n| 25 | 735. Asteroid Collision | Medium |\n| 26 | 394. Decode String | Medium |\n\nQueue\n\n| # | Problem | Difficulty |\n| :---: | --------------------------------------------------- | ---------- |\n| 27 | 933. Number of Recent Calls | Easy |\n| 28 | 649. Dota2 Senate | Medium |\n\nLinked List\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------------ | ---------- |\n| 31 | 141. Linked List Cycle | Easy |\n| 31 | 206. Reverse Linked List | Easy |\n| 29 | 2095. Delete the Middle Node of a Linked List | Medium |\n| 30 | 328. Odd Even Linked List | Medium |\n| 32 | 2130. Maximum Twin Sum of a Linked List | Medium |\n\nBinary Tree - DFS\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------------------- | ---------- |\n| 33 | 104. Maximum Depth of Binary Tree | Easy |\n| 34 | 872. Leaf-Similar Trees | Easy |\n| 35 | 1448. Count Good Nodes in Binary Tree | Medium |\n| 36 | 437. Path Sum III | Medium |\n| 37 | 1372. Longest ZigZag Path in a Binary Tree | Medium |\n| 38 | 236. Lowest Common Ancestor of a Binary Tree | Medium |\n\nBinary Tree - BFS\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 39 | 199. Binary Tree Right Side View | Medium |\n| 40 | 1161. Maximum Level Sum of a Binary Tree | Medium |\n\nBinary Search Tree\n\n| # | Problem | Difficulty |\n| :---: | ----------------------------------------------------------- | ---------- |\n| 41 | 700. Search in a Binary Search Tree | Easy |\n| 42 | 450. Delete Node in a BST | Medium |\n\nGraphs - DFS\n\n| # | Problem | Difficulty |\n| :---: | --------------------------------------------------------------------------------------- | ---------- |\n| 43 | 841. Keys and Rooms | Medium |\n| 44 | 547. Number of Provinces | Medium |\n| 45 | 1466. Reorder Routes to Make All Paths Lead to the City Zero | Medium |\n| 46 | 399. Evaluate Division | Medium |\n\nGraphs - BFS\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 47 | 1926. Nearest Exit from Entrance in Maze | Medium |\n| 48 | 994. Rotting Oranges | Medium |\n\nHeap / Priority Queue\n\n| # | Problem | Difficulty |\n| :---: | -------------------------------------------------------- | ---------- |\n| 49 | Kth Largest Element in an Array | Medium |\n| 50 | Smallest Number in Infinite Set | Medium |\n| 51 | Maximum Subsequence Score | Medium |\n| 52 | Total Cost to Hire K Workers | Medium |\n\nBinary Search\n\n| # | Problem | Difficulty |\n| :---: | --------------------------------------------------------------- | ---------- |\n| 53 | Guess Number Higher or Lower | Easy |\n| 54 | Successful Pairs of Spells and Potions | Medium |\n| 55 | 162. Find Peak Element | Medium |\n| 56 | Koko Eating Bananas | Medium |\n\nBacktracking\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------ | ---------- |\n| 57 | 17. Letter Combinations of a Phone Number | Medium |\n| 58 | Combination Sum III | Medium |\n\nDP - 1D\n\n| # | Problem | Difficulty |\n| :---: | -------------------------------------------------- | ---------- |\n| 59 | N-th Tribonacci Number | Easy |\n| 60 | Min Cost Climbing Stairs | Easy |\n| 61 | House Robber | Medium |\n| 62 | Domino and Tromino Tiling | Medium |\n\nDP - Multidimensional\n\n| # | Problem | Difficulty |\n| :---: | ----------------------------------------------------------------------------- | ---------- |\n| 63 | Unique Paths | Medium |\n| 64 | Longest Common Subsequence | Medium |\n| 65 | Best Time to Buy and Sell Stock with Transaction Fee | Medium |\n| 66 | Edit Distance | Medium |\n\nBit Manipulation\n\n| # | Problem | Difficulty |\n| :---: | ---------------------------------------------------------------- | ---------- |\n| 67 | Counting Bits | Easy |\n| 68 | 136. Single Number | Easy |\n| 69 | Minimum Flips to Make a OR b Equal to c | Medium |\n\nTrie\n\n| # | Problem | Difficulty |\n| :---: | ----------------------------------------------------------- | ---------- |\n| 70 | 208. Implement Trie (Prefix Tree) | Medium |\n| 71 | Search Suggestions System | Medium |\n\nIntervals\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------------------------------- | ---------- |\n| 72 | 435. Non-overlapping Intervals | Medium |\n| 73 | Minimum Number of Arrows to Burst Balloons | Medium |\n\nMonotonic Stack\n\n| # | Problem | Difficulty |\n| :---: | ------------------------------------------- | ---------- |\n| 74 | Daily Temperatures | Medium |\n| 75 | Online Stock Span | Medium |\n\nLinks\n\nLeetCode Top 75\n", "tags": [], "lang": "en" }, @@ -3840,17 +3932,6 @@ "tags": [], "lang": "en" }, - { - "uri": "/tracks/algorithms-101/leetcode/medium/138", - "title": "138. Copy List with Random Pointer", - "description": "Leetcode 138. Copy List with Random Pointer | Python soulution and explanation", - "content": "\nLeetCode problem\n\nThe problem asks to create a deep copy of a given linked list with a random pointer in each node. A deep copy means that the new linked list will have completely new nodes, and none of its pointers should point to the nodes in the original list. Both the next and random pointers of the new nodes should point to the new nodes in the copied list in the same order as the original list.\n\nNaive Solution:\n\nA naive solution would be to first create a copy of the original linked list without the random pointers.\n\nThen, for each node in the copied list, search for the node in the original list that its random pointer is pointing to, and update the random pointer in the copied list accordingly.\n\nThis solution would take O(n^2) time complexity, as we need to search for the random node for each node in the copied list.\n\nLogic:\n\nInitialize a hashmap to store the mapping of original nodes to new nodes\nIterate through the original list to create new nodes and add their mappings to the hashmap\nIterate through the original list again to update the next and random pointers of the new nodes using the hashmap\nReturn the head of the copied linked list\n\nSolution:\n\nclass Solution:\n def copyRandomList(self, head: 'Optional[Node]') -> 'Optional[Node]':\n if not head:\n return None\n\n nodes = {}\n cur = head\n\n new_head = Node(cur.val)\n new_cur = new_head\n\n nodes[cur] = new_cur\n\n while cur: # create mapping old-new linked nodes\n node = Node(cur.val)\n nodes[cur] = node\n cur = cur.next\n\n cur = head\n while cur:\n if cur.next:\n nodes[cur].next = nodes[cur.next]\n if cur.random:\n nodes[cur].random = nodes[cur.random]\n\n cur = cur.next\n\n return nodes[head]\n\n{{}}\n", - "tags": [ - "LeetCode Top Interview", - "greedy" - ], - "lang": "en" - }, { "uri": "/tracks/algorithms-101/leetcode/medium/134", "title": "134. Gas Station", @@ -4015,6 +4096,17 @@ ], "lang": "en" }, + { + "uri": "/tracks/algorithms-101/leetcode/medium/138/", + "title": "138. Copy List with Random Pointer", + "description": "Leetcode 138. Copy List with Random Pointer | Python soulution and explanation", + "content": "\nLeetCode problem\n\nThe problem asks to create a deep copy of a given linked list with a random pointer in each node. A deep copy means that the new linked list will have completely new nodes, and none of its pointers should point to the nodes in the original list. Both the next and random pointers of the new nodes should point to the new nodes in the copied list in the same order as the original list.\n\nNaive Solution:\n\nA naive solution would be to first create a copy of the original linked list without the random pointers.\n\nThen, for each node in the copied list, search for the node in the original list that its random pointer is pointing to, and update the random pointer in the copied list accordingly.\n\nThis solution would take O(n^2) time complexity, as we need to search for the random node for each node in the copied list.\n\nLogic:\n\nInitialize a hashmap to store the mapping of original nodes to new nodes\nIterate through the original list to create new nodes and add their mappings to the hashmap\nIterate through the original list again to update the next and random pointers of the new nodes using the hashmap\nReturn the head of the copied linked list\n\nSolution:\n\nclass Solution:\n def copyRandomList(self, head: 'Optional[Node]') -> 'Optional[Node]':\n if not head:\n return None\n\n nodes = {}\n cur = head\n\n new_head = Node(cur.val)\n new_cur = new_head\n\n nodes[cur] = new_cur\n\n while cur: # create mapping old-new linked nodes\n node = Node(cur.val)\n nodes[cur] = node\n cur = cur.next\n\n cur = head\n while cur:\n if cur.next:\n nodes[cur].next = nodes[cur.next]\n if cur.random:\n nodes[cur].random = nodes[cur.random]\n\n cur = cur.next\n\n return nodes[head]\n\n{{}}\n", + "tags": [ + "LeetCode Top Interview", + "greedy" + ], + "lang": "en" + }, { "uri": "/tracks/algorithms-101/leetcode/medium/11/", "title": "11. Container With Most Water", @@ -4276,8 +4368,8 @@ { "uri": "/tracks/algorithms-101/leetcode/easy/141", "title": "141. Linked List Cycle", - "description": "141. Linked List Cycle", - "content": "\nLeetCode problem\n\nclass Solution:\n def hasCycle(self, head: Optional[ListNode]) -> bool:\n visited = set()\n cur = head\n while cur:\n if cur.next in visited:\n return True\n cur = cur.next\n visited.add(cur)\n return False\n\n\n", + "description": "This article offers a deep dive into solving the 141. Linked List Cycle problem on LeetCode.", + "content": "\nLeetCode problem 141\n\nProblem Statement\n\nThe problem asks us to determine if a given linked list contains a cycle. A cycle in a linked list occurs when a node's next pointer points back to a previous node in the list, causing an infinite loop.\n\nHints & Tips\n\nIn this problem, you can take advantage of the Floyd's \"Tortoise and Hare\" cycle detection algorithm. This algorithm allows you to detect a cycle in O(1) space and O(n) time complexity, where n is the number of nodes.\n\nApproach\n\nUse two pointers, slow and fast. Initially, point them to the head of the linked list.\nMove the slow pointer one step at a time, and the fast pointer two steps at a time.\nIf there's a cycle, the fast pointer will eventually catch up to the slow pointer. If not, the fast pointer will reach the end of the list (None).\n\nStep 1:** Initialize slow = head and fast = head.\nStep 2:** Move slow one step and fast two steps in a loop.\nStep 3:** If fast and slow meet at any point, return True. If fast reaches the end, return False.\n\nSolution | Pointers\n\nHere's the Python code for this algorithm, commented for clarity:\n\nclass ListNode:\n def init(self, x):\n self.val = x\n self.next = None\n\ndef hasCycle(head: ListNode) -> bool:\nInitialize slow and fast pointers to head\n slow = head\n fast = head\n\n while fast and fast.next:\n slow = slow.next # Move slow one step\n fast = fast.next.next # Move fast two steps\n\n if slow == fast:\n return True\n\n return False\n\nSolution | Visited\n\nclass Solution:\n def hasCycle(self, head: Optional[ListNode]) -> bool:\n visited = set()\n cur = head\n while cur:\n if cur.next in visited:\n return True\n cur = cur.next\n visited.add(cur)\n return False\n\n", "tags": [], "lang": "en" }, @@ -4385,6 +4477,18 @@ "tags": [], "lang": "en" }, + { + "uri": "/tracks/algorithms-101/leetcode/easy/206/", + "title": "206. Reverse Linked List", + "description": "This article explores solving the 206. Reverse Linked List problem on LeetCode.", + "content": "\nLeetCode problem 206\n\nProblem Statement\n\nReverse a given singly linked list and return its head. A singly linked list is a data structure consisting of nodes, where each node has a value and a reference to the next node in the sequence.\n\nNaive Solution\n\nA naive approach could be to traverse the entire linked list once to read all its elements into an array. Then, we could reverse the array and construct a new linked list from it. This would work, but it takes up additional space for the array.\n\nLeetCode 206. Reverse Linked List | Python solution\nHints & Tips\n\nAn efficient way to approach this problem is by using pointers to reverse the links between the nodes directly within the linked list, without using additional space.\n\n\nWe will discuss two approaches to solve this problem: Iterative and Recursive.\n\nIterative\n\nApproach\nInitialize three pointers: prev as None, current as the head of the linked list, and next as None.\nTraverse the linked list, reversing the next pointers of each node to point to its previous node.\n\nSteps\n\nInitialize prev = None and current = head.\nWhile current is not None:\n Save current.next into next.\n Update current.next to prev.\n Move prev and current forward.\n\nSolution\n\nclass Solution:\n def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]:\n prev = None\n curr = head\n\n while curr:\n next = curr.next\n curr.next = prev\n prev = curr\n curr = next\n\n return prev\n\nRecursive\nApproach\nTraverse to the end of the list.\nAs the recursion stack unwinds, change the next pointers to create the reversed list.\n\nSteps\nBase case: If the head or head.next is None, return head.\nRecursively reverse the rest of the list.\nChange the next-next pointer to reverse the list.\n\nSolution\n\nclass Solution:\n def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]:\n if not head or not head.next:\n return head\n\n new_head = self.reverseList(head.next)\n\n head.next.next = head\n head.next = None\n\n return new_head\n", + "tags": [ + "Algorithms", + "Easy", + "LeetCodeTop75" + ], + "lang": "en" + }, { "uri": "/tracks/algorithms-101/leetcode/easy/1768/", "title": "1768. Merge Strings Alternately", diff --git a/static/search/lunr-index.json b/static/search/lunr-index.json index 211b9def14..3933a28f7c 100644 --- a/static/search/lunr-index.json +++ b/static/search/lunr-index.json @@ -1 +1 @@ -{"ru":{"version":"2.3.9","fields":["title","content","description"],"fieldVectors":[["title//tracks/_index",[0,5.81]],["content//tracks/_index",[1,2.775]],["description//tracks/_index",[]],["title//tracks/webrtc/unified-plan-transition-guide",[2,1.57,3,2.815,4,2.567,5,2.907,6,0.117,7,1.57]],["content//tracks/webrtc/unified-plan-transition-guide",[2,4.392,3,7.453,4,7.017,5,5.602,6,0.31,7,3.242,8,2.446,9,3.879,10,4.853,11,3.701,12,2.823,13,6.277,14,1.639,15,1.965,16,6.534,17,5.201,18,1.851,19,2.993,20,9.416,21,5.373,22,5.373,23,5.373,24,5.373,25,2.372,26,1.08,27,1.873,28,5.373,29,1.895,30,2.288,31,3.709,32,1.753,33,2.869,34,2.153,35,2.916,36,4.049,37,4.39,38,1.09,39,5.373,40,5.373,41,3.879,42,4.003,43,4.283,44,1.656,45,2.759,46,2.613,47,3.605,48,4.853,49,1.434,50,3.134,51,4.853,52,2.337,53,1.83,54,3.733,55,2.929,56,3.175,57,2.714,58,1.693,59,4.049,60,4.39,61,5.373,62,5.373,63,3.212,64,1.674,65,0.902,66,4.51,67,2.445,68,1.329,69,5.373,70,1.73,71,1.639,72,2.929,73,1.96,74,1.572,75,1.648,76,4.254,77,2.303,78,3.212,79,7.344,80,1.205,81,4.66,82,4.049,83,2.014,84,7.022,85,5.373,86,10.275,87,4.853,88,4.51,89,2.408,90,3.605,91,2.446,92,4.51,93,4.51,94,3.134,95,3.879,96,1.679,97,5.373,98,4.254,99,4.51,100,6.894,101,2.446,102,1.352,103,5.134,104,7.344,105,2.773,106,5.373,107,1.406,108,7.344,109,1.851,110,1.543,111,2.082,112,2.674,113,3.134,114,0.963,115,3.879,116,3.061,117,5.373,118,2.02,119,5.373,120,2.026,121,4.254,122,3.39,123,8.367,124,1.108,125,5.373,126,1.617,127,2.812,128,3.879,129,5.373,130,6.632,131,5.373,132,7.022,133,5.134,134,5.373,135,4.853,136,2.092,137,1.341,138,5.813,139,1.313,140,5.373,141,2.104,142,5.373,143,2.812,144,2.177,145,5.373,146,2.708,147,1.365,148,4.51,149,2.569,150,5.373,151,6.632,152,4.51,153,4.51,154,3.134,155,3.297,156,4.049,157,4.853,158,2.065,159,1.851,160,3.492,161,1.656,162,5.373,163,7.556,164,1.434,165,3.212,166,4.254,167,5.376,168,5.373,169,3.297,170,5.373,171,5.373,172,2.485,173,1.339,174,7.556,175,0.554,176,1.067,177,5.373,178,4.049,179,2.659,180,5.373,181,3.879,182,3.39,183,2.897,184,3.879,185,5.373,186,5.373]],["description//tracks/webrtc/unified-plan-transition-guide",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/turn-server",[189,4.5,190,1.804]],["content//tracks/webrtc/turn-server",[6,0.359,12,2.837,26,1.085,41,5.328,65,1.515,67,2.457,75,1.651,81,4.111,84,6.195,118,2.481,136,1.64,144,2.991,175,0.762,189,7.739,190,3.103,191,1.672,192,3.653,193,5.328,194,7.571,195,5.392,196,2.603,197,2.376,198,3.589,199,5.843,200,7.381,201,3.032,202,2.01,203,2.35,204,2.485,205,4.024,206,1.951,207,3.79,208,3.79,209,6.666,210,6.666,211,4.797,212,2.573,213,4.305,214,3.21,215,3.653,216,1.77,217,2.251,218,4.204,219,2.611,220,4.529,221,1.857,222,2.573,223,7.381,224,2.543,225,2.204,226,3.074,227,2.634,228,6.195,229,2.991,230,1.672,231,4.797,232,4.797,233,7.381,234,1.536,235,2.722,236,6.195,237,7.381,238,3.528,239,7.381,240,2.634,241,4.412,242,6.536,243,6.797,244,3.863,245,1.857,246,1.565,247,3.308,248,4.721,249,7.381,250,6.666,251,3.589,252,7.381,253,7.381,254,4.952,255,6.666,256,4.797,257,3.36,258,7.381]],["description//tracks/webrtc/turn-server",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/testing",[12,2.083,75,0.918,259,1.981]],["content//tracks/webrtc/testing",[6,0.35,12,3.387,13,5.558,26,1.045,34,1.624,35,2.476,75,1.204,78,4.247,138,6.974,144,3.881,175,0.988,190,2.55,191,1.995,212,2.476,216,1.703,235,2.659,245,1.788,246,1.506,259,2.597,260,3.872,261,3.8,262,6.317,263,4.003,264,2.476,265,2.696,266,5.128,267,2.662,268,2.604,269,4.482,270,4.171,271,3.957,272,4.046,273,7.104,274,5.623,275,5.962,276,6.416,277,6.416,278,3.647,279,9.578,280,5.962,281,4.766,282,5.128,283,7.104,284,5.962,285,6.121,286,6.36,287,7.957,288,1.507,289,1.816,290,5.406,291,6.416,292,4.359,293,3.34,294,7.104,295,1.753,296,5.623,297,3.647,298,7.104,299,5.128,300,2.566,301,2.696,302,3.286,303,5.962,304,3.58,305,3.234,306,4.766,307,2.84,308,6.416,309,7.104,310,7.104,311,5.526,312,7.104,313,2.604,314,7.104,315,7.104,316,7.104,317,7.104,318,7.104,319,3.619,320,7.104,321,7.104,322,7.104,323,7.104,324,7.104,325,7.104,326,7.104,327,7.104,328,7.104,329,4.935,330,7.104]],["description//tracks/webrtc/testing",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/remote-streams",[331,1.985,332,3.142]],["content//tracks/webrtc/remote-streams",[6,0.362,18,2.483,32,1.405,41,5.203,49,1.924,53,2.455,73,1.924,78,4.309,81,5.758,83,3.332,89,3.231,98,7.631,112,1.983,136,1.602,172,3.334,191,1.632,196,3.646,203,2.831,234,1.5,240,2.573,247,3.231,248,5.268,257,3.281,286,5.203,293,3.389,305,4.047,319,3.652,331,3.353,332,5.21,333,2.373,334,3.567,335,4.015,336,3.701,337,2.96,338,4.684,339,7.208,340,3.849,341,4.684,342,3.002,343,1.745,344,0.744,345,7.461,346,5.706,347,7.208,348,7.208,349,7.208,350,7.208,351,1.924,352,2.295,353,4.423,354,1.868,355,2.295,356,0.906,357,7.208,358,3.701,359,2.701,360,8.029,361,3.849,362,1.868,363,7.208,364,6.51,365,6.51,366,3.389,367,7.208,368,7.208,369,3.389,370,3.182,371,6.176,372,3.045,373,7.208,374,1.602,375,2.346,376,3.089,377,2.807,378,3.81,379,5.203,380,5.007,381,2.844,382,4.547,383,2.175,384,6.51,385,7.208,386,7.208,387,7.208,388,5.203,389,4.423,390,8.89,391,7.208,392,7.208]],["description//tracks/webrtc/remote-streams",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/peer-connections",[305,2.838,382,3.933]],["content//tracks/webrtc/peer-connections",[3,5.755,6,0.368,12,3.72,15,2.658,26,0.612,29,2.161,35,2.795,38,1.269,41,4.423,56,3.043,57,1.257,65,0.699,67,2.04,68,0.753,71,2.446,73,1.111,74,1.311,75,1.232,78,2.489,80,1.631,81,5.481,84,3.494,89,3.259,90,2.794,91,3.31,92,5.142,93,3.494,111,1.181,118,1.145,124,0.858,137,1.119,141,1.193,144,2.483,164,1.941,173,1.038,175,0.827,176,1.444,189,6.168,190,2.801,191,1.388,192,3.032,193,3.005,196,3.679,201,2.986,202,1.134,203,2.315,204,1.402,205,2.27,206,1.619,207,2.138,209,5.534,210,3.76,211,3.982,212,1.451,213,3.573,217,1.27,218,2.372,225,1.243,227,2.187,232,2.706,234,1.275,235,1.849,240,3.454,241,2.489,246,1.7,247,3.83,248,4.836,250,3.76,251,2.025,257,4.069,288,1.244,293,2.881,303,3.494,305,4.718,307,1.664,331,2.942,333,2.017,335,3.413,337,2.42,344,0.43,346,7.075,355,1.326,362,1.079,364,7.241,366,3.418,374,1.616,381,3.371,382,5.981,388,5.788,389,2.555,393,1.619,394,5.788,395,2.179,396,2.27,397,1.038,398,1.957,399,6.566,400,3.005,401,2.706,402,2.179,403,2.706,404,2.794,405,3.494,406,2.098,407,9.748,408,1.784,409,6.765,410,1.926,411,2.179,412,7.898,413,3.272,414,3.146,415,6.368,416,5.142,417,4.346,418,6.127,419,4.24,420,2.555,421,1.784,422,1.151,423,1.27,424,2.179,425,1.451,426,2.27,427,2.759,428,2.892,429,2.372,430,4.164,431,1.326,432,3.028,433,2.138,434,3.494,435,2.138,436,3.137,437,1.621,438,4.164,439,1.957,440,4.164,441,1.811,442,1.99,443,6.127,444,2.555,445,3.296,446,3.296,447,3.494,448,2.794,449,4.164,450,4.164,451,7.27,452,5.343,453,5.051,454,3.982,455,5.534,456,2.794,457,4.164,458,2.794,459,1.386,460,3.76,461,2.534,462,1.09,463,4.164,464,1.468,465,2.061,466,3.296,467,1.257,468,1.71,469,3.76,470,1.418,471,3.772,472,2.417,473,2.789,474,2.025,475,6.127,476,2.417,477,3.664,478,1.811,479,1.091,480,3.137,481,4.724,482,1.926,483,3.76,484,3.76,485,4.658,486,4.724,487,2.929,488,2.341,489,1.957,490,1.498,491,3.494,492,2.138,493,4.164,494,2.025,495,4.164,496,5.534,497,4.164,498,4.164,499,4.164,500,4.164,501,4.423,502,4.164,503,4.164,504,4.164,505,4.164,506,3.005,507,1.311,508,3.76,509,3.494,510,4.164,511,4.164,512,4.164,513,4.617,514,4.164,515,4.164,516,4.164,517,2.025,518,1.297,519,1.71,520,2.555,521,2.627,522,4.164,523,4.164,524,4.164,525,1.895,526,2.794,527,2.372,528,2.706,529,4.85,530,1.895,531,3.494,532,3.005,533,3.494,534,3.005,535,1.058,536,0.753,537,3.296,538,2.794,539,2.372,540,1.734,541,2.179,542,1.297,543,6.127,544,2.372,545,2.489,546,4.793,547,4.164,548,2.42,549,4.164,550,1.6,551,2.794,552,5.142,553,2.319,554,2.138,555,1.6,556,1.34,557,3.494,558,2.319,559,3.005,560,1.687,561,3.76,562,2.555,563,3.005,564,2.372,565,3.76,566,4.164,567,7.172,568,2.489,569,3.005,570,4.85,571,4.346,572,4.164,573,5.534,574,4.164,575,1.734,576,4.164,577,4.164,578,3.137,579,4.164,580,4.164,581,4.164,582,2.489,583,2.489,584,4.164,585,2.706,586,4.164]],["description//tracks/webrtc/peer-connections",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/media-devices",[341,4.051,587,3.031]],["content//tracks/webrtc/media-devices",[6,0.374,12,1.602,15,2.242,18,2.763,19,2.321,26,0.613,32,1.195,34,1.663,35,2.535,38,0.91,54,2.895,56,3.044,63,4.348,65,0.7,67,2.041,68,0.754,73,1.942,74,1.312,75,1.233,78,4.348,98,3.299,110,1.288,111,1.182,112,1.146,113,1.387,118,1.146,126,1.601,149,1.992,173,1.038,175,0.43,191,1.388,192,2.062,198,2.981,203,1.952,216,0.999,221,1.049,224,1.436,240,2.863,241,2.491,245,1.83,246,1.3,247,4.007,248,5.523,261,1.581,264,1.452,265,1.581,267,1.562,271,3.415,276,3.763,281,4.88,282,6.453,286,5.25,288,0.713,292,5.486,293,4.345,311,2.1,313,1.231,319,3.511,332,3.665,333,1.372,336,2.139,338,5.555,341,6.163,346,7.077,352,1.327,356,0.524,366,1.959,369,1.959,370,1.839,371,5.938,375,1.357,378,1.786,388,6.453,389,2.557,397,1.038,398,2.882,406,2.1,417,2.491,424,2.181,431,1.952,441,2.666,462,1.604,467,1.258,468,1.712,470,2.088,473,1.897,478,1.812,487,1.992,490,1.019,492,4.745,530,1.897,536,0.754,540,2.554,542,1.298,560,1.688,569,3.008,570,3.299,571,2.491,578,4.62,587,5.233,588,8.021,589,5.64,590,5.79,591,4.167,592,2.374,593,1.01,594,3.008,595,1.542,596,5.537,597,2.629,598,3.328,599,6.131,600,1.372,601,2.491,602,3.148,603,4.463,604,3.274,605,2.895,606,2.188,607,7.72,608,2.895,609,6.569,610,3.497,611,2.627,612,1.897,613,7.244,614,8.021,615,4.167,616,6.131,617,7.274,618,7.274,619,8.347,620,4.589,621,5.537,622,4.167,623,2.375,624,4.167,625,4.259,626,1.831,627,3.09,628,2.322,629,4.167,630,3.497,631,3.763,632,4.259,633,4.167,634,4.167,635,2.088,636,2.064,637,1.688,638,1.897,639,2.181,640,1.419,641,3.14,642,4.167,643,2.708,644,6.131,645,2.225,646,1.812,647,1.786,648,1.602,649,3.008,650,2.796,651,4.167,652,4.167,653,4.167,654,3.299,655,1.436,656,8.021,657,4.167,658,8.021,659,4.167,660,3.008,661,8.021,662,8.021,663,4.157,664,4.167,665,7.274,666,8.741,667,6.131,668,4.62,669,7.274,670,2.43,671,3.763,672,4.167,673,4.167,674,3.299,675,1.219,676,4.167,677,4.167,678,3.148,679,3.14,680,3.14,681,2.557,682,4.167,683,4.167,684,4.167,685,4.167,686,4.167,687,4.167,688,4.167,689,4.167,690,4.167,691,4.167,692,4.167,693,4.167,694,4.167,695,3.299,696,2.796,697,3.763,698,3.008,699,4.167,700,4.167,701,2.557,702,1.959,703,4.167,704,4.167,705,4.167,706,4.167,707,4.167,708,4.869,709,2.374,710,3.763,711,3.14,712,3.497,713,3.665,714,3.209,715,5.537,716,1.959,717,6.131,718,1.505,719,4.167,720,3.299,721,2.708,722,3.965,723,7.274,724,7.274,725,4.167,726,4.167,727,4.167,728,4.167,729,3.14,730,3.209,731,3.14,732,4.167,733,2.181,734,3.299,735,3.497,736,4.167,737,4.167,738,4.167,739,3.763,740,3.763,741,1.623,742,1.091,743,6.105,744,3.14,745,2.172,746,4.167,747,4.167,748,4.167,749,4.167,750,2.181,751,3.763,752,5.537,753,6.131,754,3.763,755,1.839,756,1.342,757,2.026,758,0.892,759,2.557,760,2.272,761,4.167,762,2.796,763,4.167,764,4.167]],["description//tracks/webrtc/media-devices",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/media-capture-and-constraints",[290,3.325,341,3.521,708,3.086]],["content//tracks/webrtc/media-capture-and-constraints",[6,0.369,12,2.043,14,2.223,18,1.831,25,2.346,32,1.421,34,1.215,35,1.853,38,0.789,56,2.017,58,1.674,63,3.177,65,0.893,67,2.77,70,1.711,73,2.221,75,1.642,78,5.351,80,1.192,81,2.96,98,7.669,103,3.261,107,1.391,110,1.531,112,2.462,113,1.769,118,1.462,136,1.849,137,0.971,139,1.299,141,1.523,148,4.461,172,2.458,175,0.752,191,1.204,196,1.875,197,1.711,205,2.897,212,1.853,221,2.094,229,2.154,232,3.454,235,1.604,240,3.348,241,4.973,245,1.834,265,3.157,278,2.729,281,3.566,284,4.461,286,3.837,288,0.909,290,5.493,292,5.755,293,4.208,301,2.017,307,2.914,331,1.693,332,5,335,2.96,337,1.769,338,4.737,341,6.566,344,0.752,356,0.668,360,4.8,370,2.346,371,5.779,376,2.278,377,2.07,384,8.085,393,2.199,411,2.782,422,1.369,433,4.271,453,3.693,462,1.391,464,1.875,470,1.81,474,2.585,488,1.711,490,1.299,506,3.837,526,3.566,536,1.505,587,4.825,589,5.647,590,6.462,596,6.583,600,0.909,602,2.729,603,5.105,604,2.838,606,2.602,612,3.318,635,1.81,648,2.043,650,3.566,655,2.511,666,7.513,671,4.8,708,5.908,713,3.177,714,2.782,715,4.8,729,6.269,730,3.815,731,6.269,735,6.982,757,4.353,758,1.138,765,4.005,766,3.261,767,3.1,768,6.982,769,4.005,770,3.028,771,4.251,772,5.315,773,4.005,774,1.79,775,5.315,776,5.315,777,2.499,778,1.419,779,2.838,780,5.315,781,2.42,782,5.315,783,3.693,784,3.454,785,1.674,786,4.461,787,3.677,788,4.8,789,5.315,790,5.315,791,5.315,792,5.315,793,1.79,794,5.315,795,2.346,796,5.779,797,5.315,798,5.315,799,2.679,800,2.42,801,5.315,802,9.689,803,3.353,804,5.315,805,2.245,806,5.315,807,4.461,808,7.29,809,4.208,810,7.29,811,7.29,812,5.493,813,7.29,814,5.064,815,7.29,816,7.29,817,1.621,818,3.566,819,2.782,820,5.315,821,3.693,822,5.315,823,2.679,824,5.315,825,5.315,826,5.315,827,3.177,828,2.631,829,4.005,830,7.29,831,3.693,832,2.679,833,5.315,834,4.005,835,4.8,836,4.208,837,5.315,838,4.8,839,5.315,840,2.458,841,4.005,842,2.782,843,2.183,844,2.729,845,2.214,846,5.315,847,5.315,848,2.729,849,1.086,850,5.315,851,3.837,852,2.499,853,5.315,854,4.461,855,3.353,856,2.183,857,2.458]],["description//tracks/webrtc/media-capture-and-constraints",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/data-channels",[344,0.643,521,3.933]],["content//tracks/webrtc/data-channels",[6,0.374,12,2.441,19,3.538,32,1.238,34,1.876,35,2.214,41,6.939,50,3.704,56,2.411,58,2.001,81,5.065,103,3.897,175,0.655,196,2.24,201,2.609,212,2.214,216,1.523,224,2.188,240,3.245,241,3.797,248,5.753,257,4.531,274,5.028,311,4.844,331,2.614,337,2.114,343,1.538,344,1.027,352,2.023,366,4.792,369,2.986,381,2.506,389,6.107,401,4.128,403,6.247,413,4.383,435,4.669,437,3.541,445,5.028,452,6.201,456,5.507,468,2.609,472,2.506,481,5.334,488,2.643,496,8.681,521,4.007,536,1.149,552,5.331,568,3.797,606,2.267,655,2.828,670,4.787,714,3.325,722,4.957,795,2.804,807,7.632,858,3.618,859,3.467,860,6.352,861,9.953,862,9.094,863,6.352,864,3.201,865,6.352,866,6.352,867,2.091,868,6.352,869,4.786,870,8.208,871,8.208,872,8.208,873,8.208,874,5.736,875,5.702,876,6.352,877,8.208,878,6.352,879,8.208,880,4.128,881,6.352,882,3.261,883,5.331,884,6.352,885,6.352,886,3.618,887,4.412,888,4.585,889,6.352,890,6.352,891,6.352,892,5.331,893,6.352,894,6.352,895,5.331,896,3.897,897,5.736,898,6.352,899,6.352,900,6.352,901,2.351]],["description//tracks/webrtc/data-channels",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/_index",[12,2.083,187,2.635,188,2.392]],["content//tracks/webrtc/_index",[12,4.073,19,5.226,29,2.778,35,3.492,65,1.323,68,1.425,75,1.335,81,4.388,124,1.934,136,2.085,176,1.565,196,2.778,232,5.119,234,1.639,290,5.757,305,4.561,333,2.593,341,6.097,371,5.472,397,2.338,400,6.772,419,4.594,424,4.123,425,2.746,587,4.872,589,5.919,590,6.772,598,3.067,757,3.831,845,3.281,864,4.728,902,4.817,903,2.99,904,7.878,905,1.315,906,6.236,907,1.67,908,6.236,909,2.352,910,2.403,911,5.119,912,7.114,913,7.878,914,4.487,915,3.236,916,5.686,917,2.002,918,1.36,919,7.878,920,7.878,921,7.878]],["description//tracks/webrtc/_index",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-take-photo",[126,0.945,344,0.443,481,2.791,922,3.399,923,3.399]],["content//tracks/webrtc/practice/practice-take-photo",[6,0.369,12,2.853,14,1.664,26,1.24,35,2.94,57,1.647,64,1.7,65,0.916,68,0.987,71,1.664,74,1.168,75,1.429,78,3.262,83,2.045,105,2.229,109,1.88,110,1.146,111,2.104,124,1.125,126,1.201,136,1.213,137,0.997,141,2.126,164,1.457,175,0.563,190,2.148,202,2.021,230,1.91,234,1.544,246,1.157,251,4.101,265,2.816,269,3.442,278,2.802,281,3.661,284,4.58,287,4.928,288,0.934,289,1.53,290,3.348,292,5.175,293,2.565,295,1.832,305,2.484,313,2.797,319,2.241,331,2.363,338,4.823,344,0.977,371,3.791,376,2.339,377,2.125,378,3.181,382,3.442,393,1.442,403,3.546,414,3.81,431,2.363,437,2.125,441,2.373,442,2.608,444,4.554,445,4.32,452,4.436,456,6.073,476,2.153,481,3.546,488,2.715,492,4.33,506,3.939,521,3.442,540,3.091,564,3.108,589,5.32,593,1.491,597,3.442,602,2.802,620,3.442,628,2.74,638,2.484,643,3.546,655,2.557,741,2.125,745,2.518,777,2.565,778,1.457,845,2.273,848,2.802,849,1.516,882,2.802,897,4.928,901,2.02,907,1.157,909,1.63,912,4.928,917,1.387,922,4.32,923,4.32,924,3.262,925,2.713,926,3.23,927,5.156,928,8.434,929,6.073,930,3.091,931,3.482,932,3.901,933,7.078,934,2.701,935,1.284,936,7.422,937,4.32,938,1.442,939,1.995,940,2.856,941,6.702,942,5.838,943,5.457,944,5.457,945,5.457,946,2.856,947,5.457,948,5.457,949,5.457,950,5.457,951,4.328,952,4.186,953,7.616,954,5.457,955,3.182,956,8.434,957,5.457,958,5.457,959,5.457,960,5.457,961,5.457,962,5.457,963,5.457,964,5.457,965,5.457,966,4.32,967,5.457,968,5.592,969,6.702,970,4.928,971,4.928,972,7.422,973,5.457,974,5.457,975,5.457,976,5.457,977,5.457,978,6.355,979,5.457,980,5.457,981,5.457,982,5.457,983,5.457,984,5.457,985,5.357,986,4.928,987,5.457,988,3.546,989,3.81,990,3.939,991,2.062,992,3.661,993,1.995,994,4.823,995,2.654,996,3.548,997,6.229,998,2.409,999,5.875,1000,4.928,1001,4.112,1002,1.63,1003,4.928,1004,4.58,1005,2.373,1006,4.58,1007,3.378,1008,3.442,1009,3.791,1010,3.546,1011,4.58,1012,2.701,1013,4.928,1014,5.457,1015,4.25,1016,5.457,1017,2.241,1018,1.776,1019,1.995,1020,3.939,1021,1.596,1022,3.939,1023,2.856,1024,1.044,1025,3.442,1026,2.524,1027,5.457,1028,3.108,1029,4.928,1030,3.348]],["description//tracks/webrtc/practice/practice-take-photo",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-stream-with-RTCPeerConnection",[81,2.669,293,2.252,593,0.79,1031,3.114]],["content//tracks/webrtc/practice/practice-stream-with-RTCPeerConnection",[2,2.859,3,5.126,6,0.363,7,1.518,11,1.733,12,3.963,13,3.346,14,1.049,18,1.185,19,1.915,26,0.952,29,1.871,31,1.828,32,0.67,35,3.118,38,1.168,41,2.482,46,1.672,49,1.729,50,2.005,52,1.495,53,1.171,56,1.305,59,2.591,64,1.072,65,1.395,67,1.145,68,0.622,70,1.107,71,2.535,73,0.918,74,0.736,75,1.556,78,3.171,80,1.19,81,5.668,83,1.289,89,2.378,92,5.435,93,6.109,103,2.11,105,2.079,107,0.9,111,1.504,114,0.616,118,0.946,120,1.284,124,1.501,126,1.731,133,2.11,136,1.748,137,0.969,141,0.985,173,1.322,175,0.812,189,3.829,190,1.874,191,1.467,194,2.886,196,3.055,198,2.579,201,1.413,202,1.982,203,2.848,204,2.18,211,2.235,213,2.005,214,3.166,216,0.825,217,1.618,230,1.781,231,2.235,234,1.348,235,1.038,238,1.644,240,2.807,245,0.865,246,1.373,247,1.541,248,3.81,257,2.415,263,1.375,264,1.199,265,2.763,282,3.829,288,0.908,290,3.255,292,2.11,293,4.406,295,0.849,300,1.242,305,3.314,307,1.375,311,1.733,331,2.758,332,3.963,335,2.954,336,1.766,337,1.766,338,4.208,341,4.73,343,1.904,344,0.858,345,4.452,351,0.918,355,2.318,356,0.915,359,1.289,362,1.375,371,3.685,382,2.169,394,2.482,396,1.875,398,1.617,400,4.674,401,2.235,402,1.8,403,2.235,404,2.307,407,5.848,408,1.474,409,4.199,412,6.226,414,4.447,415,4.085,417,3.171,427,1.305,431,1.689,433,2.723,437,2.521,441,2.307,442,2.536,444,3.255,447,4.452,464,1.213,467,1.601,471,3.213,472,1.357,477,3.263,478,1.495,479,0.991,481,2.235,483,3.106,484,4.791,485,5.2,486,4.73,487,3.096,488,2.344,490,1.583,492,3.737,501,4.674,508,5.848,513,3.997,517,1.672,530,1.565,532,5.255,535,0.874,536,0.622,538,2.307,540,3.032,544,3.022,556,1.708,561,3.106,564,3.022,565,4.791,567,2.886,571,3.871,573,3.106,587,1.672,589,3.346,593,1.067,598,2.065,607,5.848,620,2.169,626,1.584,627,1.733,628,0.995,635,1.171,636,2.18,646,3.614,654,2.722,709,3.022,720,2.722,742,0.9,745,1.584,759,2.11,768,2.886,779,1.339,785,1.083,793,1.158,805,2.241,827,2.056,834,2.591,864,2.673,875,2.389,892,2.886,903,1.305,905,0.482,909,1.934,917,0.874,918,0.594,924,3.171,925,2.604,926,2.807,929,4.345,931,2.257,932,2.995,952,2.995,955,3.094,985,3.829,988,4.73,1003,3.106,1007,2.415,1008,2.169,1012,1.702,1017,3.231,1019,2.876,1021,1.551,1022,2.482,1023,1.8,1024,1.015,1031,5.401,1032,3.439,1033,3.607,1034,4.147,1035,8.944,1036,1.119,1037,3.603,1038,2.005,1039,3.439,1040,1.733,1041,3.106,1042,3.871,1043,3.022,1044,6.574,1045,2.886,1046,3.315,1047,5.255,1048,5.305,1049,2.859,1050,5.126,1051,3.106,1052,4.199,1053,2.396,1054,1.357,1055,1.551,1056,3.829,1057,1.617,1058,3.439,1059,1.702,1060,3.106,1061,1.495,1062,3.106,1063,3.106,1064,2.722,1065,2.482,1066,1.963,1067,2.11,1068,3.325,1069,2.056,1070,2.591,1071,2.482,1072,3.439,1073,1.915,1074,3.439,1075,3.439,1076,2.342,1077,2.482,1078,3.607,1079,2.039,1080,3.559,1081,2.591,1082,9.683,1083,9.178,1084,4.452,1085,2.056,1086,2.056,1087,1.915,1088,1.509,1089,1.242,1090,3.447,1091,5.305,1092,3.439,1093,7.28,1094,3.106,1095,3.439,1096,3.439,1097,3.439,1098,3.439,1099,3.439,1100,1.672,1101,1.959,1102,2.482,1103,1.413,1104,2.389,1105,2.722,1106,2.389,1107,1.733,1108,3.094,1109,1.644,1110,1.257,1111,3.106,1112,3.439,1113,3.439,1114,3.106,1115,3.106,1116,3.439,1117,3.439,1118,3.439,1119,3.439,1120,2.722,1121,2.056,1122,3.439,1123,3.439,1124,3.439,1125,3.439,1126,3.439,1127,3.439,1128,3.439,1129,3.439,1130,3.439,1131,3.439,1132,3.439,1133,3.439,1134,3.439,1135,3.439,1136,2.722,1137,3.106,1138,0.882,1139,3.106,1140,4.884,1141,2.307,1142,3.439,1143,1.413,1144,3.439,1145,6.476,1146,3.439,1147,3.439,1148,2.169,1149,3.106,1150,3.447,1151,2.454,1152,4.791,1153,3.439,1154,3.439,1155,3.439,1156,3.439,1157,3.439,1158,7.865,1159,6.476,1160,3.439,1161,3.439,1162,3.439,1163,3.439,1164,3.439,1165,3.439,1166,3.439,1167,3.439,1168,3.439,1169,3.439,1170,3.439,1171,3.106,1172,3.439,1173,2.722,1174,3.439,1175,2.389,1176,3.439,1177,2.591,1178,2.389,1179,2.389,1180,1.591,1181,1.565,1182,2.886,1183,2.235,1184,1.617,1185,3.439,1186,3.439,1187,2.494,1188,3.439,1189,3.439,1190,2.169,1191,2.056,1192,2.591,1193,2.722,1194,3.439,1195,1.875,1196,3.439,1197,1.8,1198,1.672,1199,3.106,1200,3.106,1201,3.106,1202,2.056,1203,3.106,1204,3.439,1205,1.132,1206,1.702,1207,2.169,1208,1.038]],["description//tracks/webrtc/practice/practice-stream-with-RTCPeerConnection",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-stream-to-cam",[293,2.252,431,1.526,589,3.023,1031,3.114]],["content//tracks/webrtc/practice/practice-stream-to-cam",[6,0.37,12,3.068,13,5.035,14,1.5,18,1.694,26,1.174,38,1.185,49,1.312,56,3.029,63,4.128,64,1.532,67,2.299,74,1.052,89,2.204,105,2.288,110,1.033,113,1.637,126,1.082,136,1.535,137,0.898,144,2.798,164,1.312,173,1.989,175,0.893,202,2.174,219,1.999,221,1.738,230,2.065,234,1.661,240,2.465,245,2.009,248,4.531,261,1.866,265,3.461,281,3.299,282,6.582,286,3.549,288,0.841,291,4.44,292,6.641,293,4.445,299,3.549,300,1.776,319,3.746,332,2.478,338,5.926,341,5.187,344,0.507,345,6.699,351,1.312,356,0.618,371,6.569,393,1.3,394,3.549,397,1.225,406,2.478,431,2.542,444,4.237,452,4.128,464,1.734,467,1.484,468,2.02,471,3.048,488,2.223,490,1.951,491,4.127,492,4.444,518,1.532,540,2.876,554,2.524,564,3.934,571,2.939,582,2.939,589,6.356,590,3.549,606,2.465,609,6.237,611,1.776,613,6.237,620,5.461,623,1.366,627,4.595,628,1.999,631,4.44,636,2.687,640,1.675,648,1.89,655,2.379,660,4.985,680,5.204,698,3.549,708,5.386,721,3.195,729,6.871,730,3.615,731,3.705,739,4.44,740,4.44,743,4.127,745,3.009,750,2.574,752,4.44,757,2.391,773,3.705,777,2.311,779,1.914,781,2.238,788,4.44,799,2.478,800,2.238,805,2.077,814,4.797,856,2.837,924,2.939,925,2.627,926,3.254,931,3.017,932,3.194,941,6.237,985,4.985,988,3.195,989,2.524,1007,3.144,1012,3.418,1017,2.837,1018,1.601,1021,1.438,1022,3.549,1023,2.574,1024,1.321,1030,4.237,1042,4.128,1050,3.892,1068,4.098,1076,2.17,1077,3.549,1100,2.391,1111,6.237,1114,7.209,1115,7.209,1138,1.262,1148,3.102,1151,2.274,1178,4.797,1180,4.218,1183,3.195,1184,2.311,1191,2.939,1195,4.351,1197,2.574,1209,6.906,1210,5.467,1211,2.68,1212,3.705,1213,5.796,1214,4.127,1215,4.917,1216,4.917,1217,4.917,1218,5.204,1219,4.127,1220,4.127,1221,4.917,1222,4.917,1223,6.906,1224,1.89,1225,4.917,1226,2.625,1227,3.416,1228,6.523,1229,2.801,1230,3.549,1231,4.985,1232,2.801,1233,4.917,1234,1.714,1235,4.917,1236,4.917,1237,2.02,1238,4.917,1239,4.44,1240,1.94,1241,3.705,1242,2.574,1243,3.017,1244,3.299,1245,3.299,1246,2.478,1247,4.917,1248,4.917,1249,3.102,1250,4.917,1251,4.917,1252,3.102,1253,4.917,1254,2.524,1255,1.866,1256,6.906,1257,4.917,1258,4.917,1259,4.917,1260,4.917,1261,4.917,1262,4.917,1263,4.917,1264,4.917,1265,4.917,1266,1.82,1267,3.705,1268,2.625,1269,1.843,1270,4.917,1271,1.798,1272,4.44,1273,2.68,1274,4.917,1275,4.917]],["description//tracks/webrtc/practice/practice-stream-to-cam",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-setup-signaling-service",[355,1.367,415,2.709,427,1.63,437,1.672,1037,2.125]],["content//tracks/webrtc/practice/practice-setup-signaling-service",[6,0.374,12,3.806,13,2.153,15,1.248,26,1.376,31,1.817,32,0.665,35,1.189,38,1.164,50,1.99,56,2.001,58,1.075,65,0.573,67,1.136,68,0.954,71,1.608,72,1.86,74,1.552,75,1.585,78,2.04,80,0.766,81,2.937,96,0.78,101,2.401,102,1.327,105,1.394,107,0.893,111,2.449,114,0.945,136,1.172,137,0.963,139,1.575,144,2.137,159,1.176,164,1.935,175,0.855,176,1.28,189,3.806,190,2.756,191,0.773,196,2.557,201,2.647,202,1.755,203,1.679,204,1.149,205,1.86,206,1.394,212,1.189,213,1.99,219,0.988,221,1.824,222,2.246,227,1.218,229,1.383,230,1.642,231,2.218,234,1.097,240,2.3,246,1.118,251,2.564,254,2.29,259,1.248,263,1.364,265,2.001,268,1.904,278,1.752,288,0.902,289,1.781,293,1.604,295,1.302,300,2.328,305,1.553,311,1.72,313,1.904,319,1.402,335,1.901,337,1.755,344,0.352,351,0.911,352,1.087,354,1.366,356,0.663,362,0.884,375,1.111,378,2.26,382,2.153,400,2.463,408,3.107,409,4.174,412,2.701,414,2.707,415,5.901,421,1.462,426,1.86,427,2.446,429,1.944,431,1.679,437,3.812,444,3.236,452,5.333,454,5.384,458,3.538,459,1.136,461,2.527,462,0.893,464,1.204,473,1.553,476,3.092,479,0.718,492,3.722,501,2.463,513,2.571,525,1.553,540,2.196,541,1.786,556,1.099,560,2.137,564,1.944,587,1.659,593,0.562,601,2.04,604,1.822,626,1.575,627,1.72,628,0.988,636,1.149,648,1.312,696,4.324,750,2.76,755,1.506,768,2.864,785,1.075,814,3.663,823,1.72,832,1.72,849,1.077,852,1.604,864,2.657,905,0.478,911,2.218,914,3.004,924,2.04,925,2.544,926,2.957,929,2.29,931,3.11,932,3.353,933,2.864,942,5.918,985,3.806,986,9.444,988,4.711,989,3.722,992,5.559,993,1.928,994,6.281,995,1.659,996,3.746,997,6.085,998,1.506,999,7.537,1004,4.426,1007,1.553,1011,8.217,1012,3.588,1015,2.657,1019,2.651,1021,1.542,1022,2.463,1023,1.786,1024,1.387,1025,2.153,1031,2.218,1036,1.717,1037,4.783,1038,1.99,1042,3.152,1043,1.944,1049,2.845,1059,1.689,1068,3.309,1069,2.04,1080,4.864,1084,2.864,1088,0.795,1101,3.004,1109,1.631,1110,1.248,1139,3.082,1140,2.29,1151,2.439,1181,1.553,1183,2.218,1195,4.516,1198,1.659,1212,3.974,1213,4.426,1240,1.346,1249,2.153,1276,3.413,1277,5.739,1278,4.856,1279,2.153,1280,1.901,1281,5.409,1282,2.76,1283,1.752,1284,1.905,1285,5.273,1286,4.762,1287,1.578,1288,1.786,1289,1.99,1290,2.701,1291,2.571,1292,1.786,1293,1.901,1294,2.218,1295,1.822,1296,2.001,1297,1.86,1298,2.04,1299,1.72,1300,1.442,1301,1.075,1302,1.631,1303,1.99,1304,2.29,1305,2.371,1306,2.864,1307,2.29,1308,0.911,1309,1.462,1310,2.701,1311,1.944,1312,2.094,1313,3.413,1314,2.463,1315,2.08,1316,3.413,1317,5.273,1318,3.413,1319,5.273,1320,1.901,1321,8.285,1322,7.25,1323,6.445,1324,8.285,1325,5.273,1326,5.273,1327,3.427,1328,5.273,1329,2.463,1330,3.004,1331,0.988,1332,2.864,1333,2.701,1334,3.413,1335,3.663,1336,1.631,1337,3.082,1338,6.445,1339,3.413,1340,3.413,1341,1.775,1342,2.864,1343,3.413,1344,6.445,1345,2.864,1346,5.657,1347,5.273,1348,7.25,1349,5.273,1350,3.413,1351,1.329,1352,5.273,1353,3.413,1354,2.218,1355,3.082,1356,3.413,1357,3.413,1358,3.413,1359,3.413,1360,2.701,1361,1.752,1362,2.61,1363,1.952,1364,1.402,1365,1.53,1366,2.864,1367,2.701,1368,3.413,1369,3.413,1370,2.701,1371,2.153,1372,2.864,1373,3.413,1374,2.401,1375,2.153,1376,2.463,1377,1.944,1378,3.413,1379,3.413,1380,3.413,1381,3.413,1382,3.413,1383,3.413,1384,3.413,1385,3.413,1386,2.364,1387,3.413,1388,4.174,1389,3.413,1390,3.413,1391,2.701,1392,3.413,1393,3.413,1394,3.413,1395,3.082,1396,3.413,1397,2.218,1398,3.413,1399,3.413,1400,6.445,1401,2.571,1402,3.413,1403,3.413,1404,2.153,1405,1.905,1406,5.273,1407,3.413,1408,3.413,1409,3.413,1410,1.944,1411,3.413,1412,3.413,1413,5.273,1414,3.413,1415,3.413,1416,3.413,1417,2.864,1418,5.273,1419,3.413,1420,3.413,1421,4.762,1422,2.04,1423,1.689,1424,2.831,1425,2.701,1426,1.659,1427,4.174,1428,2.218,1429,2.701,1430,2.479,1431,2.371,1432,2.371,1433,3.082,1434,2.701,1435,2.479,1436,2.701,1437,1.822,1438,3.082,1439,2.04,1440,2.04,1441,2.218,1442,3.413,1443,1.901,1444,3.413,1445,3.413,1446,3.413]],["description//tracks/webrtc/practice/practice-setup-signaling-service",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-results",[1447,2.471]],["content//tracks/webrtc/practice/practice-results",[6,0.343,12,3.634,26,1.174,65,1.587,75,1.708,81,4.445,126,1.757,191,1.807,230,1.807,234,1.661,245,2.008,293,4.736,305,3.633,344,1.04,382,5.034,403,5.186,414,4.854,415,5.964,427,3.028,431,2.541,437,3.107,479,1.086,481,5.186,488,2.569,527,4.546,589,5.034,593,1.558,914,4.546,918,1.378,925,2.217,926,3.596,927,5.544,988,5.186,1017,3.278,1031,5.186,1037,4.679,1049,4.173,1199,7.207,1200,7.207,1228,6.013,1448,9.454,1449,6.317,1450,4.654,1451,4.35,1452,7.207,1453,7.98]],["description//tracks/webrtc/practice/practice-results",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-peer-signaling-combine",[305,3.087,382,3.023,415,3.023]],["content//tracks/webrtc/practice/practice-peer-signaling-combine",[6,0.203,12,4.018,13,3.901,14,1.886,26,1.399,32,1.206,57,2.434,64,1.927,67,2.059,68,1.119,71,1.886,75,1.367,81,3.444,101,2.815,102,1.556,105,2.373,111,1.754,118,1.701,141,1.772,159,2.131,164,1.651,175,0.926,190,2.598,196,3.166,202,2.197,203,2.569,206,1.634,230,2.033,231,4.019,234,1.287,246,1.311,259,2.261,264,2.155,265,3.407,278,4.142,293,2.907,295,2.216,329,4.296,331,2.569,332,3.116,335,3.444,337,2.059,338,4.019,344,0.638,354,2.09,356,0.778,415,3.901,423,2.46,427,3.611,433,3.175,441,2.689,442,2.956,444,4.95,452,3.697,461,2.155,474,3.007,476,2.44,479,0.842,488,1.991,507,1.948,540,3.36,589,3.901,590,4.464,593,1.329,597,3.901,602,3.175,626,2.409,628,1.79,750,3.237,821,4.296,832,4.065,848,3.175,849,1.648,869,4.66,907,1.311,924,3.697,925,2.742,926,3.396,929,4.149,930,2.576,931,3.593,932,4.401,952,2.86,955,3.606,985,5.823,988,4.019,989,4.142,990,4.464,991,2.241,992,5.412,993,2.261,994,6.413,995,3.007,996,3.856,997,6.77,998,2.73,999,7.532,1001,4.66,1004,5.19,1005,2.689,1006,5.19,1011,8.283,1012,3.992,1015,4.065,1017,3.313,1022,4.464,1023,3.237,1024,1.183,1037,4.443,1042,3.697,1043,4.595,1044,5.585,1053,2.036,1054,2.44,1068,3.175,1069,3.697,1080,5.412,1084,6.77,1173,4.895,1191,3.697,1195,3.371,1228,6.078,1234,2.155,1255,2.347,1306,5.19,1312,3.795,1333,4.895,1337,5.585,1364,2.54,1421,5.585,1424,2.234,1427,4.895,1428,4.019,1429,4.895,1435,2.907,1454,6.184,1455,7.535,1456,4.66,1457,6.184,1458,5.19,1459,5.19,1460,4.895,1461,4.66,1462,4.895,1463,4.464,1464,6.184,1465,4.895,1466,4.019,1467,4.895,1468,5.19,1469,4.296,1470,2.155,1471,6.184,1472,4.66,1473,5.19,1474,3.444,1475,5.585,1476,4.66,1477,4.019]],["description//tracks/webrtc/practice/practice-peer-signaling-combine",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-overview",[1478,3.015]],["content//tracks/webrtc/practice/practice-overview",[6,0.26,12,3.613,13,5.93,35,2.755,65,1.327,75,1.339,81,4.402,105,2.089,107,2.068,141,2.264,175,0.815,190,2.904,230,1.79,234,1.645,288,1.352,293,4.717,305,3.598,335,4.402,337,2.631,344,0.97,382,4.986,400,5.705,403,5.136,414,4.058,415,5.93,431,3.306,437,3.66,479,1.076,481,5.136,488,2.544,589,5.93,718,2.855,750,4.136,914,4.502,922,6.256,924,4.724,926,2.821,934,3.911,938,2.089,988,5.136,994,5.136,1031,6.108,1037,4.652,1053,2.601,1178,5.49,1240,3.118,1449,6.256,1477,5.136,1479,4.724,1480,3.778,1481,6.256,1482,2.962,1483,4.136,1484,3.292,1485,4.136,1486,7.903]],["description//tracks/webrtc/practice/practice-overview",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-get-code",[65,1.047,1487,3.085]],["content//tracks/webrtc/practice/practice-get-code",[6,0.217,13,6.353,14,2.013,18,2.273,26,0.97,31,2.273,44,2.593,58,2.649,64,2.056,65,1.555,68,1.194,74,1.8,75,1.653,80,1.48,105,1.744,111,1.871,136,1.466,137,1.205,141,1.89,164,1.761,173,1.645,175,0.681,190,3.029,191,1.905,203,2.101,222,2.3,246,1.399,251,4.09,254,4.427,259,2.413,265,3.192,268,1.95,278,4.319,281,4.427,289,1.734,344,0.868,355,2.101,356,0.83,408,4.316,424,5.477,431,3.279,432,2.748,479,0.898,507,2.079,536,1.522,551,4.427,560,3.408,585,4.288,636,2.832,713,3.945,718,2.384,779,2.569,823,3.325,906,5.224,907,1.399,918,1.14,925,2.337,931,3.51,932,3.052,952,3.052,988,6.336,989,4.319,991,1.834,1001,4.972,1007,4.215,1012,3.266,1015,4.239,1019,3.075,1021,1.93,1024,1.772,1042,3.945,1046,2.384,1066,2.442,1229,3.759,1255,2.504,1268,3.523,1269,3.152,1288,3.454,1293,3.675,1315,2.603,1331,1.91,1386,2.958,1430,3.102,1432,4.584,1474,3.675,1482,2.473,1487,4.163,1488,3.455,1489,2.536,1490,5.538,1491,4.288,1492,7.596,1493,4.763,1494,6.599,1495,5.959,1496,6.599,1497,4.427,1498,6.599,1499,4.584,1500,5.959,1501,6.599,1502,4.049,1503,5.224,1504,4.585,1505,6.599,1506,5.224,1507,8.412,1508,3.848,1509,4.584,1510,6.599,1511,6.599,1512,6.599,1513,7.596,1514,5.538,1515,4.427,1516,2.3,1517,4.584,1518,6.599,1519,6.599,1520,5.224,1521,4.584,1522,5.959,1523,6.599,1524,3.848,1525,6.599,1526,3.102,1527,6.599,1528,2.87,1529,3.523,1530,3.848]],["description//tracks/webrtc/practice/practice-get-code",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/practice-RTCDataChannel-exchange-data",[137,0.875,344,0.494,403,3.114,1037,2.371]],["content//tracks/webrtc/practice/practice-RTCDataChannel-exchange-data",[6,0.368,12,3.992,15,1.857,26,1.195,32,0.99,34,1.161,38,1.049,44,2.178,63,3.036,65,1.55,68,0.919,70,1.635,71,1.549,81,4.89,89,2.277,105,1.867,113,1.691,114,0.911,120,1.23,136,1.129,137,0.928,141,2.024,146,2.56,147,1.291,159,1.75,164,1.356,175,0.729,183,2.004,196,3.456,202,1.924,213,2.962,217,1.549,221,1.278,234,1.057,246,1.077,257,3.216,264,1.77,288,1.209,292,3.117,293,2.388,297,2.608,305,3.216,307,2.031,311,2.56,319,2.902,338,3.301,344,1.108,355,1.617,356,0.888,366,3.321,376,2.177,377,1.978,393,1.867,397,1.761,403,5.706,408,2.177,414,4.508,415,3.204,417,4.223,435,2.608,437,2.751,444,4.335,445,5.592,447,5.929,452,3.036,453,3.529,456,6.192,459,1.691,461,1.77,468,2.086,471,2.242,472,2.004,481,4.591,487,2.428,492,3.627,518,1.583,521,5.822,540,2.942,556,1.635,564,2.893,571,3.036,575,2.942,587,3.435,648,1.952,655,2.798,708,4.627,718,2.552,742,1.329,745,2.11,750,3.698,759,3.117,823,3.56,832,2.56,841,5.323,864,3.56,874,6.38,875,3.529,882,4.738,909,2.426,924,3.036,925,2.777,926,3.41,929,5.45,931,2.462,932,3.757,934,4.345,942,4.223,955,2.962,985,5.099,988,3.301,1002,1.517,1007,3.216,1012,2.514,1018,2.3,1019,3.21,1022,3.666,1023,2.659,1031,5.278,1037,4.345,1038,2.962,1042,4.856,1043,4.024,1046,2.934,1050,4.021,1059,2.514,1061,2.209,1062,4.587,1063,4.587,1064,4.021,1076,2.242,1077,3.666,1078,2.829,1080,3.408,1094,6.38,1178,3.529,1181,4.201,1182,4.263,1195,2.769,1205,2.325,1206,3.496,1220,5.929,1245,3.408,1438,4.587,1480,2.428,1497,3.408,1531,5.592,1532,3.827,1533,4.263,1534,4.908,1535,2.962,1536,2.209,1537,5.079,1538,3.301,1539,2.893,1540,7.065,1541,3.408,1542,7.065,1543,7.065,1544,5.079,1545,6.43,1546,8.123,1547,8.123,1548,5.079,1549,8.78,1550,3.408,1551,5.079,1552,3.827,1553,4.021,1554,8.123,1555,4.223,1556,5.929,1557,4.12,1558,6.38,1559,5.079,1560,8.123,1561,4.591,1562,5.079,1563,5.079,1564,5.079,1565,5.079,1566,5.079,1567,7.065,1568,5.079,1569,8.123,1570,5.079,1571,5.079,1572,5.079,1573,5.079,1574,5.079,1575,5.079,1576,5.079,1577,5.079,1578,5.079,1579,5.079,1580,5.079,1581,5.079,1582,5.079,1583,3.204,1584,5.079,1585,2.177,1586,3.529,1587,4.024,1588,4.587,1589,4.587,1590,4.021,1591,3.851,1592,1.71,1593,3.827,1594,3.036,1595,4.587,1596,5.079,1597,2.349,1598,2.608,1599,2.388,1600,2.893]],["description//tracks/webrtc/practice/practice-RTCDataChannel-exchange-data",[12,2.119,187,2.681,188,2.434]],["title//tracks/webrtc/practice/_index",[1076,3.24]],["content//tracks/webrtc/practice/_index",[6,0.332,12,4.233,13,4.202,15,2.436,19,3.71,35,3.242,38,1.256,42,3.631,46,3.239,49,2.259,64,2.076,65,1.421,70,2.145,75,1.576,78,5.849,81,4.713,110,1.399,136,1.48,137,1.217,138,5.273,175,0.96,189,6.108,190,2.692,191,2.106,193,4.808,194,5.591,198,4.115,204,2.849,211,4.329,213,4.935,216,1.597,217,2.032,222,2.322,224,2.295,225,1.989,230,1.509,231,4.329,234,1.386,246,1.412,265,3.529,288,1.14,290,4.087,293,4.6,297,4.345,305,4.234,335,3.71,336,3.42,337,2.218,338,4.329,344,1.01,351,2.482,352,2.121,356,1.064,398,3.978,400,6.713,403,4.329,409,6.699,414,4.775,415,6.173,421,2.855,422,1.251,426,3.631,429,4.82,435,3.42,437,3.295,467,2.01,479,0.907,556,2.145,594,4.808,595,2.466,628,2.692,636,2.243,817,2.581,828,3.297,856,2.736,998,2.941,999,5.273,1007,3.032,1029,6.016,1031,6.044,1037,4.603,1049,4.319,1056,4.808,1064,5.273,1088,1.972,1101,3.795,1102,4.808,1103,2.736,1104,4.628,1105,5.273,1106,4.628,1107,3.357,1108,4.935,1109,3.184,1110,2.436,1197,3.487,1198,3.239,1291,5.02,1391,5.273,1428,4.329,1592,2.243,1601,3.631,1602,6.662,1603,6.662,1604,6.016,1605,5.273,1606,5.591,1607,6.662,1608,5.273,1609,6.662,1610,3.094]],["description//tracks/webrtc/practice/_index",[12,2.119,187,2.681,188,2.434]],["title//tracks/python-101/_index",[187,2.635,188,2.392,1611,0.836]],["content//tracks/python-101/_index",[6,0.23,75,1.184,80,1.567,91,3.179,118,2.398,120,1.691,126,1.537,137,1.275,139,1.707,149,3.338,167,4.174,175,0.721,176,1.731,188,3.848,202,1.902,215,3.456,267,2.617,333,2.869,344,0.721,356,0.878,369,3.283,395,3.655,397,2.172,431,2.224,490,1.707,518,2.176,534,5.041,535,1.774,540,2.908,555,2.684,593,1.151,637,2.829,645,3.729,655,2.406,778,1.864,781,3.179,785,2.746,858,3.978,903,2.65,924,4.174,938,2.304,1018,2.273,1019,2.553,1024,1.336,1138,1.792,1208,2.631,1240,2.755,1287,4.032,1293,3.889,1297,3.806,1302,3.338,1470,2.434,1478,2.868,1482,2.617,1516,2.434,1538,5.665,1611,1.652,1612,5.041,1613,6.983,1614,6.306,1615,5.528,1616,6.983,1617,10.243,1618,3.637,1619,4.522,1620,4.538,1621,4.685,1622,3.978,1623,4.851,1624,4.851,1625,4.405,1626,2.153,1627,3.519,1628,2.993,1629,5.861,1630,3.519,1631,3.889,1632,1.827,1633,7.872,1634,6.306,1635,6.306,1636,4.685,1637,8.583,1638,7.316,1639,3.004,1640,8.717,1641,4.851,1642,6.9,1643,3.519,1644,5.262,1645,3.889,1646,3.283,1647,4.314,1648,3.585,1649,4.285,1650,4.174,1651,2.993,1652,3.267,1653,3.729,1654,5.211,1655,5.262,1656,2.406,1657,5.861,1658,4.285,1659,6.983,1660,5.262,1661,2.378,1662,6.306]],["description//tracks/python-101/_index",[6,0.103,187,1.52,188,1.38,1273,1.704,1287,1.446,1611,0.76,1663,2.623,1664,2.256]],["title//tracks/python-101/top-questions/",[1287,2.216,1611,0.739,1663,4.021,1665,3.61]],["content//tracks/python-101/top-questions/",[1,2.323,2,0.72,6,0.366,7,1.009,11,2.478,14,1.288,15,1.045,17,3.068,18,0.787,26,0.808,27,0.997,29,1.346,30,2.458,31,0.562,32,0.894,33,0.468,34,2.247,35,0.306,38,1.256,43,0.511,49,0.899,50,1.333,52,0.381,53,1.146,57,1.152,58,1.644,60,0.975,63,4.382,64,0.273,65,1.37,66,0.736,67,1.406,68,0.944,71,0.697,73,1.019,74,0.612,75,0.647,83,0.856,89,2.056,90,1.094,95,0.633,96,0.2,102,1.608,105,0.232,107,0.427,110,0.802,111,0.249,112,2.05,113,0.543,114,1.619,118,1.161,120,2.197,124,0.471,126,0.193,127,1.196,128,0.633,136,0.362,137,1.092,139,0.559,141,1.314,143,0.853,144,1.158,147,2.215,158,0.337,160,1.06,161,1.97,167,1.366,173,0.406,175,0.85,176,1.187,178,0.661,183,0.643,184,0.633,191,0.647,197,1.084,198,0.426,202,0.444,203,1.662,206,0.756,208,0.45,212,1.331,215,0.807,216,1.377,219,0.974,221,0.961,222,0.306,224,0.787,225,1.715,229,0.355,234,1.437,240,3.584,241,4.032,245,2.073,246,0.714,257,1.04,259,1.045,261,0.867,262,1.029,263,0.652,264,0.306,267,0.611,270,0.952,272,0.37,288,0.279,289,1.511,295,0.216,301,0.867,302,1.322,305,0.399,306,1.094,307,1.834,311,1.696,313,1.698,319,1.383,331,0.279,332,1.441,342,1.59,343,0.212,344,0.781,351,0.435,352,1.461,354,0.592,356,0.868,359,0.329,361,0.468,362,1.423,369,1.074,372,1.784,375,0.285,380,0.609,381,0.901,383,1.484,393,0.89,397,1.143,401,0.57,402,0.853,410,0.406,414,1.96,420,0.538,421,1.81,422,1.576,429,0.929,439,0.767,441,1.243,458,0.588,459,1.271,461,0.796,462,1.951,465,5.066,467,0.492,468,1.568,469,2.064,470,0.974,471,0.72,472,1.81,473,1.738,474,1.637,477,2.128,478,1.243,479,1.031,488,0.92,489,0.412,490,1.513,492,2.168,507,0.276,518,1.532,525,0.399,530,0.399,535,0.223,536,0.83,538,0.588,540,0.679,542,0.712,548,0.292,554,0.837,556,3.065,558,0.908,569,0.633,571,0.975,575,0.365,592,0.499,593,1.186,594,1.177,595,0.604,597,1.029,600,0.653,602,0.45,606,2.209,620,1.029,623,2.037,626,0.487,627,0.822,628,0.472,635,1.675,636,1.422,640,0.974,645,0.468,655,3.06,660,0.633,663,0.793,675,1.117,696,0.588,702,1.985,708,0.499,709,1.302,711,0.661,714,0.459,716,1.344,720,1.809,721,1.485,729,2.154,731,2.154,733,1.196,741,0.341,742,0.229,744,0.661,745,1.849,755,2.536,756,0.282,757,0.426,758,0.72,769,0.661,771,1.667,774,0.295,778,1.224,779,0.89,781,0.742,784,0.57,785,0.514,786,0.736,793,1.757,795,1.486,796,1.133,800,2.615,803,0.553,812,3.705,817,1.164,818,0.588,831,1.133,832,0.442,834,0.661,844,1.468,848,0.45,849,0.333,852,1.344,855,0.553,859,0.689,867,0.537,901,0.604,905,0.123,909,0.262,910,0.872,911,0.57,915,2.956,917,0.855,925,0.244,926,0.313,931,0.568,932,1.057,934,0.807,935,0.673,938,0.431,939,0.596,940,0.459,955,0.511,966,1.291,968,1.722,1008,0.553,1010,1.485,1018,2.682,1021,0.256,1024,1.099,1026,0.406,1033,1.875,1036,2.015,1038,0.511,1040,0.442,1045,0.736,1046,0.825,1047,0.633,1049,1.486,1052,2.665,1053,0.537,1054,3.184,1055,1.117,1059,0.434,1061,1.66,1067,0.538,1068,0.45,1077,0.633,1078,0.908,1079,0.627,1081,0.661,1085,1.366,1087,1.875,1088,0.784,1100,3.28,1108,0.511,1110,0.321,1138,1.474,1150,0.57,1175,0.609,1177,0.661,1181,0.399,1195,1.246,1205,1.39,1208,0.69,1211,0.478,1224,0.627,1226,0.871,1234,0.997,1237,1.884,1243,4.238,1244,5.292,1254,1.173,1255,1.278,1279,0.553,1280,2.126,1283,3.546,1284,1.216,1293,0.488,1295,0.871,1296,2.495,1298,1.366,1299,0.442,1301,2.781,1302,1.367,1304,0.588,1308,0.435,1327,0.57,1341,2.376,1342,0.736,1346,1.177,1363,0.846,1364,1.734,1376,0.633,1377,0.929,1388,0.694,1401,0.661,1405,0.589,1424,0.825,1427,0.694,1435,0.412,1436,0.694,1447,1.757,1460,1.291,1470,0.306,1479,0.975,1481,0.694,1484,2.173,1485,0.459,1497,0.588,1516,0.997,1524,0.511,1526,0.412,1528,1.243,1529,0.468,1532,0.661,1534,1.587,1535,0.951,1545,0.694,1550,0.588,1555,2.742,1556,2.399,1561,1.485,1583,1.804,1585,0.376,1586,0.609,1592,0.769,1597,1.057,1598,0.45,1611,1.647,1612,0.633,1618,2.549,1619,1.262,1626,0.881,1628,1.225,1632,0.427,1639,0.265,1641,1.133,1643,2.768,1644,0.661,1652,2.32,1656,0.985,1658,0.538,1661,0.555,1665,0.661,1666,1.722,1667,0.877,1668,0.792,1669,0.965,1670,1.368,1671,3.818,1672,1.273,1673,1.368,1674,0.442,1675,1.468,1676,0.877,1677,2.731,1678,2.193,1679,0.792,1680,0.611,1681,0.553,1682,0.877,1683,0.736,1684,2.859,1685,0.694,1686,0.588,1687,0.877,1688,1.152,1689,0.524,1690,1.532,1691,1.291,1692,2.825,1693,1.858,1694,1.281,1695,0.633,1696,2.409,1697,2.582,1698,0.736,1699,0.792,1700,0.524,1701,1.173,1702,0.265,1703,2.582,1704,0.37,1705,1.133,1706,0.792,1707,0.877,1708,1.485,1709,0.792,1710,4.815,1711,1.496,1712,1.631,1713,0.694,1714,1.631,1715,1.368,1716,0.511,1717,0.661,1718,0.661,1719,0.736,1720,0.538,1721,1.133,1722,1.986,1723,3.366,1724,3.375,1725,1.229,1726,0.792,1727,0.877,1728,0.877,1729,0.779,1730,0.736,1731,0.57,1732,0.694,1733,1.631,1734,1.22,1735,1.229,1736,0.57,1737,0.877,1738,0.736,1739,1.631,1740,1.302,1741,0.979,1742,3.502,1743,0.736,1744,0.877,1745,2.297,1746,0.877,1747,2.894,1748,1.368,1749,2.536,1750,3.329,1751,2.911,1752,1.631,1753,2.263,1754,1.631,1755,2.285,1756,1.631,1757,0.694,1758,0.736,1759,1.333,1760,0.736,1761,0.792,1762,0.633,1763,0.588,1764,1.858,1765,0.951,1766,0.736,1767,1.06,1768,1.754,1769,0.45,1770,1.804,1771,0.877,1772,2.285,1773,1.473,1774,1.875,1775,0.633,1776,0.553,1777,0.45,1778,0.877,1779,0.877,1780,0.524,1781,2.064,1782,2.972,1783,3.366,1784,0.877,1785,0.877,1786,0.589,1787,0.877,1788,0.877,1789,2.859,1790,3.202,1791,2.582,1792,1.81,1793,2.562,1794,1.229,1795,0.661,1796,1.029,1797,4.223,1798,0.877,1799,0.736,1800,4.223,1801,2.285,1802,2.409,1803,1.835,1804,0.792,1805,3.457,1806,0.877,1807,0.877,1808,0.792,1809,3.705,1810,1.631,1811,5.029,1812,1.473,1813,0.877,1814,1.649,1815,1.918,1816,1.631,1817,0.877,1818,2.628,1819,1.473,1820,0.694,1821,1.473,1822,0.694,1823,0.877,1824,0.877,1825,0.736,1826,0.588,1827,0.975,1828,1.229,1829,1.431,1830,2.064,1831,0.792,1832,1.631,1833,1.177,1834,1.291,1835,1.177,1836,1.368,1837,0.694,1838,1.291,1839,0.877,1840,1.918,1841,0.877,1842,1.527,1843,0.387,1844,0.57,1845,1.631,1846,0.736,1847,0.877,1848,0.877,1849,0.57,1850,0.877,1851,0.736,1852,0.877,1853,0.57,1854,0.538,1855,0.511,1856,0.661,1857,0.742,1858,0.867,1859,0.877,1860,1.273,1861,0.609,1862,0.792,1863,0.72,1864,2.675,1865,3.631,1866,2.859,1867,0.57,1868,1.133,1869,1.516,1870,2.859,1871,1.094,1872,0.792,1873,0.736,1874,0.588,1875,2.537,1876,2.124,1877,0.877,1878,0.877,1879,0.877,1880,0.468,1881,2.09,1882,1.368,1883,1.809,1884,0.588,1885,1.631,1886,1,1887,1.558,1888,3.893,1889,3.854,1890,1.532,1891,0.633,1892,1.631,1893,1.631,1894,0.877,1895,0.792,1896,0.877,1897,0.877,1898,0.694,1899,0.877,1900,0.736,1901,3.107,1902,0.877,1903,0.609,1904,0.406,1905,0.538,1906,0.792,1907,0.694,1908,1.029,1909,0.877,1910,0.661,1911,0.877,1912,0.355,1913,0.694,1914,1.485,1915,0.877,1916,1.333,1917,1.333,1918,3.85,1919,1.291,1920,1.3,1921,0.877,1922,1.368,1923,0.792,1924,2.859,1925,0.661,1926,0.792,1927,1.631,1928,1.368,1929,0.877,1930,0.239,1931,0.499,1932,0.538,1933,0.908,1934,0.57,1935,0.877,1936,3.544,1937,3.04,1938,2.825,1939,1.473,1940,3.204,1941,0.877,1942,1.177,1943,1.442,1944,0.877,1945,1.918,1946,0.633,1947,0.877,1948,1.177,1949,1.473,1950,1.963,1951,3.182,1952,0.822,1953,0.661,1954,0.828,1955,1.609,1956,2.352,1957,0.877,1958,4.062,1959,0.736,1960,0.792,1961,3.306,1962,1.631,1963,1.631,1964,2.481,1965,1.368,1966,0.877,1967,0.877,1968,3.04,1969,0.877,1970,0.877,1971,0.877,1972,1.229,1973,0.877,1974,0.57,1975,1.177,1976,0.908,1977,0.792,1978,1.302,1979,1.443,1980,0.736,1981,2.409,1982,0.736,1983,0.538,1984,1.441,1985,0.57,1986,1.473,1987,1.262,1988,0.45,1989,0.661,1990,0.694,1991,1.631,1992,1.631,1993,1.402,1994,0.633,1995,0.609,1996,0.45,1997,2.285,1998,0.736,1999,0.736,2000,0.792,2001,0.889,2002,0.553,2003,1.649,2004,0.365,2005,0.442,2006,1.637,2007,0.736,2008,1.473,2009,1.81,2010,0.877,2011,0.661,2012,1.722,2013,0.499,2014,0.694,2015,0.736,2016,0.588,2017,0.877,2018,0.792,2019,1.368,2020,0.792,2021,0.877,2022,0.694,2023,0.661,2024,0.524,2025,1.631,2026,1.809,2027,0.929,2028,0.792,2029,0.588,2030,0.661,2031,0.792,2032,0.736,2033,2.064,2034,0.877,2035,1.558,2036,2.859,2037,0.661,2038,0.736,2039,0.442,2040,0.877,2041,0.877,2042,0.694,2043,2.981,2044,0.588,2045,0.478,2046,0.643,2047,0.609,2048,1.631,2049,0.792,2050,0.694,2051,0.877,2052,0.426,2053,1.094,2054,0.908,2055,0.468,2056,0.609,2057,0.511,2058,1.291,2059,0.877,2060,0.877,2061,0.877,2062,0.877,2063,0.877,2064,0.792,2065,0.877,2066,0.877,2067,0.508,2068,4.441,2069,0.499,2070,0.588,2071,0.694,2072,0.736,2073,0.877,2074,3.102,2075,2.481,2076,3.818,2077,0.792,2078,3.816,2079,0.609,2080,0.694,2081,0.877,2082,0.609,2083,2.285,2084,0.792,2085,0.877,2086,0.877,2087,2.825,2088,1.631,2089,0.877,2090,0.661,2091,0.877,2092,1.631,2093,0.877,2094,0.877,2095,1.177,2096,1.709,2097,0.877,2098,2.122,2099,0.793,2100,0.877,2101,0.538,2102,0.792,2103,1.06,2104,0.633,2105,0.792,2106,0.792,2107,0.736,2108,0.877,2109,0.877,2110,2.825,2111,1.368,2112,0.877,2113,0.877,2114,1.631,2115,0.877,2116,0.877,2117,0.877,2118,1.631,2119,0.877,2120,0.877,2121,0.661,2122,3.813,2123,0.877,2124,0.694,2125,0.951,2126,1.368,2127,0.877,2128,0.877,2129,0.609,2130,0.877,2131,1.273,2132,3.404,2133,0.877,2134,1.177,2135,1.631,2136,1.368,2137,2.188,2138,2.665,2139,2.859,2140,1.631,2141,1.631,2142,0.694,2143,0.633,2144,1.631,2145,0.538,2146,0.853,2147,1.631,2148,0.877,2149,0.792,2150,2.263,2151,0.792,2152,1.473,2153,0.792,2154,2.756,2155,0.877,2156,0.877,2157,0.694,2158,0.951,2159,1.133,2160,0.694,2161,0.736,2162,0.553,2163,0.488,2164,0.736,2165,1.368,2166,0.877,2167,0.524,2168,3.343,2169,1.229,2170,0.511,2171,0.57,2172,0.877,2173,2.399,2174,1.133,2175,0.877,2176,0.792,2177,0.877,2178,0.877,2179,0.877,2180,0.877,2181,1.029,2182,0.694,2183,1.918,2184,0.877,2185,1.133,2186,2.664,2187,1.631,2188,0.792,2189,0.57,2190,0.468,2191,0.57,2192,0.694,2193,0.877,2194,2.285,2195,1.631,2196,0.877,2197,0.877,2198,0.877,2199,0.877,2200,1.631,2201,0.877,2202,0.877,2203,0.877,2204,0.524,2205,4.441,2206,1.229,2207,0.661,2208,1.368,2209,0.736,2210,0.694,2211,0.511,2212,0.877,2213,0.488,2214,2.066,2215,0.877,2216,0.877,2217,0.877,2218,0.524,2219,1.631,2220,1.631,2221,0.57,2222,0.609,2223,3.818,2224,1.631,2225,0.442,2226,2.582,2227,0.524,2228,0.877,2229,0.877,2230,1.631,2231,0.792,2232,0.877,2233,0.609,2234,0.792,2235,0.877,2236,0.736,2237,0.694,2238,0.877,2239,0.877,2240,0.538,2241,0.877,2242,0.609,2243,2.064,2244,0.524,2245,0.499,2246,0.877,2247,0.57,2248,0.877,2249,0.792,2250,0.877,2251,0.478,2252,0.661,2253,0.877,2254,4.223,2255,0.694,2256,0.877,2257,1.473,2258,0.412,2259,0.72,2260,1.485,2261,1.177,2262,0.694,2263,0.661,2264,0.538,2265,0.877,2266,0.736,2267,0.877,2268,0.877,2269,0.736,2270,0.538,2271,0.661,2272,3.818,2273,3.818,2274,0.877,2275,0.609,2276,0.736,2277,0.963,2278,2.399,2279,0.661,2280,0.661,2281,1.473,2282,0.792,2283,0.837,2284,0.524,2285,0.792,2286,0.877,2287,0.538,2288,0.736,2289,0.877,2290,0.694,2291,0.736,2292,1.631,2293,0.877,2294,2.859,2295,2.859,2296,0.661,2297,0.661,2298,1.094,2299,0.468,2300,2.064,2301,0.877,2302,0.877,2303,1.631,2304,0.877,2305,0.877,2306,1.631,2307,0.736,2308,0.877,2309,0.877,2310,0.877,2311,1.918,2312,0.877,2313,0.877,2314,0.877,2315,2.285,2316,0.736,2317,0.661,2318,0.877,2319,0.877,2320,0.877,2321,0.633,2322,0.792,2323,1.918,2324,0.478,2325,0.877,2326,0.877,2327,0.633,2328,0.877,2329,0.877,2330,0.694,2331,2.064,2332,2.263,2333,1.04,2334,1.533,2335,0.877,2336,1.631,2337,0.877,2338,0.877,2339,0.877,2340,0.792,2341,0.792,2342,0.877,2343,1.631,2344,0.694,2345,1.06,2346,0.877,2347,0.877,2348,0.736,2349,4.587,2350,3.818,2351,3.366,2352,0.877,2353,1.631,2354,0.877,2355,1.631,2356,0.877,2357,1.473,2358,1.368,2359,1.368,2360,1.631,2361,1.631,2362,0.877,2363,5.362,2364,0.302,2365,0.661,2366,2.877,2367,5.083,2368,2.285,2369,2.481,2370,4.329,2371,0.877,2372,2.285,2373,1.722,2374,4.917,2375,0.877,2376,0.877,2377,3.04,2378,4.917,2379,0.877,2380,1.631,2381,2.154,2382,1.431,2383,2.859,2384,0.877,2385,0.877,2386,1.631,2387,0.588,2388,0.877,2389,3.818,2390,1.631,2391,1.631,2392,1.631,2393,2.859,2394,1.631,2395,1.473,2396,4.223,2397,0.877,2398,0.877,2399,0.877,2400,1.631,2401,0.877,2402,0.877,2403,0.877,2404,0.877,2405,0.877,2406,0.877,2407,0.877,2408,0.877,2409,0.877,2410,0.633,2411,0.877,2412,0.877,2413,0.877,2414,0.877,2415,1.631,2416,0.877,2417,1.631,2418,0.877,2419,0.975,2420,0.877,2421,0.877,2422,0.877,2423,1.631,2424,0.877,2425,0.877,2426,1.631,2427,0.877,2428,0.877,2429,0.877,2430,0.877,2431,0.877,2432,0.877,2433,0.877,2434,3.343,2435,0.877,2436,0.877,2437,0.736,2438,0.57,2439,1.631,2440,1.918,2441,1.631,2442,1.631,2443,1.631,2444,0.877,2445,1.473,2446,0.877,2447,1.631,2448,1.809,2449,0.736,2450,0.877,2451,0.877,2452,0.736,2453,0.877,2454,0.609,2455,0.877,2456,0.877,2457,0.57,2458,4.587,2459,2.154,2460,0.694,2461,1.368,2462,1.649,2463,0.792,2464,0.877,2465,0.792,2466,0.609,2467,0.419,2468,1.666,2469,0.877,2470,0.793,2471,0.877,2472,0.877,2473,0.877,2474,0.877,2475,0.877,2476,0.877,2477,0.877,2478,0.877,2479,0.877,2480,0.877,2481,0.877,2482,0.877,2483,0.877,2484,0.877,2485,0.877,2486,0.694,2487,0.877,2488,0.694,2489,0.877,2490,1.918,2491,0.694,2492,0.736,2493,0.877,2494,1.473,2495,3.818,2496,0.633,2497,1.473,2498,5.218,2499,2.285,2500,0.877,2501,0.877,2502,0.877,2503,0.877,2504,0.877,2505,0.877,2506,0.877,2507,0.877,2508,0.877,2509,0.877,2510,0.877,2511,0.877,2512,0.877,2513,0.877,2514,0.877,2515,0.877,2516,0.877,2517,1.631,2518,0.877,2519,0.877,2520,0.877,2521,0.877,2522,0.877,2523,0.877,2524,0.736,2525,4.329,2526,3.04,2527,0.877,2528,2.582,2529,0.877,2530,0.877,2531,1.631,2532,1.631,2533,2.285,2534,3.366,2535,3.818,2536,0.877,2537,0.877,2538,1.631,2539,1.631,2540,0.877,2541,0.877,2542,1.368,2543,1.631,2544,1.631,2545,0.877,2546,0.877,2547,1.631,2548,0.877,2549,0.877,2550,0.877,2551,0.736,2552,1.291,2553,1.631,2554,1.631,2555,0.57,2556,0.792,2557,0.877,2558,0.877,2559,0.877,2560,0.877,2561,0.877,2562,0.877,2563,0.877,2564,0.742,2565,1.473,2566,0.877,2567,0.877,2568,1.368,2569,0.694,2570,1.696,2571,2.859,2572,1.631,2573,1.229,2574,0.877,2575,0.609,2576,0.877,2577,0.877,2578,0.877,2579,4.223,2580,0.792,2581,0.877,2582,0.877,2583,0.792,2584,0.609,2585,1.291,2586,0.633,2587,0.459,2588,0.736,2589,0.877,2590,0.736,2591,0.736,2592,1.368,2593,0.694,2594,0.792,2595,0.694,2596,1.631,2597,1.291,2598,0.736,2599,0.877,2600,1.029,2601,0.736,2602,0.877,2603,0.694,2604,0.633,2605,1.631,2606,0.877,2607,0.792,2608,0.694,2609,0.736,2610,0.792,2611,0.511,2612,0.736,2613,0.694,2614,0.736,2615,0.877,2616,0.877,2617,0.877]],["description//tracks/python-101/top-questions/",[1287,1.69,1611,0.563,1664,2.637,1665,2.753,1668,3.299,2030,2.753,2031,3.299]],["title//tracks/python-101/standard_library/threading",[332,2.73,1301,1.707,2618,4.289]],["content//tracks/python-101/standard_library/threading",[6,0.325,14,2.085,17,3.51,27,2.383,34,2.152,49,1.825,58,2.154,65,1.148,68,1.237,71,2.085,80,1.93,89,3.065,90,4.587,110,1.436,137,1.249,175,0.706,176,1.358,234,1.959,240,3.07,245,2.165,246,1.45,263,2.733,268,2.542,288,1.17,295,2.323,301,2.595,332,5.585,342,2.848,343,2.083,344,0.706,358,4.417,398,3.214,401,4.443,437,2.662,464,3.034,465,3.384,477,3.446,479,1.281,526,4.587,536,1.237,542,2.681,552,7.22,553,3.808,556,3.18,563,4.935,583,4.087,800,3.113,848,4.417,918,1.706,1036,2.8,1046,3.107,1055,2,1068,4.833,1078,4.791,1088,2.004,1301,2.965,1331,1.979,1341,2.302,1346,6.794,1447,2.302,1611,1.055,1652,2.562,1656,2.356,1661,2.329,1678,3.268,1740,3.895,1751,2.542,1769,3.51,1881,3.384,1920,2.93,2026,5.412,2055,3.651,2287,4.195,2607,6.175,2618,8.058,2619,4.75,2620,5.412,2621,6.175,2622,5.412,2623,8.603,2624,6.175,2625,6.837,2626,5.738,2627,8.603,2628,6.837,2629,3.384,2630,6.837,2631,6.837,2632,6.837,2633,6.837,2634,6.837,2635,6.837,2636,6.837,2637,8.603,2638,6.837,2639,6.837,2640,7.769,2641,5.152,2642,5.738,2643,3.065,2644,6.837,2645,3.987,2646,5.152,2647,3.214,2648,5.738,2649,5.412,2650,6.837]],["description//tracks/python-101/standard_library/threading",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/sys",[1301,1.964,2584,4.331]],["content//tracks/python-101/standard_library/sys",[1,1.884,6,0.346,14,2.425,29,2.133,34,2.157,38,1.18,47,4.057,63,3.615,65,1.335,71,1.844,89,3.563,96,1.383,101,4.043,102,2.374,120,1.464,175,0.973,221,2,240,2.158,245,1.522,264,2.108,268,2.624,270,2.519,289,2.02,295,1.493,332,4.475,337,2.646,343,1.464,356,0.76,362,2.06,369,2.843,381,2.386,422,1.493,462,1.583,467,2.399,468,2.484,473,4.043,474,2.941,477,3.047,507,1.905,542,1.884,593,1.463,600,1.614,603,3.711,606,2.158,628,2.301,635,2.707,756,1.947,757,4.318,831,4.201,995,2.941,1036,1.969,1057,3.737,1066,2.942,1089,2.184,1100,4.891,1226,3.229,1231,5.738,1284,2.184,1301,3.229,1341,2.99,1424,2.184,1443,3.368,1447,3.387,1493,5.738,1536,3.862,1597,2.797,1611,1.605,1648,3.105,1652,3.842,1661,3.024,1747,2.036,1829,2.266,1863,4.44,1864,3.527,1874,4.057,1875,5.99,1920,3.492,1930,2.165,1978,3.445,2099,2.941,2101,5.449,2110,6.672,2111,6.672,2182,4.787,2214,3.711,2244,3.615,2257,5.461,2258,2.843,2584,7.122,2652,4.201,2653,7.179,2654,7.949,2655,7.949,2656,6.047,2657,7.949,2658,6.047,2659,4.636,2660,3.93,2661,7.949,2662,2.45,2663,8.88,2664,9.798,2665,7.949,2666,8.88,2667,6.047,2668,5.075,2669,4.557,2670,5.075,2671,7.949,2672,6.047,2673,6.047,2674,6.047,2675,6.047,2676,6.047,2677,4.557,2678,3.815,2679,6.047,2680,4.787,2681,6.047,2682,6.047,2683,6.047,2684,4.365,2685,6.047,2686,6.047,2687,6.047,2688,5.075,2689,6.047,2690,4.201,2691,6.047,2692,3.615,2693,3.862,2694,5.075,2695,4.787,2696,6.047,2697,3.815]],["description//tracks/python-101/standard_library/sys",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/subprocess",[1301,1.964,2669,4.698]],["content//tracks/python-101/standard_library/subprocess",[6,0.318,26,1.066,32,1.739,58,2.284,65,1.217,68,1.749,101,3.301,102,2.245,124,1.495,139,1.772,175,0.748,176,1.44,191,1.642,206,2.358,212,2.527,216,1.739,221,1.825,234,1.509,240,2.588,247,3.25,263,2.898,295,1.79,304,3.654,358,4.581,362,1.879,375,2.36,406,3.654,422,1.815,444,4.449,465,4.416,479,0.987,487,3.466,488,2.334,542,2.259,548,2.414,556,3.112,593,1.593,600,1.24,757,3.526,832,3.654,849,1.481,917,2.456,935,2.099,938,2.358,939,2.651,1057,4.195,1088,2.533,1255,2.752,1301,3.262,1447,2.441,1536,3.153,1611,1.376,1620,4.712,1632,1.897,1661,2.469,1747,3.004,1811,5.082,1863,3.201,1920,2.469,1930,2.746,2662,4.086,2669,7.945,2698,3.654,2699,4.339,2700,8.923,2701,6.548,2702,7.251,2703,5.629,2704,7.251,2705,7.251,2706,7.251,2707,7.251,2708,7.251,2709,7.251,2710,5.037,2711,6.085,2712,5.464,2713,6.085]],["description//tracks/python-101/standard_library/subprocess",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/smtplib",[6,0.158,1301,1.509,2714,3.458,2715,3.793]],["content//tracks/python-101/standard_library/smtplib",[6,0.355,65,1.272,110,1.591,124,1.562,139,2.24,190,2.652,234,1.907,238,3.621,240,2.703,288,1.296,305,3.448,333,2.493,408,3.246,435,5.059,437,3.568,452,5.478,465,3.749,479,1.031,487,4.71,542,2.855,556,2.439,593,1.248,595,2.804,750,3.964,886,4.315,934,4.535,1110,2.769,1141,5.082,1301,2.886,1307,5.082,1441,4.922,1610,2.769,1611,1.413,1920,2.58,2098,3.503,2099,3.683,2715,7.799,2716,6.282,2717,7.574,2718,6.357,2719,6.84,2720,8.898,2721,5.262,2722,8.269,2723,4.528,2724,5.262,2725,7.574,2726,7.574,2727,4.893,2728,7.574,2729,7.691,2730,9.164,2731,5.488,2732,7.574,2733,9.164,2734,7.574,2735,7.574,2736,7.574,2737,7.574,2738,7.574,2739,7.574,2740,7.574,2741,7.574,2742,7.574]],["description//tracks/python-101/standard_library/smtplib",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/os",[1301,1.964,1377,3.551]],["content//tracks/python-101/standard_library/os",[1,2.048,6,0.348,14,2.969,27,2.291,34,1.503,71,2.005,101,2.992,102,1.654,110,1.381,112,2.678,118,1.808,124,1.355,164,2.24,175,0.678,176,1.666,191,1.488,206,1.737,216,2.335,229,2.663,245,1.654,270,4.055,272,2.776,289,2.074,300,3.338,319,3.796,331,2.672,337,3.241,361,3.509,464,2.318,473,2.992,479,0.895,488,2.116,490,1.607,539,3.744,542,2.048,606,3.475,793,2.213,849,1.342,852,3.944,991,2.705,1036,2.14,1066,3.807,1088,1.955,1255,3.184,1301,2.643,1363,2.433,1377,4.779,1585,2.817,1675,4.308,1747,3.278,1803,3.583,1864,3.833,1890,2.992,1920,2.238,1930,2.517,1931,3.744,1981,5.293,2103,4.271,2145,4.033,2258,4.729,2259,2.901,2261,6.056,2323,5.516,2659,6.413,2662,3.399,2703,4.146,2743,7.577,2744,6.573,2745,6.573,2746,6.573,2747,6.573,2748,6.573,2749,5.936,2750,6.573,2751,8.39,2752,5.936,2753,6.573,2754,6.573,2755,6.573,2756,8.39,2757,6.573,2758,6.573,2759,6.573,2760,6.573,2761,6.573,2762,6.573,2763,6.573,2764,6.573,2765,3.312,2766,6.573,2767,5.203,2768,4.271,2769,6.573,2770,6.573,2771,6.573,2772,6.573,2773,6.573,2774,6.573,2775,6.573,2776,6.573,2777,6.573,2778,4.566,2779,6.573,2780,6.573,2781,6.573,2782,6.573,2783,6.573,2784,6.573,2785,6.573,2786,6.573,2787,6.573,2788,6.573,2789,3.312,2790,6.573,2791,6.573,2792,6.573,2793,6.573,2794,6.573,2795,6.573]],["description//tracks/python-101/standard_library/os",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/logging",[1151,2.883,1301,1.964]],["content//tracks/python-101/standard_library/logging",[6,0.308,32,1.316,38,1.39,71,2.06,75,1.586,80,1.515,107,1.767,137,1.559,164,2.498,175,0.697,176,1.859,191,1.529,208,3.467,212,2.354,230,1.529,234,2.046,240,2.41,288,1.155,289,1.929,351,1.803,356,1.073,359,2.531,421,2.894,422,1.268,432,2.813,437,4.239,452,6.063,459,3.116,470,3.349,476,2.664,479,1.274,518,2.104,536,1.222,542,2.104,556,2.174,620,4.26,670,3.938,767,5.735,787,2.774,817,2.06,828,3.342,845,4.096,905,0.946,938,1.785,1024,1.292,1049,2.981,1069,6.063,1090,6.916,1151,4.691,1226,3.606,1301,3.195,1363,3.834,1484,2.813,1611,1.042,1863,2.981,1920,2.3,2468,3.342,2697,4.26,2796,7.477,2797,5.668,2798,10.358,2799,8.536,2800,6.757,2801,10.142,2802,8.536,2803,7.164,2804,6.753,2805,6.753,2806,6.753,2807,6.753,2808,6.753,2809,6.753,2810,6.753,2811,6.753,2812,6.753,2813,6.753,2814,6.753,2815,6.753,2816,6.753,2817,6.753,2818,6.753,2819,6.753,2820,3.886,2821,7.409,2822,5.668,2823,5.668,2824,6.753,2825,6.099]],["description//tracks/python-101/standard_library/logging",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/datetime_time",[1301,1.964,2826,6.234]],["content//tracks/python-101/standard_library/datetime_time",[2,4.249,6,0.356,14,2.637,18,1.974,30,1.786,33,5.289,34,1.754,47,3.845,58,2.723,102,2.546,110,2.022,112,2.11,114,1.027,136,1.273,137,1.047,149,5.166,152,4.809,175,0.591,176,1.138,191,1.737,203,1.825,212,2.674,216,1.374,240,3.857,245,1.442,337,3.368,356,1.087,369,2.694,375,1.865,422,1.076,465,5.007,467,2.609,474,4.204,478,3.76,542,2.39,556,2.973,563,4.136,593,0.944,606,3.295,608,3.981,643,3.724,758,1.226,771,3.342,910,1.748,938,1.514,1036,2.815,1060,5.175,1100,4.204,1138,1.47,1301,2.908,1410,4.369,1443,3.192,1611,1.183,1649,3.516,1652,3.24,1656,2.643,1708,4.985,1829,3.24,1920,2.612,1925,7.253,1952,3.865,1984,2.888,1996,2.942,2014,4.536,2146,4.525,2218,3.425,2287,6.308,2419,3.425,2555,3.724,2586,7.421,2622,4.536,2629,4.57,2698,2.888,2827,5.73,2828,5.73,2829,5.73,2830,5.73,2831,6.844,2832,5.328,2833,7.67,2834,5.73,2835,5.175,2836,4.809,2837,3.264,2838,3.615,2839,3.192,2840,7.67,2841,4.536,2842,4.809,2843,4.809,2844,4.809,2845,5.73,2846,6.927,2847,5.73,2848,5.73,2849,7.67,2850,5.73,2851,5.73,2852,5.73,2853,7.67,2854,5.73,2855,5.73,2856,5.14,2857,5.73,2858,7.67,2859,3.516,2860,5.73,2861,7.67,2862,7.67,2863,6.927,2864,7.67,2865,7.67,2866,5.73,2867,5.73,2868,5.73,2869,4.809,2870,3.192,2871,5.73,2872,6.898,2873,3.425,2874,5.73,2875,5.175,2876,5.175,2877,5.73,2878,5.73,2879,5.73,2880,4.536,2881,7.67,2882,5.175,2883,5.73,2884,5.73,2885,5.73,2886,4.809,2887,5.73,2888,3.845,2889,5.175,2890,5.73,2891,5.73,2892,5.73,2893,5.73,2894,5.73,2895,7.67,2896,5.73,2897,5.73,2898,5.73,2899,5.73,2900,5.73]],["description//tracks/python-101/standard_library/datetime_time",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/configparser",[1301,1.964,2901,4.935]],["content//tracks/python-101/standard_library/configparser",[6,0.33,26,1.046,38,1.309,49,1.899,65,1.195,73,1.899,110,1.852,112,2.957,136,1.96,137,1.299,175,0.734,191,1.611,205,3.878,221,2.219,234,1.835,240,2.539,254,4.773,289,2.216,301,3.347,337,2.936,344,0.734,354,1.844,369,3.345,408,3.779,468,4.481,476,2.807,479,0.968,488,2.29,556,3.225,655,2.451,767,4.149,777,3.345,817,2.17,845,2.963,1298,4.253,1301,3.019,1364,2.922,1611,1.097,1648,3.653,1680,2.666,1747,2.395,1920,3.003,2132,4.052,2284,4.253,2678,4.488,2692,5.272,2693,3.835,2901,8.308,2902,6.273,2903,9.584,2904,4.528,2905,8.819,2906,4.773,2907,7.114,2908,8.819,2909,8.819,2910,9.301,2911,9.478,2912,8.819,2913,7.114,2914,7.114,2915,5.338,2916,7.114,2917,7.114,2918,7.114,2919,7.114,2920,7.114,2921,7.114,2922,7.114,2923,7.114]],["description//tracks/python-101/standard_library/configparser",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/asyncio",[1301,1.964,2924,4.935]],["content//tracks/python-101/standard_library/asyncio",[5,3.815,6,0.33,27,2.491,32,1.724,34,2.195,53,3.011,55,3.895,65,1.2,67,2.379,110,1.501,137,1.305,175,0.737,176,1.419,234,1.487,268,2.613,346,7.601,356,0.898,358,3.669,366,3.359,372,3.018,383,2.156,388,7.583,395,3.74,436,7.561,462,1.87,593,1.457,606,2.55,626,2.134,859,3.018,915,2.935,918,1.234,1036,3.357,1046,3.194,1282,3.74,1283,3.669,1301,3.025,1611,1.364,1619,4.239,1622,5.037,1652,2.678,1661,2.433,1751,2.965,1769,3.669,1829,2.678,1856,5.384,1861,4.964,1869,2.203,1920,2.433,1979,3.062,2027,5.037,2101,5.426,2154,5.158,2255,5.656,2382,2.678,2454,4.964,2620,7,2621,6.453,2712,5.384,2924,7.943,2925,5.997,2926,5.384,2927,9.603,2928,8.842,2929,4.09,2930,7.145,2931,5.384,2932,3.601,2933,7.145,2934,7.145,2935,10.034,2936,7.145,2937,4.508,2938,7.145,2939,7.145,2940,8.842,2941,8.842,2942,8.842,2943,7.145,2944,9.603,2945,8.842,2946,7.145,2947,7.145,2948,7.145,2949,3.018,2950,6.453]],["description//tracks/python-101/standard_library/asyncio",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/argparse",[1301,1.964,2951,5.232]],["content//tracks/python-101/standard_library/argparse",[6,0.327,74,1.654,101,4.692,102,2.594,110,1.623,112,2.734,114,1.386,120,1.871,146,3.895,147,1.964,161,2.383,176,1.535,221,2.334,234,1.93,260,4.213,263,3.09,268,2.284,300,2.792,478,4.034,479,1.052,593,1.274,595,2.861,600,1.322,628,2.237,799,3.895,814,5.369,1086,4.62,1100,4.833,1301,2.435,1611,1.192,1680,2.897,1688,3.895,1834,7.868,1844,5.023,1920,2.632,2331,5.579,2951,8.651,2952,6.98,2953,7.729,2954,9.276,2955,6.98,2956,7.729,2957,7.729,2958,7.729,2959,7.729,2960,7.729,2961,7.729,2962,7.729,2963,7.729,2964,6.224,2965,7.729,2966,7.729,2967,7.729,2968,7.729,2969,7.729,2970,7.729,2971,7.729,2972,7.729,2973,5.579,2974,4.045,2975,4.213,2976,2.602,2977,7.729]],["description//tracks/python-101/standard_library/argparse",[1611,0.974,2651,1.969]],["title//tracks/python-101/standard_library/_index",[1301,1.707,1863,2.392,2978,4.289]],["content//tracks/python-101/standard_library/_index",[2,3.074,14,2.124,33,4.646,34,1.989,38,1.034,58,2.193,65,1.169,68,1.575,71,2.124,75,1.475,89,3.121,101,3.961,102,2.19,105,1.84,110,2.193,136,1.547,149,4.537,176,1.383,191,2.149,206,1.84,214,3.028,221,1.752,235,2.626,245,1.752,260,3.796,263,2.784,266,5.026,268,2.058,288,1.191,289,1.957,331,2.217,332,3.509,356,0.876,366,3.274,397,2.169,435,3.575,436,5.247,464,2.456,465,3.446,468,3.574,487,3.329,490,1.702,542,3.098,593,1.638,626,2.079,755,3.074,758,1.49,767,4.061,774,2.93,914,3.966,1036,2.267,1088,2.028,1100,3.386,1121,4.162,1151,3.221,1301,3.515,1363,2.577,1375,4.393,1377,3.966,1443,3.878,1447,2.344,1611,1.61,1652,2.61,1656,3.425,1678,3.329,1680,3.261,1747,2.344,1802,4.393,1829,2.61,1863,3.074,1869,2.147,1930,2.37,2067,2.17,2584,4.837,2586,5.026,2618,5.512,2659,4.061,2662,3.526,2669,5.247,2699,3.386,2714,6.281,2715,6.888,2716,5.339,2721,4.837,2722,5.844,2796,5.026,2832,4.837,2901,5.512,2924,5.512,2951,5.844,2979,4.672,2980,5.247,2981,5.512,2982,4.837,2983,6.963,2984,6.963,2985,4.393]],["description//tracks/python-101/standard_library/_index",[1611,0.974,2651,1.969]],["title//tracks/python-101/frameworks/tornado",[2986,6.16]],["content//tracks/python-101/frameworks/tornado",[2,4.095,6,0.363,18,2.905,56,3.706,58,2.087,68,1.199,75,1.429,101,3.016,102,1.667,111,1.879,114,1.663,120,2.042,124,1.366,183,2.614,191,1.91,195,3.961,216,1.589,234,1.379,240,2.365,251,3.222,259,2.422,265,2.514,268,2.492,297,3.402,300,2.393,344,0.87,356,0.833,378,4.717,431,2.11,465,3.279,468,2.722,478,2.881,479,1.263,490,1.62,491,5.561,544,3.774,556,2.133,600,1.134,606,3.01,623,1.841,625,4.603,709,3.774,741,2.58,745,3.128,781,3.016,787,2.722,823,3.339,849,1.353,909,1.979,918,1.144,993,2.422,1019,3.083,1036,2.745,1049,2.925,1090,4.306,1101,3.774,1110,3.083,1231,4.783,1300,2.799,1341,3.471,1386,2.97,1611,1.022,1639,1.999,1716,3.864,1729,3.167,1751,3.046,1769,3.402,1829,2.483,1916,4.918,1920,3.159,1958,3.723,1980,5.561,2024,3.961,2264,4.065,2587,4.855,2937,6.608,2986,8.196,2987,5.48,2988,6.626,2989,6.626,2990,6.626,2991,6.626,2992,8.433,2993,9.765,2994,6.626,2995,6.626,2996,8.433,2997,6.626,2998,6.626,2999,6.626,3000,5.41,3001,8.433,3002,6.626,3003,6.626,3004,6.626,3005,6.626,3006,6.626,3007,6.626,3008,4.503,3009,5.174,3010,7.078,3011,6.626]],["description//tracks/python-101/frameworks/tornado",[1611,0.974,2651,1.969]],["title//tracks/python-101/frameworks/flask",[3012,5.53]],["content//tracks/python-101/frameworks/flask",[6,0.365,18,2.2,38,0.948,56,2.423,65,1.072,75,1.632,91,2.907,137,1.166,176,1.636,222,2.87,230,1.446,234,1.714,344,0.994,351,1.704,352,2.033,378,4.272,425,2.87,426,4.489,431,2.903,458,4.284,544,3.637,606,2.279,623,2.924,648,2.454,668,6.869,678,3.278,741,2.486,755,2.818,756,2.056,918,1.103,993,3.011,1057,3.002,1299,3.217,1302,3.937,1308,2.198,1363,2.363,1386,2.862,1404,4.028,1405,2.306,1611,0.985,1618,2.15,1729,3.052,1751,2.946,1827,5.449,1829,3.086,1920,2.805,1958,2.818,2619,4.435,2678,4.028,2985,4.028,2987,5.352,3000,3.723,3012,7.929,3013,3.409,3014,4.811,3015,3.749,3016,8.235,3017,6.912,3018,6.385,3019,8.235,3020,5.766,3021,6.385,3022,6.385,3023,4.609,3024,6.385,3025,6.385,3026,6.385,3027,6.385,3028,7.196,3029,8.235,3030,8.367,3031,9.969,3032,8.235,3033,6.385,3034,8.257,3035,6.385,3036,5.757,3037,9.631,3038,9.003,3039,9.003,3040,9.631,3041,6.385,3042,9.116,3043,9.116,3044,9.116,3045,6.385,3046,6.385,3047,6.385,3048,6.385,3049,6.385,3050,9.116,3051,6.385,3052,6.385,3053,6.385,3054,6.385,3055,6.385,3056,6.385,3057,6.385,3058,6.385,3059,6.385,3060,6.385]],["description//tracks/python-101/frameworks/flask",[1611,0.974,2651,1.969]],["title//tracks/python-101/frameworks/fastapi",[3061,6.16]],["content//tracks/python-101/frameworks/fastapi",[1,2.581,6,0.342,35,3.369,38,1.435,52,2.802,56,3.475,65,1.391,68,1.166,75,1.638,91,3.771,111,1.827,114,1.155,139,1.575,164,1.72,175,0.665,176,1.818,190,1.865,234,1.341,246,1.366,261,2.445,268,1.904,288,1.102,331,2.052,337,2.758,344,0.945,354,1.67,356,1.042,378,3.55,388,7.217,425,2.246,431,2.052,436,6.242,452,4.952,462,1.686,479,0.877,544,3.67,621,5.819,623,2.778,663,3.133,668,6.899,678,3.308,741,2.509,774,2.169,781,2.933,849,1.316,905,1.477,917,1.637,918,1.113,993,3.029,1036,2.097,1101,3.67,1102,4.651,1140,4.323,1308,1.72,1386,2.888,1583,4.065,1611,0.994,1632,1.686,1729,3.08,1751,2.954,1843,4.042,1860,4.614,1861,4.476,1863,2.844,1865,5.1,1920,3.118,1958,3.657,1999,5.408,2078,4.476,2311,7.684,2932,3.247,2987,5.383,3000,3.758,3015,4.399,3017,5.408,3023,6.976,3028,4.651,3061,8.938,3062,4.187,3063,6.443,3064,6.443,3065,3.852,3066,6.443,3067,4.187,3068,8.284,3069,6.443,3070,8.284,3071,6.443,3072,5.819,3073,6.443,3074,6.443,3075,6.443,3076,7.399,3077,6.443,3078,6.443,3079,6.443,3080,6.443,3081,6.443,3082,6.443,3083,6.443,3084,9.998,3085,9.156,3086,9.156,3087,9.156,3088,6.443,3089,6.443,3090,6.443,3091,6.443,3092,4.855,3093,6.443,3094,6.443,3095,6.443,3096,6.443,3097,6.443,3098,5.819,3099,4.476,3100,6.443,3101,6.443]],["description//tracks/python-101/frameworks/fastapi",[1611,0.974,2651,1.969]],["title//tracks/python-101/frameworks/django",[3102,6.16]],["content//tracks/python-101/frameworks/django",[1,2.037,6,0.354,11,3.294,34,2.108,38,0.971,54,4.542,65,1.098,68,1.183,75,1.702,80,1.467,101,2.976,102,1.645,111,1.854,137,1.194,176,1.831,188,4.289,191,1.894,202,1.78,216,1.568,222,3.387,234,1.74,246,1.386,261,2.481,267,3.455,288,1.118,289,1.9,331,2.082,342,2.723,344,0.863,393,1.728,422,1.228,425,2.279,431,2.082,462,1.711,479,1.138,507,2.059,536,1.183,542,2.037,544,3.724,598,2.545,623,2.854,678,3.356,741,2.545,750,3.422,771,3.813,817,2.55,821,4.542,849,1.708,918,1.129,938,1.728,993,2.39,1042,3.908,1269,2.45,1296,2.481,1364,2.685,1405,2.361,1423,4.138,1470,2.279,1528,3.636,1611,1.29,1618,2.201,1628,2.802,1632,1.711,1670,5.487,1729,3.125,1734,3.491,1745,3.214,1751,2.871,1829,2.45,1869,2.015,1920,3.309,2218,3.908,2949,2.762,2987,4.248,3000,3.813,3009,5.131,3015,2.976,3017,5.487,3034,8.164,3038,5.904,3039,5.904,3102,8.764,3103,4.542,3104,6.538,3105,6.538,3106,5.487,3107,4.011,3108,6.538,3109,8.361,3110,6.538,3111,6.538,3112,5.904,3113,6.538,3114,4.926,3115,6.538,3116,6.538,3117,6.538,3118,6.538,3119,4.719,3120,4.719,3121,6.538,3122,6.538,3123,9.219,3124,6.538,3125,8.361,3126,6.538,3127,6.538,3128,6.538,3129,8.361,3130,9.219,3131,6.538,3132,6.538,3133,8.361,3134,8.361,3135,8.361,3136,6.538,3137,6.538,3138,6.538,3139,6.538,3140,6.538,3141,6.538,3142,6.538,3143,3.235,3144,6.538,3145,3.564,3146,4.124]],["description//tracks/python-101/frameworks/django",[1611,0.974,2651,1.969]],["title//tracks/python-101/frameworks/_index",[544,3.551,3147,3.398]],["content//tracks/python-101/frameworks/_index",[35,2.554,38,1.333,66,6.149,74,1.568,75,1.846,137,1.773,139,2.195,141,2.9,176,2.063,199,5.799,246,1.904,259,2.679,261,2.78,263,3.59,267,3.639,288,1.253,344,0.927,352,2.333,362,1.898,375,2.385,421,3.14,427,2.78,431,3.409,436,6.766,542,3.154,544,5.766,560,2.968,637,2.968,655,2.524,713,4.379,741,2.853,755,3.234,938,1.936,1143,3.009,1426,3.563,1439,4.379,1504,3.994,1528,3.186,1611,1.561,1618,2.467,1620,4.761,1621,4.915,1632,2.35,1639,3.055,1690,3.335,1734,3.912,2067,2.283,2619,5.089,2699,3.563,2986,7.536,3012,6.766,3015,3.335,3061,7.536,3062,4.761,3098,6.616,3102,7.536,3103,5.089,3148,7.326,3149,5.799,3150,3.994,3151,6.616,3152,5.089,3153,7.326,3154,3.094,3155,6.616,3156,5.089,3157,8.109,3158,6.238,3159,2.646]],["description//tracks/python-101/frameworks/_index",[1611,0.974,2651,1.969]],["title//tracks/python-101/external_packages/requests",[1296,2.366,1404,3.933]],["content//tracks/python-101/external_packages/requests",[6,0.354,34,1.804,35,2.75,56,4.081,67,2.627,111,2.237,137,1.441,139,1.929,164,2.106,191,1.787,234,1.954,263,3.154,381,3.113,426,5.119,435,5.148,542,2.459,593,1.3,655,2.718,918,1.363,993,2.885,1295,4.213,1296,2.994,1301,2.958,1302,3.772,1404,6.785,1611,1.217,1920,3.198,2699,3.837,2723,4.717,2987,6.103,3000,4.601,3009,5.762,3010,6.622,3160,9.391,3161,7.89,3162,9.391,3163,7.89,3164,7.89,3165,7.89,3166,7.89,3167,7.89,3168,7.89,3169,7.89,3170,7.89,3171,7.89,3172,3.772,3173,6.246]],["description//tracks/python-101/external_packages/requests",[1611,0.974,2651,1.969]],["title//tracks/python-101/external_packages/install_packages",[164,1.664,1296,2.366]],["content//tracks/python-101/external_packages/install_packages",[6,0.231,29,2.48,38,1.044,64,2.191,65,1.181,105,2.52,111,2.704,124,1.45,128,5.077,164,2.923,192,3.481,206,1.859,216,2.099,221,1.77,225,2.1,229,2.85,246,2.116,289,1.45,300,2.54,307,2.811,331,2.24,343,1.703,354,2.586,381,2.774,471,3.104,593,1.691,787,2.889,849,2.096,856,2.889,859,2.971,931,2.451,993,3.753,1089,2.54,1110,2.571,1150,4.57,1293,3.917,1295,5.091,1296,4.263,1302,3.362,1307,4.719,1424,2.54,1470,2.451,1592,2.368,1611,1.68,1623,4.886,1651,3.014,1658,4.315,1729,3.362,1869,2.168,1984,3.544,2067,2.191,2290,6.931,2698,3.544,2987,6.897,3143,3.481,3174,2.368,3175,4.101,3176,9.978,3177,9.534,3178,7.033,3179,3.202,3180,9.534,3181,7.033,3182,7.033,3183,6.351,3184,7.547,3185,6.351,3186,7.033,3187,3.42]],["description//tracks/python-101/external_packages/install_packages",[1611,0.974,2651,1.969]],["title//tracks/python-101/external_packages/_index",[530,2.467,1301,1.707,3188,5.418]],["content//tracks/python-101/external_packages/_index",[29,2.899,56,3.119,60,4.914,75,1.393,176,1.911,190,2.379,191,1.862,344,0.993,426,4.481,431,3.248,544,4.682,758,1.759,781,3.742,785,2.589,910,2.507,1055,2.404,1057,3.864,1296,3.119,1302,5.027,1404,5.186,1611,1.674,2009,3.523,2290,6.507,2619,5.71,3012,6.194,3143,4.068,3175,4.794,3189,4.389,3190,7.423,3191,7.423,3192,5.933,3193,8.22,3194,7.423,3195,6.899,3196,6.194]],["description//tracks/python-101/external_packages/_index",[1611,0.974,2651,1.969]],["title//tracks/python-101/enhance_python/testing",[259,2.683]],["content//tracks/python-101/enhance_python/testing",[6,0.334,26,0.997,34,1.956,38,1.007,94,4.991,101,3.087,102,1.706,110,1.424,112,2.354,120,1.642,124,1.398,141,1.943,147,1.723,158,2.606,161,2.891,167,4.053,175,0.7,227,3.054,234,1.951,240,2.42,259,3.601,262,6.213,266,4.895,268,2.004,288,1.16,344,0.7,354,1.757,437,2.64,465,4.641,470,2.309,471,2.993,476,2.675,479,0.923,488,2.183,530,4.269,556,3.171,593,1.41,606,2.42,623,2.605,716,3.188,741,2.64,745,2.025,755,3.778,849,1.385,882,3.481,918,1.171,940,3.549,1043,3.863,1049,3.778,1077,4.895,1103,2.785,1242,3.549,1255,2.573,1301,2.696,1341,2.283,1530,3.954,1611,1.32,1661,2.914,1749,3.778,1751,3.064,1769,3.481,1901,4.161,1914,4.406,1920,2.914,1958,3.778,2002,5.399,2055,3.621,2078,4.711,2206,5.11,2366,5.11,3036,4.053,3072,8.468,3197,10.529,3198,4.278,3199,6.124,3200,6.781,3201,6.781,3202,6.781,3203,6.781,3204,6.781,3205,6.781,3206,9.377,3207,6.781,3208,6.781,3209,6.781,3210,6.781,3211,6.781,3212,8.558,3213,4.278,3214,2.824,3215,6.781,3216,8.558,3217,6.781,3218,6.781,3219,6.781,3220,9.377,3221,4.55,3222,6.781,3223,6.781,3224,6.781,3225,9.377,3226,6.781,3227,6.781,3228,6.781,3229,6.781,3230,6.781,3231,6.781,3232,8.558,3233,6.781,3234,6.781,3235,6.781,3236,6.781,3237,5.368,3238,5.368]],["description//tracks/python-101/enhance_python/testing",[1611,0.974,2651,1.969]],["title//tracks/python-101/enhance_python/lambda",[2168,5.81]],["content//tracks/python-101/enhance_python/lambda",[1,2.702,6,0.352,26,1.275,30,2.95,34,2.555,38,1.287,65,1.163,89,3.886,96,1.583,102,1.742,114,1.241,120,2.402,124,1.427,139,1.692,147,2.406,158,2.661,161,2.673,175,0.895,176,1.375,221,1.742,234,1.441,260,4.727,302,3.203,313,2.046,366,3.255,422,1.3,467,2.857,468,2.844,470,2.953,477,3.489,478,3.011,536,1.569,575,3.612,606,2.471,635,2.358,660,6.259,716,3.255,757,3.367,793,2.919,817,2.112,852,3.255,915,3.562,935,1.629,1023,3.624,1085,5.183,1090,4.499,1100,4.969,1138,1.777,1283,4.452,1284,3.132,1447,2.919,1611,1.068,1632,1.812,1661,2.953,1713,5.481,1745,2.661,1749,4.51,1751,2.046,1789,3.771,1811,4.939,1840,5.393,2124,5.481,2143,6.259,2146,4.955,2165,5.811,2168,8.466,2171,5.635,2174,6.024,2643,3.103,2699,3.367,2974,3.624,3239,6.924,3240,5.481,3241,6.924,3242,4.139,3243,6.253,3244,5.811,3245,6.924,3246,6.253,3247,6.924,3248,6.534,3249,5.481,3250,5.481]],["description//tracks/python-101/enhance_python/lambda",[1611,0.974,2651,1.969]],["title//tracks/python-101/enhance_python/decorators",[2078,5.098]],["content//tracks/python-101/enhance_python/decorators",[6,0.335,17,3.816,34,2.441,38,1.484,63,4.443,65,0.918,68,0.99,74,1.17,96,1.25,110,1.773,114,1.332,120,1.324,137,0.999,144,2.216,160,4.83,164,1.46,175,0.935,176,2.071,221,1.376,224,1.884,225,2.22,240,3.013,241,5.047,245,2.28,246,1.79,261,2.076,289,1.127,331,1.742,354,1.417,356,0.688,362,1.417,372,3.14,375,1.78,462,1.431,465,5.403,467,1.65,470,1.863,477,4.255,478,3.94,490,1.337,525,2.49,548,2.811,556,3.415,606,2.653,623,2.632,745,1.633,755,2.414,756,1.761,778,1.46,817,2.267,845,2.278,848,2.808,901,2.751,907,1.16,910,1.668,915,2.246,1036,2.42,1078,3.046,1100,4.607,1138,1.403,1143,2.246,1280,4.703,1283,2.808,1295,4.508,1300,2.31,1447,2.503,1467,4.329,1482,2.785,1611,1.507,1648,2.808,1661,2.875,1677,2.862,1693,3.554,1741,2.344,1747,1.841,1749,3.281,1750,2.53,1751,3.048,1757,4.329,1760,6.238,1803,4.052,1887,5.327,1914,3.554,1920,2.875,1951,4.121,1958,3.727,1961,2.92,2019,6.238,2042,4.329,2052,2.659,2067,1.704,2075,3.554,2078,7.459,2087,6.238,2095,3.948,2110,8.201,2111,7.603,2208,4.59,2287,3.356,2332,5.884,2419,3.269,2462,5.365,2490,7.086,2525,7.139,2555,3.554,2889,6.713,3036,4.443,3251,5.469,3252,8.181,3253,4.561,3254,6.713,3255,5.469,3256,5.469,3257,5.469,3258,8.181,3259,5.469,3260,5.469,3261,5.469,3262,5.469,3263,5.469,3264,7.433,3265,5.469,3266,5.469,3267,5.469,3268,5.469,3269,9.474,3270,6.362,3271,4.939,3272,3.046,3273,3.189,3274,5.469,3275,7.433,3276,5.469,3277,7.086,3278,5.469,3279,5.469,3280,9.059,3281,1.952,3282,5.469,3283,4.329,3284,4.939,3285,5.469,3286,8.443,3287,5.469,3288,5.469,3289,4.939,3290,5.469,3291,5.469,3292,7.433,3293,5.469,3294,5.469,3295,5.469,3296,5.469,3297,4.939,3298,5.469,3299,4.329,3300,4.59]],["description//tracks/python-101/enhance_python/decorators",[1611,0.974,2651,1.969]],["title//tracks/python-101/enhance_python/debugging",[1463,4.5,1611,0.962]],["content//tracks/python-101/enhance_python/debugging",[14,2.914,15,2.582,26,1.511,34,2.285,53,3.253,65,1.784,102,2.673,111,2.489,112,1.943,158,2.715,175,0.729,221,1.777,225,2.109,230,1.6,261,2.681,268,2.087,288,1.208,295,1.743,297,3.626,343,1.71,354,1.83,372,2.984,381,2.786,393,1.867,397,1.76,420,4.334,439,3.321,462,1.848,471,3.118,477,3.559,542,2.736,585,4.59,598,2.75,623,1.963,647,3.027,702,3.321,755,3.118,758,1.512,774,2.378,848,3.626,849,1.793,917,1.795,918,1.22,932,3.267,938,1.867,1024,1.351,1036,3.11,1073,3.934,1226,3.771,1267,5.322,1297,3.85,1301,3.148,1309,3.027,1463,6.337,1482,2.647,1517,7.14,1611,1.585,1632,1.848,1651,3.762,1652,3.745,1681,4.456,1747,2.956,1829,2.647,1891,5.098,1917,4.119,1920,2.405,1954,2.044,1975,5.098,1976,3.934,2067,2.201,2096,4.222,2214,4.334,2382,2.647,2641,5.322,2856,3.771,3198,4.456,3301,9.282,3302,8.387,3303,7.063,3304,3.626,3305,3.559,3306,4.456,3307,7.063,3308,6.379,3309,7.063,3310,6.379,3311,4.119,3312,4.334,3313,7.063,3314,5.928,3315,5.591,3316,5.322,3317,7.063]],["description//tracks/python-101/enhance_python/debugging",[1611,0.974,2651,1.969]],["title//tracks/python-101/enhance_python/closure",[3318,6.628]],["content//tracks/python-101/enhance_python/closure",[6,0.354,30,2.688,34,2.518,38,1.281,47,4.607,48,6.201,80,1.54,89,3.077,110,1.442,112,2.804,120,2.088,137,1.254,147,2.192,158,2.639,175,0.708,176,1.873,216,1.646,221,1.728,234,2.059,263,2.745,306,4.607,356,0.863,397,1.711,474,3.339,476,2.709,477,4.985,530,3.126,536,1.561,548,2.286,606,3.712,623,2.749,675,2.008,793,2.312,817,2.094,901,2.541,1018,2.808,1078,3.824,1100,5.058,1138,1.762,1244,5.787,1447,3.175,1611,1.059,1661,2.937,1688,3.46,1747,2.904,1749,4.163,1750,3.989,1751,2.923,1764,4.462,1782,5.372,1996,4.842,2052,4.586,2146,3.594,2244,4.104,2297,7.106,3036,4.104,3214,3.593,3318,8.934,3319,6.866,3320,6.866,3321,8.625,3322,9.431,3323,6.866,3324,6.866,3325,5.762,3326,8.625,3327,5.156,3328,6.201,3329,6.866,3330,6.866,3331,8.625,3332,8.517,3333,6.866,3334,9.431,3335,6.866,3336,6.866,3337,6.866,3338,8.625,3339,5.174,3340,5.435]],["description//tracks/python-101/enhance_python/closure",[1611,0.974,2651,1.969]],["title//tracks/python-101/enhance_python/_index",[288,0.927,1917,3.16,3341,4.289]],["content//tracks/python-101/enhance_python/_index",[26,1.349,27,2.644,34,1.734,44,2.828,65,1.81,96,1.734,122,4.786,175,0.783,230,1.718,259,3.353,272,3.205,288,1.569,393,2.424,421,3.251,479,1.032,519,3.116,593,1.25,742,1.985,755,4.049,758,1.963,774,2.554,907,1.945,926,3.656,1055,2.219,1087,4.225,1301,2.889,1363,2.808,1431,6.372,1463,7.117,1466,4.93,1611,1.618,1643,4.622,1646,3.566,1656,2.614,1774,4.225,1904,3.509,1954,2.196,2067,2.858,2078,6.849,2079,5.27,2168,7.261,2169,5.716,2980,7.903,3302,6.367,3342,7.586,3343,4.786,3344,6.367,3345,7.586,3346,7.586,3347,7.586,3348,6.005,3349,6.621,3350,6.851,3351,6.851,3352,6.851,3353,3.566,3354,6.005,3355,7.586,3356,6.851,3357,6.367,3358,5.476,3359,5.476]],["description//tracks/python-101/enhance_python/_index",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/types",[344,0.643,655,2.148]],["content//tracks/python-101/basis/types",[1,3.104,6,0.362,30,2.721,88,5.877,112,2.617,114,1.706,120,2.114,147,2.219,161,2.159,221,1.762,257,3.188,302,4.401,344,0.982,356,0.881,375,2.28,397,2.176,441,3.045,479,1.395,518,2.182,593,1.642,655,3.653,702,3.292,745,3.166,777,3.292,793,3.204,795,3.091,851,5.055,855,4.418,935,1.647,938,1.851,1036,2.28,1088,1.632,1290,5.543,1327,4.551,1341,2.358,1590,6.913,1598,4.483,1611,1.468,1618,2.358,1619,3.091,1652,2.624,1696,4.418,1697,6.324,1747,2.358,1790,6.113,1793,6.684,1795,5.277,1799,5.877,1808,6.324,1809,5.277,1815,5.877,1833,5.055,1835,5.055,1838,5.543,1864,5.81,1868,7.122,1869,3.071,1873,7.329,1964,4.551,2045,3.817,2129,6.066,2158,4.084,2568,5.877,3240,5.543,3360,7.003,3361,7.191,3362,6.878,3363,7.329,3364,5.877,3365,5.277,3366,5.877,3367,5.877,3368,5.877,3369,5.877]],["description//tracks/python-101/basis/types",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/tuples",[1790,4.503]],["content//tracks/python-101/basis/tuples",[1,3.13,6,0.36,30,2.04,38,0.972,67,2.179,80,1.469,96,1.913,110,1.375,114,1.743,118,2.302,120,2.354,137,1.196,147,2.127,161,2.018,175,1.003,176,1.832,197,2.108,221,2.321,234,1.362,263,2.617,301,2.484,302,3.028,319,4.127,344,0.952,372,2.765,376,2.805,459,2.179,467,1.976,473,4.199,479,1.255,490,1.6,527,3.729,556,3.308,600,1.719,606,2.987,625,4.548,655,2.883,745,3.215,756,2.108,758,1.401,774,2.204,778,1.747,793,2.204,910,2.552,1079,2.516,1089,2.365,1585,3.586,1611,1.01,1622,3.729,1710,7.871,1748,5.494,1749,3.694,1789,2.847,1790,6.768,1791,3.24,1795,4.933,1796,4.13,1799,7.023,1805,6.306,1815,5.494,1829,2.453,1864,3.818,2003,4.725,2006,4.885,2007,5.494,2345,4.254,2457,6.318,2601,5.494,3143,3.24,3214,3.486,3361,6.041,3370,5.723,3371,6.546,3372,6.546,3373,6.546,3374,6.546,3375,6.546,3376,7.417,3377,6.546,3378,5.912,3379,6.546,3380,4.548,3381,6.546,3382,7.558,3383,6.546,3384,6.546,3385,4.13,3386,3.818,3387,7.302,3388,6.546,3389,5.494,3390,6.546]],["description//tracks/python-101/basis/tuples",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/strings",[102,1.847]],["content//tracks/python-101/basis/strings",[2,2.596,6,0.372,15,2.15,26,1.288,30,1.833,32,1.372,38,0.585,49,1.052,65,0.988,67,1.312,70,1.269,71,1.202,74,0.843,80,1.319,99,3.307,102,2.756,107,1.031,110,1.639,112,1.936,114,0.706,120,0.954,124,0.812,126,0.867,136,0.876,137,1.074,141,2.016,147,1.495,159,2.026,161,1.813,175,0.904,176,1.168,183,1.554,191,1.594,198,2.86,206,2.063,216,1.872,221,2.284,234,1.465,240,2.512,245,1.48,257,1.794,264,2.05,275,3.307,288,0.674,290,2.418,313,1.164,337,1.312,343,1.424,344,0.726,352,1.255,354,1.021,356,0.495,395,2.062,422,1.322,428,2.737,474,2.86,479,0.536,482,1.822,490,1.72,492,2.023,536,0.713,539,2.244,556,3.173,575,2.45,583,2.355,593,1.16,604,2.104,605,4.086,606,1.406,623,1.095,635,2.003,655,3.018,675,1.152,733,2.062,741,1.534,756,1.894,774,1.327,793,1.327,795,3.445,817,1.202,849,0.805,901,1.458,905,0.552,907,0.835,909,1.177,918,0.68,926,2.98,935,0.927,938,1.041,968,2.969,978,2.969,1017,2.416,1021,1.152,1024,1.347,1049,1.739,1061,1.713,1079,1.514,1086,2.355,1138,1.011,1198,3.795,1227,2.737,1245,3.946,1287,1.822,1289,2.298,1290,3.119,1298,2.355,1301,1.241,1341,2.628,1346,2.844,1365,1.766,1376,4.246,1447,2.37,1528,1.713,1557,2.298,1585,1.689,1601,2.148,1611,1.66,1618,1.327,1619,1.739,1628,2.521,1633,3.558,1646,2.765,1656,1.357,1661,2.003,1680,1.477,1704,1.664,1708,2.56,1710,5.881,1711,2.062,1724,2.023,1729,1.883,1738,3.307,1745,2.261,1747,3.141,1750,1.822,1786,2.542,1789,1.713,1790,2.418,1796,3.711,1818,1.575,1829,1.477,1835,2.844,1843,1.739,1846,5.907,1849,2.56,1855,2.298,1860,4.347,1864,2.298,1867,3.822,1869,1.813,1875,2.969,1880,2.104,1881,4.72,1901,1.916,1912,1.596,1918,3.307,1930,1.602,1946,5.08,1950,2.298,1954,1.14,1956,2.195,1958,1.739,1964,5.899,1974,2.56,1985,2.56,2003,4.246,2008,6.356,2052,1.916,2067,2.193,2070,2.644,2079,2.737,2098,1.822,2099,1.916,2107,7.009,2125,2.298,2129,4.086,2145,2.418,2146,2.062,2150,3.119,2158,4.552,2173,3.307,2213,2.195,2227,2.355,2251,2.148,2260,2.56,2261,2.844,2327,2.844,2333,1.794,2434,3.119,2467,1.883,2598,3.307,2600,2.486,2643,1.766,2692,2.355,2693,2.558,2698,1.986,2699,2.86,2703,2.486,2832,5.801,2880,3.119,2932,1.986,2980,4.432,3028,2.844,3143,1.95,3214,2.45,3244,3.307,3306,2.486,3361,4.246,3370,2.244,3385,2.486,3391,2.844,3392,2.844,3393,3.94,3394,1.641,3395,6.356,3396,3.94,3397,4.207,3398,5.882,3399,5.882,3400,5.571,3401,3.94,3402,5.907,3403,3.94,3404,2.644,3405,3.94,3406,3.558,3407,3.558,3408,3.94,3409,4.936,3410,8.351,3411,3.94,3412,4.936,3413,5.882,3414,5.882,3415,5.882,3416,3.94,3417,3.94,3418,5.882,3419,3.94,3420,3.94,3421,3.94,3422,3.94,3423,3.94,3424,2.418,3425,3.94,3426,2.232,3427,2.844,3428,3.119,3429,6.356,3430,4.936,3431,3.94,3432,2.355,3433,3.307,3434,1.689,3435,3.558,3436,3.307,3437,5.422,3438,3.307,3439,3.558,3440,3.558,3441,3.558,3442,3.307,3443,3.558,3444,3.94,3445,3.307,3446,3.119,3447,3.119,3448,3.307,3449,3.558,3450,3.307,3451,3.558,3452,3.558,3453,3.558,3454,3.558,3455,3.558,3456,3.94,3457,2.844,3458,3.558,3459,3.558,3460,3.558,3461,3.94,3462,3.558,3463,3.94,3464,3.94,3465,3.558,3466,3.94,3467,3.558,3468,3.94,3469,3.94,3470,3.558,3471,3.558,3472,3.558,3473,3.558,3474,3.558,3475,3.94,3476,3.558,3477,3.94,3478,3.94,3479,3.307,3480,3.558,3481,3.558,3482,3.558,3483,3.558,3484,3.558,3485,3.558,3486,3.558,3487,3.558,3488,3.558,3489,5.312,3490,3.558,3491,3.558,3492,3.119,3493,3.94,3494,4.432,3495,1.357,3496,3.94,3497,3.119,3498,3.94,3499,3.119,3500,2.644,3501,3.307,3502,2.844,3503,5.312,3504,2.195,3505,3.307,3506,7.038,3507,3.119,3508,1.95,3509,3.94,3510,3.94,3511,1.575,3512,3.94,3513,3.307,3514,3.119,3515,3.276,3516,2.418,3517,3.307,3518,2.418,3519,2.355,3520,2.969,3521,3.94,3522,3.94,3523,3.94,3524,3.94,3525,3.94,3526,3.94,3527,3.94,3528,3.94,3529,3.94,3530,3.94,3531,5.312,3532,3.94,3533,5.312,3534,3.94,3535,3.94,3536,3.94,3537,2.844,3538,3.94,3539,5.882,3540,3.94,3541,3.94,3542,3.94,3543,3.558,3544,3.119,3545,3.94,3546,2.298]],["description//tracks/python-101/basis/strings",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/sets",[1869,2.262]],["content//tracks/python-101/basis/sets",[1,2.603,6,0.369,30,3.2,34,1.493,83,2.447,114,1.962,120,2.622,124,1.346,147,2.802,161,3.291,167,3.903,175,0.674,176,1.297,331,2.934,359,2.447,441,2.839,479,0.889,556,2.102,575,2.719,606,3.466,678,3.352,745,3.188,859,2.758,918,1.127,1255,3.17,1611,1.007,1622,3.719,1675,4.289,1796,4.119,1809,6.295,1869,3.419,1871,5.605,2129,4.535,2145,5.126,2186,4.119,2765,4.21,3369,8.425,3547,9.273,3548,6.529,3549,6.529,3550,7.545,3551,8.354,3552,8.354,3553,6.613,3554,4.653,3555,8.771,3556,8.354,3557,8.354,3558,6.529,3559,6.529,3560,6.529,3561,6.529,3562,6.529,3563,5.168,3564,6.529,3565,6.529,3566,6.529,3567,5.896,3568,6.529,3569,6.529,3570,6.529,3571,6.529,3572,6.529,3573,6.529,3574,6.529,3575,6.529,3576,6.529,3577,6.529,3578,6.529,3579,6.529,3580,8.354,3581,6.529,3582,5.896,3583,6.529,3584,6.529]],["description//tracks/python-101/basis/sets",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/scope",[1018,2.029,1244,4.183]],["content//tracks/python-101/basis/scope",[6,0.36,30,3.099,34,2.55,57,2.741,112,2.92,124,1.306,167,3.787,175,1.07,203,3.244,234,1.998,300,2.288,343,1.534,356,1.03,372,3.462,462,2.144,470,2.158,477,3.193,479,1.115,488,2.04,490,1.549,518,1.974,778,1.691,793,2.133,803,3.997,817,2.929,848,3.253,938,1.674,1018,3.126,1237,3.731,1243,6.655,1244,6.443,1364,2.602,1447,3.058,1555,5.429,1556,5.317,1611,0.977,1643,4.129,1652,3.071,1745,4.169,1747,3.749,1749,4.99,1750,4.6,1751,2.684,1760,8.701,1764,6.62,1954,1.834,3585,4.774,3586,10.187,3587,4.117]],["description//tracks/python-101/basis/scope",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/operators",[1643,3.698]],["content//tracks/python-101/basis/operators",[1,1.898,6,0.376,26,0.896,30,2.777,32,1.557,38,1.496,102,1.533,110,1.28,112,2.197,114,1.761,120,2.378,147,2.496,202,1.659,221,1.533,234,1.662,240,3.181,311,4.491,319,4.034,352,1.94,402,3.189,422,1.144,459,2.028,525,2.773,745,1.819,793,2.689,1036,2.6,1255,3.031,1521,4.232,1583,3.843,1643,5.49,1677,4.181,1747,2.051,1749,4.809,1750,3.695,1753,8.623,1762,4.398,1791,3.015,1818,3.193,1829,2.994,1844,3.959,1857,4.057,1882,5.113,2043,5.191,2057,3.553,2134,4.398,2137,3.959,2146,5.85,2171,3.959,2182,6.323,2188,9.102,2649,4.823,2697,3.843,2841,6.323,2842,5.113,2843,5.113,3214,3.712,3242,3.642,3340,4.823,3588,6.716,3589,4.823,3590,5.113,3591,3.47,3592,6.092,3593,6.092,3594,4.398,3595,6.092,3596,6.092,3597,6.092,3598,4.398,3599,6.092,3600,6.092,3601,7.214,3602,6.092,3603,6.092,3604,7.988,3605,6.092,3606,4.398]],["description//tracks/python-101/basis/operators",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/numbers",[793,2.471]],["content//tracks/python-101/basis/numbers",[6,0.372,17,5.573,30,2.236,38,1.066,67,2.389,114,1.287,120,1.737,147,2.253,212,2.501,344,0.74,356,0.902,393,2.343,655,2.472,793,3.697,800,3.267,935,2.263,1598,3.685,1611,1.368,1710,8.231,1750,3.319,1818,2.869,1829,2.689,1833,5.18,1835,6.4,1836,6.023,1838,7.616,1842,3.832,1843,3.168,1844,5.762,1851,6.023,1863,3.168,1868,6.159,1974,4.664,2134,5.18,2158,4.185,2841,5.681,2842,7.441,2843,7.441,2982,4.985,3340,7.018,3588,7.925,3589,7.018,3590,7.441,3591,5.05,3607,8.866,3608,8.866,3609,7.177,3610,7.177,3611,7.177,3612,7.177,3613,7.177,3614,10.659,3615,6.481,3616,5.18]],["description//tracks/python-101/basis/numbers",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/loops",[1979,3.145]],["content//tracks/python-101/basis/loops",[1,2.669,6,0.359,26,0.999,30,3.07,38,1.272,58,3.2,65,1.14,102,1.709,110,1.799,114,1.86,120,2.272,137,1.24,143,4.483,147,2.732,161,2.892,181,4.901,234,1.782,300,2.453,301,3.561,313,2.007,354,2.553,462,2.455,470,2.312,474,3.302,525,4.794,635,2.312,668,7.07,716,3.192,745,2.558,793,2.884,925,1.887,1055,1.986,1070,5.117,1073,3.782,1254,3.486,1611,1.047,1642,7.427,1643,5.119,1741,2.91,1749,2.997,1753,5.375,1782,4.879,1789,3.725,1791,3.36,1840,5.345,1975,7.488,1976,5.226,1978,3.868,1979,4.759,1981,6.409,2005,3.422,2026,6.78,2283,4.817,3376,6.183,3387,6.78,3582,6.132,3617,3.554,3618,7.07,3619,4.669,3620,4.717,3621,3.96,3622,7.189,3623,7.735,3624,4.717,3625,4.901,3626,5.375,3627,4.901,3628,5.699,3629,6.79,3630,6.78]],["description//tracks/python-101/basis/loops",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/lists",[1,2.287]],["content//tracks/python-101/basis/lists",[1,3.437,6,0.371,17,4.672,26,1.208,30,2.56,34,1.454,83,3.079,96,1.878,112,1.749,114,1.885,120,2.469,137,1.162,147,2.591,161,2.532,173,1.585,175,0.992,176,1.263,206,2.171,221,2.067,234,1.323,245,1.6,246,1.348,300,2.967,313,1.879,337,2.117,370,2.807,479,0.866,490,2.008,556,3.206,606,2.27,635,2.798,675,1.86,702,2.99,745,3.2,756,2.645,758,1.361,800,4.142,895,5.338,1024,1.217,1055,1.86,1447,2.766,1585,2.726,1611,1.267,1618,2.141,1656,2.191,1790,5.041,1809,7.819,1812,5.744,1871,4.267,1886,3.902,1890,2.895,1954,1.841,2003,5.93,2006,4.425,2218,3.802,2264,3.902,2324,3.467,2645,3.709,2698,3.205,2765,4.14,3119,4.591,3363,6.894,3364,6.894,3376,7.187,3378,5.744,3387,7.613,3515,3.542,3563,5.035,3622,5.338,3623,8.992,3631,5.744,3632,6.36,3633,6.36,3634,8.215,3635,9.099,3636,4.133,3637,5.744,3638,9.617,3639,6.36,3640,6.36,3641,5.744,3642,3.542,3643,5.338,3644,5.338,3645,5.744,3646,6.36,3647,5.338,3648,6.36,3649,7.419,3650,6.36,3651,9.617,3652,6.36,3653,6.36,3654,6.36]],["description//tracks/python-101/basis/lists",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/install",[164,1.664,1611,0.962]],["content//tracks/python-101/basis/install",[6,0.261,18,2.736,64,2.474,65,1.333,101,3.615,102,1.998,105,2.492,164,2.684,175,1.073,216,1.904,221,1.998,246,2.132,267,2.976,268,2.347,354,2.058,398,3.733,419,4.631,425,2.768,611,2.868,640,2.704,843,3.262,849,2.053,993,3.447,1088,1.85,1269,2.976,1295,5.034,1296,3.816,1302,3.796,1611,1.691,1632,2.078,1729,3.796,2662,3.218,3154,2.736,3179,4.291,3655,4.24,3656,6.805,3657,2.801,3658,3.733,3659,4.423,3660,4.24,3661,3.862,3662,6.665,3663,6.665,3664,7.941,3665,5.161]],["description//tracks/python-101/basis/install",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/inputs",[344,0.559,628,1.568,1536,2.356]],["content//tracks/python-101/basis/inputs",[6,0.361,26,1.359,34,2.266,38,1.14,56,3.507,65,1.552,94,4.479,102,2.494,114,1.377,175,0.793,219,2.223,221,1.933,246,1.959,268,2.27,344,1.023,351,2.05,376,3.292,377,2.991,437,2.991,606,3.298,628,3.046,643,4.991,655,2.646,793,3.111,935,2.174,1024,1.768,1036,3.008,1245,5.153,1331,2.223,1341,3.111,1364,3.155,1423,3.801,1447,2.586,1473,6.446,1474,4.278,1536,4.019,1611,1.185,1652,3.715,1708,4.991,1843,3.391,1964,6.005,2688,7.756,2882,6.937,3495,2.646,3666,5.089,3667,6.937,3668,6.937,3669,6.08,3670,5.153,3671,7.681,3672,7.681,3673,7.681,3674,7.681,3675,6.446]],["description//tracks/python-101/basis/inputs",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/imports",[1301,1.964,1933,3.472]],["content//tracks/python-101/basis/imports",[6,0.343,26,0.949,34,2.455,38,0.958,53,2.824,65,1.679,120,1.562,172,2.984,175,0.998,234,1.343,289,2.146,332,3.251,343,1.562,356,0.811,362,1.672,374,1.842,376,2.765,377,2.512,393,1.705,461,2.89,462,2.17,473,3.774,477,4.178,490,1.577,519,2.65,536,1.167,542,2.01,575,2.687,593,1.366,600,1.711,623,1.793,646,2.806,756,2.077,784,4.193,793,2.172,817,1.968,848,3.312,849,1.693,852,3.033,909,1.927,910,1.968,915,2.65,1024,1.234,1052,5.107,1054,2.545,1237,3.406,1283,3.312,1296,3.477,1298,6.119,1301,3.525,1308,1.722,1341,2.172,1377,3.675,1611,1.543,1643,4.178,1652,2.418,1747,2.791,1749,3.66,1751,2.45,1763,4.329,1789,2.806,1820,5.107,1881,3.193,1884,4.329,1920,3.628,1922,5.415,1933,3.593,2047,4.482,2058,7.917,2146,3.377,2584,4.482,2588,5.415,2618,5.107,2669,4.862,2684,5.985,2714,4.657,2715,5.107,2796,4.657,2901,5.107,2924,5.107,3036,4.956,3198,4.07,3199,5.827,3325,5.415,3495,2.223,3585,4.862,3676,5.827,3677,6.563,3678,8.291,3679,9.162,3680,6.452,3681,6.452,3682,9.669,3683,7.488,3684,6.452,3685,5.107,3686,8.274,3687,9.032,3688,6.452,3689,5.827,3690,6.452,3691,5.827,3692,5.827,3693,6.452,3694,6.452,3695,6.452]],["description//tracks/python-101/basis/imports",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/ide",[267,2.336,3696,1.6]],["content//tracks/python-101/basis/ide",[6,0.247,38,1.116,44,2.812,65,1.649,105,1.987,110,1.579,111,2.785,126,2.008,139,1.837,164,2.435,175,0.941,191,1.702,221,2.295,222,2.62,246,1.934,278,3.859,289,1.55,295,2.251,398,3.534,476,2.965,479,1.023,593,1.239,742,1.967,849,1.863,952,4.219,991,2.088,993,3.59,1015,3.788,1055,2.198,1101,4.282,1269,2.817,1284,2.715,1295,4.87,1296,3.461,1331,2.176,1474,5.08,1483,3.934,1611,1.614,1651,3.221,1652,2.817,1661,2.56,1729,3.593,1917,4.383,2099,3.655,2211,4.383,2358,6.308,2382,3.827,2699,3.655,3179,3.422,3311,5.727,3312,6.025,3427,5.426,3655,4.87,3656,6.584,3657,3.217,3658,3.534,3659,4.186,3660,4.013,3696,1.929,3697,5.222,3698,6.308,3699,3.269,3700,3.087,3701,5.664,3702,5.222,3703,4.742,3704,7.517,3705,6.788,3706,7.517,3707,6.308,3708,5.043]],["description//tracks/python-101/basis/ide",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/functions",[34,1.678]],["content//tracks/python-101/basis/functions",[6,0.349,17,4.938,26,0.841,30,1.781,34,2.55,38,0.849,50,3.334,65,1.45,74,1.224,80,1.718,89,4.135,110,1.201,112,2.781,113,3.202,139,1.397,141,2.194,147,1.946,158,2.197,159,1.97,160,3.715,173,1.425,175,0.891,205,3.116,212,1.993,219,2.217,221,1.439,229,2.316,234,2.06,263,3.062,300,3.474,302,2.644,343,2.091,401,4.977,422,1.074,423,1.744,461,3.451,462,2.004,468,3.547,470,1.947,478,4.526,479,1.042,492,2.935,536,1.386,575,2.381,593,0.942,606,2.733,623,2.4,675,1.672,757,3.724,793,2.579,848,3.932,859,2.415,910,1.744,911,3.715,915,4.387,918,0.987,940,2.992,998,2.524,1024,1.652,1053,1.882,1066,2.116,1077,4.127,1078,4.81,1100,5.416,1181,2.602,1228,4.308,1282,2.992,1283,5.484,1302,2.733,1341,1.925,1361,2.935,1364,3.547,1405,2.065,1447,3.238,1597,2.644,1598,2.935,1611,0.882,1628,2.45,1643,2.881,1653,3.053,1694,2.562,1741,2.45,1747,2.579,1750,3.542,1751,3.037,1796,3.607,1820,6.062,1827,3.417,1864,3.334,1869,2.361,1889,3.836,1890,2.602,1901,2.78,1946,4.127,1964,3.715,2131,3.184,2132,4.362,2331,6.234,2332,4.525,2340,5.163,2341,5.163,2600,3.607,2974,2.992,3036,5.75,3099,5.32,3214,2.381,3240,4.525,3242,3.417,3325,4.798,3367,4.798,3368,4.798,3692,5.163,3709,5.717,3710,5.717,3711,5.717,3712,5.717,3713,5.717,3714,4.798,3715,5.717,3716,5.717,3717,5.717,3718,5.717,3719,5.717,3720,5.717,3721,5.717,3722,4.525,3723,5.717,3724,5.717,3725,5.163,3726,5.717,3727,5.717,3728,5.717,3729,5.717,3730,5.717,3731,5.717,3732,5.717,3733,5.717]],["description//tracks/python-101/basis/functions",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/file_io",[191,1.412,289,1.285]],["content//tracks/python-101/basis/file_io",[6,0.304,34,2.389,96,1.501,102,2.53,124,2.12,126,1.445,136,1.459,137,1.531,139,1.604,175,0.953,206,1.735,219,2.426,224,2.888,234,2.025,261,3.181,289,2.317,297,4.742,319,2.696,344,0.865,356,0.825,359,3.142,393,2.572,478,2.854,479,0.893,555,2.523,593,1.082,604,3.505,606,3.296,612,3.816,646,2.854,722,4.57,755,2.897,757,3.192,767,3.828,781,2.988,785,2.067,828,4.149,832,4.224,845,3.491,869,4.946,909,1.96,966,6.636,969,7.57,1017,2.696,1024,1.604,1079,2.523,1100,3.192,1218,6.317,1273,4.57,1295,3.505,1299,3.308,1447,2.21,1600,3.739,1611,1.501,1643,4.904,1648,5.279,1716,5.675,1759,4.889,1786,2.371,1890,2.988,1975,4.738,1979,4.309,1981,4.141,2099,3.192,2101,4.027,2284,6.248,2678,5.288,2692,5.521,2693,4.017,2697,5.827,2906,5.624,3270,4.946,3734,6.317,3735,8.383,3736,9.236,3737,5.196,3738,6.564,3739,6.564,3740,8.383,3741,8.383,3742,6.564,3743,6.564,3744,6.564,3745,6.564,3746,5.928,3747,6.564,3748,5.196,3749,6.564,3750,3.656,3751,8.383]],["description//tracks/python-101/basis/file_io",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/exception_handling",[167,3.727,781,2.838]],["content//tracks/python-101/basis/exception_handling",[2,2.945,6,0.359,7,2.945,15,2.439,18,2.298,34,1.525,38,0.99,49,1.781,58,2.101,65,1.422,110,1.779,114,1.196,137,1.547,167,6.56,175,0.96,219,1.931,234,1.936,246,1.414,288,1.141,313,2.75,354,2.195,422,1.253,429,3.8,459,2.221,474,3.244,477,3.361,536,1.532,578,7.614,628,2.451,655,2.298,716,3.136,769,5.026,781,4.236,793,3.402,848,4.348,938,1.763,1024,1.621,1036,2.757,1085,3.987,1088,1.554,1237,2.74,1273,5.073,1423,3.301,1536,2.901,1611,1.435,1632,1.746,1642,5.28,1643,5.203,1652,3.787,1741,4.425,1745,2.564,1749,4.686,1750,3.085,1820,5.28,1822,5.28,2311,7.81,2316,8.91,2345,4.335,2985,5.343,3036,5.852,3588,5.026,3618,5.026,3628,5.598,3636,6.566,3752,7.649,3753,5.28,3754,6.671,3755,4.335,3756,8.469,3757,9.306,3758,8.469,3759,7.108,3760,8.469,3761,8.404,3762,8.469,3763,5.28,3764,3.89,3765,6.024,3766,6.671,3767,9.789,3768,6.671,3769,4.634,3770,6.671]],["description//tracks/python-101/basis/exception_handling",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/dict",[1864,4.28]],["content//tracks/python-101/basis/dict",[1,2.182,6,0.363,26,1.03,34,1.601,38,1.413,68,1.58,110,1.471,112,2.948,173,1.745,175,0.901,176,1.979,219,2.027,221,1.762,234,1.457,245,2.197,257,3.188,302,5.062,337,3.168,344,0.723,356,1.098,372,2.958,375,2.28,479,0.953,490,1.712,556,2.255,606,3.396,678,3.595,709,3.989,745,2.842,917,1.779,1138,1.797,1254,3.595,1341,3.354,1583,4.418,1598,5.115,1619,3.091,1620,4.551,1622,3.989,1632,1.833,1790,4.297,1792,2.763,1793,4.699,1796,4.418,1827,5.22,1858,2.658,1864,6.48,1865,5.543,1867,4.551,1964,4.551,2006,3.405,2129,4.865,2131,5.3,2132,5.42,2137,4.551,2186,4.418,2568,5.877,2600,4.418,2643,3.139,2937,6.003,3240,5.543,3366,5.877,3367,5.877,3368,5.877,3563,5.543,3771,7.003,3772,7.003,3773,7.003,3774,7.003,3775,7.003,3776,7.003,3777,5.877,3778,7.003,3779,4.418,3780,6.324,3781,7.003,3782,7.003,3783,6.324,3784,7.003,3785,7.003,3786,7.003]],["description//tracks/python-101/basis/dict",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/conditionals",[525,3.341]],["content//tracks/python-101/basis/conditionals",[6,0.357,26,0.978,30,2.073,38,1.255,65,1.695,80,1.492,110,1.397,112,2.884,114,1.193,120,1.611,124,1.371,147,1.69,161,2.051,173,1.658,175,0.872,212,2.319,221,1.674,263,2.659,268,1.966,289,2.127,313,3.049,319,2.733,342,2.771,343,2.047,352,3.215,354,2.674,437,2.59,461,2.947,462,2.213,525,3.849,538,6.236,600,1.447,640,3.165,702,3.127,995,4.111,1079,2.557,1255,3.209,1298,5.054,1301,2.663,1341,3.129,1447,2.847,1597,3.077,1611,1.434,1618,2.24,1643,5.283,1652,2.493,1694,3.789,1741,3.983,1745,2.557,1747,3.53,1749,4.877,1750,3.077,1769,4.772,1809,6.371,1827,6.494,1890,3.028,2142,7.357,2146,5.119,2270,4.082,2542,7.8,3517,5.583,3618,5.013,3787,5.266,3788,6.653,3789,6.653,3790,6.653,3791,8.832,3792,4.621,3793,6.653,3794,6.653,3795,4.323,3796,6.653,3797,6.653,3798,6.653,3799,2.81,3800,3.077,3801,5.583]],["description//tracks/python-101/basis/conditionals",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/comprehensions",[1888,5.81]],["content//tracks/python-101/basis/comprehensions",[1,3.366,6,0.313,34,1.596,38,1.037,49,1.864,56,2.65,89,3.13,102,1.757,112,2.614,113,2.325,114,1.704,120,1.691,136,1.552,147,1.774,161,3.068,176,1.387,264,2.434,302,3.23,313,3.131,344,0.721,461,2.434,473,3.179,479,1.355,536,1.577,556,2.248,593,1.566,606,3.392,635,3.39,646,3.037,745,2.603,756,3.06,793,3.2,812,5.262,831,6.056,918,1.206,935,2.051,1085,4.174,1208,2.107,1447,2.935,1598,3.585,1611,1.345,1618,2.351,1656,2.406,1677,3.655,1749,4.393,1792,2.755,1842,5.074,1864,5.804,1869,3.068,1888,8.701,1901,4.84,1979,2.993,2002,5.499,2129,6.056,2136,7.316,2206,7.161,2218,4.174,2364,2.406,2624,6.306,3214,2.908,3361,6.292,3366,5.861,3369,7.316,3547,6.306,3687,8.583,3689,7.872,3802,6.983,3803,2.617,3804,6.983,3805,6.983,3806,5.861,3807,6.983,3808,7.872,3809,6.983]],["description//tracks/python-101/basis/comprehensions",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/classes",[465,3.632]],["content//tracks/python-101/basis/classes",[6,0.363,15,1.657,38,1.133,44,2.352,63,5.909,68,1.381,74,0.97,80,1.017,83,2.86,90,3.041,96,1.036,102,2.316,110,1.369,112,1.793,118,1.247,137,0.828,139,1.108,173,1.129,175,0.468,176,1.294,206,2.017,212,1.58,216,1.563,221,1.14,230,1.026,234,1.356,240,2.978,241,5.503,245,1.64,257,2.063,275,3.803,352,2.075,353,2.781,356,1.049,362,1.977,383,1.368,422,1.224,423,1.382,429,2.581,437,2.537,461,1.58,465,5.529,467,1.368,470,1.543,477,4.639,478,2.834,479,0.887,490,1.593,518,1.412,538,4.372,556,3.497,560,1.836,575,1.888,593,0.747,600,0.775,625,3.148,635,1.543,637,1.836,778,1.21,795,2,817,1.382,844,2.327,848,3.346,915,2.677,918,0.783,968,3.415,978,3.415,998,2,1068,2.327,1079,1.742,1086,2.709,1100,3.169,1106,3.148,1208,1.967,1254,2.327,1283,3.918,1297,2.47,1341,3.486,1346,3.271,1424,1.637,1447,2.81,1482,3.127,1484,1.888,1516,1.58,1528,1.971,1611,1.463,1628,1.942,1656,2.629,1747,1.526,1749,3.369,1751,3.06,1804,4.093,1811,5.243,1855,2.643,1860,2.524,1881,2.243,1882,3.803,1887,5.17,1934,2.945,1940,5.469,1946,3.271,1951,6.288,1956,4.25,1958,4.284,1961,4.72,1964,4.235,1968,6.892,2045,2.47,2052,2.204,2099,2.204,2107,3.803,2137,2.945,2173,3.803,2261,3.271,2357,4.093,2358,5.469,2359,3.803,2363,5.469,2366,6.288,2367,5.75,2370,6.661,2377,4.093,2440,7.419,2448,3.587,2449,5.469,2457,5.745,2467,2.166,2490,7.419,2564,2.063,2565,4.093,2570,2.284,2598,3.803,2835,4.093,2932,2.284,3028,3.271,3143,2.243,3244,3.803,3385,2.859,3429,4.093,3430,3.803,3434,1.942,3435,4.093,3436,3.803,3437,4.527,3438,3.803,3439,4.093,3440,4.093,3441,4.093,3442,3.803,3443,4.093,3445,3.803,3446,3.587,3447,3.587,3448,3.803,3449,4.093,3450,3.803,3451,4.093,3452,4.093,3453,4.093,3454,4.093,3455,4.093,3457,3.271,3458,4.093,3459,4.093,3460,4.093,3462,4.093,3465,4.093,3467,4.093,3470,4.093,3471,4.093,3472,4.093,3473,4.093,3474,4.093,3476,4.093,3479,3.803,3480,4.093,3481,4.093,3482,4.093,3483,4.093,3484,4.093,3485,4.093,3486,4.093,3487,4.093,3488,4.093,3489,4.093,3490,4.093,3683,7.536,3810,3.803,3811,2.13,3812,4.532,3813,4.532,3814,4.532,3815,4.532,3816,4.532,3817,3.271,3818,7.631,3819,6.517,3820,6.517,3821,4.532,3822,4.532,3823,4.532,3824,4.532,3825,4.532,3826,4.532,3827,4.532,3828,4.532,3829,4.093,3830,5.469,3831,3.415,3832,4.532,3833,4.532,3834,4.532,3835,4.532,3836,5.469,3837,4.532,3838,4.093,3839,4.532,3840,4.532,3841,4.532,3842,4.532,3843,4.532,3844,4.093,3845,9.205,3846,7.536,3847,4.532,3848,7.631,3849,4.532,3850,7.631,3851,4.532,3852,4.532,3853,4.532,3854,4.532,3855,6.892,3856,4.532,3857,4.532,3858,4.532,3859,4.532,3860,5.885,3861,5.469,3862,6.605,3863,4.532,3864,6.517,3865,4.532,3866,4.532,3867,4.532,3868,4.532,3869,6.517,3870,4.532,3871,4.532,3872,4.532,3873,4.532,3874,6.517,3875,6.892,3876,4.532]],["description//tracks/python-101/basis/classes",[1611,0.974,2651,1.969]],["title//tracks/python-101/basis/_index",[1208,2.215]],["content//tracks/python-101/basis/_index",[34,1.889,38,1.227,136,1.836,289,1.703,344,0.996,356,1.039,397,2.405,465,4.088,525,3.761,535,2.099,655,2.846,774,2.782,905,1.158,924,4.938,1018,3.327,1301,2.602,1309,3.54,1479,4.938,1485,4.324,1611,1.488,1618,2.782,1619,3.647,1627,4.163,1635,7.461,1643,4.163,1979,3.54,2038,6.933,2668,6.933,2980,6.225,3348,6.54,3349,5.963,3877,5.963,3878,6.225,3879,4.503,3880,4.601,3881,8.261,3882,6.933,3883,5.069,3884,5.739]],["description//tracks/python-101/basis/_index",[1611,0.974,2651,1.969]],["title//tracks/disser/israel-notes",[3885,3.636,3886,4.051]],["content//tracks/disser/israel-notes",[1462,7.023,3886,5.766,3887,5.953]],["description//tracks/disser/israel-notes",[3885,3.684,3886,4.106]],["title//tracks/disser/articles-notes",[260,3.398,903,2.366]],["content//tracks/disser/articles-notes",[56,3.173,173,2.421,582,4.997,640,2.847,1269,3.133,1375,6.129,1612,6.034,2002,5.274,2101,5.129,2859,5.129,3888,8.36,3889,6.299,3890,8.36,3891,4.065,3892,8.36,3893,6.617,3894,9.716,3895,8.36,3896,7.55,3897,8.36,3898,8.36,3899,6.617,3900,7.55,3901,7.55,3902,8.774,3903,8.36,3904,6.299,3905,7.55,3906,8.36,3907,7.55,3908,8.36,3909,8.36,3910,6.617]],["description//tracks/disser/articles-notes",[260,3.005,903,2.092,3885,3.215]],["title//tracks/disser/_index",[3911,6.628]],["content//tracks/disser/_index",[1,2.675,5,4.058,6,0.355,18,2.618,26,1.118,32,1.102,38,1.363,44,1.742,49,1.508,71,1.724,74,1.209,80,1.268,96,1.292,165,3.378,176,1.122,191,1.944,192,2.797,198,2.748,202,1.539,206,1.494,217,1.724,218,3.219,221,1.422,246,1.198,260,3.081,261,2.884,288,1.469,300,2.041,344,0.583,356,0.711,377,2.2,397,1.408,425,2.649,479,0.769,507,1.78,533,4.743,540,3.165,587,2.748,593,0.931,611,2.041,636,3.091,655,1.947,762,3.792,845,2.354,856,4.21,903,2.884,905,0.792,914,3.219,918,1.483,1018,2.795,1019,2.066,1175,5.964,1181,4.666,1269,2.118,1283,2.901,1295,3.017,1302,2.701,1435,2.657,1449,4.473,1524,3.296,1538,3.672,1539,3.219,1618,1.903,1623,5.279,1624,3.926,1675,2.901,1701,2.901,1729,3.633,1731,6.226,1735,6.919,1740,3.219,1745,2.172,1858,2.884,1868,3.926,1916,3.296,1984,2.848,2090,4.258,2207,4.258,2221,3.672,2364,2.958,2467,2.701,2643,3.406,2716,3.468,2721,3.926,2859,3.468,2932,2.848,2949,2.387,3062,3.672,3107,3.468,3143,2.797,3150,3.081,3174,1.903,3253,3.468,3400,4.473,3495,1.947,3617,2.958,3699,3.305,3779,3.565,3787,4.473,3801,6.378,3878,7.219,3912,7.599,3913,5.485,3914,5.104,3915,2.701,3916,6.16,3917,5.104,3918,5.104,3919,9.182,3920,5.651,3921,4.473,3922,6.863,3923,6.764,3924,6.863,3925,5.651,3926,3.565,3927,5.651,3928,4.743,3929,6.863,3930,5.651,3931,7.219,3932,8.292,3933,5.651,3934,6.863,3935,10.082,3936,5.651,3937,8.041,3938,7.599,3939,5.651,3940,5.651,3941,7.599,3942,5.651,3943,5.651,3944,3.565,3945,5.104,3946,3.468,3947,5.651,3948,3.296,3949,8.586,3950,5.104,3951,5.651,3952,5.651,3953,3.672,3954,6.863,3955,5.651,3956,5.104,3957,5.104,3958,4.743,3959,3.672,3960,5.104,3961,5.651,3962,5.651,3963,3.296,3964,3.792,3965,4.473,3966,5.104,3967,7.599,3968,6.863,3969,5.651,3970,4.743,3971,5.651,3972,6.378,3973,4.743,3974,8.041,3975,5.104,3976,4.473,3977,5.651,3978,5.485,3979,4.258,3980,3.081,3981,5.651,3982,5.651,3983,5.651,3984,2.748,3985,5.651,3986,5.651,3987,5.651,3988,4.938,3989,5.651,3990,4.473,3991,5.651,3992,5.104,3993,3.565,3994,5.651,3995,5.651,3996,5.651,3997,4.258,3998,5.651,3999,4.258,4000,4.473,4001,4.258,4002,4.079,4003,5.651,4004,5.651,4005,5.651,4006,5.651,4007,5.651,4008,5.104,4009,5.651]],["description//tracks/disser/_index",[3911,5.706,4010,3.599]],["title//tracks/disser/utils/text_2_short",[2593,4.935,3889,4.698]],["content//tracks/disser/utils/text_2_short",[4011,8.042]],["description//tracks/disser/utils/text_2_short",[1181,2.226,1647,2.42,2593,3.871,3598,3.53]],["title//tracks/disser/canditate-minimum/languages-requirements",[611,1.957,1618,1.824,3953,3.521]],["content//tracks/disser/canditate-minimum/languages-requirements",[30,2.125,55,5.124,107,1.784,175,0.704,191,1.544,244,3.569,246,1.446,300,2.463,340,3.641,344,0.704,354,1.767,356,1.182,393,1.802,414,4.409,472,2.69,541,3.569,569,4.922,611,2.463,635,2.322,844,5.222,1181,4.854,1255,3.745,1287,3.154,1303,3.976,1424,2.463,1600,4.892,1618,3.549,1623,5.966,1624,4.737,1646,3.205,1648,5.066,1724,3.501,1731,6.109,1750,3.154,1770,4.301,1849,6.413,1864,5.755,1985,4.431,1996,3.501,2024,4.076,2043,4.431,2056,4.737,2221,6.109,2491,5.397,2869,7.207,3356,6.158,3598,6.786,3619,3.717,3916,4.575,3932,6.158,3953,6.61,3960,6.158,4010,5.355,4012,6.818,4013,6.818,4014,8.588,4015,6.818,4016,6.158,4017,9.868,4018,8.588,4019,6.621,4020,8.588,4021,6.158,4022,6.158,4023,6.199,4024,6.818,4025,5.723,4026,6.818,4027,6.818,4028,6.818,4029,4.301,4030,6.158,4031,6.158,4032,4.922,4033,8.282,4034,5.418,4035,6.818,4036,7.207,4037,6.818,4038,6.818,4039,3.849,4040,6.818,4041,9.401,4042,8.588,4043,9.401,4044,6.818,4045,6.818,4046,6.158,4047,6.818,4048,6.818,4049,8.588,4050,8.588,4051,6.818,4052,5.397,4053,7.756,4054,6.818,4055,6.158]],["description//tracks/disser/canditate-minimum/languages-requirements",[611,1.441,938,1.054,1618,1.343,3953,2.593,4056,2.593,4057,3.99]],["title//tracks/disser/canditate-minimum/_index",[340,2.293,3880,2.392,4056,2.791,4058,2.567,4059,2.881]],["content//tracks/disser/canditate-minimum/_index",[6,0.173,11,1.717,19,2.934,25,1.504,29,0.705,30,1.642,31,1.815,34,1.791,46,0.971,55,3.51,68,0.617,73,0.533,109,0.688,112,1.449,114,0.611,120,0.825,133,2.091,147,1.133,161,1.374,176,0.677,198,2.167,202,0.544,206,0.901,208,2.288,212,0.696,216,0.479,219,1.99,222,0.696,224,1.815,234,1.63,264,1.554,267,0.749,288,0.342,297,1.75,337,1.135,340,1.82,356,0.56,375,0.65,377,0.778,410,3.993,419,1.988,422,0.375,429,5.15,470,1.518,478,1.938,521,2.15,525,3.674,528,4.468,530,4.116,535,0.866,541,1.046,542,1.062,545,3.535,548,1.969,593,0.974,636,0.673,641,1.505,646,0.869,649,3.803,674,7.402,762,1.34,766,2.735,770,2.539,844,1.026,848,1.026,902,1.75,903,1.293,905,0.478,907,2.258,917,0.866,935,2.066,938,2.516,1018,1.109,1037,1.687,1088,1.688,1138,0.513,1180,2.978,1202,1.194,1205,1.734,1208,0.603,1234,1.188,1243,1.226,1267,1.505,1287,2.062,1363,0.739,1435,3.233,1440,1.194,1466,6.626,1539,5.214,1594,1.194,1610,2.649,1612,3.217,1625,2.15,1629,1.677,1630,2.246,1632,0.892,1669,2.72,1694,4.191,1711,2.757,1724,2.705,1734,4.182,1740,1.941,1742,1.576,1750,2.437,1777,1.026,1789,2.291,1818,2.106,1828,2.568,1829,2.216,1901,2.562,1905,2.735,1917,2.599,1930,2.592,1934,1.298,1950,3.072,1954,0.986,1974,3.423,1985,3.423,1996,2.705,2044,2.287,2047,1.388,2053,1.34,2070,1.34,2125,4.568,2170,1.988,2299,1.067,2334,2.287,2369,5.502,2387,5.893,2570,2.655,2614,1.677,2778,1.388,2859,1.226,2886,6.08,2888,4.861,2931,2.568,2974,2.757,3013,3.438,3062,6.015,3103,1.388,3221,3.535,3397,1.194,3518,2.735,3594,2.46,3636,1.298,3666,1.75,3801,1.677,3803,0.749,3810,2.86,3811,2.477,3880,5.036,3887,5.255,3901,1.804,3902,1.804,3929,1.804,3950,1.804,3953,5.948,3972,2.86,3976,1.581,3979,2.568,3999,2.568,4010,1.138,4056,2.215,4058,5.533,4059,1.34,4060,1.998,4061,1.998,4062,1.998,4063,6.67,4064,4.57,4065,2.568,4066,5.443,4067,5.021,4068,6.332,4069,3.078,4070,3.078,4071,2.215,4072,3.078,4073,3.078,4074,2.86,4075,2.86,4076,3.078,4077,3.078,4078,2.86,4079,1.784,4080,3.078,4081,4.32,4082,6.277,4083,3.078,4084,4.648,4085,4.32,4086,2.698,4087,7.334,4088,5.616,4089,2.86,4090,2.698,4091,2.215,4092,4.758,4093,2.86,4094,2.568,4095,4.17,4096,4.758,4097,6.543,4098,2.698,4099,2.568,4100,3.078,4101,3.078,4102,6.774,4103,1.75,4104,3.078,4105,4.777,4106,5.268,4107,6.439,4108,5.268,4109,4.861,4110,2.86,4111,3.97,4112,3.078,4113,2.86,4114,4.964,4115,3.359,4116,3.078,4117,2.568,4118,3.403,4119,6.543,4120,4.708,4121,3.078,4122,3.078,4123,2.896,4124,4.025,4125,4.17,4126,4.648,4127,3.359,4128,3.217,4129,5.443,4130,5.34,4131,4.32,4132,5.181,4133,5.268,4134,6.439,4135,6.439,4136,3.755,4137,5.459,4138,4.025,4139,3.741,4140,3.741,4141,3.217,4142,3.741,4143,5.34,4144,7.263,4145,5.607,4146,5.268,4147,5.268,4148,5.268,4149,5.735,4150,4.519,4151,4.025,4152,4.025,4153,4.758,4154,3.528,4155,4.806,4156,3.741,4157,2.991,4158,3.217,4159,4.025,4160,5.815,4161,3.359,4162,5.268,4163,5.268,4164,2.46,4165,10.083,4166,3.078,4167,3.408,4168,3.408,4169,2.86,4170,3.078,4171,4.758,4172,3.408,4173,3.408,4174,5.268,4175,3.408,4176,5.34,4177,3.741,4178,5.268,4179,3.408,4180,3.408,4181,3.408,4182,8.633,4183,3.408,4184,5.902,4185,3.408,4186,5.34,4187,6.876,4188,3.078,4189,5.654,4190,5.268,4191,5.268,4192,5.268,4193,2.698,4194,6.72,4195,6.08,4196,3.408,4197,2.86,4198,3.408,4199,5.815,4200,4.852,4201,3.298,4202,4.421,4203,7.245,4204,3.408,4205,3.408,4206,3.408,4207,2.46,4208,3.408,4209,2.86,4210,3.408,4211,3.078,4212,3.408,4213,4.421,4214,3.408,4215,3.408,4216,7.245,4217,3.408,4218,3.078,4219,5.753,4220,3.408,4221,3.078,4222,5.443,4223,5.268,4224,5.268,4225,8.266,4226,4.963,4227,5.914,4228,4.17,4229,1.657,4230,2.568,4231,9.256,4232,7.327,4233,3.408,4234,3.078,4235,3.078,4236,2.46,4237,6.543,4238,3.408,4239,2.86,4240,3.408,4241,2.215,4242,2.86,4243,2.86,4244,2.698,4245,3.741,4246,1.677,4247,2.991,4248,1.442,4249,4.457,4250,4.963,4251,1.998,4252,1.804,4253,1.505,4254,1.804,4255,3.528,4256,1.998,4257,1.998,4258,1.804,4259,1.804,4260,1.804,4261,1.998,4262,1.998,4263,1.998,4264,1.804,4265,1.998,4266,1.998,4267,1.998,4268,1.998,4269,2.368,4270,5.268,4271,0.869,4272,0.955,4273,1.505,4274,1.988,4275,1.998,4276,1.998,4277,1.998,4278,1.998,4279,1.998,4280,1.998,4281,1.998,4282,1.998,4283,1.998,4284,1.581,4285,1.067,4286,1.505,4287,1.998,4288,1.581,4289,1.998,4290,1.505,4291,1.998,4292,4.963,4293,4.025,4294,2.698,4295,1.113,4296,1.505,4297,1.677,4298,1.804,4299,1.998,4300,1.677,4301,1.804,4302,1.804,4303,1.194,4304,3.078,4305,1.677,4306,1.998,4307,2.86,4308,3.078,4309,3.408,4310,3.408,4311,1.998,4312,1.34,4313,3.408,4314,1.046,4315,1.505,4316,1.998,4317,1.677,4318,1.804,4319,1.998,4320,1.804,4321,1.998,4322,1.998,4323,1.998,4324,1.298,4325,1.998,4326,1.998,4327,1.998,4328,1.677,4329,1.998,4330,1.442,4331,1.804,4332,1.998,4333,1.998,4334,1.677,4335,2.698,4336,1.998,4337,1.998,4338,3.408,4339,1.998,4340,1.677,4341,1.677,4342,1.998,4343,1.998,4344,1.998,4345,1.998,4346,1.998,4347,1.998,4348,1.998,4349,1.804,4350,1.998,4351,1.998,4352,1.998,4353,1.998,4354,1.998,4355,1.998,4356,1.804,4357,1.998,4358,1.677]],["description//tracks/disser/canditate-minimum/_index",[91,1.663,340,1.951,3880,2.035,4056,2.374,4058,2.184,4059,2.451,4359,2.538]],["title//tracks/disser/canditate-minimum/05-international-foreign-exchange-market",[30,1.338,907,0.91,4082,2.567,4144,2.983,4145,2.983]],["content//tracks/disser/canditate-minimum/05-international-foreign-exchange-market",[29,2.946,32,0.769,34,1.61,38,1.24,45,3.022,46,1.917,60,2.357,68,0.714,71,1.203,73,2.592,74,0.844,80,0.885,110,1.64,118,1.085,133,3.611,137,1.075,172,1.824,175,0.727,204,1.328,219,2.038,221,1.481,234,1.225,244,4.372,264,1.374,288,0.675,344,0.607,352,1.256,356,0.74,366,1.854,372,2.486,375,2.719,381,2.322,397,1.755,410,1.824,419,2.3,422,1.322,459,2.781,462,2.043,476,1.556,528,5.9,536,0.714,537,3.121,542,1.229,558,3.278,645,2.105,758,0.844,766,4.791,779,1.535,784,6.065,787,1.62,827,3.518,864,1.987,909,1.757,918,0.681,935,0.928,938,1.555,1037,3.485,1085,3.518,1138,1.012,1180,3.864,1205,1.937,1207,5.27,1208,1.19,1363,2.89,1466,6.065,1536,1.715,1539,4.759,1593,2.971,1630,2.966,1632,2.186,1652,1.478,1675,3.022,1694,3.744,1803,2.15,1829,3.694,1869,1.814,1876,2.488,1891,2.846,1913,3.121,1914,2.563,1917,2.3,1933,2.196,1934,4.576,1984,1.987,2047,2.739,2057,3.432,2082,2.739,2125,5.11,2170,4.106,2244,2.357,2570,1.987,2662,2.385,2716,2.42,2931,2.971,2932,1.987,2982,2.739,3013,2.105,3150,2.15,3621,2.3,3696,1.012,3803,1.478,3887,2.646,3891,3.424,3953,6.199,3958,3.309,4029,2.488,4058,6.138,4063,4.576,4068,4.724,4079,4.752,4081,4.724,4082,5.967,4084,2.846,4085,2.646,4103,3.615,4105,4.088,4111,2.971,4114,4.248,4115,4.435,4126,2.846,4139,3.309,4141,5.083,4144,7.766,4145,6.307,4149,8.808,4150,6.433,4151,7.051,4152,7.051,4153,6.359,4154,5.574,4155,6.621,4156,8.151,4157,6.614,4158,5.636,4159,6.359,4169,4.939,4170,3.561,4176,6.359,4177,5.91,4189,6.03,4207,2.846,4219,6.483,4232,4.659,4243,3.309,4245,3.309,4247,4.724,4252,3.561,4271,2.559,4284,3.121,4285,2.105,4292,3.309,4296,2.971,4307,3.309,4315,2.971,4330,2.846,4334,3.309,4356,3.561,4360,3.121,4361,2.646,4362,5.315,4363,5.9,4364,5.879,4365,6.03,4366,6.359,4367,4.891,4368,7.041,4369,3.121,4370,3.943,4371,2.739,4372,3.309,4373,3.943,4374,3.943,4375,3.943,4376,5.574,4377,7.808,4378,5.885,4379,2.971,4380,4.659,4381,5.315,4382,7.051,4383,3.943,4384,3.309,4385,3.309,4386,5.315,4387,5.885,4388,3.561,4389,3.309,4390,3.561,4391,3.943,4392,3.943,4393,3.943,4394,3.943,4395,3.943,4396,3.943,4397,3.943,4398,2.739,4399,2.739,4400,5.885,4401,3.943,4402,3.561,4403,3.309,4404,3.309,4405,3.943,4406,3.943,4407,5.315,4408,3.561,4409,3.943,4410,2.846,4411,5.91,4412,5.885,4413,3.121,4414,3.943,4415,1.741,4416,5.885,4417,2.846,4418,3.121,4419,3.561,4420,6.553,4421,2.846,4422,3.309,4423,2.3,4424,3.755,4425,3.121,4426,3.943,4427,5.885,4428,4.939,4429,5.885,4430,5.885,4431,3.121,4432,2.488,4433,3.309,4434,3.309,4435,7.808,4436,3.309,4437,2.488,4438,3.943,4439,2.42,4440,2.971,4441,3.561,4442,3.561,4443,3.943,4444,3.561,4445,3.561,4446,3.943,4447,2.488,4448,3.943,4449,2.105,4450,3.561,4451,3.561]],["description//tracks/disser/canditate-minimum/05-international-foreign-exchange-market",[91,1.663,340,1.951,3880,2.035,4056,2.374,4058,2.184,4059,2.451,4359,2.538]],["title//tracks/disser/canditate-minimum/04-international-capital-movement",[161,1.324,907,0.91,4082,2.567,4131,2.881,4132,3.236]],["content//tracks/disser/canditate-minimum/04-international-capital-movement",[11,3.197,27,1.522,29,2.238,32,0.851,55,4.073,73,1.166,112,1.201,133,2.679,165,2.61,179,2.161,198,4.236,222,1.522,263,2.987,267,1.637,337,1.454,342,1.819,352,1.391,356,1.031,362,1.936,375,2.065,383,2.475,393,1.677,397,1.862,422,1.707,425,1.522,476,2.503,478,3.25,488,1.406,517,3.085,525,3.734,530,1.988,542,1.361,555,1.678,558,4.162,560,1.769,641,3.291,674,7.195,675,1.277,758,1.358,770,2.487,774,2.136,793,1.47,856,1.794,902,3.257,909,1.895,915,1.794,918,1.096,935,1.027,938,2.303,1020,3.152,1055,1.855,1088,1.478,1138,1.918,1202,3.793,1363,1.616,1466,6.901,1539,5.667,1592,2.136,1594,2.61,1605,3.457,1632,1.143,1639,1.318,1652,1.637,1685,5.022,1694,3.349,1699,6.749,1780,2.61,1829,1.637,1904,2.02,2024,4.903,2170,3.7,2410,3.152,2820,3.402,3008,2.332,3013,2.332,3103,3.034,3518,5.577,3621,3.7,3803,1.637,3880,5.542,3910,3.457,3953,6.829,3972,6.272,4002,3.152,4019,5.503,4058,2.61,4063,5.33,4067,3.321,4068,4.257,4079,3.911,4082,6.426,4084,3.152,4085,5.014,4086,5.022,4087,7.666,4088,2.679,4102,6.272,4113,3.665,4114,4.58,4115,3.291,4117,3.291,4118,3.14,4120,2.838,4126,5.92,4129,3.457,4131,6.902,4132,7.87,4136,5.3,4137,8.07,4138,7.868,4139,8.553,4140,6.272,4141,6.561,4142,6.272,4143,7.407,4155,2.679,4157,5.014,4166,3.944,4169,5.325,4184,6.18,4189,4.58,4209,5.325,4211,3.944,4219,6.314,4241,2.838,4242,3.665,4245,5.325,4246,3.665,4247,5.014,4250,3.665,4255,3.457,4271,3.789,4273,3.291,4274,2.547,4294,7.424,4324,4.856,4334,3.665,4362,5.73,4367,5.191,4381,3.944,4384,5.325,4390,3.944,4399,3.034,4403,3.665,4411,6.884,4420,3.665,4421,3.152,4423,2.547,4424,3.202,4425,3.457,4440,3.291,4441,3.944,4452,7.473,4453,6.289,4454,4.367,4455,4.367,4456,3.944,4457,3.665,4458,3.665,4459,1.899,4460,4.367,4461,5.394,4462,10.08,4463,2.679,4464,7.473,4465,3.457,4466,4.367,4467,4.367,4468,6.345,4469,6.749,4470,6.749,4471,5.73,4472,3.457,4473,4.367,4474,2.487,4475,3.534,4476,7.473,4477,7.473,4478,6.345,4479,5.73,4480,5.906,4481,4.367,4482,4.781,4483,3.944,4484,3.152,4485,3.665,4486,3.944,4487,3.944,4488,3.665,4489,5.73,4490,3.944,4491,4.367,4492,3.944,4493,4.367,4494,3.291,4495,6.345,4496,4.58,4497,2.719,4498,3.944,4499,3.665,4500,4.367,4501,3.457,4502,4.367,4503,6.345,4504,4.367,4505,3.665,4506,3.944,4507,4.367,4508,5.73,4509,5.73,4510,3.944,4511,4.367,4512,4.367,4513,4.367,4514,4.367,4515,3.944,4516,4.367,4517,4.367,4518,3.944,4519,4.367,4520,4.367,4521,4.367,4522,4.367,4523,3.944,4524,4.367,4525,3.321,4526,4.367,4527,4.367,4528,4.367,4529,4.367,4530,2.487,4531,4.367]],["description//tracks/disser/canditate-minimum/04-international-capital-movement",[91,1.663,340,1.951,3880,2.035,4056,2.374,4058,2.184,4059,2.451,4359,2.538]],["title//tracks/disser/canditate-minimum/03-international-policy",[147,1.091,907,0.91,4067,2.248,4082,2.567,4105,2.983]],["content//tracks/disser/canditate-minimum/03-international-policy",[6,0.226,18,1.681,19,4.427,26,0.332,29,2.012,32,0.737,34,1.57,38,0.724,45,3.26,46,1.84,49,1.833,55,1.232,60,1.351,67,0.752,68,1.149,110,0.475,111,0.641,112,1.342,116,1.287,126,0.498,137,1.042,141,0.647,163,4.406,165,2.916,166,1.789,175,0.233,176,0.751,182,1.426,191,0.512,192,1.872,198,1.84,208,1.16,212,0.788,213,1.318,215,1.119,219,1.651,221,1.598,224,0.779,244,4.515,245,0.952,246,0.479,259,0.826,264,2.394,267,0.847,307,0.903,342,2.032,344,0.233,352,1.554,356,0.798,362,1.478,372,1.598,375,1.588,381,1.492,383,1.142,395,1.183,396,1.232,397,1.422,401,1.469,411,1.183,419,2.845,422,0.916,427,0.858,429,1.287,432,0.941,433,1.16,462,1.797,467,1.722,470,0.77,471,2.518,477,1.139,478,1.645,479,0.515,517,1.099,521,1.426,525,1.029,530,2.597,535,0.961,536,0.684,539,1.287,540,0.941,542,0.704,545,1.351,546,2.916,555,1.454,556,1.837,593,1.046,611,1.366,627,3.461,630,1.897,649,4.118,655,0.779,708,5.013,709,2.779,758,1.044,766,1.387,770,1.287,774,0.761,784,2.458,785,0.712,787,1.554,793,0.761,844,1.16,857,1.045,858,1.287,905,0.962,909,0.675,910,1.154,915,1.554,917,0.574,918,0.653,935,1.87,938,1.927,939,0.826,940,1.183,991,0.628,1018,1.231,1033,1.259,1055,1.106,1057,1.063,1066,1.4,1076,2.154,1089,0.816,1138,1.629,1192,1.703,1205,1.878,1234,1.7,1287,2.257,1294,1.469,1298,1.351,1315,0.892,1363,0.837,1460,1.789,1466,5.99,1482,2.38,1536,1.645,1539,4.154,1594,1.351,1605,1.789,1606,1.897,1610,1.784,1622,2.155,1632,1.662,1643,1.139,1654,1.351,1669,0.955,1672,1.259,1685,2.995,1691,1.789,1719,1.897,1729,1.08,1731,2.458,1734,1.207,1774,2.107,1777,1.942,1780,2.916,1826,1.516,1829,0.847,1849,1.469,1908,1.426,1917,2.845,1930,2.349,1933,5.476,1934,3.17,1948,2.731,1954,1.095,1996,1.16,2016,1.516,2024,4.751,2046,1.492,2210,3.862,2266,3.175,2270,1.387,2299,1.207,2334,5.904,2364,2.972,2369,3.707,2387,4.261,2465,2.041,2466,1.57,2570,1.906,2575,1.57,2609,6.418,2614,1.897,2652,2.628,2698,2.458,2716,1.387,2820,2.221,2886,4.095,2931,2.851,2932,2.458,2974,1.183,2981,1.789,3062,3.707,3103,2.628,3154,1.681,3221,1.516,3305,1.139,3327,1.351,3619,1.232,3621,3.703,3626,1.789,3636,1.469,3666,1.16,3676,4.406,3696,0.971,3803,3.659,3880,4.062,3891,1.099,3931,3.676,3953,4.97,3957,2.041,3979,3.676,4021,3.416,4022,3.416,4025,1.897,4029,1.426,4036,4.095,4063,5.606,4064,1.426,4066,7.466,4067,5.11,4068,7.113,4071,1.469,4079,2.986,4081,6.915,4082,5.745,4084,5.264,4085,1.516,4087,7.096,4093,1.897,4095,2.995,4098,4.516,4103,4.081,4105,6.481,4109,4.893,4110,6.418,4111,3.676,4112,9.493,4113,7.515,4114,7.44,4115,4.299,4116,8.603,4117,6.851,4118,3.609,4119,8.751,4120,4.127,4121,5.735,4122,6.586,4123,3.707,4124,6.203,4125,3.862,4126,3.522,4127,4.299,4128,4.118,4129,2.995,4130,7.614,4137,1.703,4144,4.771,4149,1.789,4150,1.351,4155,4.475,4158,1.631,4177,1.897,4194,6.501,4200,1.703,4202,3.175,4207,2.731,4219,2.628,4222,5.773,4234,3.416,4237,2.041,4241,2.458,4242,4.788,4247,4.608,4253,1.703,4254,2.041,4258,2.041,4269,2.628,4272,1.08,4274,2.206,4285,2.02,4294,1.789,4296,4.299,4297,3.175,4298,3.416,4300,1.897,4305,7.386,4314,2.554,4328,1.897,4330,1.631,4363,3.17,4366,2.041,4367,3.389,4372,1.897,4384,3.175,4404,1.897,4410,1.631,4418,1.789,4421,4.958,4423,2.206,4424,0.969,4437,1.426,4439,5.579,4440,1.703,4444,3.416,4447,2.386,4453,4.118,4458,1.897,4459,3.457,4461,2.731,4463,2.994,4475,3.177,4480,3.17,4482,1.703,4485,1.897,4488,1.897,4496,1.631,4499,1.897,4518,2.041,4532,2.041,4533,1.183,4534,8.8,4535,8.212,4536,2.041,4537,7.178,4538,1.789,4539,4.406,4540,3.175,4541,2.041,4542,5.773,4543,2.041,4544,2.26,4545,1.029,4546,1.516,4547,3.175,4548,2.26,4549,3.175,4550,2.26,4551,6.966,4552,2.041,4553,2.26,4554,2.155,4555,2.995,4556,3.783,4557,5.152,4558,2.041,4559,2.041,4560,5.773,4561,3.416,4562,2.26,4563,2.26,4564,2.26,4565,4.879,4566,2.26,4567,2.26,4568,1.426,4569,1.789,4570,2.041,4571,2.26,4572,4.406,4573,1.897,4574,3.175,4575,2.26,4576,2.041,4577,2.26,4578,2.26,4579,2.26,4580,2.26,4581,2.26,4582,2.26,4583,5.705,4584,5.705,4585,2.26,4586,4.879,4587,3.783,4588,2.26,4589,2.26,4590,2.26,4591,3.783,4592,2.26,4593,2.26,4594,5.705,4595,2.26,4596,2.26,4597,2.26,4598,6.35,4599,2.26,4600,2.26,4601,2.26,4602,2.26,4603,2.26,4604,2.26,4605,2.26,4606,3.783,4607,2.26,4608,2.26,4609,2.26,4610,2.26,4611,2.26,4612,2.26,4613,2.26,4614,2.26,4615,6.35,4616,1.426,4617,2.26,4618,2.041,4619,3.783,4620,1.897,4621,3.416,4622,4.406,4623,4.879,4624,3.783,4625,3.416,4626,2.041,4627,2.26,4628,3.783,4629,2.26,4630,1.897,4631,4.879,4632,3.175,4633,1.897,4634,1.789,4635,6.586,4636,3.783,4637,2.26,4638,2.26,4639,5.329,4640,6.35,4641,2.26,4642,2.26,4643,2.26,4644,2.26,4645,2.26,4646,2.26,4647,2.26,4648,2.26,4649,2.26,4650,2.26,4651,2.26,4652,2.26,4653,2.26,4654,2.26,4655,2.26,4656,2.26,4657,2.26,4658,2.26,4659,2.26,4660,2.26,4661,2.26,4662,2.26,4663,2.26,4664,2.26,4665,4.879,4666,2.26,4667,2.26,4668,2.26,4669,2.26,4670,2.26,4671,2.26,4672,2.26,4673,2.26,4674,2.26,4675,2.26,4676,2.26,4677,2.26,4678,2.26,4679,2.26,4680,2.26,4681,2.26,4682,3.783,4683,2.26,4684,2.26,4685,2.26,4686,2.26,4687,2.26,4688,2.26,4689,2.26,4690,2.26,4691,2.26,4692,2.26,4693,2.26,4694,2.26,4695,2.26,4696,2.26,4697,2.26,4698,2.26,4699,2.041,4700,2.26,4701,2.26,4702,2.26,4703,2.26,4704,2.26,4705,2.26,4706,2.26,4707,2.26,4708,3.783,4709,2.26,4710,2.26,4711,3.175,4712,4.118,4713,1.897,4714,1.789,4715,2.26,4716,2.26,4717,2.26,4718,2.26,4719,2.26,4720,2.26,4721,1.351,4722,2.26,4723,2.041,4724,3.783,4725,2.26,4726,2.26,4727,2.041,4728,2.26,4729,4.788,4730,2.041,4731,2.26,4732,2.26,4733,2.26,4734,1.897,4735,2.26,4736,1.631,4737,3.416,4738,1.631,4739,2.26,4740,2.26,4741,2.26,4742,2.26,4743,1.789,4744,2.26,4745,2.26,4746,2.041,4747,2.26,4748,2.26,4749,2.26,4750,2.041,4751,1.897,4752,2.041,4753,1.703,4754,2.041,4755,1.897,4756,2.26,4757,1.318,4758,2.26,4759,2.041,4760,5.152,4761,2.26,4762,2.041,4763,2.26,4764,2.26,4765,1.516,4766,2.26,4767,4.095,4768,3.522,4769,2.26,4770,3.416,4771,2.26,4772,2.26,4773,2.26,4774,1.789,4775,1.387,4776,1.631,4777,2.26,4778,2.26,4779,2.26,4780,2.26,4781,2.26,4782,2.845,4783,2.26,4784,2.26,4785,2.26,4786,2.041,4787,2.041,4788,2.26,4789,2.041,4790,1.703,4791,1.631]],["description//tracks/disser/canditate-minimum/03-international-policy",[91,1.663,340,1.951,3880,2.035,4056,2.374,4058,2.184,4059,2.451,4359,2.538]],["title//tracks/disser/canditate-minimum/02-international-trade",[120,1.16,907,1.016,4068,3.215,4082,2.864]],["content//tracks/disser/canditate-minimum/02-international-trade",[6,0.271,19,1.519,26,0.649,27,0.951,29,2.478,32,1.37,38,0.405,45,2.857,47,2.963,55,3.83,57,0.823,60,1.63,68,1.492,71,0.832,73,2.336,74,0.584,110,1.663,112,0.75,116,1.554,126,0.6,133,1.674,137,1.016,147,0.693,155,2.71,175,0.574,179,1.35,182,4.433,206,0.721,215,1.35,218,1.554,221,1.111,224,3.143,245,1.4,246,1.18,264,1.94,267,2.819,351,0.728,352,2.395,356,1.166,362,1.442,372,1.866,375,1.812,381,1.076,383,0.823,393,0.721,395,2.913,397,1.387,410,3.814,411,1.428,414,1.4,422,1.873,462,0.714,490,0.667,521,4.745,528,4.157,530,1.242,536,0.799,548,0.908,555,1.698,558,4.592,560,1.105,674,6.927,708,3.17,714,1.428,758,1.369,762,1.83,766,1.674,784,3.616,785,0.859,793,2.532,817,0.832,848,1.4,859,1.152,902,5.244,903,1.035,909,0.815,915,1.12,918,0.961,935,1.769,938,1.471,991,1.227,1018,1.438,1025,4.995,1037,4.081,1055,0.798,1088,1.029,1138,1.803,1198,1.326,1202,3.327,1272,3.988,1273,3.033,1287,1.262,1320,3.099,1431,4.444,1435,2.076,1462,2.159,1466,7.076,1482,1.022,1485,2.913,1539,5.755,1587,1.554,1592,3.072,1594,1.63,1623,1.895,1624,5.501,1639,0.823,1656,0.94,1669,2.968,1675,1.4,1678,1.304,1686,1.83,1689,2.64,1691,2.159,1694,3.922,1734,1.456,1736,1.772,1767,1.772,1774,3.099,1777,1.4,1867,1.772,1869,1.361,1908,1.721,1933,3.563,1954,2.387,1994,4.617,2023,2.055,2024,3.327,2055,1.456,2070,1.83,2082,3.068,2125,2.576,2170,1.591,2211,1.591,2225,1.374,2345,1.772,2570,3.223,2597,2.159,2820,3.605,2926,2.055,2931,4.82,2974,1.428,3008,2.358,3013,5.362,3062,3.616,3154,1.917,3327,1.63,3343,1.721,3591,3.17,3594,6.317,3621,1.591,3625,1.969,3696,0.7,3769,1.895,3810,3.707,3811,3.007,3878,4.193,3880,5.422,3887,6.005,3910,2.159,3921,2.159,3953,4.566,3965,2.159,3975,2.463,3984,1.326,3990,4.405,3999,5.967,4019,2.963,4032,1.969,4058,6.274,4063,4.566,4066,2.159,4067,3.348,4068,7.277,4074,2.289,4079,3.348,4081,6.737,4082,6.233,4083,5.777,4084,5.429,4085,6.122,4086,4.405,4087,7.09,4088,4.615,4089,6.312,4090,5.953,4091,5.146,4092,7.693,4093,6.646,4094,5.667,4095,7.343,4096,8.24,4097,6.346,4098,5.562,4099,4.193,4100,5.777,4101,5.026,4102,5.369,4103,5.084,4104,5.026,4105,3.068,4117,2.055,4118,3.166,4123,2.87,4127,2.055,4128,1.969,4129,2.159,4132,2.055,4137,5.967,4145,3.068,4155,5.227,4160,3.988,4171,3.988,4184,5.295,4188,2.463,4201,2.01,4202,3.707,4207,4.617,4209,4.67,4213,2.289,4221,2.463,4229,1.326,4247,6.314,4255,2.159,4271,2.42,4272,1.304,4274,1.591,4285,2.971,4294,2.159,4303,1.63,4305,4.67,4315,2.055,4318,5.026,4363,1.772,4364,1.83,4365,1.969,4367,1.895,4371,1.895,4402,3.988,4403,2.289,4422,2.289,4424,2.385,4437,2.786,4439,5.37,4447,2.786,4451,2.463,4453,3.188,4461,4.017,4469,2.463,4470,6.792,4471,7.151,4475,4.592,4479,3.988,4486,2.463,4487,2.463,4488,7.785,4490,3.988,4492,2.463,4494,2.055,4496,1.969,4497,2.385,4498,3.988,4499,2.289,4505,2.289,4508,6.346,4509,6.346,4533,1.428,4537,5.026,4540,2.289,4542,2.159,4547,2.289,4551,3.496,4554,1.554,4555,2.159,4557,6.346,4573,3.707,4711,3.707,4712,1.969,4753,2.055,4760,2.463,4762,2.463,4775,2.71,4790,2.055,4792,2.728,4793,2.728,4794,3.988,4795,2.463,4796,5.565,4797,4.416,4798,2.963,4799,2.728,4800,2.728,4801,2.728,4802,1.374,4803,2.728,4804,2.728,4805,1.772,4806,2.159,4807,2.159,4808,2.728,4809,1.969,4810,2.463,4811,2.728,4812,2.463,4813,2.728,4814,2.728,4815,2.728,4816,1.519,4817,7.521,4818,2.728,4819,4.416,4820,2.728,4821,4.416,4822,4.416,4823,2.728,4824,4.416,4825,5.369,4826,2.728,4827,2.786,4828,2.728,4829,2.463,4830,1.591,4831,2.728,4832,2.728,4833,2.728,4834,2.728,4835,3.866,4836,4.416,4837,2.728,4838,2.728,4839,6.346,4840,2.463,4841,2.728,4842,2.728,4843,2.728,4844,2.728,4845,2.463,4846,2.728,4847,2.728,4848,2.463,4849,1.519,4850,2.289,4851,2.463,4852,5.565,4853,2.728,4854,3.707,4855,4.416,4856,2.463,4857,3.707,4858,2.728,4859,2.728,4860,2.728,4861,2.728,4862,2.728,4863,2.728,4864,2.728,4865,2.463,4866,7.027,4867,2.728,4868,2.728,4869,2.728,4870,1.721,4871,2.728,4872,1.895,4873,2.728,4874,2.728,4875,2.728,4876,4.67,4877,2.728,4878,2.728,4879,2.728,4880,2.728,4881,4.416]],["description//tracks/disser/canditate-minimum/02-international-trade",[91,1.663,340,1.951,3880,2.035,4056,2.374,4058,2.184,4059,2.451,4359,2.538]],["title//tracks/disser/canditate-minimum/01-economic-theory",[114,0.859,907,1.016,4063,3.114,4064,3.023]],["content//tracks/disser/canditate-minimum/01-economic-theory",[6,0.368,26,0.522,32,1.443,33,1.894,34,1.242,45,2.79,46,1.725,49,1.45,52,2.363,53,1.208,55,1.934,58,1.118,73,1.45,74,0.759,80,1.965,109,1.222,114,1.327,120,2.12,121,2.809,147,2.138,161,2.594,165,3.248,172,1.641,182,2.238,191,0.803,208,1.822,212,1.237,221,1.367,224,1.222,234,0.738,246,0.752,333,1.168,344,0.681,356,1.189,372,1.499,374,0.788,380,2.465,381,2.605,383,1.071,393,0.938,419,2.069,461,1.237,471,1.566,479,0.483,507,1.118,517,1.725,519,1.457,528,4.809,530,3.369,535,0.902,536,0.983,548,1.181,554,1.822,555,1.364,558,1.976,610,2.978,625,3.775,637,1.438,675,1.589,754,3.204,758,1.163,766,2.177,770,4.544,778,1.763,787,1.457,799,1.788,803,2.238,851,5.758,856,2.232,859,2.295,864,1.788,910,1.082,918,1.14,935,1.553,938,2.108,1008,2.238,1018,1.155,1033,1.976,1037,2.689,1038,2.069,1049,1.566,1066,2.739,1067,2.177,1088,0.827,1120,5.227,1138,1.694,1143,1.457,1192,2.673,1208,1.071,1232,2.021,1315,1.4,1320,1.976,1363,1.313,1434,4.301,1437,1.894,1440,2.121,1466,6.832,1482,1.33,1516,1.237,1526,1.668,1539,3.761,1599,3.104,1624,2.465,1625,4.668,1669,4.322,1686,3.646,1734,3.526,1780,2.121,1828,5.576,1854,2.177,1867,2.306,1905,4.895,1908,3.428,1913,4.301,1922,2.978,1933,3.026,1948,2.561,1996,1.822,2007,4.56,2011,2.673,2024,2.121,2035,2.962,2046,1.4,2055,1.894,2064,3.204,2164,2.978,2170,3.851,2209,2.978,2237,2.809,2279,4.094,2299,3.526,2334,2.38,2364,1.222,2467,1.696,2974,3.873,2980,2.673,3214,1.478,3273,2.069,3432,2.121,3515,1.976,3621,3.169,3642,1.976,3734,2.673,3769,2.465,3811,1.668,3880,1.976,3976,2.809,4029,6.153,4058,2.121,4063,4.291,4064,6.455,4065,6.808,4066,4.301,4067,3.873,4068,6.988,4069,4.907,4070,7.91,4071,6.485,4072,6.683,4073,7.204,4074,6.695,4075,4.56,4076,6.683,4077,6.683,4078,6.211,4079,4.947,4080,6.683,4081,7.109,4082,3.947,4084,3.922,4086,2.809,4087,2.561,4091,2.306,4098,5.227,4099,7.244,4103,1.822,4105,5.141,4109,2.38,4110,4.56,4114,3.922,4132,2.673,4155,2.177,4161,4.976,4194,2.673,4195,2.978,4222,2.809,4232,5.858,4247,4.43,4260,3.204,4269,4.587,4271,1.543,4293,3.204,4296,4.094,4303,2.121,4314,1.857,4324,2.306,4360,5.227,4367,2.465,4369,2.809,4379,2.673,4385,2.978,4419,3.204,4421,3.922,4425,2.809,4428,2.978,4439,3.334,4440,2.673,4457,2.978,4458,2.978,4465,4.301,4475,5.699,4480,4.291,4489,8.536,4496,2.561,4505,2.978,4515,3.204,4533,1.857,4535,3.204,4539,3.204,4540,2.978,4542,4.301,4547,2.978,4549,4.56,4551,2.809,4555,2.809,4574,2.978,4622,3.204,4632,5.542,4634,4.301,4711,2.978,4713,2.978,4738,2.561,4753,2.673,4757,2.069,4787,5.963,4789,3.204,4806,5.227,4812,3.204,4825,2.978,4827,2.238,4857,2.978,4882,3.548,4883,6.211,4884,3.548,4885,3.204,4886,2.978,4887,3.548,4888,3.548,4889,2.673,4890,4.907,4891,5.963,4892,4.56,4893,3.548,4894,4.56,4895,3.548,4896,3.548,4897,2.978,4898,5.434,4899,3.548,4900,5.434,4901,4.907,4902,5.542,4903,3.204,4904,3.204,4905,3.204,4906,3.548,4907,3.548,4908,3.548,4909,4.907,4910,3.548,4911,5.963,4912,3.548,4913,3.548,4914,3.548,4915,3.548,4916,3.548,4917,3.548,4918,3.548,4919,2.809,4920,3.204,4921,2.673,4922,3.548,4923,3.548,4924,5.542,4925,3.548,4926,3.548,4927,3.204,4928,3.548,4929,3.548,4930,3.204,4931,3.548,4932,3.548,4933,3.548,4934,3.548,4935,3.548,4936,3.548,4937,2.673,4938,3.548,4939,3.548,4940,3.204,4941,3.548,4942,2.978,4943,3.204,4944,3.548,4945,3.548,4946,3.548,4947,6.603,4948,3.548,4949,3.548,4950,3.548,4951,3.548,4952,4.907,4953,5.434,4954,2.673,4955,2.809,4956,5.434,4957,3.548,4958,3.548,4959,2.673,4960,3.548,4961,3.548,4962,3.204,4963,3.548,4964,3.204,4965,2.809,4966,3.548,4967,6.603,4968,3.548,4969,3.204,4970,3.548,4971,2.978,4972,2.978,4973,3.548,4974,3.548,4975,3.204,4976,3.548,4977,3.548,4978,3.548,4979,3.204,4980,3.548,4981,3.548,4982,3.204,4983,3.548,4984,4.907,4985,7.4,4986,8.536,4987,8.758,4988,3.548,4989,1.668,4990,3.204,4991,4.907,4992,3.548,4993,3.548,4994,3.548,4995,3.548,4996,3.204,4997,5.434,4998,3.548,4999,3.548,5000,3.548,5001,3.548,5002,3.204,5003,3.204,5004,2.978,5005,3.548,5006,2.673,5007,3.548]],["description//tracks/disser/canditate-minimum/01-economic-theory",[91,1.663,340,1.951,3880,2.035,4056,2.374,4058,2.184,4059,2.451,4359,2.538]],["title//tracks/aws-certified-developer-associate/_index",[6,0.108,4525,1.714,5008,1.404,5009,2.749,5010,4.613,5011,2.958,5012,2.958]],["content//tracks/aws-certified-developer-associate/_index",[0,4.285,6,0.116,16,4.039,30,1.687,35,1.887,120,0.855,144,2.667,147,1.375,161,2.029,254,2.368,256,2.294,257,4.867,270,1.47,271,3.015,292,3.321,389,4.039,424,1.848,442,3.147,444,3.321,446,2.794,492,2.779,501,2.548,575,2.254,681,3.321,697,3.188,701,3.321,702,3.095,722,1.924,840,3.045,842,2.833,886,4.204,932,2.503,1005,4.636,1046,1.275,1086,2.11,1151,1.633,1184,2.545,1336,1.687,1365,2.426,1386,1.582,1405,1.955,1502,2.166,1552,2.66,1553,2.794,1664,4.752,1749,2.389,1758,2.963,1759,2.059,1837,4.285,1855,2.059,1889,4.417,1900,5.525,1945,2.963,2029,2.368,2122,3.188,2131,3.015,2162,2.227,2174,3.76,2222,3.76,2242,2.452,2247,2.294,2260,3.517,2359,2.963,2382,1.323,2452,5.525,2454,3.76,2468,1.747,2595,4.285,2649,2.794,2678,2.227,2767,2.794,2831,4.285,2836,2.963,2915,1.966,2975,2.95,2976,1.189,3009,2.166,3030,5.525,3036,2.11,3120,2.548,3434,3.411,3457,2.548,3500,4.417,3554,1.966,3737,6.3,3795,2.294,3988,5.172,4236,3.907,4525,5.218,5008,4.837,5009,6.68,5010,9.831,5011,7.188,5012,9.732,5013,3.53,5014,7.583,5015,7.188,5016,2.963,5017,3.188,5018,3.53,5019,5.413,5020,2.452,5021,2.963,5022,2.368,5023,4.543,5024,1.924,5025,6.328,5026,3.528,5027,3.53,5028,3.653,5029,3.415,5030,4.304,5031,2.368,5032,3.53,5033,2.426,5034,3.632,5035,5.211,5036,3.228,5037,5.413,5038,5.413,5039,5.413,5040,4.888,5041,3.53,5042,6.583,5043,4.464,5044,3.53,5045,2.963,5046,3.53,5047,3.53,5048,3.188,5049,3.53,5050,3.53,5051,3.53,5052,2.794,5053,3.53,5054,3.53,5055,3.188,5056,7.048,5057,5.413,5058,2.794,5059,5.413,5060,5.021,5061,2.963,5062,3.188,5063,3.53,5064,4.888,5065,1.633,5066,2.963,5067,4.543,5068,3.53,5069,3.188,5070,3.188,5071,3.188,5072,5.413,5073,3.53,5074,3.935,5075,2.963,5076,3.188,5077,5.413,5078,6.53,5079,3.53,5080,6.583,5081,3.839,5082,5.413,5083,2.452,5084,3.53,5085,5.413,5086,7.188,5087,4.888,5088,4.888,5089,4.888,5090,5.413,5091,2.059,5092,3.76,5093,5.681,5094,4.285,5095,3.188,5096,3.53,5097,4.543,5098,5.413,5099,5.413,5100,1.782,5101,4.285,5102,3.53,5103,4.888,5104,5.413,5105,3.53,5106,2.794,5107,4.543,5108,3.53,5109,3.53,5110,3.53,5111,6.583,5112,5.413,5113,5.413,5114,5.413,5115,5.413,5116,5.413,5117,5.413,5118,6.583,5119,6.583,5120,6.583,5121,5.413,5122,3.852,5123,3.53,5124,3.53,5125,3.53,5126,2.794,5127,1.885,5128,2.779,5129,1.885,5130,4.285,5131,5.413,5132,3.321,5133,3.517,5134,5.413,5135,2.66,5136,5.211,5137,3.188,5138,4.023,5139,3.53,5140,4.285,5141,3.907,5142,5.413,5143,2.059,5144,3.53,5145,3.53,5146,2.227,5147,3.53,5148,3.53,5149,4.573,5150,3.53,5151,5.413,5152,2.294,5153,1.513,5154,3.53,5155,2.963,5156,3.632,5157,2.95,5158,1.216,5159,2.794,5160,7.381,5161,2.294,5162,2.294,5163,3.53,5164,3.517,5165,3.188,5166,2.963,5167,3.188,5168,3.53,5169,3.53,5170,3.188,5171,2.166,5172,3.188,5173,1.812,5174,2.794,5175,3.53,5176,3.53,5177,2.227,5178,2.059,5179,5.413,5180,2.368,5181,3.53,5182,1.607,5183,4.079,5184,4.888,5185,3.53,5186,3.53,5187,3.53,5188,2.963,5189,3.53,5190,3.53,5191,2.963,5192,3.53,5193,3.53,5194,5.834,5195,4.417,5196,4.543,5197,3.53,5198,3.76,5199,3.188,5200,5.413,5201,3.632,5202,4.888,5203,2.548,5204,5.413,5205,3.53,5206,3.53,5207,2.294,5208,3.53,5209,3.53,5210,5.413,5211,3.53,5212,6.583,5213,3.53,5214,4.285,5215,3.839,5216,3.188,5217,1.924,5218,3.53,5219,3.53,5220,5.413,5221,3.188,5222,2.548,5223,3.53,5224,2.794,5225,3.53,5226,3.53,5227,2.66,5228,3.188,5229,3.53,5230,3.53,5231,3.53,5232,3.53,5233,3.188,5234,2.66]],["description//tracks/aws-certified-developer-associate/_index",[16,2.241,4525,1.912,5008,1.566,5009,3.066,5014,2.753,5020,2.538,5056,3.066]],["title//tracks/aws-certified-developer-associate/lambda/",[2174,5.098]],["content//tracks/aws-certified-developer-associate/lambda/",[1,1.757,6,0.363,26,0.829,32,1.099,34,2.303,35,1.965,38,0.837,43,3.288,54,3.917,56,2.879,65,1.274,73,1.505,80,1.702,91,3.454,96,1.289,102,2.158,110,1.184,112,1.551,114,1.537,120,2.076,144,2.285,146,2.841,173,1.405,176,1.12,219,1.632,227,3.061,240,3.417,246,1.609,248,2.951,259,2.061,261,2.879,272,2.382,313,1.666,344,0.783,351,1.505,356,0.954,361,4.051,366,4.312,369,2.651,370,2.489,374,1.686,389,3.46,397,1.405,410,2.608,437,2.954,452,5.126,462,1.986,467,1.702,478,2.452,488,2.443,492,5.259,525,2.567,536,1.373,548,1.877,594,4.07,601,3.37,626,2.266,627,2.841,679,6.462,701,3.46,762,3.783,781,2.567,785,1.776,800,2.567,818,3.783,844,2.895,886,3.212,907,1.945,917,1.433,918,0.974,925,1.567,932,2.608,951,4.425,952,2.608,994,4.931,1005,3.3,1019,2.061,1068,2.895,1069,3.37,1076,2.489,1089,2.037,1090,3.664,1151,2.608,1245,3.783,1341,1.898,1374,2.567,1405,3.098,1424,2.037,1426,3.69,1430,2.651,1470,1.965,1524,3.288,1528,2.452,1545,4.463,1611,0.87,1618,1.898,1718,4.249,1745,2.167,1880,3.011,1881,2.79,1987,2.844,2027,4.322,2052,2.742,2095,5.477,2132,3.212,2174,6.65,2287,3.46,2555,3.664,2564,2.567,2778,3.917,2872,5.091,2985,3.557,3030,4.732,3145,3.073,3277,4.732,3400,6.789,3406,5.092,3432,3.37,3518,3.46,3587,3.664,3670,3.783,3753,4.463,3904,5.717,3915,2.695,4079,4.489,4314,2.951,4816,3.14,5008,3.931,5026,2.695,5028,3.755,5065,2.608,5078,5.35,5087,6.852,5088,7.745,5103,5.092,5130,4.463,5132,3.46,5146,3.557,5149,3.917,5155,4.732,5164,3.664,5235,5.638,5236,5.638,5237,4.732,5238,4.463,5239,5.638,5240,4.732,5241,3.46,5242,5.092,5243,5.638,5244,5.638,5245,9.173,5246,7.588,5247,7.588,5248,7.588,5249,4.463,5250,5.638,5251,5.638,5252,5.638,5253,5.638,5254,5.638,5255,5.638,5256,5.638,5257,5.638,5258,4.463,5259,5.638,5260,4.07,5261,4.732,5262,6.423,5263,6.368,5264,4.732,5265,5.638,5266,5.638,5267,5.092,5268,4.463,5269,5.638,5270,3.664,5271,7.588,5272,5.638,5273,5.638,5274,7.588,5275,5.638,5276,5.638,5277,5.638,5278,5.638,5279,5.638,5280,5.638,5281,5.638,5282,5.638,5283,7.588,5284,7.588,5285,5.638,5286,7.588,5287,3.664,5288,5.638,5289,5.638,5290,5.092,5291,4.07,5292,5.092,5293,5.638,5294,5.091,5295,4.463,5296,5.638,5297,4.249,5298,5.638]],["description//tracks/aws-certified-developer-associate/lambda/",[2174,3.398,2949,2.066,5008,2.096,5299,2.724]],["title//tracks/aws-certified-developer-associate/iam/",[5141,5.298]],["content//tracks/aws-certified-developer-associate/iam/",[7,3.01,26,1.003,31,2.349,38,1.012,45,3.501,68,1.234,83,3.218,110,1.432,176,1.706,184,4.922,245,2.56,263,2.726,271,5.236,278,3.501,289,1.406,302,3.972,334,3.374,344,1.018,352,2.171,427,2.588,464,2.405,471,3.01,479,1.343,488,2.195,507,2.148,593,1.124,627,4.328,628,3.114,636,2.296,640,2.322,741,3.344,762,4.575,852,3.205,907,1.446,918,1.704,925,1.895,946,4.92,951,5.008,1019,3.608,1024,1.305,1055,1.994,1076,3.01,1138,1.75,1190,4.301,1220,5.723,1246,4.328,1255,2.588,1405,3.396,1480,3.259,1535,3.976,1536,2.965,1610,3.14,1869,2.102,1982,5.723,2270,4.184,2364,2.959,2588,5.723,2678,4.301,2929,3.972,3099,4.737,3154,2.959,3189,3.641,3587,4.431,4103,3.501,4118,3.374,4229,4.798,4398,4.737,4424,2.922,5008,4.611,5078,5.482,5092,6.855,5107,5.723,5122,3.915,5136,6.798,5141,7.697,5149,5.966,5240,7.89,5261,5.723,5300,3.259,5301,5.138,5302,6.531,5303,6.158,5304,2.69,5305,1.933,5306,6.818,5307,6.818,5308,5.581,5309,3.798,5310,6.818,5311,5.397,5312,6.818,5313,4.25,5314,4.431,5315,4.184,5316,5.723,5317,6.818]],["description//tracks/aws-certified-developer-associate/iam/",[271,1.876,355,1.073,2949,1.423,5008,1.444,5122,1.403,5136,2.667,5141,2.432,5299,1.876]],["title//tracks/aws-certified-developer-associate/elasticbeanstalk/",[5093,3.636,5094,4.935]],["content//tracks/aws-certified-developer-associate/elasticbeanstalk/",[6,0.177,7,2.375,26,1.231,30,1.676,31,1.853,32,1.049,38,0.799,49,1.962,55,4.006,57,1.623,65,1.234,68,1.704,75,1.872,96,1.23,105,2.747,109,1.853,111,1.525,112,1.48,113,2.447,118,1.48,120,1.779,139,1.796,165,3.216,176,1.46,183,2.122,191,1.896,195,3.216,201,2.21,204,1.811,227,2.623,234,1.119,235,2.526,246,1.141,251,3.574,261,2.041,268,2.172,278,2.762,331,1.713,340,2.872,342,2.241,344,0.555,355,1.713,356,0.924,374,1.195,395,2.816,406,2.711,441,3.196,459,1.791,479,0.732,494,3.574,506,3.883,507,2.637,519,2.21,536,0.973,593,1.211,595,1.991,600,0.92,626,1.606,628,1.557,636,2.474,675,2.149,678,2.762,718,1.943,741,2.862,840,3.399,852,3.936,859,2.272,907,2.062,918,1.446,938,1.422,951,5.671,994,3.496,1007,2.449,1019,1.967,1024,1.029,1059,2.662,1076,2.375,1088,1.253,1110,1.967,1181,2.449,1187,2.529,1234,1.875,1240,2.122,1284,1.943,1293,2.996,1311,3.064,1320,2.996,1361,2.762,1386,2.411,1405,2.655,1424,2.655,1426,4.071,1430,3.936,1439,3.216,1440,3.216,1451,2.932,1456,4.053,1470,3.283,1478,2.21,1487,4.812,1649,3.301,1702,2.843,1741,3.588,1803,2.932,1814,3.883,1857,3.346,1858,2.041,1887,2.932,1954,1.557,2035,2.932,2158,3.137,2240,4.51,2382,2.016,2470,2.616,2778,5.106,2888,3.609,3159,2.655,3184,5.818,3495,1.853,3499,5.818,3661,2.616,3696,2.309,3750,2.996,3904,5.538,3923,3.609,4079,2.816,4361,3.609,4533,2.816,4569,4.258,4736,3.883,4757,3.137,4791,3.883,4870,3.394,5008,4.167,5026,3.513,5029,4.636,5092,3.737,5093,6.062,5094,8.229,5129,3.924,5132,4.51,5133,4.776,5135,6.308,5155,4.515,5270,3.496,5287,3.496,5304,2.122,5316,4.515,5318,5.379,5319,4.258,5320,5.106,5321,3.737,5322,4.515,5323,3.847,5324,3.399,5325,5.379,5326,5.379,5327,3.301,5328,5.379,5329,5.818,5330,4.258,5331,5.379,5332,4.636,5333,5.379,5334,5.379,5335,3.301,5336,5.379,5337,3.137,5338,5.379,5339,4.515,5340,5.379,5341,5.379,5342,5.379,5343,5.305,5344,7.35,5345,4.258,5346,5.379,5347,5.379,5348,4.258,5349,5.379,5350,3.883,5351,4.258,5352,8.372,5353,5.379,5354,5.818,5355,7.456,5356,5.379,5357,5.379,5358,5.379,5359,5.379,5360,3.301,5361,5.379,5362,5.379,5363,5.379,5364,5.379,5365,5.379,5366,3.883,5367,4.515,5368,4.858,5369,5.379,5370,5.379,5371,5.379,5372,5.379,5373,2.872,5374,5.379,5375,5.379,5376,4.858,5377,4.006,5378,4.858,5379,5.379,5380,4.858,5381,5.379]],["description//tracks/aws-certified-developer-associate/elasticbeanstalk/",[75,0.494,2949,1.232,5008,1.997,5093,2.717,5094,3.688,5299,1.624,5382,2.633]],["title//tracks/aws-certified-developer-associate/ec2/",[5092,5.098]],["content//tracks/aws-certified-developer-associate/ec2/",[6,0.304,14,1.748,17,2.942,32,1.117,35,2.674,91,3.492,103,3.516,109,1.974,110,1.611,113,1.908,114,1.375,120,1.387,137,1.047,144,2.322,175,0.591,176,1.834,191,1.298,193,4.136,202,1.56,203,2.443,214,2.492,226,2.387,229,2.322,242,3.845,243,7.927,245,1.442,247,4.314,261,2.175,269,3.615,271,3.192,289,1.181,302,4.452,334,2.836,336,2.942,355,1.825,397,1.428,417,3.425,427,2.175,441,2.492,468,2.354,479,1.044,494,3.73,501,4.136,507,1.805,593,0.944,626,1.711,628,1.659,655,1.974,675,2.243,741,2.987,778,1.53,785,1.805,800,2.609,818,3.845,840,3.999,849,1.17,907,1.215,918,0.99,931,1.997,946,4.015,951,3.342,1005,2.492,1019,2.804,1026,2.65,1047,4.136,1076,2.529,1110,2.095,1190,3.615,1287,3.548,1293,3.192,1300,2.421,1363,2.121,1374,3.936,1417,4.809,1426,2.786,1480,2.739,1502,6.308,1514,7.256,1536,2.492,1887,3.124,1930,1.56,1938,4.809,1942,4.136,1983,3.516,2029,3.845,2074,4.839,2131,3.192,2260,3.724,2364,1.974,2382,2.147,2470,2.786,2629,4.279,2662,2.322,2731,3.192,2915,5.799,2975,3.124,3015,2.609,3023,4.136,3189,3.06,3479,4.809,3495,1.974,3497,4.536,3499,7.62,3696,1.47,3861,6.437,4079,2.999,4361,3.845,5008,3.957,5023,4.809,5029,4.839,5033,2.568,5036,2.203,5074,3.425,5078,6.187,5083,3.981,5091,3.342,5092,7.572,5093,3.342,5107,6.437,5122,4.214,5128,2.942,5129,3.06,5143,5.996,5180,3.845,5238,6.072,5242,5.175,5303,5.175,5316,7.749,5332,3.615,5337,3.342,5383,5.73,5384,6.437,5385,6.927,5386,3.981,5387,5.175,5388,3.981,5389,4.279,5390,5.73,5391,3.981,5392,5.73,5393,5.537,5394,5.175,5395,6.072,5396,7.67,5397,5.168,5398,4.809,5399,8.646,5400,5.73,5401,7.67,5402,6.006,5403,5.73,5404,4.585,5405,3.516,5406,5.175,5407,3.516,5408,10.117,5409,5.73,5410,5.73,5411,4.318,5412,6.927,5413,6.927,5414,5.73,5415,5.73,5416,5.73,5417,5.73,5418,5.73,5419,4.536,5420,5.73,5421,5.73,5422,5.175,5423,5.73,5424,5.73,5425,5.175]],["description//tracks/aws-certified-developer-associate/ec2/",[2949,2.066,5078,2.852,5092,3.398,5299,2.724]],["title//tracks/archive/",[1855,4.28]],["content//tracks/archive/",[6,0.329,1855,5.128,3009,5.395,5426,9.033,5427,9.033]],["description//tracks/archive/",[]],["title//tracks/algorithms-101/leetcode/_index",[5428,1.726]],["content//tracks/algorithms-101/leetcode/_index",[]],["description//tracks/algorithms-101/leetcode/_index",[]],["title//tracks/algorithms-101/leetcode/medium/_index",[3343,4.63]],["content//tracks/algorithms-101/leetcode/medium/_index",[]],["description//tracks/algorithms-101/leetcode/medium/_index",[]],["title//tracks/algorithms-101/leetcode/medium/28.en",[733,2.036,795,1.717,1086,2.326,2242,2.703,3143,1.925,5429,3.265]],["content//tracks/algorithms-101/leetcode/medium/28.en",[6,0.365,114,1.93,120,1.823,313,3.093,623,2.956,733,4.778,795,3.323,880,5.933,1046,3.549,1327,4.892,1751,2.698,1789,3.274,1811,5.2,1843,4.03,1860,5.69,1958,4.03,2027,5.597,2382,2.821,2468,4.518,3143,4.863,5198,6.342,5234,5.673,5405,4.619,5428,2.312,5429,7.662,5430,6.318,5431,10.863,5432,10.766,5433,7.528,5434,9.13,5435,9.13,5436,9.13,5437,9.13,5438,9.13,5439,7.528,5440,7.528,5441,7.528,5442,7.528]],["description//tracks/algorithms-101/leetcode/medium/28.en",[733,1.912,795,1.613,1086,2.184,2242,2.538,3143,1.808,5428,0.859,5429,3.066]],["title//tracks/algorithms-101/leetcode/medium/151",[795,2.115,2090,3.61,3119,3.458,5443,4.021]],["content//tracks/algorithms-101/leetcode/medium/151",[6,0.322,29,2.631,32,1.985,52,3.244,102,2.765,124,1.538,158,2.867,246,1.582,356,0.938,467,2.251,470,2.54,472,2.943,473,3.396,535,1.896,539,5.172,600,1.276,606,2.662,623,2.073,635,3.333,864,3.759,905,1.372,907,2.159,1179,5.182,1283,5.71,1308,1.991,1592,2.512,1611,1.151,1751,2.204,1791,3.692,1860,5.057,1867,4.847,1881,3.692,2005,3.759,2052,3.627,2090,5.621,2323,6.261,2324,4.066,2327,7.931,2365,5.621,2373,5.621,2643,4.069,2645,4.35,2870,5.057,2929,3.45,3281,2.662,3362,6.567,3504,5.451,3647,7.62,5198,5.182,5428,1.755,5443,6.261,5444,6.737,5445,5.905,5446,7.46,5447,7.46,5448,7.46,5449,7.46]],["description//tracks/algorithms-101/leetcode/medium/151",[102,0.919,905,0.512,1283,1.876,5428,0.859,5443,3.066,5445,2.892,5450,1.589]],["title//tracks/algorithms-101/leetcode/medium/735/",[5451,4.547,5452,4.893,5453,5.418]],["content//tracks/algorithms-101/leetcode/medium/735/",[6,0.345,7,2.949,14,3.083,26,0.982,80,1.902,83,2.503,112,2.886,114,1.756,175,0.875,212,3.246,219,1.933,246,1.416,313,2.752,356,0.84,370,2.949,467,2.016,518,2.081,527,3.805,535,2.154,548,2.224,562,4.099,606,2.384,623,1.856,670,3.895,716,3.14,745,3.171,817,2.037,905,1.305,935,1.571,1103,2.744,1180,3.921,1308,1.783,1362,5.256,1520,7.753,1521,7.176,1661,2.275,1751,1.974,1842,3.567,1849,4.341,1890,3.859,1928,5.606,2057,3.895,2345,4.341,2765,4.272,3065,3.993,3213,5.348,3214,2.782,3242,5.067,3281,2.384,3304,5.657,3619,3.641,3769,4.64,3792,4.64,4071,6.819,4120,4.341,4775,5.201,5428,1.571,5451,5.606,5452,9.328,5454,4.64,5455,10.082,5456,6.68,5457,2.822,5458,8.845,5459,6.032,5460,6.68,5461,3.641,5462,8.845,5463,6.68,5464,5.789,5465,8.477,5466,7.655]],["description//tracks/algorithms-101/leetcode/medium/735/",[905,0.559,1928,3.348,5428,0.939,5450,1.735,5451,3.348,5455,3.603]],["title//tracks/algorithms-101/leetcode/medium/649/",[5467,4.547,5468,4.547,5469,4.547]],["content//tracks/algorithms-101/leetcode/medium/649/",[6,0.352,7,3.418,14,2.362,18,2.002,26,1.422,32,1.509,80,2.083,83,2.178,96,2.123,102,2.191,141,2.66,172,2.688,173,1.448,175,0.6,356,0.974,380,4.037,383,1.754,439,3.64,459,1.935,462,1.521,474,2.826,479,0.791,507,1.831,518,1.811,525,2.646,535,1.477,562,3.566,600,1.325,606,2.074,623,1.615,675,2.264,785,1.831,817,2.95,901,3.223,905,1.355,909,2.312,910,1.772,911,3.777,935,1.367,1066,2.151,1088,1.804,1138,1.491,1308,1.551,1315,3.054,1479,5.781,1592,2.607,1625,6.275,1661,1.979,1666,4.379,1716,5.415,1751,1.717,1767,7,1780,3.474,1791,2.876,1858,2.938,1860,4.312,1876,3.666,1890,3.525,1920,1.979,1989,4.379,2006,5.015,2104,4.195,2237,4.6,2629,4.309,2643,2.605,2645,3.389,3213,3.666,3281,2.074,3316,4.379,3504,4.312,3518,4.751,3619,3.168,3627,4.195,3642,4.85,3800,2.688,4010,3.31,4158,4.195,4304,8.983,4757,3.389,4774,6.129,4816,3.237,5428,1.367,5457,2.455,5467,4.877,5468,4.877,5469,4.877,5470,7.743,5471,10.875,5472,10.313,5473,9.947,5474,11.224,5475,5.812,5476,9.286,5477,5.812,5478,9.947,5479,5.812,5480,5.248,5481,9.671,5482,3.389,5483,5.812,5484,4.037,5485,4.877,5486,4.6,5487,4.877,5488,5.812,5489,5.812,5490,5.812,5491,5.248,5492,6.993,5493,4.037,5494,5.812,5495,5.248,5496,4.6,5497,5.812,5498,4.877,5499,5.812,5500,4.877,5501,5.812,5502,5.812,5503,3.777,5504,7.308,5505,5.812,5506,5.812,5507,5.812,5508,5.812,5509,5.812,5510,5.812,5511,5.812,5512,5.812,5513,5.812,5514,5.812]],["description//tracks/algorithms-101/leetcode/medium/649/",[905,0.559,5428,0.939,5450,1.735,5467,3.348,5468,3.348,5469,3.348]],["title//tracks/algorithms-101/leetcode/medium/454/",[2978,4.289,5515,4.547,5516,5.418]],["content//tracks/algorithms-101/leetcode/medium/454/",[1,2.128,6,0.367,17,5.414,18,2.961,38,1.014,53,2.325,80,1.928,112,2.364,114,1.541,139,1.669,176,1.356,216,2.061,313,2.78,344,0.705,422,1.282,479,0.929,535,2.184,555,2.624,556,2.198,623,1.897,716,3.21,745,2.039,800,4.632,905,1.204,935,1.606,1089,2.466,1138,1.752,1308,1.823,1335,7.069,1432,5.971,1598,5.333,1661,2.325,1675,4.413,1751,2.018,1781,8.916,1790,4.19,1792,2.694,1842,4.589,1880,5.746,1920,2.325,1955,3.264,2009,2.926,2244,4.082,2298,4.581,2629,5.036,2703,6.553,2964,6.969,2973,4.929,2974,5.167,3281,2.437,3386,3.982,3519,6.209,4246,5.73,4545,3.108,4989,3.21,5428,1.606,5457,2.884,5503,4.437,5515,5.73,5517,6.166,5518,6.828,5519,9.873,5520,9.873,5521,8.519,5522,6.477,5523,5.767,5524,2.926,5525,5.73,5526,6.828,5527,6.166,5528,6.828,5529,6.828,5530,6.828]],["description//tracks/algorithms-101/leetcode/medium/454/",[793,1.23,905,0.512,3759,3.066,5428,0.859,5450,1.589,5515,3.066,5531,3.066]],["title//tracks/algorithms-101/leetcode/medium/443/",[795,2.392,5532,4.289,5533,5.418]],["content//tracks/algorithms-101/leetcode/medium/443/",[6,0.349,14,2.258,26,1.089,32,1.443,114,1.62,124,1.863,225,2.211,234,1.541,313,2.671,333,2.437,344,0.764,370,4.484,507,2.332,535,1.881,536,1.34,593,1.22,623,2.057,745,2.211,767,5.27,845,3.084,857,3.424,905,1.424,910,3.232,1043,4.217,1079,2.846,1308,1.976,1521,6.278,1599,3.48,1648,3.801,1661,2.521,1751,2.188,1791,3.664,1843,3.268,1881,5.36,1955,3.539,2009,4.353,2057,4.317,2218,4.426,2233,6.278,2467,3.539,2697,4.67,3281,3.225,3386,4.317,3617,4.73,4743,5.86,5428,1.742,5461,4.036,5462,6.686,5532,5.86,5534,6.213,5535,7.403,5536,7.403,5537,5.008,5538,10.83,5539,10.83,5540,7.403,5541,5.86,5542,3.801,5543,7.403,5544,6.064,5545,7.403,5546,7.403]],["description//tracks/algorithms-101/leetcode/medium/443/",[102,0.647,137,0.469,905,0.36,1881,1.272,2207,1.936,2233,1.785,3386,1.498,3617,1.345,5428,0.604,5450,1.117,5532,2.034,5537,1.319]],["title//tracks/algorithms-101/leetcode/medium/437/",[2964,3.215,3341,3.793,5547,4.021,5548,2.864]],["content//tracks/algorithms-101/leetcode/medium/437/",[6,0.359,14,2.838,31,2.298,38,0.99,52,2.901,73,1.781,74,1.428,80,1.496,91,3.037,114,1.668,158,2.564,175,0.688,196,3.282,295,1.646,313,3.051,344,0.688,462,1.746,472,2.631,479,1.153,535,2.152,553,3.715,560,2.703,600,1.592,623,2.586,640,3.334,733,3.491,742,1.746,793,2.246,905,1.304,910,2.986,996,3.189,1066,3.967,1308,1.781,1376,6.113,1470,2.952,1628,2.859,1639,2.013,1650,3.987,1661,2.272,1677,3.491,1721,4.634,1747,2.246,1751,2.75,1792,2.631,1843,3.739,1858,2.531,1958,2.945,1961,3.562,2191,4.335,2244,3.987,2298,4.476,2410,4.815,2461,5.598,2573,5.026,2974,5.405,3281,2.381,3385,6.374,3386,3.89,3432,3.987,3495,3.373,3803,2.5,4131,4.476,5428,1.569,5457,2.818,5522,5.026,5523,4.476,5524,2.859,5531,5.598,5547,5.598,5549,4.093,5550,5.124,5551,6.024,5552,5.504,5553,7.649,5554,3.636,5555,6.024,5556,4.634,5557,7.066,5558,6.671,5559,4.476,5560,6.704,5561,4.634,5562,5.28,5563,5.28,5564,4.634,5565,4.335,5566,5.28,5567,4.634,5568,5.28,5569,3.715,5570,5.598,5571,7.781,5572,9.789,5573,9.306,5574,5.598,5575,8.469,5576,4.815,5577,8.469,5578,5.598,5579,5.598,5580,5.598,5581,5.026,5582,6.671,5583,5.598]],["description//tracks/algorithms-101/leetcode/medium/437/",[462,0.672,742,0.672,793,0.865,905,0.36,910,0.784,1066,0.951,5428,0.604,5450,1.117,5531,2.156,5547,2.156,5549,1.577,5550,1.345]],["title//tracks/algorithms-101/leetcode/medium/394/",[795,2.392,3817,3.911,5584,4.547]],["content//tracks/algorithms-101/leetcode/medium/394/",[6,0.374,14,3.252,17,3.034,26,1.291,27,2.06,49,2.09,80,1.326,83,2.934,96,1.79,102,2.801,120,2.263,124,1.218,147,2.471,158,2.271,159,2.036,175,0.808,219,2.541,221,1.487,246,1.253,288,1.011,333,1.945,344,0.808,356,0.743,422,1.47,470,2.012,490,1.444,507,1.861,535,1.989,536,1.069,600,1.011,604,4.991,623,1.642,714,3.093,773,5.899,779,2.301,793,3.59,800,2.69,869,5.899,905,1.23,935,1.39,1038,3.446,1052,6.197,1055,2.29,1138,1.516,1227,4.105,1308,1.577,1331,1.71,1371,3.728,1598,4.799,1745,3.009,1747,2.636,1751,1.746,1782,4.46,1792,2.331,1795,4.453,1796,6.727,1858,2.243,1860,4.361,1881,5.045,1890,3.564,1952,2.978,2103,3.84,2364,2.036,2462,4.265,2929,2.733,2985,3.728,3156,4.105,3214,2.461,3281,2.109,3304,5.379,3315,4.678,3340,4.678,3361,4.265,3392,4.265,3504,3.291,3519,4.68,3617,3.093,3769,4.105,3792,5.439,3800,3.621,3915,2.825,4545,2.69,4554,3.366,5428,1.39,5444,5.337,5457,2.496,5461,3.221,5464,3.221,5466,5.337,5498,4.959,5534,8.162,5584,4.959,5585,4.959,5586,7.829,5587,5.909,5588,5.909,5589,5.909,5590,5.909,5591,5.337,5592,4.105,5593,5.439,5594,5.909,5595,5.909,5596,7.07,5597,4.453,5598,5.909,5599,7.829,5600,5.337,5601,5.337,5602,5.909,5603,9.994,5604,8.78,5605,5.909,5606,5.909,5607,5.909,5608,7.829]],["description//tracks/algorithms-101/leetcode/medium/394/",[70,0.939,102,0.734,474,1.418,905,0.409,1854,1.789,2466,2.025,5428,0.686,5450,1.268,5584,2.447,5609,2.915]],["title//tracks/algorithms-101/leetcode/medium/387/",[733,2.248,795,1.896,3502,3.1,5610,3.604,5611,4.294]],["content//tracks/algorithms-101/leetcode/medium/387/",[6,0.346,11,3.627,33,3.843,80,2.161,91,3.277,96,1.646,102,2.711,114,1.887,137,1.315,139,1.759,143,3.767,313,2.127,344,0.743,439,3.384,479,1.209,535,1.829,623,2.468,905,1.245,1040,3.627,1088,1.677,1089,2.6,1103,4.245,1138,1.847,1255,2.731,1284,2.6,1308,2.371,1432,6.17,1666,5.424,1751,2.127,1843,3.177,1858,3.656,1860,4.009,1880,5.798,1881,5.437,2006,4.319,2045,4.842,2564,3.277,2979,4.829,3143,4.396,3281,2.569,3504,4.947,4123,4.677,5373,5.371,5428,1.693,5457,3.041,5524,4.129,5534,7.455,5610,6.041,5612,9.807,5613,9.73,5614,5.18,5615,7.198,5616,7.198,5617,7.198,5618,8.882,5619,7.198,5620,7.198]],["description//tracks/algorithms-101/leetcode/medium/387/",[102,0.919,905,0.512,1881,1.808,2045,1.991,5428,0.859,5450,1.589,5610,3.066]],["title//tracks/algorithms-101/leetcode/medium/384/",[696,3.635,5621,4.547,5622,4.893]],["content//tracks/algorithms-101/leetcode/medium/384/",[6,0.333,49,1.956,90,4.915,137,1.64,139,1.791,158,3.89,175,0.756,176,1.455,225,3.228,288,1.253,356,0.921,370,4.666,422,1.376,465,4.805,478,3.186,479,1.322,535,2.282,542,2.283,556,3.447,597,4.622,623,2.495,745,2.188,755,3.234,834,5.52,905,1.361,1010,5.835,1061,4.402,1302,3.502,1308,2.397,1611,1.13,1747,3.023,1751,2.869,1782,5.115,1842,3.912,1863,3.234,1920,2.495,1958,3.234,1961,3.912,2009,4.451,2564,3.335,2585,5.799,2643,3.284,2926,5.52,3253,4.495,3281,3.205,4545,4.088,5198,5.089,5428,1.723,5457,3.095,5621,6.149,5622,9.141,5623,8.769,5624,7.326,5625,7.326,5626,8.109,5627,8.98,5628,8.98,5629,8.98,5630,7.326,5631,7.326,5632,7.326,5633,7.326,5634,7.326]],["description//tracks/algorithms-101/leetcode/medium/384/",[905,0.559,2009,1.71,5428,0.939,5450,1.735,5621,3.348,5623,3.603]],["title//tracks/algorithms-101/leetcode/medium/341/",[702,2.019,2150,3.399,2151,3.878,2157,3.399,5635,3.878]],["content//tracks/algorithms-101/leetcode/medium/341/",[1,3.292,6,0.342,11,3.686,26,1.427,34,2.051,38,1.086,124,1.508,172,3.384,205,3.988,313,2.162,337,2.435,344,0.755,356,0.92,439,3.439,458,4.908,473,3.33,479,0.996,535,2.466,556,2.355,597,4.615,606,3.202,623,2.493,635,3.68,716,3.439,745,3.155,793,2.463,905,1.257,935,1.721,939,2.675,1255,2.776,1308,1.953,1675,3.756,1689,4.373,1751,2.99,1791,3.62,1842,3.906,1843,3.229,1853,4.754,1958,3.229,1961,3.906,1981,4.615,2096,5.363,2103,7.076,2153,9.376,2154,7.004,2157,5.791,2191,5.83,2307,6.14,2564,3.33,2937,4.615,3281,2.611,5382,8.102,5614,4.266,5636,7.315,5637,2.886,5638,8.102,5639,7.315,5640,9.704,5641,7.315,5642,7.315,5643,7.315,5644,6.606,5645,7.315,5646,7.315,5647,7.315,5648,7.315,5649,7.315,5650,6.606,5651,7.315]],["description//tracks/algorithms-101/leetcode/medium/341/",[1,1.05,11,1.698,905,0.472,2103,2.189,2154,2.432,5428,0.792,5450,1.465,5635,3.042]],["title//tracks/algorithms-101/leetcode/medium/334/",[5652,4.327,5653,4.327,5654,4.791,5655,3.793]],["content//tracks/algorithms-101/leetcode/medium/334/",[6,0.35,14,2.914,49,1.885,96,1.615,112,2.628,158,2.715,202,2.391,216,1.694,288,1.208,301,2.681,311,4.814,319,3.924,344,0.729,370,3.875,525,3.997,535,1.795,536,1.589,606,3.409,623,2.439,713,5.71,745,2.984,793,3.365,799,3.559,901,3.804,905,1.339,1067,4.334,1089,2.551,1103,3.606,1138,2.253,1335,4.907,1431,4.907,1747,2.378,1751,2.087,1782,5.001,1791,5.086,1842,5.101,1844,4.59,1853,4.59,2006,3.435,2009,3.027,2564,3.215,2575,4.907,2932,3.559,3156,4.907,3281,3.133,3397,5.248,3519,4.222,3792,4.907,3915,4.197,4417,5.098,4533,3.697,5234,5.322,5428,1.662,5461,3.85,5656,9.553,5657,5.591,5658,6.615,5659,5.322,5660,5.098,5661,10.736,5662,10.897,5663,10.476,5664,8.779,5665,5.098,5666,6.615,5667,5.098,5668,7.063,5669,7.063,5670,7.063,5671,5.591,5672,8.779]],["description//tracks/algorithms-101/leetcode/medium/334/",[675,0.853,742,0.763,793,0.982,1791,1.443,2006,1.418,2009,1.249,3518,1.789,5428,0.686,5652,2.633,5658,2.197]],["title//tracks/algorithms-101/leetcode/medium/328/",[702,2.019,5673,3.604,5674,3.878,5675,3.878,5676,2.446]],["content//tracks/algorithms-101/leetcode/medium/328/",[1,3.359,6,0.367,7,2.034,11,2.322,14,2.349,26,1.402,30,3.038,44,1.421,68,1.394,74,0.986,83,2.887,96,1.054,111,1.307,112,2.682,114,1.779,120,2.533,139,1.126,141,1.32,147,2.522,161,3.059,173,1.148,175,0.795,181,3.326,196,3.69,217,2.349,234,0.959,305,2.098,319,1.893,344,0.681,356,0.579,375,1.5,413,5.711,472,1.818,517,2.241,535,2.261,548,2.962,606,1.645,623,2.14,635,3.38,636,1.552,675,1.348,777,2.166,785,2.078,852,4.666,905,1.079,925,1.833,1040,2.322,1055,2.459,1066,1.706,1079,2.961,1103,3.915,1138,1.182,1308,1.761,1470,1.606,1747,1.552,1751,2.276,1777,2.366,1789,2.868,1827,4.605,1890,2.098,1954,1.909,1958,2.911,1961,2.461,2004,1.919,2005,3.882,2006,3.207,2052,3.207,2067,1.436,2096,4.605,2145,2.828,2564,3.002,3248,8.198,3281,2.354,3598,3.326,3619,2.512,3620,3.201,3642,4.29,3803,1.727,3915,4.425,4546,3.092,5198,3.201,5373,2.461,5428,1.084,5457,2.786,5461,3.595,5491,4.162,5495,4.162,5537,5.6,5542,4.317,5561,3.201,5564,3.201,5565,2.995,5667,4.761,5673,3.868,5674,9.298,5675,9.379,5677,3.472,5678,4.608,5679,9.013,5680,4.608,5681,6.465,5682,4.608,5683,10.385,5684,8.898,5685,4.608,5686,7.936,5687,10.463,5688,6.098,5689,3.472,5690,4.608,5691,4.608,5692,6.596,5693,6.596,5694,8.409,5695,10.593,5696,5.956,5697,4.608,5698,4.608,5699,3.868,5700,4.162,5701,5.535,5702,5.956,5703,3.092,5704,2.828,5705,4.608,5706,4.608,5707,4.162,5708,4.608,5709,4.608,5710,6.465,5711,3.868,5712,3.868,5713,4.608]],["description//tracks/algorithms-101/leetcode/medium/328/",[1,0.716,196,1.741,905,0.322,2006,1.864,3248,1.731,5428,0.54,5450,0.999,5673,1.928,5677,1.731,5679,1.928,5702,2.074]],["title//tracks/algorithms-101/leetcode/medium/300/",[4023,3.458,5653,4.327,5655,3.793,5714,4.327]],["content//tracks/algorithms-101/leetcode/medium/300/",[6,0.359,38,1.017,80,2.332,112,2.591,114,1.688,139,1.674,143,3.584,158,2.632,159,2.359,175,0.888,181,6.215,202,1.865,206,2.276,225,2.045,313,2.023,344,0.706,370,4.657,479,0.932,535,2.511,555,2.632,606,2.444,623,2.392,742,2.253,745,3.187,785,2.157,799,4.746,823,4.339,905,1.385,1024,1.31,1038,3.993,1089,2.473,1308,1.828,1329,4.942,1335,4.756,1470,3.001,1619,3.022,1680,2.566,1696,4.319,1704,2.892,1751,2.023,1782,3.9,1792,3.397,1842,3.656,1856,7.674,1858,2.598,1946,6.215,1979,3.69,2009,4.573,2298,4.594,2333,4.858,2564,3.117,3281,2.444,3513,7.226,4002,7.351,4023,4.942,4029,4.319,5428,1.611,5457,2.892,5614,3.993,5658,7.674,5715,7.674,5716,6.847,5717,10.184,5718,8.294,5719,5.746,5720,9.419,5721,8.61,5722,8.61,5723,8.61,5724,6.847,5725,5.42,5726,6.183,5727,6.847,5728,6.847]],["description//tracks/algorithms-101/leetcode/medium/300/",[905,0.512,4002,2.637,4023,2.637,5428,0.859,5450,1.589,5658,2.753,5715,2.753]],["title//tracks/algorithms-101/leetcode/medium/287/",[1086,2.864,1840,2.729,5729,4.021,5730,4.791]],["content//tracks/algorithms-101/leetcode/medium/287/",[1,2.3,6,0.364,32,1.439,53,2.514,68,1.336,112,2.03,114,1.746,120,1.787,124,1.522,137,1.348,143,3.863,144,2.991,206,1.951,319,3.032,340,3.941,344,0.762,356,0.928,370,3.258,375,2.403,478,3.21,518,2.3,535,2.292,536,1.336,623,2.051,646,3.21,745,2.204,793,3.037,901,3.339,905,1.365,925,2.506,1086,4.412,1103,3.705,1180,3.414,1308,1.97,1751,2.181,1782,4.204,1975,5.328,1979,3.163,2005,3.72,2009,3.163,2192,5.843,3281,3.219,4738,5.328,5428,1.736,5461,4.024,5486,5.843,5537,4.631,5554,4.024,5657,7.141,5729,6.195,5731,7.381,5732,11.024,5733,11.024,5734,7.381,5735,7.381,5736,3.47,5737,5.128,5738,5.843,5739,7.381,5740,8.147,5741,7.381,5742,8.147,5743,7.381,5744,9.021,5745,9.021,5746,7.381,5747,7.381,5748,7.381]],["description//tracks/algorithms-101/leetcode/medium/287/",[742,1.044,793,1.343,2009,1.71,2192,3.158,5428,0.939,5729,3.348]],["title//tracks/algorithms-101/leetcode/medium/2844/",[1557,2.269,1840,2.216,4530,2.216,5052,3.08,5191,3.265,5749,3.265]],["content//tracks/algorithms-101/leetcode/medium/2844/",[6,0.362,30,3.255,32,1.569,49,2.148,60,3.683,80,1.382,100,5.399,102,2.628,114,1.703,120,2.386,124,1.27,143,3.225,181,6.858,183,2.43,212,2.147,217,1.879,230,1.395,246,1.706,288,1.625,311,4.055,313,3.173,331,1.962,337,2.051,344,0.83,353,3.78,356,0.775,393,1.628,422,1.157,439,3.783,535,1.566,623,2.739,648,2.368,670,4.693,713,4.81,714,3.225,758,1.319,778,1.645,785,1.941,793,3.656,817,1.879,844,4.878,857,2.85,864,3.105,901,3.812,905,1.256,910,2.733,935,1.449,1024,1.179,1053,2.95,1055,2.353,1088,1.436,1089,2.907,1103,4.049,1255,2.338,1289,3.593,1308,2.148,1470,2.147,1641,6.225,1661,2.098,1675,5.061,1708,4.004,1747,2.709,1751,1.821,1782,4.584,1818,2.463,1829,3.789,1843,2.72,1860,3.431,1881,3.049,1954,1.783,1955,2.945,2137,6.57,2211,3.593,2244,3.683,2333,2.805,2467,2.945,2564,3.663,2870,4.991,3214,2.566,3281,2.872,3386,4.693,3392,5.808,3620,4.28,3759,5.171,5428,1.449,5537,4.601,5659,4.642,5725,4.877,5749,5.171,5750,5.564,5751,6.161,5752,8.961,5753,7.521,5754,5.564,5755,6.161,5756,6.161,5757,6.161,5758,9.857,5759,10.11,5760,4.642,5761,10.11,5762,5.564,5763,4.134,5764,5.564]],["description//tracks/algorithms-101/leetcode/medium/2844/",[1557,2.327,1840,2.273,4530,2.273,5052,3.158,5191,3.348,5749,3.348]],["title//tracks/algorithms-101/leetcode/medium/277/",[1086,3.239,5765,4.547,5766,4.893]],["content//tracks/algorithms-101/leetcode/medium/277/",[6,0.342,17,5.199,34,2.055,35,2.557,96,1.677,112,2.018,114,1.742,120,1.776,124,1.513,175,0.757,216,1.759,288,1.255,313,2.656,319,3.014,344,0.757,412,5.808,422,1.378,535,1.864,567,9.199,606,2.619,623,2.7,716,3.449,742,1.92,901,3.596,905,1.26,932,4.157,1103,4.16,1255,2.784,1308,1.959,1320,4.087,1747,2.47,1751,2.656,1763,4.923,1843,4.587,1853,6.314,1958,3.239,1989,5.529,2570,3.697,2600,4.629,2612,6.158,3281,3.208,3606,5.296,5034,6.03,5198,5.097,5329,5.808,5428,1.726,5461,4,5760,5.529,5765,6.158,5766,6.626,5767,7.337,5768,7.337,5769,8.72,5770,6.626,5771,6.626,5772,4.799,5773,7.337,5774,7.337,5775,7.337,5776,8.988,5777,6.158,5778,4.629,5779,7.337,5780,7.337,5781,7.337,5782,9.717,5783,7.337,5784,7.337,5785,7.337,5786,6.626,5787,6.626,5788,6.626,5789,7.337]],["description//tracks/algorithms-101/leetcode/medium/277/",[37,2.184,742,0.956,3696,0.937,4229,1.776,5428,0.859,5765,3.066,5769,3.066]],["title//tracks/algorithms-101/leetcode/medium/251/",[2157,3.793,5790,4.021,5791,3.61,5792,4.327]],["content//tracks/algorithms-101/leetcode/medium/251/",[6,0.363,11,3.632,14,2.94,26,1.52,32,1.733,49,1.924,67,2.4,90,4.836,102,1.814,114,1.594,118,2.445,175,0.744,311,3.632,313,2.974,319,2.961,472,3.507,535,1.832,556,2.862,600,1.233,606,3.592,623,2.47,716,3.389,745,3.144,905,1.246,1306,6.05,1308,1.924,1747,2.993,1751,2.974,1829,2.701,1843,3.182,1853,4.684,1919,5.706,1958,3.182,1961,3.849,2006,4.688,2096,5.314,2154,6.417,2307,6.05,2575,5.007,3036,5.314,3281,2.573,5428,1.696,5461,3.929,5554,3.929,5638,8.029,5650,6.51,5790,6.05,5791,7.933,5792,6.51,5793,9.508,5794,4.684,5795,7.208,5796,7.038,5797,8.029,5798,7.208,5799,8.89,5800,6.51,5801,7.208,5802,10.065,5803,10.065,5804,8.89,5805,7.208,5806,8.89,5807,7.208,5808,7.208]],["description//tracks/algorithms-101/leetcode/medium/251/",[1708,2.374,5428,0.859,5790,3.066,5791,2.753,5793,5.018,5809,3.653]],["title//tracks/algorithms-101/leetcode/medium/240/",[2978,3.399,5556,2.983,5791,3.236,5810,3.604,5811,3.399]],["content//tracks/algorithms-101/leetcode/medium/240/",[6,0.325,38,1.133,80,2.303,102,1.921,139,2.25,143,3.995,175,0.95,212,2.661,311,4.639,319,3.782,344,0.788,402,5.174,527,5.847,535,1.94,555,2.934,556,2.457,623,2.558,745,2.749,785,2.9,793,2.57,901,2.825,905,1.29,935,1.796,1040,3.847,1089,3.707,1180,3.531,1228,5.752,1308,2.457,1529,4.076,1749,3.369,1751,2.256,1920,2.6,2551,6.406,2856,4.076,3192,7.583,3281,2.724,5373,4.076,5428,1.796,5457,3.225,5524,3.271,5571,8.135,5794,4.96,5796,6.042,5810,6.406,5811,6.042,5812,7.633,5813,7.288,5814,9.207,5815,4.684,5816,6.406,5817,7.633,5818,7.633,5819,7.633,5820,7.633,5821,7.727,5822,7.633,5823,7.633,5824,7.633]],["description//tracks/algorithms-101/leetcode/medium/240/",[742,1.044,745,1.191,3192,2.88,5428,0.939,5791,3.006,5810,3.348]],["title//tracks/algorithms-101/leetcode/medium/238/",[696,2.881,1951,3.236,2316,3.604,5031,2.881,5825,3.604]],["content//tracks/algorithms-101/leetcode/medium/238/",[6,0.372,14,2.493,46,3.069,80,2.034,91,2.873,96,1.443,112,1.736,114,1.986,120,2.405,147,1.604,158,2.426,159,2.174,175,0.843,313,1.865,344,0.651,370,4.233,473,3.721,513,6.831,535,1.604,623,1.754,675,1.846,745,2.966,767,3.68,773,6.159,793,2.125,901,3.834,905,1.145,1103,3.357,1138,2.097,1180,2.919,1282,3.303,1300,3.453,1308,1.685,1388,7.591,1534,4.384,1541,6.434,1628,3.503,1661,2.149,1751,2.415,1782,5.797,1789,2.745,1829,2.365,1842,4.364,1844,4.101,1958,2.786,2009,3.503,2211,5.287,2364,2.816,3242,4.886,3281,2.252,3514,4.996,3588,4.756,3625,4.556,3777,5.297,4120,5.312,5428,1.485,5457,2.666,5576,4.556,5614,4.767,5671,7.591,5718,8.336,5725,6.47,5754,5.7,5760,6.159,5787,7.382,5815,3.872,5816,5.297,5825,5.297,5826,8.174,5827,9.354,5828,6.311,5829,6.311,5830,8.97,5831,9.589,5832,10.61,5833,10.176,5834,6.311,5835,5.297,5836,6.311,5837,6.311,5838,6.311,5839,6.311,5840,8.174,5841,6.311,5842,4.234,5843,6.311,5844,6.311,5845,6.311,5846,6.311,5847,6.311,5848,6.311,5849,6.311,5850,6.311]],["description//tracks/algorithms-101/leetcode/medium/238/",[225,0.816,370,1.206,745,1.663,2009,1.171,3242,1.633,5428,0.643,5524,1.171,5825,2.292,5827,2.467]],["title//tracks/algorithms-101/leetcode/medium/237/",[702,2.019,996,2.053,3000,2.504,5676,2.446,5851,3.604]],["content//tracks/algorithms-101/leetcode/medium/237/",[1,2.88,6,0.338,14,3.023,26,1.572,34,1.756,49,2.05,112,2.94,159,3.184,167,4.591,183,3.03,196,3.909,197,2.473,245,2.588,331,2.943,344,0.793,413,5.492,535,1.952,600,1.581,905,1.295,1138,1.971,1288,4.02,1308,2.05,1597,3.553,1751,2.731,1958,3.391,1961,4.101,2096,4.591,2765,4.657,3281,2.741,5428,1.807,5457,3.245,5561,5.336,5564,5.336,5565,4.991,5574,6.446,5677,6.963,5710,6.446,5711,6.446,5712,6.446,5719,6.446,5851,6.446,5852,7.681,5853,7.681,5854,6.937,5855,9.241,5856,7.681,5857,7.681,5858,7.681,5859,7.681]],["description//tracks/algorithms-101/leetcode/medium/237/",[1,1.243,183,1.574,413,2.13,5428,0.939,5677,3.006,5851,3.348]],["title//tracks/algorithms-101/leetcode/medium/236/",[5860,3.265,5861,3.891,5862,2.61,5863,3.891,5864,2.808,5865,2.528]],["content//tracks/algorithms-101/leetcode/medium/236/",[6,0.351,14,3.11,32,1.683,38,1.282,80,1.542,112,2.375,143,4.518,158,2.643,196,3.725,295,1.697,383,2.075,413,5.556,422,1.915,474,4.198,535,2.194,556,2.779,606,3.368,623,2.75,827,4.11,905,1.322,1089,2.484,1308,1.835,1432,4.776,1661,2.342,1751,2.551,1827,5.641,1856,7.841,1857,3.13,1890,3.93,1958,3.035,1961,3.671,1981,4.338,2191,5.61,2218,4.11,2244,4.11,2251,5.558,2252,7.683,2364,2.974,2789,4.755,3281,2.454,5428,1.617,5457,2.905,5524,3.7,5549,4.219,5550,5.18,5552,4.468,5557,6.812,5560,8.071,5561,4.776,5562,5.443,5563,5.443,5564,4.776,5565,4.468,5566,5.443,5567,6.876,5568,5.443,5569,5.513,5578,8.558,5659,5.181,5660,4.963,5764,7.796,5815,5.297,5860,5.77,5866,7.796,5867,9.898,5868,7.245,5869,6.209,5870,5.443,5871,6.876,5872,6.876,5873,7.796,5874,6.876,5875,6.876,5876,6.876,5877,6.876]],["description//tracks/algorithms-101/leetcode/medium/236/",[202,0.794,383,0.88,905,0.409,5428,0.686,5450,1.268,5549,1.789,5550,1.526,5660,2.104,5860,2.447,5866,2.633]],["title//tracks/algorithms-101/leetcode/medium/2352/",[5796,3.399,5878,3.878,5879,3.878,5880,3.878,5881,3.878]],["content//tracks/algorithms-101/leetcode/medium/2352/",[1,2.051,6,0.352,32,1.283,44,2.029,57,1.986,80,2.308,102,2.744,114,1.18,172,3.044,175,0.866,176,1.307,198,3.2,212,2.294,216,2.013,241,3.934,301,2.498,302,3.044,313,2.733,344,0.679,362,2.176,374,2.165,379,4.751,410,3.044,467,1.986,535,2.35,538,4.416,593,1.085,600,1.582,608,4.572,611,2.377,623,1.829,640,2.241,716,3.094,745,2.508,756,2.119,778,1.757,800,2.996,817,2.007,819,3.445,832,3.316,867,2.166,901,2.436,905,1.41,910,2.821,926,2.349,935,1.548,1103,2.703,1180,3.044,1254,3.379,1308,2.241,1497,4.416,1592,3.114,1598,3.379,1716,3.838,1751,1.945,1780,3.934,1790,6.691,1792,2.596,1795,4.959,1842,4.484,1843,2.905,1857,2.996,1864,5.868,1869,2.029,1952,3.316,1955,3.146,2045,3.587,2052,3.2,2264,4.038,2643,3.764,2645,3.838,3192,6.061,3213,4.152,3214,2.741,3249,7.32,3281,2.349,3382,5.944,3385,5.834,3389,8.175,3598,4.751,4809,4.751,4816,3.666,5373,3.514,5428,1.548,5457,2.78,5523,4.416,5760,6.327,5794,6.881,5796,7.32,5797,5.944,5800,5.944,5882,9.248,5883,6.581,5884,5.523,5885,8.797,5886,5.944,5887,6.581,5888,6.581,5889,5.523,5890,4.959,5891,6.581,5892,4.572,5893,5.523,5894,6.581,5895,6.581,5896,6.581,5897,6.581,5898,6.581,5899,6.581,5900,6.581]],["description//tracks/algorithms-101/leetcode/medium/2352/",[102,0.734,905,0.409,1598,1.497,3192,2.104,3214,1.214,3386,1.7,5428,0.686,5450,1.268,5794,1.894,5878,2.633]],["title//tracks/algorithms-101/leetcode/medium/215/",[680,3.236,696,2.881,5901,3.604,5902,4.294,5903,4.294]],["content//tracks/algorithms-101/leetcode/medium/215/",[49,2.134,139,1.954,175,0.825,356,1.005,370,4.45,397,1.992,535,2.405,555,3.072,600,1.367,606,2.853,623,2.221,742,2.092,745,3.221,905,1.326,1079,3.875,1308,2.134,1639,2.412,1751,2.362,1770,5.042,1782,4.553,2004,3.942,2009,3.425,2643,3.582,3281,3.377,3519,6.562,5428,1.88,5457,3.376,5813,7.98,5901,6.708,5904,9.741,5905,7.942,5906,7.218,5907,7.993,5908,7.993,5909,7.993,5910,7.218]],["description//tracks/algorithms-101/leetcode/medium/215/",[742,0.818,745,0.933,2009,1.34,3519,1.868,5428,0.735,5901,2.623,5904,2.823,5905,2.623,5906,2.823]],["title//tracks/algorithms-101/leetcode/medium/2130/",[702,1.829,2964,2.61,5676,2.216,5911,3.265,5912,3.514,5913,3.514]],["content//tracks/algorithms-101/leetcode/medium/2130/",[1,3.321,6,0.368,112,2.087,114,1.767,196,3.612,313,2.914,344,0.783,352,2.416,370,3.349,372,3.205,383,2.289,413,4.051,422,1.425,462,1.985,623,2.108,635,2.584,742,1.985,793,2.554,799,4.622,817,2.314,901,3.395,905,1.382,1843,3.349,2333,3.453,2466,5.27,2564,3.453,2973,5.476,2974,5.16,3143,4.879,3248,5.716,4545,3.453,5270,4.93,5373,4.897,5428,1.785,5457,3.205,5565,5.96,5677,5.716,5686,6.911,5911,6.367,5914,10.658,5915,10.658,5916,7.586,5917,9.172,5918,9.859,5919,9.172,5920,7.586,5921,7.586]],["description//tracks/algorithms-101/leetcode/medium/2130/",[702,1.469,905,0.438,2964,2.097,5428,0.735,5450,1.359,5676,1.78,5911,2.623,5912,2.823,5913,2.823]],["title//tracks/algorithms-101/leetcode/medium/210/",[2978,3.793,5158,1.651,5922,4.021,5923,4.021]],["content//tracks/algorithms-101/leetcode/medium/210/",[6,0.373,17,4.417,34,1.563,80,1.534,114,1.687,124,1.773,175,0.706,212,2.383,246,1.45,313,2.919,344,0.706,370,4.656,479,0.931,506,7.348,518,2.131,535,2.186,536,1.237,611,2.47,623,1.9,901,3.184,905,1.319,1300,2.888,1308,1.825,1309,3.687,1552,6.482,1650,5.142,1751,2.021,1767,4.443,1828,5.152,1858,3.265,1883,5.412,1886,4.195,1890,3.113,1920,2.329,2564,3.113,2643,4.219,3250,7.819,3281,3.07,3591,5.798,3705,6.175,4150,6.377,5089,7.769,5158,2.964,5428,1.608,5457,2.888,5461,3.727,5486,7.451,5503,4.443,5504,5.738,5524,2.93,5527,6.175,5614,3.987,5922,5.738,5924,6.837,5925,9.878,5926,6.837,5927,5.772,5928,9.878,5929,9.193,5930,7.769,5931,6.837,5932,5.412,5933,6.837,5934,6.837,5935,8.603,5936,6.175,5937,8.603,5938,6.837,5939,9.413,5940,6.837,5941,6.837,5942,6.837,5943,6.837,5944,6.837,5945,6.837,5946,6.837,5947,6.837]],["description//tracks/algorithms-101/leetcode/medium/210/",[288,0.499,358,1.497,611,1.053,926,1.04,2645,1.7,4150,1.743,5428,0.686,5922,2.447,5927,1.956,5948,2.104]],["title//tracks/algorithms-101/leetcode/medium/2095/",[702,1.829,996,1.86,2030,2.932,3000,2.269,5676,2.216,5949,3.265]],["content//tracks/algorithms-101/leetcode/medium/2095/",[1,3.263,6,0.362,32,1.29,33,3.533,57,1.997,73,2.249,80,1.89,96,1.513,124,1.364,156,8.064,158,2.543,159,2.28,175,0.683,183,2.61,196,3.27,344,0.683,413,5.382,535,1.681,556,2.13,600,1.132,623,2.341,635,3.157,636,2.837,675,1.935,702,3.111,742,1.732,745,1.976,779,2.576,852,3.111,905,1.299,925,2.576,1055,1.935,1066,2.449,1079,3.563,1103,3.808,1138,1.698,1308,1.766,1470,2.306,1628,2.836,1639,3.255,1751,2.49,1827,5.037,1958,2.921,1961,3.533,2052,4.097,2096,5.834,2299,3.533,2765,4.246,3281,2.361,3339,6.349,3343,6.359,3803,2.48,3915,4.028,4743,6.67,4889,6.349,5428,1.556,5457,2.795,5461,3.607,5537,5.715,5554,3.607,5561,4.596,5564,4.596,5565,4.3,5676,3.769,5681,5.553,5686,6.986,5696,5.976,5699,5.553,5710,7.781,5711,5.553,5712,5.553,5949,5.553,5950,6.617,5951,6.617,5952,4.596,5953,6.617,5954,6.617,5955,10.08,5956,5.553,5957,8.814,5958,8.814,5959,6.617,5960,8.426,5961,9.271,5962,6.617,5963,6.617,5964,6.617]],["description//tracks/algorithms-101/leetcode/medium/2095/",[1,0.974,196,1.102,331,0.995,905,0.438,3343,1.972,5428,0.735,5450,1.359,5681,2.623,5949,2.623]],["title//tracks/algorithms-101/leetcode/medium/1679/",[814,2.703,1840,2.216,2964,2.61,3519,2.326,5881,3.514,5965,3.265]],["content//tracks/algorithms-101/leetcode/medium/1679/",[6,0.367,38,1.034,114,1.898,137,1.272,313,2.571,333,2.864,344,0.718,370,4.19,474,3.386,476,2.747,479,0.948,535,2.211,600,1.191,623,1.935,742,2.277,745,2.598,793,2.344,799,3.509,800,4.321,852,4.091,867,2.292,905,1.393,910,2.124,935,1.638,939,2.546,1089,2.515,1308,1.859,1520,5.512,1521,4.837,1598,5.105,1639,2.101,1751,2.058,1782,3.966,1842,4.646,1843,3.074,1886,4.273,2009,4.261,2207,7.152,2298,4.672,2643,3.9,2974,5.464,3214,3.624,3250,5.512,3281,2.485,3359,5.026,3504,5.286,3519,6.5,3642,4.847,3645,6.288,3792,4.837,4399,4.837,4546,4.672,5428,1.638,5457,2.942,5486,5.512,5522,5.247,5523,4.672,5537,5.255,5658,6.557,5725,5.512,5738,5.512,5910,6.288,5957,9.564,5958,9.564,5965,5.844,5966,6.963,5967,6.288,5968,8.702,5969,8.702,5970,9.492,5971,6.963]],["description//tracks/algorithms-101/leetcode/medium/1679/",[137,0.398,742,0.571,799,1.099,905,0.306,910,0.665,1598,1.12,1842,1.165,2207,1.644,2974,1.142,3214,0.908,3519,1.304,5428,0.513,5450,0.949,5537,1.12,5965,1.831]],["title//tracks/algorithms-101/leetcode/medium/1448/",[996,1.86,3385,2.454,5864,2.808,5865,2.528,5972,3.265,5973,3.891]],["content//tracks/algorithms-101/leetcode/medium/1448/",[6,0.358,14,3.264,34,1.587,38,1.29,80,1.558,89,3.112,112,2.911,114,1.245,120,1.681,161,2.14,196,3.855,295,1.714,313,2.801,335,3.867,344,0.716,413,3.707,535,2.207,556,2.797,623,2.634,799,3.499,823,3.499,905,1.392,909,2.074,910,2.118,925,2.413,996,3.319,1066,3.215,1149,6.271,1308,1.853,1329,7.382,1751,2.801,1843,3.065,1856,7.143,1857,3.161,1955,3.319,1958,3.065,1961,3.707,2191,6.16,2218,4.151,2298,4.659,2367,5.232,3214,2.892,3281,2.478,3385,6.451,3391,5.012,5428,1.633,5457,2.933,5493,6.034,5522,5.232,5523,5.828,5549,4.261,5550,5.199,5552,6.455,5557,6.842,5560,6.876,5561,4.824,5562,5.496,5563,5.496,5564,4.824,5565,4.512,5566,5.496,5567,4.824,5568,5.496,5569,3.867,5570,5.828,5574,7.29,5579,5.828,5580,5.828,5583,5.828,5868,7.29,5870,5.496,5873,6.271,5893,5.828,5972,5.828,5974,4.385,5975,6.944,5976,4.824,5977,6.944,5978,10.226]],["description//tracks/algorithms-101/leetcode/medium/1448/",[196,1.028,905,0.653,3386,1.7,5428,0.686,5450,1.268,5549,1.789,5550,1.526,5972,2.447,5974,1.287]],["title//tracks/algorithms-101/leetcode/medium/1372/",[5548,2.326,5714,3.514,5864,2.808,5865,2.528,5979,3.265,5980,3.265]],["content//tracks/algorithms-101/leetcode/medium/1372/",[6,0.359,7,3.027,14,2.091,26,1.008,38,1.018,50,3.999,52,2.982,80,1.538,112,1.886,114,1.773,196,2.418,295,2.127,300,2.477,313,2.922,362,1.777,381,2.705,461,2.39,518,2.136,535,2.19,548,2.282,602,3.52,623,2.394,646,2.982,733,3.589,742,1.794,785,2.16,799,4.749,905,1.321,971,8.93,996,3.278,1066,3.771,1067,4.207,1078,3.819,1100,3.334,1234,2.39,1308,1.83,1329,4.949,1363,2.538,1432,4.763,1434,5.428,1470,2.39,1520,6.822,1521,5.987,1555,5.151,1661,2.335,1747,2.309,1751,2.785,1803,3.738,1843,3.027,1858,2.602,1958,3.027,1961,3.661,2005,4.343,2191,4.456,2244,4.099,2298,4.6,2333,4.734,3281,2.447,3432,4.099,3619,3.738,4120,6.125,4131,5.782,4253,5.167,4371,4.763,5428,1.613,5457,2.896,5524,2.938,5549,4.207,5550,3.589,5552,4.456,5554,3.738,5555,6.192,5556,4.763,5557,7.137,5560,6.822,5561,4.763,5562,5.428,5563,5.428,5564,4.763,5565,4.456,5566,5.428,5567,7.077,5568,5.428,5569,5.507,5570,5.754,5578,5.754,5579,7.233,5580,7.233,5583,7.233,5870,5.428,5979,5.754,5980,7.91,5981,5.754,5982,10.399,5983,7.783,5984,6.857,5985,6.857,5986,6.857,5987,6.857,5988,5.754]],["description//tracks/algorithms-101/leetcode/medium/1372/",[202,0.744,785,0.86,905,0.383,1066,1.011,2333,1.243,5428,0.643,5450,1.188,5549,1.676,5550,1.43,5979,2.292,5980,2.292]],["title//tracks/algorithms-101/leetcode/medium/11/",[1950,3.16,3434,2.322,5989,4.547]],["content//tracks/algorithms-101/leetcode/medium/11/",[6,0.359,14,2.555,26,0.964,32,1.278,80,1.879,109,2.258,114,1.655,159,2.258,191,1.484,202,1.785,212,2.285,313,2.475,344,0.676,362,2.17,370,3.697,459,2.182,470,2.232,479,0.892,528,4.26,535,1.666,536,1.516,556,2.11,562,5.139,600,1.121,606,2.339,623,1.821,675,1.917,713,3.918,716,3.082,721,6.321,742,2.192,745,1.957,756,2.11,784,4.26,785,2.065,799,5.065,864,3.303,905,1.363,909,2.501,910,2.555,925,2.327,935,1.542,939,2.397,1079,3.219,1103,2.692,1180,3.032,1240,3.304,1271,3.868,1308,2.236,1327,4.26,1329,7.021,1470,2.285,1598,3.365,1661,2.232,1742,3.032,1745,3.739,1751,1.937,1843,2.894,1950,3.823,2004,2.73,2009,4.168,2244,3.918,2467,3.133,2552,6.63,2564,3.813,2609,5.501,2926,4.939,2973,4.732,3281,3.294,3594,4.732,3621,3.823,3915,3.133,4131,5.62,4271,2.851,4482,4.939,4546,4.398,4568,4.135,5428,1.542,5457,2.769,5537,5.277,5541,5.189,5554,4.566,5567,6.757,5569,5.417,5671,5.189,5736,3.082,5981,5.501,5990,8.163,5991,6.63,5992,5.189,5993,8.376,5994,8.376,5995,10.58,5996,9.23,5997,6.555,5998,5.189,5999,5.92,6000,6.555,6001,6.555,6002,6.555,6003,5.92,6004,3.082,6005,6.555,6006,5.92,6007,9.23,6008,8.376,6009,6.555,6010,8.376,6011,6.555,6012,6.555]],["description//tracks/algorithms-101/leetcode/medium/11/",[143,1.526,756,0.939,799,1.469,905,0.409,910,0.889,1271,1.066,1950,1.7,5428,0.686,5450,1.268,5991,2.308]],["title//tracks/algorithms-101/leetcode/medium/1004/",[814,2.983,3341,3.399,3795,2.791,6013,3.604,6014,4.294]],["content//tracks/algorithms-101/leetcode/medium/1004/",[6,0.363,53,2.378,80,1.567,114,1.836,137,1.275,139,1.707,278,5.363,313,3.193,344,0.721,370,3.082,422,1.311,479,0.95,490,1.707,535,2.215,536,1.264,555,2.684,556,2.248,558,3.889,608,4.851,623,1.94,742,1.827,745,2.603,793,2.351,799,4.789,823,3.519,905,1.332,910,2.659,925,1.94,1040,3.519,1046,3.7,1079,2.684,1103,2.868,1308,1.864,1329,5.041,1470,2.434,1745,2.684,1747,2.351,1751,2.064,1780,4.174,1858,2.65,2006,3.396,2009,4.073,2027,5.413,2298,4.685,2333,4.326,2345,4.538,2564,3.179,2979,4.685,3242,5.211,3281,2.492,3380,4.851,3515,5.818,3519,6.57,3594,5.041,3618,5.262,3627,5.041,3915,4.167,4029,5.499,4253,5.262,4714,5.528,4989,3.283,5373,3.729,5428,1.643,5457,2.95,5541,7.523,5542,3.585,5715,7.161,5815,4.285,6013,5.861,6015,6.983,6016,5.528,6017,10.446,6018,7.316,6019,6.983,6020,6.983,6021,6.983,6022,6.983,6023,6.983]],["description//tracks/algorithms-101/leetcode/medium/1004/",[905,0.472,1791,1.667,3341,2.667,4002,2.432,4029,2.125,5428,0.792,5450,1.465,6013,2.827]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 4/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 4/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 4/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 3/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 3/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 3/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy/",[]],["title//tracks/algorithms-101/leetcode/hard/_index",[6024,5.81]],["content//tracks/algorithms-101/leetcode/hard/_index",[]],["description//tracks/algorithms-101/leetcode/hard/_index",[]],["title//tracks/algorithms-101/leetcode/hard/42/",[2457,3.114,5989,4.021,6025,4.791,6026,4.791]],["content//tracks/algorithms-101/leetcode/hard/42/",[6,0.351,14,2.935,80,2.158,83,2.689,112,1.974,114,1.589,139,1.754,143,3.756,173,1.788,202,2.414,206,1.897,207,3.685,212,2.501,313,2.121,344,0.74,365,6.481,370,3.914,380,4.985,381,2.831,383,3.033,535,2.253,600,1.228,623,1.994,713,4.29,720,5.681,721,6.927,745,3.141,799,5.203,901,2.656,905,1.408,935,1.688,1308,1.916,1541,5.949,1636,4.815,1650,4.29,1747,2.985,1751,2.121,1842,3.832,1858,3.365,2009,4.123,2024,5.3,2211,5.171,2457,4.664,2973,6.4,3214,2.989,3242,4.29,3281,2.561,4019,7.056,4295,3.997,5373,3.832,5428,1.688,5457,3.032,5461,4.833,5738,5.681,5750,6.481,5760,5.408,5989,7.441,5991,8.325,6006,6.481,6016,5.681,6027,4.664,6028,7.177,6029,7.177,6030,6.481,6031,8.689,6032,6.481,6033,7.177,6034,9.621,6035,7.177,6036,7.177,6037,8.866,6038,7.177,6039,7.177,6040,7.177]],["description//tracks/algorithms-101/leetcode/hard/42/",[370,1.487,905,0.472,2457,2.189,5428,0.792,5450,1.465,5991,2.667,6030,3.042,6031,3.042]],["title//tracks/algorithms-101/leetcode/hard/4/",[161,1.324,696,2.881,1327,2.791,3644,3.604,6041,4.294]],["content//tracks/algorithms-101/leetcode/hard/4/",[6,0.359,47,4.96,112,2.033,114,1.619,120,2.458,139,1.807,143,3.869,147,1.878,161,2.279,313,2.185,344,0.763,370,3.986,383,2.725,535,1.878,555,2.841,600,1.265,623,2.509,742,2.551,745,3.032,785,2.328,901,3.921,905,1.265,909,2.207,910,2.754,925,2.709,1089,2.67,1180,3.419,1308,2.41,1751,2.185,2009,4.674,2030,5.57,2046,3.562,2125,4.311,2145,5.982,2324,5.314,2856,3.947,3248,6.804,3250,5.852,3281,2.638,3343,5.696,4399,5.135,5428,1.739,5457,3.123,5679,7.578,5813,8.242,5967,6.676,6042,9.029,6043,9.749,6044,9.169,6045,9.029,6046,7.392,6047,5.336,6048,7.392,6049,7.392,6050,9.749]],["description//tracks/algorithms-101/leetcode/hard/4/",[161,1.039,742,0.882,905,0.472,2009,1.444,5428,0.792,5450,1.465,5813,2.667,6044,3.042]],["title//tracks/algorithms-101/leetcode/easy/_index",[1680,2.75]],["content//tracks/algorithms-101/leetcode/easy/_index",[]],["description//tracks/algorithms-101/leetcode/easy/_index",[]],["title//tracks/algorithms-101/leetcode/easy/933/",[1047,3.458,1757,3.793,1840,2.729,6051,4.021]],["content//tracks/algorithms-101/leetcode/easy/933/",[6,0.321,14,2.251,50,4.305,68,1.336,80,2.024,83,2.766,158,2.837,173,1.839,175,0.762,183,2.912,344,0.762,465,3.653,479,1.005,535,1.876,562,4.529,597,4.656,602,3.79,623,2.051,675,2.159,745,2.204,778,1.97,779,2.874,793,2.485,905,1.365,910,2.751,1055,2.968,1078,6.074,1138,2.315,1180,4.172,1308,1.97,1751,2.666,1767,6.968,1843,3.982,1858,3.423,1876,4.656,1890,3.36,1920,2.514,1958,3.258,1961,3.941,2564,3.36,2765,3.72,3242,4.412,3281,2.634,3370,5.929,3386,4.305,3642,5.024,5428,1.736,5503,4.797,5504,7.571,5893,6.195,5998,5.843,6051,6.195,6052,9.021,6053,8.239,6054,8.487,6055,9.165,6056,7.381,6057,7.381,6058,5.843,6059,6.195,6060,7.381,6061,7.381,6062,7.381,6063,7.381,6064,7.381,6065,7.381,6066,7.381]],["description//tracks/algorithms-101/leetcode/easy/933/",[11,1.376,905,0.383,1055,0.799,1078,1.521,3386,1.593,5428,0.643,5450,1.188,5523,1.833,6051,2.292,6054,2.162,6055,2.467]],["title//tracks/algorithms-101/leetcode/easy/9/",[1840,3.086,1901,2.635,6067,5.418]],["content//tracks/algorithms-101/leetcode/easy/9/",[6,0.367,14,2.91,30,3.111,83,2.639,102,2.205,114,1.571,120,2.122,137,1.286,147,1.79,161,2.171,221,1.772,313,2.081,356,0.886,359,2.639,383,2.645,422,1.646,479,0.959,535,1.79,600,1.499,623,1.957,756,2.267,793,3.753,817,2.673,905,1.228,910,2.148,925,2.435,935,1.657,1055,2.79,1066,2.607,1308,1.88,1656,2.426,1747,2.371,1749,3.868,1750,4.75,1751,2.081,1791,3.486,1829,2.639,1843,3.109,1853,4.577,2004,2.933,2068,8.616,2134,5.084,2221,5.695,2345,5.695,2410,5.084,2603,5.575,2765,3.549,3213,4.443,3214,2.933,3249,5.575,3281,2.514,3392,7.557,3409,5.911,3594,5.084,3647,5.911,3675,5.911,5428,1.657,5445,8.404,5457,2.975,5461,3.839,5493,6.088,5541,5.575,6003,6.361,6068,8.616,6069,7.043,6070,8.764,6071,8.764,6072,4.322,6073,7.043,6074,7.043,6075,9.541,6076,7.043,6077,7.043,6078,7.043]],["description//tracks/algorithms-101/leetcode/easy/9/",[422,0.686,793,1.23,905,0.512,1901,1.776,5428,0.859,5450,1.589,6068,3.299]],["title//tracks/algorithms-101/leetcode/easy/605/",[1214,4.547,6079,4.547,6080,5.418]],["content//tracks/algorithms-101/leetcode/easy/605/",[6,0.338,14,2.328,80,2.065,114,1.368,147,1.94,207,3.919,216,1.83,313,2.921,333,2.513,344,0.788,356,0.96,518,2.378,535,1.94,600,1.306,623,2.121,716,4.647,758,1.97,901,3.95,905,1.385,1079,2.934,1308,2.038,1751,2.721,1890,4.782,1910,6.937,2000,9.27,2333,3.475,2345,4.96,2364,3.172,3281,2.724,3515,4.251,3642,4.251,5075,6.406,5428,1.796,5498,6.406,5523,5.121,5591,6.894,5815,4.684,6079,6.406,6081,9.488,6082,7.633,6083,7.288,6084,9.886,6085,6.894,6086,9.886,6087,10.506,6088,9.207,6089,6.894,6090,6.894,6091,7.633,6092,9.886,6093,7.633]],["description//tracks/algorithms-101/leetcode/easy/605/",[901,1.079,1230,2.104,2466,2.025,5428,0.686,6079,2.447,6081,2.633,6083,3.688,6085,2.633,6090,2.633]],["title//tracks/algorithms-101/leetcode/easy/392/",[5655,4.935,6094,5.232]],["content//tracks/algorithms-101/leetcode/easy/392/",[6,0.352,14,2.115,18,2.389,26,1.276,32,1.352,49,1.851,68,1.255,80,1.555,102,2.784,114,1.556,175,0.715,202,1.888,221,1.745,225,2.071,311,3.494,313,2.799,319,2.848,331,2.208,344,0.715,379,6.264,380,4.817,422,1.92,439,3.26,518,2.161,535,1.762,593,1.143,600,1.186,623,1.927,640,2.361,758,1.484,817,2.115,852,3.26,905,1.216,1024,1.327,1066,2.566,1079,3.336,1103,2.848,1230,5.005,1308,1.851,1440,4.145,1740,4.943,1751,2.049,1853,4.506,1860,4.834,1881,5.34,1905,4.255,2575,4.817,3281,2.475,3370,6.146,3504,6.052,3518,4.255,3764,4.044,4552,6.262,5428,1.631,5457,2.929,5461,3.78,5524,2.972,5537,5.638,5542,5.097,5715,7.858,6089,7.838,6094,5.819,6095,6.262,6096,6.262,6097,6.934,6098,6.934,6099,6.934,6100,6.934,6101,9.928,6102,9.473,6103,7.284,6104,6.934,6105,6.934,6106,6.934]],["description//tracks/algorithms-101/leetcode/easy/392/",[32,0.712,102,0.919,422,0.686,640,1.244,5428,0.859,5715,2.753,6094,3.066]],["title//tracks/algorithms-101/leetcode/easy/345/",[795,2.115,3119,3.458,6107,4.021,6108,4.021]],["content//tracks/algorithms-101/leetcode/easy/345/",[6,0.365,26,1.297,102,2.745,114,1.846,124,1.467,158,2.735,175,0.734,202,2.401,246,1.508,313,2.102,333,2.342,474,3.459,535,1.808,583,4.253,623,1.977,635,3.003,777,3.345,905,1.343,1079,3.684,1089,2.57,1300,3.005,1308,1.899,1362,3.521,1639,2.147,1661,2.423,1860,3.962,1869,2.193,1907,5.632,1954,2.774,1981,4.488,2213,3.962,3249,5.632,3281,2.539,3339,5.361,3391,6.366,3427,5.135,3428,5.632,3504,3.962,3642,3.962,4295,4.912,4558,6.425,5428,1.674,5445,5.632,5457,3.005,5461,3.878,5537,5.388,5554,5.224,5567,7.529,5569,5.987,5593,7.155,5703,5.917,5886,6.425,6103,5.971,6107,5.971,6108,8.043,6109,10.75,6110,5.135,6111,7.114,6112,7.114,6113,7.114,6114,7.114,6115,7.114,6116,8.819,6117,8.819,6118,7.114]],["description//tracks/algorithms-101/leetcode/easy/345/",[795,1.487,905,0.472,3119,2.432,5428,0.792,5430,2.827,5450,1.465,6107,2.827,6108,2.827]],["title//tracks/algorithms-101/leetcode/easy/283/",[6119,4.893,6120,4.547,6121,4.547]],["content//tracks/algorithms-101/leetcode/easy/283/",[6,0.34,14,2.936,26,1.305,32,1.401,38,1.067,73,1.918,74,1.899,96,1.643,110,1.51,112,2.441,114,1.288,124,1.482,126,1.954,175,0.742,176,1.427,246,1.524,300,2.596,313,3.109,333,2.366,344,0.742,356,0.904,358,3.69,370,3.173,432,2.993,535,1.826,556,2.314,600,1.23,670,4.191,713,4.296,745,3.216,777,4.172,793,2.42,852,4.172,905,1.244,910,2.192,1061,3.126,1103,4.13,1308,1.918,1320,4.943,1751,2.124,1770,4.534,1782,4.094,1827,4.296,1829,2.693,1844,4.67,1905,4.41,1932,5.445,1954,2.91,2005,3.622,2006,3.495,2009,4.653,2645,4.191,3242,4.296,3281,2.565,3515,4.003,3518,5.907,3642,4.003,3755,4.67,4545,3.272,5428,1.691,5457,3.036,5461,3.918,5537,5.574,5542,3.69,5671,5.689,5704,4.41,5718,8.08,5726,6.491,5821,8.08,6122,4.41,6123,9.08,6124,4.993,6125,7.187,6126,8.874]],["description//tracks/algorithms-101/leetcode/easy/283/",[313,0.717,745,0.724,905,0.34,1905,1.488,2009,1.039,2645,1.414,3642,1.351,4545,1.104,5428,0.571,5450,1.055,6119,2.19,6122,1.488,6123,2.19]],["title//tracks/algorithms-101/leetcode/easy/1768/",[795,2.115,6047,3.458,6127,4.021,6128,4.021]],["content//tracks/algorithms-101/leetcode/easy/1768/",[6,0.364,18,2.509,32,1.744,80,2.266,83,3.353,96,1.665,102,2.769,114,1.811,175,0.751,207,3.739,313,2.644,344,0.751,359,3.629,361,3.889,439,4.553,535,1.851,600,1.246,623,2.024,905,1.357,1234,2.538,1283,5.323,1308,1.944,1335,7.203,1751,2.152,1860,5.394,1881,5.131,1981,5.644,2218,4.353,2324,3.97,2333,4.409,2564,4.073,2643,4.01,3036,4.353,3281,2.599,3642,4.056,3750,4.056,5428,1.713,5537,4.972,5593,6.215,5736,3.424,6127,6.112,6129,9.685,6130,9.685,6131,8.947,6132,10.555,6133,7.283,6134,7.283,6135,8.947,6136,8.947,6137,8.947,6138,8.947,6139,7.283]],["description//tracks/algorithms-101/leetcode/easy/1768/",[795,1.487,5234,2.539,5428,0.792,6047,2.432,6127,2.827,6128,2.827,6140,2.26,6141,3.042]],["title//tracks/algorithms-101/leetcode/easy/1732/",[1086,2.864,6142,4.327,6143,4.791,6144,4.791]],["content//tracks/algorithms-101/leetcode/easy/1732/",[6,0.365,14,3.102,26,1.003,30,3.169,31,2.349,53,3.536,68,1.554,80,1.53,91,3.104,112,1.875,114,1.823,158,3.301,161,2.102,172,3.154,246,1.446,313,3.179,344,0.886,370,3.01,439,3.205,459,2.27,471,3.01,488,2.195,535,1.733,536,1.554,600,1.167,602,3.501,606,2.433,623,1.895,646,2.965,721,7.085,745,2.564,785,2.961,799,4.328,901,3.48,905,1.383,925,1.895,926,3.065,1103,2.801,1289,3.976,1308,1.82,1628,2.922,1650,4.076,1751,2.015,1844,4.431,1861,4.737,1984,3.436,2009,3.68,2333,3.104,2973,4.922,3213,4.301,3214,3.577,3281,2.433,3518,6.055,3746,6.158,4271,4.088,4959,5.138,5428,1.604,5461,3.717,5525,5.723,5956,7.207,6142,6.158,6145,9.186,6146,5.397,6147,5.762,6148,9.868,6149,6.818,6150,9.186,6151,6.818,6152,6.818,6153,10.663,6154,10.541,6155,6.818,6156,6.818,6157,6.818]],["description//tracks/algorithms-101/leetcode/easy/1732/",[721,2.374,905,0.512,1089,1.319,4271,1.589,4538,2.892,5450,1.589,6145,3.299]],["title//tracks/algorithms-101/leetcode/easy/1071/",[795,1.896,5862,2.881,6158,3.604,6159,3.878,6160,3.878]],["content//tracks/algorithms-101/leetcode/easy/1071/",[6,0.355,32,1.739,34,1.658,47,4.865,50,5.203,55,3.952,74,1.552,102,2.779,128,5.234,158,3.43,216,2.318,232,4.712,372,3.063,379,5.234,383,2.188,422,1.362,462,1.897,518,2.259,535,1.842,562,4.449,623,2.686,793,2.441,901,2.684,905,1.25,1255,2.752,1308,1.935,1628,4.142,1749,3.201,1751,2.143,1860,5.383,1890,3.301,2005,3.654,2171,5.798,2191,5.798,2333,3.301,2555,5.798,2765,3.654,2856,3.871,3214,3.02,3281,2.588,3315,5.74,3589,5.74,3617,3.795,4002,5.234,4560,5.74,5428,1.706,6158,6.085,6161,10.873,6162,10.873,6163,7.251,6164,8.691,6165,6.548,6166,7.251,6167,7.251,6168,7.488,6169,9.666,6170,9.666,6171,7.251,6172,7.251,6173,7.251,6174,7.251,6175,7.251,6176,8.923,6177,9.666,6178,7.251,6179,7.251]],["description//tracks/algorithms-101/leetcode/easy/1071/",[795,1.38,5234,2.355,5428,0.735,5862,2.097,6140,2.097,6141,2.823,6158,2.623,6159,2.823,6160,2.823]],["title//tracks/algorithms-101/data-structures/segment-tree",[5550,3.263,6180,4.698]],["content//tracks/algorithms-101/data-structures/segment-tree",[6,0.37,11,3.286,14,1.383,26,1.228,30,1.413,34,1.746,38,0.673,49,1.211,56,3.168,58,1.429,67,1.51,68,1.18,80,1.018,110,1.753,112,2.533,114,1.969,120,2.559,147,2.686,161,2.573,175,0.468,176,0.901,196,2.3,202,1.235,212,2.661,216,1.088,225,1.355,246,0.962,264,1.581,307,1.813,313,3.123,342,1.889,343,1.098,344,0.468,351,1.211,354,1.175,356,0.82,362,1.175,369,2.132,370,2.879,397,1.625,413,4.077,422,0.852,425,2.273,462,1.707,465,2.245,474,3.713,478,1.973,488,2.1,489,2.132,507,1.429,556,1.46,593,1.258,597,4.817,600,0.776,623,2.32,675,1.907,678,2.329,696,3.043,745,3.173,778,1.211,779,1.766,785,1.429,793,1.527,796,6.397,901,3.408,905,1.07,918,0.783,1036,1.477,1046,2.758,1055,1.327,1103,3.136,1138,1.164,1179,3.151,1187,3.066,1208,1.369,1231,4.707,1309,1.944,1362,2.245,1470,2.661,1534,5.799,1541,3.043,1555,2.712,1643,2.286,1646,2.132,1694,3.422,1696,2.862,1716,4.868,1724,5.216,1751,2.721,1789,1.973,1792,1.789,1803,2.473,1818,4.061,1829,3.761,1842,2.422,1901,2.206,1958,2.002,1961,2.422,1979,1.944,1993,2.783,2006,4.3,2009,4.399,2055,2.422,2075,2.948,2079,3.151,2125,2.645,2142,3.591,2191,4.962,2211,2.645,2245,4.349,2364,1.563,2461,3.807,2573,3.418,2593,3.591,2703,5.579,2964,4.375,2974,5.462,3143,2.245,3386,4.453,3427,3.274,3755,2.948,4164,3.274,4432,2.862,4807,3.591,4903,5.889,5517,4.096,5549,4.001,5550,5.669,5815,2.783,5865,5.747,5930,7.539,5998,3.591,6072,2.783,6180,7.864,6181,4.536,6182,7.635,6183,7.635,6184,5.889,6185,4.536,6186,2.862,6187,4.536,6188,4.096,6189,4.536,6190,4.536,6191,3.591,6192,4.536,6193,4.536,6194,4.536,6195,4.536,6196,4.536,6197,4.536,6198,4.536,6199,4.536,6200,4.536,6201,4.536,6202,2.374,6203,4.536,6204,4.536,6205,6.521,6206,4.536,6207,4.536,6208,4.536,6209,4.536,6210,4.536,6211,4.536,6212,6.521,6213,4.536,6214,7.539,6215,4.536,6216,6.521,6217,4.536,6218,4.536,6219,4.536,6220,4.536,6221,4.536,6222,7.539,6223,4.536,6224,4.536,6225,4.536,6226,4.536,6227,4.536,6228,4.536,6229,4.536,6230,6.521,6231,4.536,6232,6.521,6233,4.536,6234,6.521,6235,4.536,6236,4.536,6237,4.536,6238,4.536]],["description//tracks/algorithms-101/data-structures/segment-tree",[5550,3.307,6180,4.761]],["title//tracks/algorithms-101/data-structures/prefix-sum",[2974,3.263,5576,4.5]],["content//tracks/algorithms-101/data-structures/prefix-sum",[6,0.369,14,2.726,30,3.331,68,1.316,112,2.777,114,1.858,120,2.509,147,2.716,159,3.08,161,2.984,202,1.98,313,2.86,393,1.922,778,1.941,918,1.256,1529,3.883,1711,5.066,1716,5.213,1724,4.589,1789,4.209,1818,4.036,1901,4.347,1974,5.809,2006,3.536,2009,3.116,2056,7.2,2167,5.343,2280,5.48,2296,7.607,2344,5.757,2364,2.505,2488,5.757,2703,6.106,2974,5.522,3214,3.029,3281,2.595,3386,4.241,5525,6.103,5576,5.249,5835,6.103,6180,5.48,6239,7.272,6240,7.272,6241,7.272,6242,7.272,6243,7.272,6244,7.272,6245,9.678,6246,7.272,6247,8.939,6248,7.272]],["description//tracks/algorithms-101/data-structures/prefix-sum",[2974,3.307,5576,4.56]],["title//tracks/algorithms-101/data-structures/fenwick-tree",[5550,3.263,6249,4.935]],["content//tracks/algorithms-101/data-structures/fenwick-tree",[6,0.359,114,1.44,225,2.399,313,2.805,337,3.159,370,4.459,402,4.204,462,2.102,646,3.493,918,1.387,1661,2.735,1708,6.167,1751,2.374,2006,5.076,2009,4.329,2974,4.204,3036,5.673,3143,3.975,3386,4.684,3519,5.673,5177,5.067,5550,5.575,5576,5.798,5864,5.798,5865,6.167,6095,7.254,6249,7.513,6250,8.032,6251,6.052,6252,8.032,6253,10.102,6254,8.032,6255,8.032,6256,8.032,6257,8.032]],["description//tracks/algorithms-101/data-structures/fenwick-tree",[5550,3.307,6249,5.001]],["title//tracks/algorithms-101/data-structures/_index",[882,3.201,6258,5.232]],["content//tracks/algorithms-101/data-structures/_index",[6,0.37,114,1.842,313,2.953,623,2.856,680,6.615,882,3.626,901,3.249,996,3.376,1388,7.562,1716,5.12,1749,4.217,1751,3.096,1762,7.562,1958,3.875,1961,4.688,2132,5.001,2249,6.379,2703,5.538,2767,5.591,2950,6.379,2964,5.89,2975,3.85,3143,4.345,3311,4.119,3430,5.928,3502,5.098,3504,4.89,3795,4.59,5020,4.907,5030,4.119,5221,6.379,5550,4.595,5565,4.59,5864,5.098,5865,6.679,6103,5.928,6121,5.928,6214,6.379,6222,9.776,6249,6.95,6251,5.322,6258,5.928,6259,7.063,6260,7.063,6261,7.063,6262,7.063,6263,7.063,6264,7.063,6265,9.993,6266,6.379,6267,7.063,6268,7.063,6269,7.063,6270,8.779,6271,7.063,6272,7.063,6273,7.063,6274,7.063,6275,7.063,6276,7.063,6277,7.063,6278,7.063,6279,7.063,6280,7.063,6281,3.215,6282,5.928,6283,7.063,6284,8.779,6285,4.688,6286,7.063]],["description//tracks/algorithms-101/data-structures/_index",[]],["title//tracks/algorithms-101/codeforces/_index",[6287,6.16]],["content//tracks/algorithms-101/codeforces/_index",[535,2.25,6287,8.429,6288,7.433]],["description//tracks/algorithms-101/codeforces/_index",[535,1.401,905,0.773,6287,4.627]],["title//tracks/90daysofdevops/day90",[75,0.812,344,0.494,759,2.94,2163,2.669]],["content//tracks/90daysofdevops/day90",[1,1.47,2,2.083,6,0.155,14,2.38,18,1.626,26,1.148,30,2.09,32,1.521,35,2.963,38,0.701,49,1.26,50,2.752,53,1.607,57,2.024,64,2.09,68,1.412,71,1.439,73,1.26,74,1.01,75,1.581,91,2.148,96,1.784,113,1.571,114,0.846,118,2.338,126,1.718,136,1.491,137,1.225,141,1.352,152,3.96,156,3.556,175,0.877,176,1.332,183,1.861,184,3.406,188,3.445,191,1.519,202,1.285,216,1.608,217,1.439,226,1.965,227,1.684,229,1.912,230,1.069,234,1.396,259,2.453,267,1.768,288,1.454,301,1.791,331,1.503,333,2.208,343,2.174,344,0.99,351,1.791,352,1.503,354,1.738,356,0.981,362,1.223,366,2.218,369,2.218,374,2.133,396,2.572,397,1.176,411,2.47,422,0.886,423,1.439,425,1.645,432,1.965,459,1.571,465,3.32,490,1.64,518,1.47,536,1.214,542,1.47,545,2.821,593,1.105,595,1.747,598,1.837,600,1.335,611,3.07,635,1.607,647,2.022,655,1.626,742,1.235,755,2.083,758,1.436,759,4.789,774,1.589,787,1.938,818,3.166,819,2.47,840,2.183,848,2.423,849,1.37,858,2.688,867,1.553,903,1.791,905,1.094,907,1,908,3.735,910,2.046,918,1.158,930,1.965,938,1.247,939,2.453,951,2.752,952,3.103,991,2.169,1002,2.003,1007,2.148,1017,1.938,1021,1.38,1024,0.903,1053,1.553,1055,1.38,1073,2.628,1076,2.083,1088,1.563,1107,2.378,1138,1.211,1187,2.218,1229,2.688,1234,1.645,1266,1.747,1284,2.423,1287,2.183,1289,2.752,1298,2.821,1311,2.688,1315,1.861,1331,1.366,1374,2.148,1405,1.704,1422,2.821,1424,1.704,1430,3.996,1482,1.768,1489,1.814,1516,1.645,1539,2.688,1592,1.589,1599,2.218,1639,1.424,1646,2.218,1651,2.022,1654,2.821,1686,3.166,1688,2.378,1702,2.024,1708,5.523,1740,2.688,1745,1.814,1818,1.886,1829,1.768,1858,3.226,1861,3.278,1863,2.083,1869,1.455,1886,2.895,1904,2.183,1917,2.752,1933,2.628,1954,2.46,1978,2.688,1984,2.378,2067,1.47,2163,3.736,2185,4.66,2271,3.556,2276,3.96,2387,3.166,2462,3.406,2470,3.262,2626,3.96,2660,3.066,2716,4.116,2724,4.66,2820,2.148,2859,4.116,2870,2.628,2915,2.628,3000,2.752,3159,2.423,3172,2.256,3174,1.589,3187,2.295,3272,5.559,3391,3.406,3426,2.546,3508,2.335,3511,2.682,3554,2.628,3619,2.572,3620,3.278,3750,2.628,3763,3.735,3800,2.183,3806,3.96,3811,2.218,3948,2.752,3984,2.295,4039,2.115,4079,2.47,4103,2.423,4157,3.166,4199,4.262,4228,3.735,4272,2.256,4363,3.066,4364,3.166,4415,3.445,4423,2.752,4437,2.977,4533,2.47,4538,3.735,4568,2.977,4633,3.96,4802,2.378,4806,3.735,4909,4.262,5024,2.572,5036,1.814,5100,3.285,5305,1.338,5323,4.085,5324,2.183,5402,3.278,5482,2.752,5524,2.022,5554,2.572,5772,2.52,5778,2.977,5892,3.278,6024,3.735,6072,2.895,6122,4.116,6289,2.022,6290,3.556,6291,3.556,6292,4.842,6293,4.262,6294,4.406,6295,1.912,6296,5.905,6297,3.556,6298,4.719,6299,4.719,6300,3.054,6301,3.736,6302,6.55,6303,6.178,6304,3.166,6305,3.103,6306,5.63,6307,3.278,6308,3.96,6309,5.072,6310,3.556,6311,3.556,6312,4.719,6313,5.905,6314,5.905,6315,3.96,6316,2.423,6317,3.735,6318,5.31,6319,2.295,6320,3.556,6321,4.501,6322,4.842,6323,3.735,6324,3.735,6325,3.406,6326,3.406,6327,5.31,6328,5.055,6329,5.63,6330,3.278,6331,4.262,6332,3.406,6333,5.422,6334,3.96,6335,4.262,6336,4.262,6337,2.977,6338,2.578,6339,2.183,6340,4.262,6341,4.262,6342,3.556,6343,5.072,6344,3.166,6345,3.406,6346,3.166,6347,2.977,6348,3.406,6349,3.406,6350,3.406,6351,3.166,6352,3.406,6353,3.166,6354,4.842,6355,3.066,6356,3.406,6357,2.821,6358,3.96,6359,4.719,6360,4.719,6361,4.262,6362,4.719,6363,4.719,6364,1.965,6365,3.406,6366,2.378,6367,2.423,6368,4.719,6369,2.52,6370,4.719,6371,3.166,6372,4.719,6373,3.278,6374,3.735]],["description//tracks/90daysofdevops/day90",[]],["title//tracks/90daysofdevops/day89",[3272,3.018,6296,3.764,6315,4.547]],["content//tracks/90daysofdevops/day89",[6,0.332,7,2.406,18,1.228,26,1.175,31,1.228,33,2.911,35,1.242,38,0.809,53,1.214,56,1.352,57,1.075,67,1.186,68,1.712,70,1.147,75,1.675,83,2.043,96,1.514,102,0.897,105,1.441,109,1.228,110,0.748,111,1.01,113,1.186,114,0.977,118,2.04,124,1.648,126,0.784,136,0.792,149,1.703,159,1.878,169,2.186,173,1.359,175,0.905,176,1.473,197,1.147,202,1.803,203,1.135,219,1.916,225,1.064,226,2.758,235,1.075,238,2.606,240,1.272,244,1.865,245,2.121,256,5.478,263,1.424,264,2.308,265,2.069,278,3.399,288,1.269,295,0.879,304,2.747,331,1.135,334,1.763,343,1.935,344,0.934,351,0.951,352,1.135,354,2.071,355,1.135,358,2.799,359,2.043,362,2.071,374,2.196,393,1.75,396,1.942,397,1.359,419,2.078,441,3.225,465,1.763,467,2.238,479,1.345,482,1.648,485,1.942,486,2.316,487,3.165,488,1.755,490,1.813,507,2.086,518,1.11,536,1.342,593,1.091,595,2.018,600,1.739,603,2.186,611,2.392,635,1.214,640,1.214,648,3.072,718,1.287,755,1.573,758,1.167,759,3.345,777,1.675,778,1.455,795,1.573,817,1.663,819,1.865,821,2.475,840,1.648,844,1.829,849,1.515,857,1.648,859,1.505,867,1.173,892,2.991,901,1.319,907,0.756,918,0.941,925,1.84,927,2.475,930,2.271,935,1.282,940,1.865,952,1.648,990,2.572,991,0.99,993,1.303,995,3.22,1002,1.628,1007,1.622,1012,2.698,1015,1.796,1019,1.303,1021,1.042,1023,2.853,1024,1.419,1028,3.105,1030,2.186,1036,1.16,1046,1.287,1049,1.573,1055,1.042,1061,3.666,1073,1.985,1107,5.224,1108,2.078,1110,1.993,1138,0.914,1205,1.173,1224,1.37,1240,1.406,1242,2.853,1266,1.319,1284,1.287,1288,2.853,1298,2.13,1300,1.505,1311,2.03,1331,2.313,1362,1.763,1364,2.239,1374,2.482,1391,6.673,1405,1.287,1422,3.259,1423,2.698,1424,2.392,1426,2.651,1430,3.487,1480,1.703,1504,5.322,1515,2.391,1516,2.585,1526,1.675,1528,1.55,1536,2.371,1599,1.675,1610,1.303,1627,1.796,1639,1.645,1644,6.352,1646,1.675,1702,1.075,1802,2.248,1805,2.685,1818,1.424,1828,2.685,1871,2.391,1904,1.648,1920,1.214,1930,0.97,1933,4.886,1954,1.916,2001,1.942,2067,1.699,2132,3.105,2163,1.985,2170,2.078,2185,2.475,2190,4.501,2213,3.036,2251,1.942,2259,1.573,2381,2.685,2600,2.248,2608,2.821,2629,2.698,2690,2.475,2692,2.13,2693,2.371,2714,3.935,2723,3.259,2727,2.911,2837,2.03,2915,1.985,3187,1.733,3238,2.821,3272,4.886,3304,1.829,3353,1.675,3427,2.572,3434,1.527,3495,1.228,3511,1.424,3554,1.985,3685,2.821,3696,1.399,3699,1.55,3734,2.685,3803,1.335,3817,3.935,3913,6.531,4067,5.277,4136,2.078,4228,4.315,4241,3.543,4272,3.545,4369,2.821,4415,2.406,4424,2.336,4439,2.186,4449,1.903,4497,1.527,4545,1.622,4736,2.572,4776,2.572,5024,1.942,5036,1.37,5078,2.078,5100,2.775,5143,4.325,5149,4.6,5300,1.703,5323,1.865,5391,2.475,5402,2.475,5524,2.336,5554,1.942,5592,2.475,5597,4.108,5613,3.218,5637,2.151,5704,2.186,6004,1.675,6124,6.094,6140,2.391,6294,4.52,6295,1.444,6296,4.6,6302,6.225,6303,5.871,6305,4.185,6313,3.787,6314,3.787,6316,3.399,6319,4.265,6320,2.685,6321,6.87,6322,7.439,6324,4.315,6325,2.572,6328,2.685,6333,3.787,6339,1.648,6343,4.303,6344,2.391,6345,2.572,6346,2.391,6347,2.248,6348,2.572,6349,2.572,6350,2.572,6351,2.391,6352,2.572,6353,2.391,6367,1.829,6375,1.37,6376,2.991,6377,3.218,6378,3.218,6379,2.475,6380,3.563,6381,3.179,6382,2.572,6383,1.829,6384,2.03,6385,3.218,6386,5.871,6387,2.991,6388,1.796,6389,5.557,6390,5.99,6391,4.997,6392,3.036,6393,4.923,6394,4.923,6395,4.923,6396,5.589,6397,4.923,6398,4.923,6399,4.315,6400,4.923,6401,4.923,6402,4.923,6403,4.108,6404,4.325,6405,2.13,6406,2.685,6407,3.218,6408,2.991,6409,2.248,6410,2.821,6411,2.475,6412,2.572,6413,3.218,6414,2.991,6415,2.186,6416,3.218,6417,2.991,6418,2.991,6419,1.505,6420,2.821,6421,2.685,6422,3.218,6423,2.991,6424,2.991,6425,2.572,6426,2.991,6427,2.991,6428,3.563,6429,2.991,6430,2.186,6431,3.218,6432,3.218,6433,3.218,6434,3.218,6435,3.218,6436,3.218,6437,3.688,6438,3.218,6439,2.821,6440,2.821,6441,2.821,6442,2.685,6443,3.218,6444,3.563,6445,1.406,6446,2.391,6447,3.218,6448,2.572,6449,3.563,6450,2.572,6451,3.563,6452,2.391]],["description//tracks/90daysofdevops/day89",[]],["title//tracks/90daysofdevops/day88",[75,0.728,1107,2.164,1645,2.392,2190,2.293,6453,3.878]],["content//tracks/90daysofdevops/day88",[6,0.368,18,1.006,26,1.197,34,0.668,38,0.988,44,1.796,49,0.78,58,0.92,64,0.91,65,0.49,67,0.972,70,0.94,74,1.424,75,1.548,96,0.668,105,0.772,107,0.764,109,1.607,110,0.98,111,1.323,118,0.803,120,0.707,124,1.372,126,1.027,136,1.037,137,0.533,147,0.742,158,1.122,159,1.006,173,1.163,175,0.873,176,1.322,183,1.152,191,0.661,201,1.916,202,1.271,212,1.018,216,1.119,222,1.626,224,1.006,225,1.393,227,1.042,234,0.608,244,1.528,246,0.619,247,1.309,260,1.592,271,1.626,288,0.997,295,1.152,300,1.055,301,1.108,313,0.863,331,0.93,334,1.445,344,1.078,351,0.78,354,1.724,356,0.837,359,1.094,362,0.757,374,2.066,425,3.116,427,2.211,441,2.029,454,5.04,459,0.972,462,1.525,464,1.645,467,1.408,470,1.589,471,1.289,479,0.99,485,1.592,517,1.42,542,0.91,548,1.553,575,1.216,593,1.342,600,1.492,603,1.792,611,1.055,626,0.872,640,0.995,646,1.27,647,2.497,650,3.909,675,1.364,679,3.516,718,1.055,722,1.592,758,1.247,779,1.137,787,1.2,800,2.652,832,1.472,840,1.351,849,1.898,857,1.351,867,1.536,882,2.395,887,2.029,901,3.013,903,1.771,918,1.149,925,0.811,926,1.042,935,0.687,938,0.772,991,1.619,993,1.706,995,2.269,1021,1.364,1024,0.893,1026,3.587,1036,0.951,1054,2.625,1057,1.373,1061,3.163,1088,0.68,1107,4.394,1138,0.749,1210,3.693,1224,1.122,1255,1.108,1271,1.068,1281,2.451,1300,2.461,1315,2.87,1331,1.35,1336,3.708,1341,2.611,1386,3.79,1405,3.054,1430,1.373,1432,2.029,1455,2.451,1482,1.748,1502,4.083,1515,3.13,1516,2.031,1524,1.703,1561,3.032,1632,0.764,1644,3.516,1645,1.626,1656,1.006,1701,2.395,1702,2.008,1736,1.898,1742,3.078,1745,1.122,1747,0.983,1767,1.898,1770,1.842,1791,1.445,1811,1.663,1818,1.167,1834,2.312,1858,1.108,1869,0.9,1880,1.559,1954,1.35,1988,1.499,2046,1.152,2067,1.815,2075,3.786,2131,2.599,2185,4.047,2190,3.553,2213,4.534,2258,1.373,2263,3.516,2287,1.792,2296,2.2,2331,4.206,2692,1.746,2693,1.27,2731,3.245,2789,4.261,2831,2.312,2915,4.32,2929,1.351,2975,1.592,3000,3.398,3112,7.352,3143,4.029,3172,1.396,3272,4.856,3353,1.373,3370,2.658,3515,1.626,3520,5.481,3554,1.626,3619,1.592,3643,7.317,3703,1.842,3817,2.108,3904,2.2,3913,5.599,3915,1.396,3928,2.451,4358,2.451,4456,2.637,4530,2.658,4545,1.329,4568,1.842,4757,1.703,4768,3.368,4776,2.108,5008,1.999,5024,1.592,5031,5.998,5036,1.122,5100,2.943,5122,1.216,5127,2.491,5133,1.898,5143,4.242,5149,3.241,5171,1.792,5180,1.959,5263,2.451,5315,1.792,5323,1.528,5324,1.351,5337,1.703,5377,3.176,5402,2.029,5404,6.107,5419,2.312,5454,2.029,5548,3.483,5597,2.2,5614,1.703,5637,1.152,5740,5.262,5880,2.637,6110,5.251,6294,2.937,6296,2.029,6301,1.626,6305,2.695,6313,2.029,6314,2.029,6316,4.688,6317,2.312,6319,1.42,6321,1.959,6333,2.029,6337,3.676,6342,2.2,6343,5.495,6344,3.909,6345,2.108,6346,1.959,6347,1.842,6348,2.108,6349,2.108,6350,2.108,6351,1.959,6352,2.108,6353,1.959,6358,2.451,6367,1.499,6369,1.559,6383,1.499,6386,2.312,6389,8.699,6391,5.449,6403,2.2,6404,5.757,6405,1.746,6419,2.461,6430,4.995,6437,4.32,6446,1.959,6447,5.262,6454,2.451,6455,1.842,6456,2.637,6457,2.92,6458,8.246,6459,8.94,6460,9.781,6461,1.959,6462,3.368,6463,2.451,6464,2.108,6465,4.214,6466,2.92,6467,6.654,6468,2.92,6469,2.92,6470,2.92,6471,2.92,6472,2.92,6473,6.654,6474,2.108,6475,2.92,6476,2.92,6477,2.92,6478,2.92,6479,2.92,6480,2.92,6481,2.92,6482,2.92,6483,2.92,6484,4.666,6485,5.826,6486,5.826,6487,4.666,6488,6.654,6489,3.909,6490,7.004,6491,5.826,6492,5.826,6493,5.826,6494,5.262,6495,5.826,6496,5.826,6497,4.228,6498,4.666,6499,4.214,6500,4.214,6501,7.801,6502,9.68,6503,2.92,6504,2.92,6505,2.92,6506,2.92,6507,2.92,6508,2.92,6509,2.92,6510,2.92,6511,2.92,6512,2.92,6513,2.92,6514,2.92,6515,2.92,6516,2.92,6517,2.92,6518,2.92,6519,2.92,6520,2.2,6521,7.756,6522,7.274,6523,2.451,6524,5.262,6525,2.92,6526,2.92,6527,2.92,6528,2.637,6529,2.2,6530,2.92,6531,1.959,6532,2.2,6533,2.92,6534,2.029,6535,2.92,6536,5.826,6537,2.92,6538,4.666,6539,2.92,6540,2.92,6541,4.666,6542,7.274,6543,7.274,6544,7.274,6545,5.826,6546,5.826,6547,5.826,6548,5.826,6549,2.92,6550,2.92,6551,4.214,6552,2.92,6553,2.92,6554,2.92,6555,4.666,6556,2.92,6557,4.666,6558,2.92,6559,2.92,6560,4.666,6561,2.92,6562,2.92,6563,2.92,6564,4.206,6565,2.108,6566,5.826,6567,7.756,6568,4.666,6569,2.92,6570,4.666,6571,2.92,6572,1.898,6573,2.92,6574,2.92,6575,2.92,6576,2.92,6577,2.312,6578,2.92,6579,2.108,6580,2.92,6581,3.916,6582,4.666,6583,2.92,6584,2.92,6585,2.92,6586,2.029,6587,2.92,6588,2.637,6589,4.666,6590,1.792,6591,2.92,6592,2.637,6593,2.92,6594,2.92,6595,2.92,6596,2.92,6597,2.92,6598,1.898,6599,2.92,6600,2.92,6601,2.637]],["description//tracks/90daysofdevops/day88",[]],["title//tracks/90daysofdevops/day87",[1107,2.414,2190,2.558,3272,2.669,6602,4.327]],["content//tracks/90daysofdevops/day87",[6,0.336,26,1.32,30,1.313,31,1.452,38,0.626,42,2.297,44,1.299,53,1.435,57,1.272,65,0.707,68,1.118,70,1.99,73,1.65,74,0.902,75,1.715,109,2.13,112,1.159,113,2.685,114,1.312,118,1.7,120,1.02,124,1.274,139,1.511,143,2.205,146,3.115,158,1.62,169,2.585,173,1.54,175,1.032,176,0.837,197,1.357,203,1.342,217,1.285,224,1.452,225,1.258,226,1.755,230,0.954,238,2.014,240,1.504,244,3.235,245,1.555,256,4.017,261,1.599,265,2.346,278,2.163,288,0.721,289,0.869,295,1.04,311,2.123,319,1.731,343,2.173,344,1.044,354,2.225,355,2.331,356,0.92,358,2.163,359,1.579,362,1.092,374,2.193,375,1.372,376,1.806,377,1.641,423,1.285,425,2.811,441,3.184,465,3.991,479,0.573,482,1.949,488,1.357,490,1.789,507,1.327,529,3.335,536,1.325,548,1.403,564,2.4,575,1.755,593,0.694,600,1.587,601,2.519,635,2.105,640,1.435,641,3.175,742,1.103,758,1.921,759,2.585,795,1.86,819,2.205,840,1.949,849,1.754,857,1.949,901,2.71,905,0.59,907,1.311,910,1.285,917,1.071,918,0.728,925,1.171,927,2.927,935,1.454,993,2.26,995,2.049,1002,1.846,1007,1.918,1010,2.738,1012,3.059,1015,3.689,1018,2.383,1020,3.041,1021,1.808,1023,2.205,1024,1.643,1028,2.4,1036,1.372,1046,1.522,1054,1.662,1059,2.085,1061,2.688,1088,0.982,1107,4.327,1110,1.541,1137,3.805,1187,1.981,1198,2.049,1207,2.658,1208,1.272,1224,1.62,1237,2.539,1240,1.662,1242,2.205,1266,2.288,1288,2.205,1300,1.78,1311,2.4,1331,1.789,1361,2.163,1374,1.918,1391,6.383,1405,1.522,1422,2.519,1423,2.085,1424,1.522,1430,1.981,1477,4.017,1479,2.519,1504,5.056,1526,1.981,1536,1.832,1592,2.891,1632,1.103,1644,3.175,1649,2.585,1656,1.452,1661,2.493,1680,1.579,1688,2.123,1702,1.865,1742,1.949,1818,1.684,1858,2.778,1863,1.86,1912,1.707,1958,2.729,2067,1.313,2069,2.4,2190,4.306,2213,2.347,2251,3.991,2381,4.658,2629,2.085,2690,2.927,2692,2.519,2693,1.832,2697,2.658,2714,3.041,2723,2.519,2727,3.3,2902,2.519,2915,2.347,2929,1.949,3159,1.522,3174,1.419,3179,1.918,3272,5.298,3353,1.981,3434,1.806,3511,1.684,3554,2.347,3800,1.949,3817,3.041,4271,3.507,4272,2.014,4380,3.335,4424,1.806,4437,2.658,4439,2.585,4449,2.25,4545,1.918,4768,3.041,5024,2.297,5036,1.62,5048,3.805,5100,3.131,5143,3.605,5315,2.585,5321,2.927,5350,3.041,5402,2.927,5482,2.457,5524,2.649,5597,3.175,5892,5.086,5988,3.536,6289,1.806,6294,4.094,6295,1.707,6296,2.927,6304,2.827,6305,3.73,6309,4.017,6313,2.927,6314,2.927,6316,4.762,6318,7.105,6319,3.56,6321,7.054,6322,7.495,6324,4.893,6327,6.383,6328,6.471,6329,3.536,6330,2.927,6333,2.927,6337,2.658,6343,4.757,6344,2.827,6345,3.041,6346,2.827,6347,2.658,6348,3.041,6349,3.041,6350,3.041,6351,2.827,6352,3.041,6353,2.827,6357,2.519,6381,2.457,6384,2.4,6388,4.327,6390,5.691,6391,4.593,6392,3.443,6393,3.805,6394,3.805,6395,3.805,6396,5.516,6397,3.805,6398,3.805,6399,3.335,6400,3.805,6401,3.805,6402,3.805,6403,3.175,6404,3.605,6410,3.335,6423,3.536,6424,3.536,6425,3.041,6426,3.536,6427,3.536,6429,3.536,6430,4.492,6431,3.805,6432,3.805,6433,3.805,6434,3.805,6435,3.805,6436,3.805,6437,2.347,6438,3.805,6442,4.658,6450,3.041,6474,3.041,6534,4.294,6603,3.175,6604,3.805,6605,3.536,6606,3.536,6607,3.805,6608,3.536,6609,3.805,6610,4.214,6611,6.181,6612,3.805,6613,4.214,6614,4.214,6615,4.214,6616,5.188,6617,5.582,6618,5.582,6619,4.214,6620,3.335,6621,5.188,6622,4.618,6623,2.123,6624,4.214,6625,3.536,6626,3.175,6627,4.214,6628,3.805,6629,3.805,6630,3.536,6631,3.805,6632,3.335,6633,3.805,6634,4.017,6635,4.214,6636,3.805,6637,3.805,6638,3.536,6639,2.658,6640,4.214,6641,3.805,6642,2.927,6643,3.536,6644,4.214,6645,3.805,6646,3.536,6647,4.214,6648,2.827,6649,2.4,6650,3.805,6651,2.927,6652,2.585,6653,4.214,6654,3.805]],["description//tracks/90daysofdevops/day87",[]],["title//tracks/90daysofdevops/day86",[1107,2.414,2190,2.558,3159,1.731,6655,4.021]],["content//tracks/90daysofdevops/day86",[1,0.826,5,1.415,6,0.087,8,3.947,14,1.316,15,1.577,26,1.018,27,1.902,32,1.349,38,0.393,42,1.444,44,1.33,49,2.088,55,2.351,59,1.997,64,1.7,65,0.916,68,1.138,72,1.444,74,1.674,75,1.173,80,0.594,96,0.986,102,0.667,105,1.442,107,1.646,110,0.557,114,0.978,118,1.501,120,1.522,124,0.889,126,1.992,139,1.054,141,0.759,146,2.174,147,1.386,149,1.267,158,1.018,159,1.486,164,1.456,173,1.075,175,0.934,176,0.526,190,1.249,196,1.924,197,0.853,198,1.288,202,1.712,203,2.002,207,2.801,215,1.311,216,1.66,217,0.808,221,1.086,224,1.486,225,1.878,226,1.104,227,1.54,230,0.6,234,0.898,235,2.239,244,3.884,246,1.333,255,3.896,260,1.444,265,1.006,272,1.119,288,1.27,289,2.013,295,1.552,331,1.374,333,1.42,343,2.042,344,1.116,351,1.679,352,1.374,354,1.63,355,0.844,356,1.09,359,1.617,362,1.63,374,2.15,393,0.7,397,0.66,398,1.246,411,1.387,422,1.025,423,2.111,425,2.413,432,1.797,435,2.801,448,1.778,459,1.436,462,1.646,467,0.8,472,1.045,479,1.253,487,2.608,490,1.334,518,1.344,519,1.772,527,3.108,530,1.206,535,1.386,536,1.476,539,1.509,548,2.604,551,1.778,558,1.476,560,2.211,568,3.759,587,2.098,592,1.509,593,1.344,595,0.981,598,1.68,600,1.548,611,2.271,626,1.288,637,1.074,638,1.964,647,1.849,648,1.018,655,2.166,702,1.246,718,1.971,756,0.853,758,1.346,774,0.892,778,1.151,779,1.68,781,1.206,785,0.835,800,2.484,817,2.111,821,2.997,828,1.311,832,2.749,840,1.995,843,1.088,845,1.797,849,1.994,857,2.523,859,1.119,867,1.42,902,2.215,903,1.637,905,0.371,909,1.288,910,0.808,916,1.913,918,0.458,925,1.199,927,4.809,931,1.504,934,1.311,935,1.479,937,2.097,939,0.969,991,1.516,1002,1.878,1010,3.545,1017,1.088,1019,1.577,1021,0.775,1023,1.387,1024,1.044,1036,1.404,1043,2.457,1053,2.07,1056,1.913,1061,4.443,1066,2.019,1067,2.647,1088,1.613,1106,1.841,1107,5.253,1108,3.182,1180,1.226,1205,0.872,1206,2.135,1224,2.097,1232,2.457,1237,2.241,1239,2.393,1240,1.702,1252,2.721,1273,1.444,1284,0.957,1287,1.995,1293,1.476,1308,1.151,1311,2.457,1320,2.403,1331,1.249,1362,1.311,1363,0.981,1405,1.971,1410,2.457,1423,2.135,1424,0.957,1430,2.028,1440,2.579,1443,1.476,1451,1.444,1477,4.498,1479,1.584,1480,1.267,1487,1.311,1489,1.658,1516,1.504,1526,2.028,1561,4.498,1592,2.331,1593,3.251,1600,1.509,1601,2.974,1608,2.097,1610,0.969,1626,2.134,1630,1.335,1632,1.646,1639,1.302,1646,1.246,1652,1.617,1653,2.303,1658,1.626,1675,1.36,1686,1.778,1688,1.335,1705,2.997,1706,2.393,1719,2.224,1720,1.626,1731,2.803,1740,2.457,1762,1.913,1764,3.545,1777,1.36,1792,1.702,1818,1.059,1858,2.627,1869,1.33,1904,1.226,1912,1.748,1930,2.221,1932,1.626,1943,2.721,1954,2.619,1988,2.215,1993,2.647,2005,2.174,2079,2.997,2080,2.097,2082,1.841,2181,1.672,2190,5.428,2277,1.837,2284,1.584,2299,2.303,2333,1.206,2438,1.722,2466,1.841,2470,1.288,2496,1.913,2556,2.393,2629,2.7,2662,1.748,2697,2.721,2698,2.174,2729,3.62,2765,2.174,2820,1.206,2870,1.476,2904,4.187,2915,1.476,2932,1.335,2949,1.119,3065,1.584,3159,1.971,3174,1.452,3214,1.104,3272,4.357,3305,2.174,3306,1.672,3327,1.584,3353,2.565,3426,2.386,3495,0.913,3508,1.311,3511,2.966,3516,1.626,3554,1.476,3621,1.545,3657,0.934,3677,2.097,3696,1.107,3697,1.841,3699,1.152,3752,3.896,3764,1.545,3787,2.097,3811,2.956,3963,1.545,3964,1.778,4071,1.722,4150,1.584,4157,2.894,4201,1.206,4235,2.393,4239,2.224,4271,2.373,4272,1.267,4273,1.997,4284,3.415,4285,1.415,4295,1.476,4371,4.809,4423,1.545,4424,1.136,4437,1.672,4463,1.626,4474,1.509,4494,1.997,4497,1.136,4510,5.679,4541,4.927,4757,2.516,4816,2.403,4924,2.224,4954,4.738,4965,2.097,5004,2.224,5024,1.444,5036,3.41,5100,1.796,5127,3.358,5146,5.598,5149,2.997,5260,3.114,5300,2.062,5304,3.42,5313,2.135,5335,2.647,5366,1.913,5402,1.841,5454,1.841,5496,2.097,5524,1.849,5559,1.778,5592,2.997,5689,1.997,5771,2.393,5889,2.224,5892,1.841,5948,1.913,5974,1.17,6072,1.626,6124,1.841,6202,1.387,6289,3.353,6294,2.776,6300,1.964,6305,4.821,6313,1.841,6314,1.841,6333,3.79,6338,1.658,6342,1.997,6343,3.545,6344,2.894,6345,1.913,6346,1.778,6347,1.672,6348,1.913,6349,1.913,6350,1.913,6351,1.778,6352,1.913,6353,1.778,6354,1.913,6364,1.797,6375,1.018,6376,2.224,6377,2.393,6381,1.545,6382,3.938,6385,2.393,6386,5.479,6388,2.174,6410,5.874,6448,3.114,6463,2.224,6524,4.927,6577,3.415,6579,1.913,6604,8.173,6605,4.579,6656,1.997,6657,1.841,6658,1.841,6659,2.224,6660,4.314,6661,4.314,6662,2.393,6663,3.938,6664,2.224,6665,2.65,6666,3.896,6667,2.65,6668,2.65,6669,2.65,6670,2.65,6671,2.65,6672,2.65,6673,2.65,6674,2.224,6675,4.247,6676,1.841,6677,3.896,6678,2.097,6679,2.65,6680,1.841,6681,3.114,6682,2.65,6683,2.65,6684,2.393,6685,3.896,6686,2.65,6687,4.579,6688,2.65,6689,1.722,6690,2.224,6691,2.224,6692,2.224,6693,1.997,6694,2.097,6695,2.224,6696,2.393,6697,2.65,6698,2.097,6699,2.393,6700,1.246,6701,2.393,6702,2.65,6703,2.65,6704,2.224,6705,3.114,6706,2.65,6707,2.097,6708,1.913,6709,1.722,6710,2.393,6711,2.393,6712,2.65,6713,2.65,6714,1.778,6715,2.65,6716,3.545,6717,2.393,6718,4.314,6719,2.65,6720,1.476,6721,4.927,6722,2.393,6723,4.111,6724,2.65,6725,2.65,6726,4.314,6727,4.314,6728,4.314,6729,3.114,6730,3.62,6731,6.288,6732,4.314,6733,4.314,6734,3.62,6735,3.896,6736,4.314,6737,3.114,6738,8.155,6739,8.155,6740,8.155,6741,3.773,6742,3.938,6743,4.314,6744,4.314,6745,6.922,6746,2.65,6747,2.65,6748,1.997,6749,2.097,6750,2.393,6751,2.393,6752,2.097,6753,2.65,6754,4.314,6755,1.841]],["description//tracks/90daysofdevops/day86",[]],["title//tracks/90daysofdevops/day85",[344,0.559,427,2.056,6454,4.547]],["content//tracks/90daysofdevops/day85",[1,1.158,15,1.359,18,1.281,19,2.07,27,1.962,29,1.311,32,1.097,33,3.006,35,1.296,38,1.125,49,0.992,53,1.917,56,2.579,58,1.171,65,1.141,67,1.874,71,1.134,73,0.992,75,1.285,102,1.417,110,1.427,112,2.674,118,1.022,124,0.766,136,1.251,137,1.384,139,1.661,144,1.506,159,1.281,175,0.701,190,1.629,191,1.275,192,3.363,196,1.985,212,1.962,216,1.629,217,1.134,218,2.117,219,1.967,221,0.935,224,1.939,225,1.681,226,1.548,227,1.327,229,1.506,230,0.842,234,1.577,240,2.009,241,3.365,244,1.945,245,0.935,267,1.393,288,1.297,301,2.136,302,4.497,307,2.25,332,1.873,343,0.9,344,1.166,362,1.459,370,1.641,372,1.57,374,0.826,375,1.21,397,1.403,406,1.873,408,1.593,422,1.424,425,3.878,426,2.026,427,2.579,431,1.184,437,1.447,448,2.494,462,1.473,467,1.699,470,1.266,482,1.719,485,2.026,507,1.171,518,2.117,527,2.117,531,4.725,535,1.43,536,1.019,541,1.945,542,1.158,551,2.494,556,1.197,598,1.447,636,1.895,637,2.281,638,1.692,645,1.985,646,1.616,655,2.952,708,2.117,755,2.485,756,1.197,758,1.834,766,3.454,770,3.207,771,2.168,774,1.251,778,0.992,781,2.563,805,3.44,828,1.839,845,1.548,855,2.345,905,0.521,907,1.194,909,1.11,917,2.262,918,0.972,930,1.548,991,1.564,1018,1.833,1024,1.3,1066,1.376,1089,2.454,1101,4.317,1108,2.168,1138,1.744,1143,2.312,1150,2.415,1206,1.839,1208,1.122,1229,2.117,1237,1.527,1240,2.221,1254,1.908,1266,1.376,1273,2.026,1283,1.908,1289,2.168,1291,2.801,1302,1.777,1308,2.174,1309,1.593,1351,2.192,1361,1.908,1424,1.343,1439,4.062,1467,2.942,1478,1.527,1479,2.222,1485,1.945,1538,2.415,1587,2.117,1598,1.908,1610,1.359,1618,1.251,1621,4.559,1625,2.345,1629,3.119,1639,2.051,1645,3.135,1648,1.908,1652,1.393,1669,1.57,1677,2.946,1690,2.563,1694,2.523,1700,2.222,1731,6.218,1742,1.719,1750,1.719,1777,2.89,1791,1.839,1792,3.511,1829,2.11,1858,3.091,1867,2.415,1869,2.337,1880,1.985,1916,2.168,1925,2.801,1930,2.684,1994,2.683,1995,2.582,2006,2.737,2024,2.222,2037,2.801,2045,2.026,2067,1.158,2145,2.281,2152,3.357,2163,2.07,2189,2.415,2210,4.456,2270,2.281,2387,2.494,2419,2.222,2459,2.801,2564,1.692,2570,1.873,2587,2.946,2597,2.942,2646,2.801,2698,1.873,2699,1.807,2820,1.692,2839,2.07,2869,3.119,2876,3.357,2915,4.222,2932,2.837,2976,1.895,3015,4.173,3150,3.704,3154,2.341,3158,3.911,3270,2.801,3283,4.456,3394,1.548,3426,1.411,3696,0.954,3699,1.616,3750,2.07,3764,2.168,3891,1.807,3893,7.046,3946,2.281,3979,2.801,3980,2.026,4136,2.168,4250,3.119,4271,2.448,4272,1.777,4285,1.985,4303,4.062,4314,2.946,4324,2.415,4413,2.942,4424,2.413,4453,2.683,4463,2.281,4472,2.942,4533,1.945,4570,3.357,4625,3.357,4712,2.683,4751,4.725,4754,3.357,4775,3.454,4782,3.283,4802,1.873,4964,3.357,4989,1.747,5006,2.801,5064,3.357,5081,3.963,5100,1.223,5106,7.257,5153,1.593,5158,2.611,5165,3.357,5215,3.283,5240,3.119,5404,4.062,5666,2.801,5700,3.357,5772,1.985,5794,2.415,5885,3.357,5929,6.845,5932,4.456,6027,2.415,6300,1.692,6304,5.749,6305,3.143,6367,1.908,6375,1.429,6412,2.683,6455,2.345,6531,4.559,6592,3.357,6755,3.911,6756,5.629,6757,3.717,6758,3.717,6759,3.119,6760,3.357,6761,3.717,6762,3.717,6763,3.717,6764,3.717,6765,3.717,6766,3.357,6767,3.119,6768,3.717,6769,3.717,6770,3.717,6771,2.942,6772,5.084,6773,6.835,6774,3.357,6775,6.795,6776,3.717,6777,2.683,6778,5.084,6779,4.725,6780,4.725,6781,3.717,6782,2.942,6783,5.629,6784,3.717,6785,3.357,6786,3.357,6787,5.703,6788,8.781,6789,3.357,6790,3.357,6791,3.717,6792,3.717,6793,3.717,6794,3.717,6795,3.717,6796,3.717,6797,7.58,6798,3.717,6799,3.119,6800,3.717,6801,3.717,6802,6.795,6803,3.717,6804,3.717,6805,3.717,6806,3.357,6807,3.717,6808,5.629,6809,3.717,6810,3.717,6811,3.357,6812,5.629,6813,5.629,6814,3.717,6815,3.357,6816,3.717,6817,3.119,6818,3.357,6819,3.717,6820,3.357,6821,3.717,6822,3.717,6823,3.717,6824,5.629,6825,2.801,6826,5.629,6827,3.717,6828,5.629,6829,3.717,6830,3.119,6831,3.119,6832,2.801,6833,2.942,6834,3.871,6835,3.357,6836,2.801,6837,2.611,6838,3.357,6839,1.777,6840,3.119,6841,3.717,6842,3.717,6843,3.717]],["description//tracks/90daysofdevops/day85",[]],["title//tracks/90daysofdevops/day84",[344,0.559,917,1.377,6844,4.893]],["content//tracks/90daysofdevops/day84",[5,2.357,6,0.247,15,1.614,25,1.948,26,0.94,27,1.538,31,1.521,32,1.246,37,2.639,43,3.729,45,2.266,49,1.178,53,1.503,55,2.406,64,2.726,68,0.799,71,2.514,74,2.062,75,1.397,105,1.167,107,1.155,118,1.759,126,0.972,136,1.421,141,1.264,155,2.708,166,3.494,191,1.703,201,1.813,215,2.184,219,1.851,226,1.838,227,2.683,230,1.703,244,3.347,245,2.296,246,2.043,259,1.614,264,2.621,267,2.818,288,1.094,344,1.167,352,1.406,356,1.1,362,1.144,372,2.701,374,1.832,377,1.719,383,1.332,393,1.69,397,1.874,411,3.935,422,1.201,425,2.621,427,3.128,459,1.469,461,2.229,467,1.93,482,2.042,488,2.059,518,1.375,535,1.625,536,0.799,542,1.375,545,2.639,555,1.697,600,1.094,611,2.31,628,1.278,637,1.788,638,2.009,655,1.521,675,1.87,714,3.347,745,1.318,758,0.945,759,2.708,777,2.075,785,1.39,805,3.176,817,1.95,818,2.961,849,0.901,857,2.957,858,2.514,867,1.453,882,2.266,902,2.266,903,2.853,905,0.896,907,0.936,909,1.909,910,1.346,915,1.813,917,2.619,918,0.762,935,1.939,1018,2.447,1036,1.437,1061,3.585,1066,2.367,1076,2.823,1085,2.639,1087,4.188,1088,1.49,1102,3.186,1107,4.597,1108,2.574,1138,1.641,1143,1.813,1179,3.066,1198,2.146,1205,2.105,1206,2.184,1311,2.514,1315,1.741,1320,2.458,1363,2.783,1437,2.357,1447,1.486,1451,2.406,1461,3.326,1479,2.639,1484,1.838,1536,3.27,1590,3.494,1591,2.406,1592,2.775,1594,2.639,1610,2.338,1626,1.971,1627,3.222,1639,1.332,1646,2.075,1652,1.654,1655,3.326,1674,2.224,1689,2.639,1700,2.639,1702,1.332,1704,1.865,1734,3.414,1789,1.92,1791,3.721,1792,1.741,1818,1.764,1854,2.708,1858,2.427,1861,3.066,1869,1.971,1904,2.957,1908,2.785,1912,1.788,1930,1.741,1952,2.224,1953,3.326,1954,1.851,1955,2.11,1979,2.74,1987,1.654,1988,2.266,2054,3.561,2067,1.375,2106,3.986,2190,4.014,2270,2.708,2277,1.486,2467,2.11,2651,1.375,2698,2.224,2820,2.009,2915,2.458,2979,2.961,3008,2.357,3015,2.009,3065,2.639,3150,2.406,3159,2.31,3214,1.838,3253,2.708,3272,4.873,3273,2.574,3305,3.222,3353,2.075,3391,3.186,3495,3.014,3554,2.458,3591,2.514,3621,2.574,3666,2.266,3696,1.641,3764,2.574,3800,2.042,3803,2.396,3811,2.075,3879,3.485,3948,2.574,3965,3.494,3984,2.146,4032,3.186,4067,2.31,4071,2.868,4079,2.31,4125,3.494,4141,4.615,4201,2.009,4239,3.704,4271,1.92,4272,2.11,4273,3.326,4367,3.066,4421,3.186,4423,5.62,4436,3.704,4447,2.785,4459,2.781,4475,2.458,4494,3.326,4721,2.639,4798,2.961,4802,3.789,4856,3.986,4954,3.326,4989,2.075,5024,2.406,5036,2.458,5100,2.475,5122,1.838,5184,3.986,5301,3.326,5305,2.587,5402,3.066,5524,1.892,5890,3.326,5892,3.066,5974,1.948,5990,3.704,6004,2.075,6202,2.31,6296,3.066,6300,2.009,6313,3.066,6314,3.066,6326,3.186,6333,3.066,6338,2.89,6342,6.211,6343,4.886,6344,2.961,6345,3.186,6346,2.961,6347,2.785,6348,3.186,6349,3.186,6350,3.186,6351,2.961,6352,3.186,6353,2.961,6364,3.131,6367,2.266,6375,1.697,6378,5.775,6388,2.224,6445,1.741,6577,5.952,6657,3.066,6658,3.066,6705,3.186,6845,4.414,6846,4.414,6847,2.574,6848,2.785,6849,4.414,6850,3.986,6851,3.704,6852,3.066,6853,4.414,6854,4.414,6855,3.186,6856,4.414,6857,3.326,6858,2.458,6859,4.414,6860,3.704,6861,4.414,6862,2.961,6863,4.414,6864,6.394,6865,4.414,6866,3.186,6867,6.394,6868,3.986,6869,4.414,6870,4.414,6871,4.414,6872,8.749,6873,3.066,6874,4.414,6875,2.639,6876,5.775,6877,3.986,6878,6.394,6879,6.394,6880,4.414,6881,4.414,6882,3.986,6883,4.414,6884,4.414,6885,3.186]],["description//tracks/90daysofdevops/day84",[]],["title//tracks/90daysofdevops/day83",[344,0.494,3196,3.61,6886,4.021,6887,3.458]],["content//tracks/90daysofdevops/day83",[6,0.295,26,1.21,30,1.186,32,0.742,34,1.31,35,1.327,38,0.565,43,2.22,44,1.173,56,2.616,57,2.08,58,1.199,60,4.586,65,0.639,67,1.267,68,1.565,70,1.225,74,0.815,83,1.426,96,1.576,102,0.958,109,1.311,110,1.204,113,1.267,114,1.027,124,1.85,136,1.532,137,1.047,139,0.93,143,1.992,149,1.819,159,1.311,164,1.53,173,1.428,175,0.975,176,0.756,196,1.342,197,1.845,202,1.561,203,1.212,206,1.006,219,2.382,224,1.311,225,1.137,226,2.387,227,2.045,238,1.819,245,1.735,246,1.462,257,1.733,263,1.521,265,2.616,272,2.421,288,0.651,304,1.918,333,1.887,344,1.095,351,1.016,354,1.485,356,0.721,359,1.426,361,2.032,362,1.786,366,1.789,374,2.314,375,1.239,376,1.631,377,1.482,397,1.718,404,2.554,408,2.456,410,1.76,411,1.992,420,2.335,422,0.715,423,1.161,425,1.327,435,1.954,437,1.482,461,1.327,462,0.996,479,1.12,490,0.93,507,1.805,519,2.354,520,2.335,525,1.733,527,2.168,536,0.689,542,1.786,548,1.908,556,1.225,560,1.542,575,2.387,593,1.356,600,1.673,612,2.609,628,2.382,635,2.612,640,2.348,647,1.631,648,2.203,733,3,742,0.996,756,1.845,758,1.851,778,1.016,783,3.981,785,1.199,819,1.992,840,1.76,842,5.244,843,1.563,849,1.833,856,3.881,857,1.76,858,2.168,859,1.608,864,1.918,882,1.954,901,2.839,905,0.533,907,1.958,915,1.563,917,1.456,918,1.421,935,1.348,938,1.515,952,2.651,955,3.342,989,1.954,991,1.058,995,1.851,1002,2.582,1007,1.733,1012,1.884,1018,1.239,1019,2.805,1021,1.676,1024,1.468,1028,2.168,1030,3.517,1033,2.12,1046,1.375,1054,2.261,1089,1.375,1110,2.095,1138,0.977,1151,3.548,1184,2.694,1207,2.401,1208,1.149,1234,1.327,1240,1.501,1246,1.918,1249,2.401,1266,1.409,1289,2.22,1309,1.631,1310,3.013,1331,2.22,1362,1.884,1374,2.609,1375,2.401,1405,2.49,1422,3.426,1423,2.836,1426,2.787,1428,2.473,1430,3.241,1443,3.192,1447,1.281,1474,2.12,1488,1.563,1491,2.473,1504,4.485,1516,1.998,1532,2.868,1535,2.22,1536,1.655,1592,1.281,1598,1.954,1632,2.153,1643,1.918,1646,1.789,1656,1.311,1658,2.335,1661,1.296,1677,1.992,1689,2.275,1702,2.08,1725,2.868,1734,2.032,1742,2.651,1769,1.954,1786,1.375,1869,1.173,1880,2.032,1886,2.335,1920,1.296,1952,1.918,1954,1.102,1955,1.819,1976,2.12,1978,2.168,2005,1.918,2039,1.918,2067,1.186,2277,1.281,2333,2.609,2364,1.311,2467,1.819,2468,1.884,2611,2.22,2690,2.644,2692,2.275,2693,2.492,2727,3.681,2796,4.976,2797,3.194,2929,1.76,2949,1.608,3008,3.06,3107,3.517,3150,3.124,3154,1.974,3159,2.07,3184,3.013,3195,6.438,3196,7.254,3214,1.585,3304,1.954,3327,2.275,3344,3.194,3353,1.789,3426,2.616,3434,1.631,3495,1.311,3508,1.884,3591,2.168,3657,1.342,3696,1.968,3699,1.655,3800,1.76,3887,2.554,3944,2.401,3963,2.22,4094,2.868,4201,2.609,4290,2.868,4314,1.992,4371,2.644,4415,1.68,4474,2.168,4545,1.733,4616,2.401,4849,4.583,5033,1.706,5034,2.554,5036,1.463,5081,4.02,5100,1.887,5122,2.871,5152,3.724,5217,2.075,5304,1.501,5305,2.544,5313,3.796,5332,2.401,5337,2.22,5397,2.275,5464,2.075,5524,1.631,5637,2.719,5974,1.68,6027,2.473,6054,3.013,6281,1.733,6294,3.817,6295,2.793,6309,3.724,6316,4.851,6319,4.001,6323,3.013,6325,4.137,6332,2.747,6338,1.463,6364,1.585,6384,2.168,6388,1.918,6390,5.049,6391,3.927,6392,3.839,6437,3.839,6445,1.501,6651,2.644,6652,2.335,6675,2.335,6723,2.868,6820,3.437,6887,7.471,6888,6.233,6889,2.747,6890,3.194,6891,3.806,6892,3.806,6893,3.806,6894,4.81,6895,3.013,6896,6.459,6897,6.726,6898,3.806,6899,3.806,6900,3.194,6901,3.845,6902,3.013,6903,3.437,6904,1.327,6905,3.437,6906,2.868,6907,3.437,6908,3.806,6909,3.981,6910,5.785,6911,3.806,6912,3.806,6913,3.806,6914,3.806,6915,2.868,6916,3.806,6917,3.806,6918,3.194,6919,3.437,6920,3.806,6921,3.437,6922,3.806,6923,2.168,6924,3.194,6925,5.176,6926,3.806,6927,3.194,6928,3.437,6929,3.437,6930,3.437,6931,3.806,6932,3.806,6933,3.437,6934,2.868,6935,3.437,6936,3.013,6937,3.013,6938,3.437,6939,2.868,6940,5.176,6941,3.013,6942,2.747,6943,3.806,6944,3.806,6945,2.868,6946,3.806,6947,3.806,6948,3.013,6949,2.473,6950,2.747,6951,2.473,6952,2.275,6953,2.868,6954,2.644,6955,2.747]],["description//tracks/90daysofdevops/day83",[]],["title//tracks/90daysofdevops/day82",[5464,2.954,6902,4.289,6956,4.893]],["content//tracks/90daysofdevops/day82",[1,1.48,4,4.865,6,0.316,7,2.097,26,1.375,30,1.48,31,1.637,38,1.163,49,1.268,54,3.3,56,1.803,58,1.496,64,1.48,65,0.798,68,0.86,70,1.529,71,1.449,74,1.443,75,1.445,96,1.086,105,1.256,107,1.243,109,1.637,110,1.645,114,1.208,120,1.632,124,0.979,136,1.741,137,0.868,147,1.713,159,2.322,173,2.125,175,0.808,212,1.656,219,2.267,220,2.915,224,1.637,225,1.419,227,1.695,230,1.931,234,0.989,245,1.195,246,1.007,264,1.656,265,1.803,288,1.153,295,1.664,297,2.439,301,2.973,343,1.15,344,1.077,354,1.231,366,2.233,369,2.233,374,2.184,375,2.55,376,2.036,377,1.85,393,1.256,408,2.036,422,0.892,423,1.449,425,1.656,432,1.979,467,1.434,476,1.874,479,0.917,488,1.529,490,1.648,507,1.496,520,2.915,526,3.187,536,1.22,542,1.48,546,2.84,548,2.244,560,1.925,593,1.405,598,2.624,600,1.54,602,3.461,612,2.163,640,1.618,648,1.826,718,1.716,756,1.529,757,3.809,774,1.6,777,2.233,778,1.268,805,2.007,840,2.197,842,4.894,843,1.951,849,1.91,856,3.218,867,1.564,901,3.156,905,0.666,907,1.429,909,1.419,917,1.207,918,0.82,925,2.177,926,1.695,930,1.979,952,3.117,989,2.439,1002,2.013,1015,3.397,1017,1.951,1019,1.737,1021,2.493,1024,1.631,1040,2.394,1046,1.716,1049,2.097,1054,1.874,1056,3.429,1069,2.84,1073,2.646,1089,1.716,1110,1.737,1151,4.545,1184,3.169,1197,2.487,1206,2.351,1224,1.826,1237,1.951,1240,1.874,1269,1.78,1309,2.036,1331,1.951,1361,2.439,1362,2.351,1363,1.758,1375,4.942,1405,1.716,1423,2.351,1430,2.233,1462,3.761,1474,3.754,1478,1.951,1504,2.59,1516,1.656,1530,2.77,1587,4.856,1610,1.737,1648,2.439,1649,2.915,1651,2.889,1652,1.78,1702,2.573,1742,2.197,1786,1.716,1858,1.803,1920,1.618,1930,1.835,1976,2.646,2006,2.31,2023,3.58,2046,3.09,2124,3.761,2145,2.915,2170,2.77,2468,2.351,2643,2.129,2647,2.233,2692,2.84,2693,2.066,2727,3.599,2796,3.429,2837,2.706,2872,4.522,2929,2.197,3008,2.537,3145,3.674,3154,1.637,3172,2.271,3179,2.163,3304,4.937,3434,2.036,3699,2.066,3887,3.187,3980,4.647,4415,2.097,4560,3.761,4765,4.522,4849,3.754,5033,2.129,5034,3.187,5036,1.826,5081,4.972,5093,2.77,5100,2.806,5122,3.263,5152,4.38,5162,3.087,5217,2.59,5305,2.652,5321,3.3,5388,3.3,5464,4.647,5487,3.987,5524,2.036,5554,2.59,5637,2.659,5657,5.335,5703,3.187,5815,4.136,5890,3.58,6281,2.163,6294,4.128,6295,1.925,6301,2.646,6309,4.38,6316,4.622,6319,3.809,6325,3.429,6364,1.979,6375,1.826,6390,2.915,6392,3.754,6437,5.208,6439,3.761,6445,1.874,6450,3.429,6773,3.987,6886,3.987,6888,6.496,6896,3.187,6897,5.091,6901,5.72,6902,8.117,6907,4.29,6915,6.424,6934,3.58,6948,3.761,6949,3.087,6950,3.429,6951,3.087,6952,2.84,6953,3.58,6954,6.826,6955,3.429,6957,4.522,6958,6.74,6959,3.761,6960,3.3,6961,6.74,6962,4.751,6963,4.751,6964,4.751,6965,5.657,6966,3.58,6967,4.751,6968,4.751,6969,4.751,6970,4.751,6971,6.74,6972,4.29,6973,3.987,6974,2.84,6975,4.751,6976,7.699,6977,3.187,6978,2.997,6979,4.751,6980,4.29]],["description//tracks/90daysofdevops/day82",[]],["title//tracks/90daysofdevops/day81",[6954,3.764,6959,4.289,6981,4.893]],["content//tracks/90daysofdevops/day81",[2,2.734,4,5.292,6,0.32,18,1.455,27,1.472,30,1.316,32,0.823,35,1.472,38,0.627,46,2.054,64,1.93,65,0.709,67,2.062,74,0.904,75,1.457,80,1.389,107,1.106,109,1.455,110,1.54,111,1.198,113,1.406,114,0.757,118,2.017,124,0.871,126,0.93,136,1.376,137,1.131,141,1.21,146,3.121,147,1.073,164,1.128,175,0.887,176,0.839,190,1.792,191,0.957,196,2.848,206,1.116,217,1.288,219,1.223,221,1.558,224,1.455,225,1.261,227,1.508,229,1.712,230,1.402,235,1.275,246,0.896,265,1.603,272,1.785,288,1.254,289,1.772,295,1.043,301,1.603,304,2.129,305,1.923,311,3.121,333,1.391,336,2.169,340,2.256,343,1.023,344,1.091,352,2.335,356,0.531,374,0.939,381,1.666,389,2.592,408,2.654,425,2.159,431,1.345,435,2.169,461,1.472,472,1.666,479,0.575,480,4.666,487,2.019,488,1.36,518,1.316,546,2.525,555,1.624,575,1.759,593,1.208,600,1.381,626,1.261,655,1.455,660,3.049,713,2.525,718,2.237,755,1.865,756,1.36,758,0.904,767,2.464,778,2.155,781,2.819,783,2.935,787,1.735,800,1.923,805,1.785,828,2.091,840,1.954,842,4.702,849,1.265,856,3.316,867,1.391,880,4.024,882,2.169,903,1.603,907,0.896,915,1.735,918,1.266,926,1.508,935,1.457,989,2.169,993,1.544,995,3.011,996,2.019,1002,2.189,1005,1.837,1012,2.091,1024,0.808,1054,1.666,1059,2.091,1069,2.525,1080,2.834,1138,1.084,1151,3.976,1184,2.911,1206,3.628,1208,1.275,1271,2.264,1284,2.237,1288,2.211,1330,2.406,1332,6.776,1341,3.205,1375,3.907,1428,2.745,1437,2.256,1443,2.353,1447,2.085,1451,3.376,1493,3.049,1516,1.472,1528,1.837,1529,2.256,1530,2.464,1585,1.81,1593,4.666,1597,1.954,1621,2.834,1626,1.302,1631,3.449,1632,1.621,1672,4.497,1677,3.241,1680,2.321,1694,1.893,1701,3.18,1702,1.275,1708,2.745,1718,3.183,1720,2.592,1742,1.954,1811,3.528,1887,2.303,1920,1.439,1925,3.183,1954,2.122,1974,2.745,1976,2.353,1995,2.935,2046,1.666,2143,3.049,2146,2.211,2158,2.464,2159,2.935,2284,2.525,2287,2.592,2468,2.091,2587,4.226,2690,2.935,2727,2.256,2796,3.049,2820,2.819,2821,3.344,2856,2.256,2902,4.383,2955,3.815,2981,3.344,2985,3.907,3154,1.455,3156,2.935,3174,1.422,3272,2.353,3305,2.129,3358,3.049,3404,2.834,3426,1.603,3434,1.81,3437,2.935,3516,2.592,3546,2.464,3696,1.084,3803,1.583,3811,1.986,3831,3.183,3889,3.183,3980,4.686,4023,3.049,4088,2.592,4136,2.464,4236,3.049,4271,1.837,4417,3.049,4759,3.815,4782,2.464,4802,2.129,5024,2.303,5033,1.893,5034,2.834,5036,1.624,5081,4.276,5093,2.464,5100,3.056,5122,3.054,5152,4.024,5166,5.197,5217,3.376,5304,2.443,5305,2.547,5308,4.024,5309,2.353,5324,1.954,5464,2.303,5548,2.525,5559,2.834,5637,2.892,5688,3.344,5762,3.815,5763,2.834,6251,8.037,6281,1.923,6282,3.545,6294,2.734,6304,2.834,6307,2.935,6316,3.764,6364,1.759,6391,3.528,6392,2.353,6430,4.499,6437,4.788,6440,3.344,6474,3.049,6531,2.834,6579,3.049,6612,3.815,6623,2.129,6652,2.592,6777,3.049,6830,3.545,6840,3.545,6875,2.525,6897,4.764,6901,2.834,6904,1.472,6915,5.525,6927,5.197,6945,3.183,6948,3.344,6949,2.745,6950,3.049,6951,2.745,6952,2.525,6953,3.183,6954,7.41,6955,3.049,6959,6.391,6966,3.183,6977,5.768,6978,2.665,6982,6.193,6983,3.545,6984,6.193,6985,3.183,6986,4.224,6987,3.545,6988,6.193,6989,4.666,6990,4.224,6991,2.935,6992,3.183,6993,4.224,6994,3.545,6995,3.344,6996,4.224,6997,3.545,6998,3.183,6999,3.815,7000,2.665,7001,3.815,7002,4.224,7003,10.707,7004,2.592,7005,3.815,7006,3.545,7007,4.224,7008,3.545,7009,4.224,7010,4.47,7011,5.197,7012,3.183,7013,4.224,7014,4.224,7015,4.224,7016,4.224,7017,4.224,7018,4.224,7019,4.224,7020,6.193,7021,6.193,7022,4.224,7023,4.224,7024,4.224,7025,4.224,7026,4.224,7027,4.224,7028,4.224,7029,3.815,7030,4.224,7031,6.193,7032,4.224,7033,4.224,7034,4.224,7035,3.815,7036,3.183,7037,4.224,7038,4.224,7039,4.224,7040,4.224,7041,3.344,7042,4.224,7043,4.224,7044,4.224,7045,4.224,7046,4.954,7047,4.224,7048,4.224,7049,4.224,7050,6.621,7051,4.224,7052,4.224,7053,4.224,7054,4.224,7055,5.197,7056,6.193,7057,6.193,7058,4.224,7059,4.224,7060,4.224]],["description//tracks/90daysofdevops/day81",[]],["title//tracks/90daysofdevops/day80",[2162,3.418,5464,2.954,6901,3.635]],["content//tracks/90daysofdevops/day80",[1,1.626,2,2.304,6,0.307,26,0.768,30,1.626,32,1.017,38,1.069,56,2.732,70,1.68,71,1.592,72,2.845,75,0.885,96,1.193,110,1.512,118,1.436,141,1.495,173,1.794,175,0.85,190,2.385,196,1.841,203,1.662,206,1.379,216,1.252,217,1.592,224,2.839,246,1.107,264,1.819,268,1.542,289,1.076,295,1.288,297,2.68,300,1.885,301,1.981,308,6.501,337,1.738,342,2.174,344,1.124,356,1.036,359,1.956,361,2.787,366,2.454,369,2.454,374,1.831,381,2.059,397,1.794,408,2.237,414,2.68,421,2.237,422,0.98,424,2.732,429,2.973,442,2.495,461,1.819,470,1.778,471,2.304,487,2.495,488,2.318,490,1.76,536,0.944,546,3.12,550,2.006,578,3.933,582,3.12,585,3.392,595,1.932,598,2.032,600,1.232,608,3.626,628,1.511,632,3.626,635,1.778,643,4.678,647,2.237,648,2.767,655,2.48,670,3.044,741,2.032,757,2.538,758,1.901,778,1.922,779,2.803,781,2.376,840,2.414,842,5.043,856,2.957,882,2.68,903,1.981,907,1.107,915,2.144,916,3.768,918,1.243,930,2.998,934,2.583,939,1.908,989,2.68,1002,2.15,1007,2.376,1021,1.526,1024,1.577,1037,2.583,1040,2.63,1046,2.6,1049,2.304,1056,3.768,1059,2.583,1103,2.144,1121,3.12,1151,4.31,1184,3.384,1197,2.732,1206,2.583,1234,1.819,1246,3.628,1269,2.698,1271,1.908,1284,1.885,1309,2.237,1330,2.973,1331,1.511,1361,2.68,1487,2.583,1504,3.924,1516,1.819,1610,1.908,1632,1.366,1649,3.203,1651,2.237,1658,4.417,1674,2.63,1702,1.575,1704,2.205,1766,4.381,1792,2.059,1833,3.768,1869,2.219,1904,2.414,1920,1.778,1925,3.933,1930,1.421,1952,3.628,1954,1.511,1976,2.907,1995,3.626,2004,2.174,2005,2.63,2067,2.243,2221,3.392,2284,3.12,2468,2.583,2619,3.626,2629,2.583,2949,2.205,3008,2.787,3174,2.424,3196,6.694,3304,4.785,3397,3.12,3426,1.981,3434,2.237,3699,3.131,3891,2.538,3893,4.132,3896,4.714,3944,3.293,3980,5.08,4109,3.502,4201,2.376,4272,2.495,4303,3.12,4415,3.178,4727,4.714,5024,2.845,5033,2.339,5034,3.502,5036,2.006,5043,2.583,5081,5.435,5083,3.626,5093,5.758,5122,3.432,5152,4.678,5174,5.699,5217,2.845,5304,2.059,5305,2.732,5313,3.563,5464,5.737,5542,2.68,5614,3.044,5637,2.84,5974,2.304,6202,2.732,6281,2.376,6289,2.237,6301,2.907,6325,3.768,6390,4.417,6700,2.454,6778,4.714,6875,3.12,6887,5.196,6888,6.474,6894,6.042,6896,3.502,6897,6.261,6901,7.003,6904,3.096,6948,4.132,6949,3.392,6950,3.768,6951,3.392,6952,3.12,6953,3.933,6954,3.626,6955,3.768,6957,5.96,6999,4.714,7061,4.714,7062,5.22,7063,4.132,7064,5.22,7065,4.714,7066,3.293,7067,3.12,7068,5.22,7069,3.933,7070,4.132,7071,4.381,7072,4.714,7073,5.22,7074,5.22,7075,3.626,7076,4.806,7077,5.22,7078,4.381,7079,4.714,7080,4.381,7081,4.714,7082,3.12,7083,4.714,7084,5.22,7085,5.22]],["description//tracks/90daysofdevops/day80",[]],["title//tracks/90daysofdevops/day79",[1151,2.506,5122,2.257,7086,4.893]],["content//tracks/90daysofdevops/day79",[6,0.146,7,1.955,8,3.43,14,1.351,18,2.596,30,1.38,37,2.648,38,0.658,49,1.182,56,2.859,64,1.38,65,1.265,71,1.955,74,1.612,75,1.714,89,1.985,96,1.466,102,1.896,107,1.159,110,0.93,111,1.818,118,1.218,126,1.658,136,1.425,141,1.269,143,2.319,155,2.718,166,5.075,175,0.457,190,1.856,192,2.192,193,3.198,206,1.694,208,4.689,216,1.062,217,1.351,218,2.523,220,2.718,221,1.613,224,2.209,225,1.914,226,1.845,227,3.127,230,1.452,234,1.823,240,1.581,245,2.078,264,1.544,336,4.239,343,1.072,344,0.777,351,1.711,355,1.411,356,1.102,362,1.661,366,2.083,374,0.984,375,1.442,383,1.935,393,1.694,397,1.598,408,1.898,421,3.229,422,1.715,423,1.351,425,2.234,427,3.325,431,2.79,433,2.274,437,3.756,461,2.234,462,1.159,467,1.337,472,1.748,473,2.017,478,1.926,479,0.603,480,3.338,487,3.064,490,1.842,518,1.38,519,1.82,535,1.629,536,1.16,542,1.38,546,2.648,555,2.464,558,2.467,568,2.648,585,2.879,592,3.652,593,1.056,600,0.758,606,1.581,620,2.795,628,2.958,639,2.319,709,2.523,742,1.972,751,4.001,778,1.182,805,1.871,840,2.049,842,4.93,848,2.274,849,0.905,855,2.795,867,1.458,915,1.82,917,2.451,918,1.107,938,1.171,939,1.62,989,2.274,1002,1.323,1017,1.82,1018,1.442,1019,2.754,1021,1.296,1024,1.442,1038,2.583,1053,1.458,1069,2.648,1088,1.032,1089,3.299,1138,1.933,1151,4.052,1181,2.918,1184,3.014,1197,2.319,1205,1.458,1231,3.198,1237,3.752,1282,2.319,1307,2.972,1311,3.652,1331,2.181,1332,3.718,1375,5.209,1423,2.192,1435,3.014,1459,3.718,1474,2.467,1497,2.972,1504,2.415,1529,2.365,1587,3.652,1592,2.158,1610,1.62,1632,1.159,1651,1.898,1658,2.718,1661,2.812,1678,2.118,1680,2.823,1693,2.879,1702,1.337,1765,2.583,1774,2.467,1786,2.316,1792,2.529,1794,3.338,1869,1.976,1905,2.718,1920,1.509,1930,1.206,1948,5.438,1976,2.467,1979,1.898,2046,1.748,2054,2.467,2245,2.523,2468,2.192,2580,4.001,2600,2.795,2723,2.648,2797,6.323,3013,2.365,3154,1.526,3159,2.316,3189,3.423,3304,3.291,3305,2.232,3394,2.67,3397,3.832,3511,1.771,3585,3.338,3666,2.274,3670,2.972,3696,1.645,3700,1.82,3879,2.415,3891,3.117,3921,3.507,3980,5.937,4071,2.879,4229,2.154,4424,1.898,4463,2.718,4475,4.599,4497,2.747,4621,4.001,4782,2.583,4802,2.232,4806,3.507,4849,2.467,4955,3.507,5008,1.898,5033,1.985,5034,2.972,5036,2.464,5081,5.732,5086,5.79,5122,3.138,5152,2.879,5217,2.415,5305,2.735,5309,3.571,5464,2.415,5485,3.718,5614,2.583,5637,1.748,5777,3.718,5974,1.955,5976,3.077,6281,2.017,6301,3.571,6304,2.972,6306,3.718,6383,2.274,6390,2.718,6396,3.338,6405,2.648,6579,3.198,6626,3.338,6630,5.38,6648,2.972,6664,3.718,6680,3.077,6737,3.198,6790,4.001,6825,4.831,6858,4.196,6888,7.023,6897,4.166,6901,6.32,6945,4.831,6949,2.879,6950,3.198,6951,2.879,6952,2.648,6953,3.338,6954,4.453,6955,3.198,6957,6.783,6978,2.795,7087,3.507,7088,4.43,7089,3.934,7090,9.134,7091,3.338,7092,4.001,7093,4.43,7094,4.43,7095,4.43,7096,6.411,7097,3.718,7098,5.38,7099,4.43,7100,4.43,7101,2.154,7102,4.001,7103,3.198,7104,4.43,7105,4.43,7106,4.001,7107,3.507,7108,7.534,7109,4.001,7110,4.43,7111,3.338,7112,3.718,7113,3.718,7114,4.001,7115,2.972,7116,4.001,7117,4.43,7118,4.43,7119,4.43,7120,4.43,7121,4.43,7122,1.926,7123,3.077]],["description//tracks/90daysofdevops/day79",[]],["title//tracks/90daysofdevops/day78",[842,2.508,1184,2.252,5227,3.61,7124,4.327]],["content//tracks/90daysofdevops/day78",[6,0.27,26,1.055,30,1.618,35,1.81,38,0.771,44,1.601,49,1.386,52,2.258,53,2.443,64,1.618,67,1.728,68,0.939,74,1.111,77,2.225,80,1.165,96,1.187,109,1.789,113,1.728,118,1.428,136,1.154,137,1.31,139,1.269,146,3.614,158,2.757,159,1.789,164,1.915,175,0.993,176,1.031,190,2.379,197,1.672,203,2.284,204,1.748,206,1.896,216,1.72,217,1.584,219,2.076,227,3.32,235,1.567,238,2.482,245,1.307,261,1.97,265,1.97,268,1.534,272,2.193,288,0.888,289,1.07,301,1.97,307,2.076,331,1.653,337,2.388,344,0.96,351,1.915,352,1.653,354,1.345,356,0.902,374,1.826,375,1.69,383,1.567,397,1.294,421,2.225,422,0.975,425,1.81,431,1.653,444,3.186,464,1.831,487,2.482,488,2.854,489,2.441,490,1.269,519,2.133,530,2.364,535,1.319,536,1.298,554,2.666,556,2.646,575,2.162,593,0.856,598,2.793,600,1.516,602,3.683,604,2.772,647,2.225,675,1.518,722,2.83,757,2.525,758,1.535,774,1.748,779,2.022,805,2.193,842,5.035,849,1.465,867,1.709,907,1.101,909,2.142,915,2.133,917,1.319,918,1.239,926,1.853,989,2.666,993,1.898,1021,1.518,1028,2.957,1030,3.186,1054,2.83,1055,1.518,1057,2.441,1076,2.292,1138,1.332,1184,3.372,1187,2.441,1190,3.275,1197,2.717,1205,1.709,1229,2.957,1232,2.957,1271,1.898,1295,2.772,1303,3.028,1308,1.386,1309,2.225,1331,2.379,1341,1.748,1435,2.441,1470,1.81,1482,1.946,1585,2.225,1587,2.957,1598,2.666,1599,2.441,1618,2.415,1619,2.292,1622,2.957,1630,2.616,1632,2.151,1639,1.567,1643,3.614,1649,3.186,1674,2.616,1681,3.275,1701,2.666,1702,2.903,1742,3.318,1764,3.374,1792,2.048,1858,1.97,1890,2.364,1904,2.401,1920,1.768,1930,1.953,1965,4.357,1976,2.892,1987,1.946,1988,2.666,2171,3.374,2213,2.892,2251,2.83,2264,3.186,2277,1.748,2364,1.789,2468,2.569,2611,3.028,2629,2.569,2703,3.275,2716,3.186,2721,3.607,2727,2.772,2902,3.104,3154,1.789,3196,5.405,3305,2.616,3426,1.97,3511,2.076,3636,3.374,3696,1.332,3811,2.441,3946,3.186,3980,2.83,3984,3.488,4095,4.11,4201,2.364,4271,2.258,4272,2.482,4285,2.772,4439,3.186,4484,3.748,4616,3.275,4782,3.028,4827,3.275,4849,5.181,5036,1.996,5100,3.166,5152,3.374,5180,3.483,5305,2.513,5337,3.028,5637,2.83,6281,2.364,6294,3.166,6295,2.104,6316,2.666,6319,3.996,6384,4.681,6391,4.086,6392,2.892,6405,3.104,6411,3.607,6419,2.193,6430,5.902,6437,2.892,6474,3.748,6565,3.748,6572,4.661,6603,3.912,6623,3.614,6651,3.607,6675,3.186,6689,3.374,6777,3.748,6852,3.607,6887,3.748,6896,6.843,6897,7.195,6900,4.357,6904,2.5,6909,4.983,6910,6.02,6928,4.689,6936,4.11,6940,6.478,6941,4.11,6949,3.374,6950,6.398,6951,3.374,6952,3.104,7004,3.186,7008,4.357,7089,3.186,7125,4.689,7126,5.192,7127,7.173,7128,5.192,7129,7.173,7130,5.192,7131,5.192,7132,5.192,7133,5.192,7134,5.192,7135,5.192,7136,3.607,7137,4.689,7138,5.192,7139,5.192,7140,5.192,7141,5.192,7142,5.192,7143,5.192,7144,5.192,7145,5.192,7146,5.192]],["description//tracks/90daysofdevops/day78",[]],["title//tracks/90daysofdevops/day77",[4849,3.472,7147,5.63]],["content//tracks/90daysofdevops/day77",[15,2.699,18,1.865,25,3.708,26,1.492,29,1.91,30,1.687,38,0.804,42,2.952,49,1.445,54,3.762,64,1.687,65,0.909,68,0.98,71,2.252,72,2.952,74,1.798,75,1.529,91,3.824,105,1.951,110,1.764,118,2.482,136,1.867,137,0.989,141,1.551,175,0.762,190,3.156,191,1.226,192,2.68,202,1.475,204,1.823,206,1.431,216,1.298,217,2.252,221,1.363,224,2.543,225,1.617,226,2.255,227,2.998,229,2.194,238,2.588,246,1.148,264,2.928,272,2.287,288,1.437,333,1.782,344,0.867,352,1.724,355,1.724,356,1.134,374,2.165,383,2.228,397,1.349,422,1.017,423,1.652,425,1.887,427,2.055,431,2.675,461,2.928,462,1.417,464,1.91,476,2.136,479,0.737,527,3.084,535,2.534,536,1.336,537,4.286,548,2.458,558,3.016,595,2.004,600,1.706,602,4.313,628,1.567,632,3.762,637,2.194,639,2.834,640,2.514,716,2.546,721,3.519,758,1.159,774,2.486,778,1.445,817,1.652,842,5.099,905,1.035,907,1.148,910,1.652,915,2.224,918,1.558,935,1.274,989,2.78,1002,1.617,1017,2.224,1018,1.763,1021,2.159,1049,2.39,1055,1.584,1088,1.72,1108,3.158,1138,1.389,1184,3.471,1192,4.08,1234,1.887,1266,2.004,1269,2.029,1284,1.956,1287,3.415,1288,3.864,1529,2.891,1592,1.823,1597,2.504,1632,2.55,1672,3.016,1680,2.029,1689,3.237,1742,2.504,1750,3.415,1776,3.416,1777,2.78,1780,3.237,1869,2.276,1904,2.504,1912,2.991,1914,3.519,1920,1.844,1930,2.287,1976,3.016,1989,4.08,1993,3.323,2024,3.237,2046,2.136,2079,3.762,2159,3.762,2170,3.158,2470,2.633,2611,3.158,2646,4.08,3159,2.667,3172,2.588,3187,2.633,3214,2.255,3353,2.546,3516,3.323,3587,3.519,3666,2.78,3803,2.029,3879,2.952,3884,3.762,3891,2.633,4019,3.633,4039,2.427,4155,3.323,4272,2.588,4290,4.08,4317,4.545,4424,2.321,4463,3.323,4497,4.175,4616,3.416,4802,2.729,4849,6.093,4972,4.545,5100,1.782,5152,3.519,5305,2.558,5314,3.519,5332,4.657,5386,3.762,5892,3.762,6281,2.465,6301,3.016,6381,3.158,6455,4.657,6464,3.909,6675,4.53,6680,3.762,6710,4.89,6847,3.158,6897,4.797,6900,8.177,6936,4.286,6949,3.519,6995,4.286,6998,4.08,7101,2.633,7148,5.415,7149,5.415,7150,4.286,7151,5.415,7152,4.89,7153,4.89,7154,5.415,7155,5.415,7156,3.519,7157,3.323,7158,4.89,7159,4.89,7160,5.415,7161,5.835,7162,5.415,7163,4.89,7164,5.415,7165,4.89,7166,4.545,7167,5.415,7168,5.415,7169,5.415,7170,2.891,7171,5.329,7172,3.909]],["description//tracks/90daysofdevops/day77",[]],["title//tracks/90daysofdevops/day76",[1478,2.226,7173,4.893,7174,3.521]],["content//tracks/90daysofdevops/day76",[6,0.313,7,2.436,26,1.1,38,1.11,53,1.879,57,1.665,64,1.719,68,1.535,73,2.537,74,1.6,75,1.698,105,2.242,124,1.138,126,1.646,136,1.226,154,3.218,175,0.875,197,2.408,202,1.503,203,1.757,207,2.833,215,2.731,219,1.597,230,1.25,235,1.665,238,3.575,245,1.389,265,2.094,288,1.451,293,2.594,307,2.206,333,1.816,337,1.837,343,1.336,344,0.569,351,1.473,356,1.143,362,1.43,374,1.885,375,1.796,377,2.149,393,1.458,408,2.365,419,3.218,422,1.036,423,1.683,427,3.219,431,1.757,462,1.444,467,1.665,479,1.018,485,3.008,489,2.594,517,2.683,536,0.998,541,2.888,548,1.837,550,2.121,593,1.498,595,2.042,600,0.944,628,1.597,640,2.547,645,2.946,655,1.901,698,3.983,742,1.444,756,1.777,757,2.683,774,1.858,779,2.149,787,2.267,849,1.732,857,2.552,901,3.517,907,1.586,909,1.648,915,2.267,917,1.9,918,0.953,925,2.357,935,1.298,991,1.533,995,2.683,1012,2.731,1018,2.434,1024,1.623,1040,2.781,1054,2.177,1055,1.614,1066,2.042,1088,1.286,1110,2.018,1187,2.594,1205,1.816,1206,2.731,1237,2.267,1282,2.888,1314,3.983,1405,1.993,1437,2.946,1477,3.586,1478,2.267,1480,2.638,1488,2.267,1489,2.874,1591,3.008,1592,1.858,1625,5.351,1632,1.444,1639,1.665,1702,2.957,1713,4.368,1725,4.158,1742,2.552,1770,3.481,1955,2.638,1978,3.143,1979,2.365,1990,4.368,2004,2.298,2054,3.073,2213,3.073,2258,2.594,2382,2.068,2629,2.731,2662,2.236,2693,2.4,2712,4.158,2727,2.946,2929,3.459,2976,2.518,3107,4.588,3154,2.576,3174,2.518,3179,2.512,3349,3.983,3353,2.594,3394,2.298,3511,2.206,3516,3.386,3619,3.008,3696,1.919,3697,3.833,4136,3.218,4222,4.368,4423,3.218,4459,3.252,4616,3.481,4830,4.361,4845,4.983,4989,2.594,5026,2.638,5028,2.731,5100,2.462,5143,4.361,5182,2.512,5313,2.731,5319,4.368,5377,4.076,5397,4.47,5407,3.386,5554,3.008,5581,4.158,5637,2.177,5666,4.158,5704,3.386,5769,4.631,5974,2.436,6289,2.365,6294,2.436,6302,7.119,6303,6.714,6316,5.03,6318,4.368,6319,3.636,6339,2.552,6367,2.833,6375,2.121,6384,3.143,6388,2.781,6391,3.143,6392,3.073,6403,4.158,6404,3.218,6430,3.386,6437,3.073,6445,2.177,6586,3.833,6623,2.781,6642,3.833,6651,3.833,6681,3.983,6837,1.901,6847,4.361,6866,3.983,6889,3.983,6991,3.833,7066,3.481,7174,7.051,7175,5.518,7176,5.017,7177,7.478,7178,2.731,7179,5.518,7180,5.518,7181,4.368,7182,5.518,7183,4.368,7184,5.518,7185,4.983,7186,5.518,7187,5.518,7188,3.299,7189,5.518,7190,5.518,7191,3.983,7192,5.518,7193,5.518,7194,4.983,7195,5.518,7196,5.518,7197,4.983,7198,4.631,7199,4.631,7200,5.518,7201,3.702,7202,5.017,7203,4.631,7204,6.753,7205,3.299,7206,5.518,7207,4.724,7208,3.833,7209,3.073]],["description//tracks/90daysofdevops/day76",[]],["title//tracks/90daysofdevops/day75",[1478,1.968,1489,1.842,5377,2.612,5753,4.021]],["content//tracks/90daysofdevops/day75",[1,1.218,6,0.324,15,1.429,31,1.347,32,1.365,44,1.802,46,1.901,56,2.219,57,1.18,58,2.751,64,1.822,65,1.691,68,1.267,73,1.043,74,1.251,75,1.187,77,2.506,80,1.312,83,1.465,89,1.752,94,2.28,105,1.545,107,2.034,110,0.821,120,0.946,122,2.466,124,1.205,126,0.86,137,1.068,139,0.955,144,3.15,147,0.993,154,2.28,161,1.205,172,1.808,173,0.974,175,0.982,176,0.776,190,1.131,191,0.885,206,1.033,207,3.002,208,3.002,217,1.783,219,2.027,221,0.984,225,1.167,230,2.108,232,2.54,234,1.458,259,2.561,261,1.483,263,1.563,268,2.07,288,1.198,289,1.801,295,1.919,301,1.483,307,1.563,331,1.245,342,1.628,343,1.416,344,0.403,351,1.561,356,0.735,362,2.157,366,4.106,369,2.749,374,2.214,375,1.272,383,1.18,389,2.398,397,1.746,421,1.675,423,1.192,429,2.227,461,1.362,462,1.53,470,1.331,471,3.092,479,1.058,490,0.955,507,1.231,536,1.407,542,1.218,550,1.502,595,1.447,600,1.33,603,3.588,604,2.087,626,2.703,638,1.779,640,1.331,647,1.675,648,1.502,742,1.023,758,1.664,765,2.945,766,2.398,769,2.945,817,1.192,819,2.046,843,1.606,848,2.007,857,1.808,867,1.287,905,1.269,907,1.485,910,1.192,914,2.227,917,0.993,918,1.01,925,2.644,926,2.087,930,2.435,932,3.24,935,0.92,952,1.808,990,2.822,991,3.011,992,2.623,993,1.429,995,1.901,996,1.868,1002,1.746,1015,2.946,1018,1.272,1021,1.71,1023,5.072,1024,1.781,1034,2.227,1036,1.272,1049,1.725,1053,1.925,1088,2.531,1136,3.094,1181,1.779,1187,2.749,1208,2.114,1224,2.247,1227,2.715,1237,3.193,1241,2.945,1242,2.046,1255,2.219,1266,2.593,1268,2.087,1282,2.046,1300,1.651,1308,1.043,1315,3.571,1331,1.131,1341,2.802,1365,2.621,1424,1.412,1435,2.749,1437,2.087,1478,1.606,1482,2.625,1489,4.039,1516,2.71,1524,3.41,1526,1.838,1535,2.28,1550,2.623,1585,1.675,1592,1.316,1597,2.704,1630,1.97,1639,1.18,1651,1.675,1669,1.651,1700,2.337,1701,2.007,1702,2.114,1745,1.502,1747,1.969,1768,2.398,1769,2.007,1770,2.466,1786,1.412,1869,2.159,1884,2.623,1904,1.808,1912,1.584,1954,1.131,1985,2.54,1993,2.398,1995,2.715,2039,1.97,2046,2.307,2055,2.087,2067,1.822,2069,2.227,2258,2.749,2299,2.087,2382,2.191,2448,7.534,2643,1.752,2647,1.838,2976,1.969,3147,2.131,3159,1.412,3172,1.868,3174,3.424,3187,1.901,3306,2.466,3353,1.838,3426,2.219,3516,2.398,3617,3.06,3655,2.087,3657,1.379,3658,3.293,3696,1.003,3700,1.606,3803,1.465,4155,2.398,4272,1.868,4417,2.822,4432,2.466,4568,2.466,4791,2.822,4921,4.406,5022,3.923,5026,1.868,5028,1.934,5143,2.28,5182,1.779,5291,2.822,5304,2.307,5324,1.808,5377,5.666,5397,2.337,5407,2.398,5482,2.28,5542,2.007,5592,2.715,5689,2.945,6004,1.838,6289,1.675,6292,2.822,6305,3.24,6310,2.945,6338,2.247,6339,2.704,6375,1.502,6388,1.97,6405,2.337,6409,2.466,6412,2.822,6419,3.516,6445,1.542,6450,2.822,6455,2.466,6461,2.623,6464,2.822,6490,2.945,6497,2.131,6565,4.22,6623,3.918,6714,2.623,6720,2.177,6837,1.347,6875,2.337,6937,3.094,7004,2.398,7101,1.901,7136,2.715,7156,2.54,7158,3.53,7174,4.552,7181,3.094,7207,4.33,7208,2.715,7209,3.901,7210,3.53,7211,3.281,7212,3.909,7213,3.909,7214,5.847,7215,5.847,7216,3.094,7217,3.281,7218,3.909,7219,3.53,7220,6.326,7221,3.094,7222,6.326,7223,3.909,7224,5.28,7225,3.53,7226,3.53,7227,3.094,7228,3.909,7229,3.53,7230,3.909,7231,7.774,7232,9.691,7233,5.28,7234,3.094,7235,3.909,7236,3.909,7237,7.005,7238,5.847,7239,5.847,7240,3.909,7241,3.909,7242,3.909,7243,3.909,7244,3.909,7245,3.909,7246,3.909,7247,2.715,7248,3.281,7249,3.909,7250,3.909,7251,3.909,7252,3.909,7253,5.847,7254,3.909,7255,3.281,7256,3.909,7257,3.909,7258,3.909,7259,2.54,7260,3.909,7261,3.094,7262,3.53,7263,3.909,7264,3.909,7265,2.822,7266,3.909,7267,3.53]],["description//tracks/90daysofdevops/day75",[]],["title//tracks/90daysofdevops/day74",[1386,1.744,2098,1.8,2099,1.892,7205,2.326,7268,3.514,7269,2.932]],["content//tracks/90daysofdevops/day74",[26,1.089,31,3.114,32,1.443,38,1.099,44,1.677,49,1.452,57,1.641,64,1.695,65,1.243,68,1.523,72,2.965,73,2.413,75,0.922,80,1.22,105,2.578,109,1.874,110,1.142,111,1.542,114,1.327,120,2.038,124,1.121,126,1.197,137,1.352,139,1.81,159,2.551,173,2.098,175,1.007,183,2.146,215,2.692,216,1.304,219,1.574,225,1.624,226,2.265,234,1.132,235,2.235,245,1.369,251,2.645,268,2.188,288,0.931,289,1.527,295,1.342,343,1.793,344,0.869,351,1.452,356,1.059,369,3.481,374,2.315,375,1.77,431,1.732,435,2.792,467,2.541,468,2.234,472,2.146,479,1.008,487,2.6,490,1.329,536,1.523,550,2.09,560,2.204,593,0.896,595,2.741,600,1.267,605,3.778,626,1.624,675,2.643,756,1.751,779,2.118,845,3.084,849,1.111,856,3.042,907,1.785,909,1.624,918,1.279,925,2.057,926,1.941,930,2.265,935,1.279,952,3.425,995,2.645,998,2.401,1007,2.476,1023,2.847,1030,3.337,1042,5.033,1055,2.462,1059,2.692,1088,1.267,1198,2.645,1208,1.641,1211,2.965,1224,2.09,1242,2.847,1271,1.989,1300,3.128,1330,3.098,1331,2.143,1370,4.305,1386,2.438,1410,4.218,1430,2.557,1441,3.534,1470,2.581,1474,3.029,1489,3.959,1493,3.926,1499,3.778,1504,2.965,1516,2.581,1599,2.557,1614,4.912,1639,1.641,1660,4.098,1702,2.235,1747,1.831,1786,1.965,1858,2.064,1886,3.337,1916,3.172,1952,2.741,1955,2.6,2035,2.965,2039,4.765,2098,2.516,2099,2.645,2240,3.337,2245,3.098,2258,2.557,2470,3.601,2711,4.565,2723,3.251,2825,4.912,2976,2.493,3172,2.6,3174,3.63,3187,2.645,3394,2.265,3511,2.96,3696,1.396,3800,2.516,4415,2.401,4449,2.904,4545,2.476,5006,4.098,5026,3.54,5028,3.665,5100,2.437,5182,4.115,5300,4.025,5304,2.921,5309,4.124,5368,4.912,5377,4.036,5407,3.337,5524,3.173,5542,2.792,5704,3.337,5738,4.305,5976,3.778,6294,3.269,6301,3.029,6319,2.645,6364,2.265,6390,3.337,6409,3.431,6415,3.337,6445,2.146,6448,3.926,6586,3.778,6590,3.337,6639,3.431,6674,4.565,6741,2.965,6837,1.874,6875,5.403,6904,2.935,7101,2.645,7174,4.812,7205,5.832,7207,5.737,7208,3.778,7209,3.029,7269,6.811,7270,4.098,7271,6.344,7272,6.934,7273,5.439,7274,3.098,7275,4.565,7276,5.439,7277,4.912,7278,4.305,7279,7.405,7280,5.439,7281,4.912,7282,4.912,7283,5.439,7284,5.439,7285,5.439,7286,5.439,7287,5.439,7288,5.439,7289,3.926,7290,5.439,7291,4.305,7292,5.439]],["description//tracks/90daysofdevops/day74",[]],["title//tracks/90daysofdevops/day73",[4164,3.458,6875,2.864,7207,2.669,7293,4.327]],["content//tracks/90daysofdevops/day73",[6,0.372,26,0.638,31,3.225,32,0.846,58,1.367,68,1.143,74,1.594,75,0.736,107,1.653,118,1.194,124,1.535,136,0.964,139,1.544,141,1.809,144,2.559,159,1.495,173,1.082,175,0.936,176,1.624,190,1.256,191,0.983,219,1.256,230,0.983,234,0.903,235,1.906,236,5.301,242,2.912,243,4.759,245,1.589,251,2.11,256,2.82,262,2.738,263,1.735,268,1.282,271,2.417,288,0.743,295,1.071,300,2.281,333,1.429,344,0.99,351,1.158,354,1.125,356,1.028,359,1.626,374,2.237,378,2.707,383,1.906,393,1.147,423,1.324,462,1.136,479,1.013,482,2.007,490,1.061,507,1.367,520,2.663,534,3.133,536,0.785,550,1.668,593,1.041,595,3.217,598,1.69,600,0.743,603,2.663,626,1.296,638,1.976,639,3.306,640,1.478,647,1.86,648,1.668,650,4.238,675,1.269,745,1.886,758,1.86,774,1.461,817,2.271,828,2.148,838,3.919,844,2.228,845,2.631,848,2.228,849,0.886,859,1.833,903,1.647,907,1.579,918,1.091,932,2.921,935,1.486,939,1.587,952,2.007,998,2.788,1002,1.296,1007,3.39,1015,2.187,1019,2.309,1021,1.847,1023,2.272,1024,1.425,1026,4.02,1030,2.663,1036,1.413,1049,1.916,1053,1.429,1079,1.668,1088,1.735,1191,2.594,1211,2.366,1254,2.228,1266,1.606,1268,2.317,1271,1.587,1303,2.531,1331,1.256,1336,4.154,1341,3.054,1362,2.148,1405,1.568,1410,2.472,1424,1.568,1426,2.11,1430,4.085,1447,1.461,1450,3.683,1488,1.783,1489,3.687,1504,2.366,1516,2.201,1555,2.594,1592,1.461,1649,2.663,1660,3.27,1661,1.478,1674,2.187,1688,2.187,1724,2.228,1767,2.82,1768,3.876,1769,2.228,2001,2.366,2035,3.443,2037,3.27,2039,4.121,2069,2.472,2125,2.531,2131,2.417,2240,2.663,2264,2.663,2331,5.903,2470,2.11,2622,6.474,2714,3.133,2731,2.417,2937,2.738,2976,2.127,3154,1.495,3174,2.753,3221,2.912,3277,3.642,3306,2.738,3404,2.912,3426,2.397,3433,3.642,3434,3.191,3511,2.525,3546,2.531,3617,2.272,3658,2.969,3836,3.642,3944,2.738,3948,2.531,4088,2.663,4164,3.133,4295,2.417,4415,1.916,4545,1.976,4765,2.912,5026,3.019,5028,3.126,5097,3.642,5100,2.985,5122,2.631,5143,4.769,5182,2.875,5300,4.749,5313,2.148,5351,3.435,5377,3.443,5394,3.919,5407,2.663,5548,2.594,5614,2.531,5637,2.492,5815,3.876,5948,3.133,6294,3.61,6316,2.228,6319,3.621,6364,1.808,6384,2.472,6390,2.663,6404,2.531,6409,2.738,6419,1.833,6437,3.518,6445,1.712,6448,3.133,6523,3.642,6532,4.759,6586,4.388,6623,3.752,6701,3.919,6837,1.495,6862,2.912,6875,5.596,6904,3.463,6919,3.919,6934,3.27,7069,3.27,7080,3.642,7174,4.104,7178,2.148,7205,5.596,7207,5.848,7208,3.015,7209,2.417,7269,3.27,7272,6.663,7274,2.472,7278,5,7294,3.919,7295,3.919,7296,3.642,7297,3.133,7298,3.435,7299,3.435,7300,4.34,7301,4.34,7302,4.34,7303,4.34,7304,4.34,7305,4.996,7306,5.704,7307,5.301,7308,5,7309,3.919,7310,3.919,7311,4.34,7312,5.903,7313,4.34,7314,4.34,7315,3.642,7316,3.435,7317,8.178,7318,6.316,7319,4.34,7320,4.34,7321,4.34,7322,4.34,7323,5.301,7324,4.34,7325,3.919,7326,3.823,7327,4.34,7328,3.919,7329,4.34,7330,4.34,7331,4.34,7332,4.34,7333,4.34,7334,4.34,7335,4.34,7336,4.34,7337,4.34,7338,4.34,7339,2.912,7340,4.34,7341,4.34,7342,4.34,7343,4.34,7344,4.34,7345,4.34,7346,4.34,7347,3.435,7348,4.34,7349,3.919,7350,6.725,7351,3.919,7352,4.34,7353,3.919,7354,4.34,7355,3.642,7356,4.34,7357,6.316,7358,3.919,7359,3.27,7360,3.642]],["description//tracks/90daysofdevops/day73",[]],["title//tracks/90daysofdevops/day72",[191,1.227,7207,3.018,7361,4.893]],["content//tracks/90daysofdevops/day72",[6,0.353,15,1.494,26,1.169,29,1.442,31,3.059,34,0.934,46,1.988,49,1.091,52,1.778,53,1.392,57,1.234,64,2.241,65,1.015,68,0.74,73,1.091,74,1.539,75,0.693,96,0.934,105,1.08,107,1.882,109,1.408,110,0.859,111,1.714,112,1.124,118,1.124,124,1.638,126,1.749,136,1.343,137,0.747,139,0.999,141,1.171,158,1.571,159,1.408,164,1.92,173,1.792,175,0.875,176,1.2,201,2.483,206,1.08,207,2.099,208,2.099,217,1.844,219,1.183,225,1.221,227,1.459,229,2.449,230,0.926,234,0.851,235,2.171,245,1.81,254,2.742,257,1.861,259,2.21,262,2.579,265,1.551,268,2.125,285,4.996,288,0.699,289,1.483,295,1.775,304,2.06,313,1.786,333,1.345,343,1.463,344,0.624,351,1.091,354,1.566,356,0.904,369,1.922,374,2.235,406,2.06,423,1.247,425,1.425,427,1.551,432,1.702,462,1.07,470,1.392,472,2.384,479,0.979,489,1.922,490,1.758,519,1.679,520,2.508,536,1.438,548,2.012,550,1.571,568,2.443,575,1.702,593,1.614,595,2.662,600,1.754,612,2.752,627,3.624,628,2.082,638,1.861,646,1.778,675,1.195,678,2.099,741,2.353,742,1.07,745,1.221,758,1.539,767,2.384,774,1.376,800,1.861,817,1.247,823,3.046,828,2.023,845,1.702,849,1.967,857,1.891,867,1.345,901,2.662,905,0.573,907,1.525,918,0.706,925,2.467,930,1.702,931,1.425,932,3.327,934,2.023,939,1.494,940,2.139,991,1.136,993,2.21,1002,2.148,1007,2.752,1012,2.023,1015,2.06,1019,1.494,1024,1.521,1028,2.328,1046,1.476,1053,1.345,1054,1.612,1059,2.023,1078,2.277,1088,1.976,1103,1.679,1197,2.139,1205,1.99,1206,2.023,1224,1.571,1226,2.182,1252,2.579,1266,2.237,1271,1.494,1288,2.139,1300,1.727,1304,2.742,1315,1.612,1330,3.443,1331,1.183,1364,1.679,1374,2.752,1405,1.476,1422,4.299,1424,1.476,1430,3.381,1470,1.425,1489,2.323,1504,2.228,1516,1.425,1594,2.443,1628,1.752,1651,1.752,1661,1.392,1702,2.846,1704,1.727,1716,2.384,1741,1.752,1742,1.891,1880,2.182,1954,1.183,1959,3.43,1984,3.046,1987,2.265,1988,2.099,1993,2.508,1994,2.95,2001,3.295,2004,1.702,2039,4.005,2052,1.988,2069,2.328,2072,3.43,2102,3.691,2181,2.579,2247,2.656,2382,2.265,2604,2.95,2643,1.832,2693,3.456,2723,2.443,2727,3.227,2731,2.277,2937,2.579,2976,2.035,3000,2.384,3067,2.656,3107,3.709,3154,1.408,3174,2.422,3221,2.742,3306,2.579,3353,1.922,3404,2.742,3426,1.551,3432,2.443,3495,1.408,3546,2.384,3617,2.139,3659,2.277,3661,1.988,3665,2.656,4272,1.954,4432,2.579,4459,2.629,4546,2.742,4886,3.43,4989,1.922,5026,3.438,5028,3.559,5100,2.368,5122,2.518,5182,3.618,5294,2.742,5300,2.889,5313,2.991,5314,2.656,5321,2.839,5351,3.236,5377,3.295,5389,2.023,5407,2.508,5493,4.199,5637,2.384,5736,1.922,5948,2.95,5952,2.839,5974,1.804,5990,3.43,6294,3.744,6295,1.656,6305,1.891,6309,2.656,6316,4.716,6319,4.124,6339,3.676,6354,2.95,6364,1.702,6384,2.328,6390,2.508,6391,3.443,6392,3.367,6404,4.946,6413,3.691,6415,2.508,6430,5.787,6437,4.426,6440,6.291,6474,4.363,6531,4.055,6579,2.95,6590,2.508,6603,3.08,6623,3.046,6632,3.236,6634,2.656,6652,3.709,6737,2.95,6748,4.555,6837,1.408,6858,2.277,6862,2.742,6875,5.638,6927,3.43,6977,2.742,6997,3.43,7008,3.43,7107,3.236,7157,2.508,7174,3.928,7176,2.742,7188,2.443,7191,4.363,7205,5.491,7207,6.153,7208,2.839,7209,2.277,7269,6.39,7270,3.08,7274,2.328,7278,4.785,7298,3.236,7305,2.742,7323,3.43,7326,2.099,7339,2.742,7349,3.691,7351,3.691,7353,3.691,7362,3.43,7363,2.95,7364,2.328,7365,4.087,7366,4.087,7367,4.087,7368,4.087,7369,4.087,7370,4.087,7371,6.045,7372,4.087,7373,2.839,7374,6.495,7375,4.087,7376,6.045,7377,4.087,7378,4.087,7379,6.045,7380,4.087,7381,4.087,7382,3.928,7383,3.691,7384,3.691,7385,4.087,7386,4.087,7387,4.087,7388,3.236,7389,6.045,7390,4.087,7391,4.087,7392,2.384,7393,4.087,7394,3.691,7395,3.691,7396,3.236,7397,2.95,7398,4.087,7399,4.087,7400,3.691,7401,2.95]],["description//tracks/90daysofdevops/day72",[]],["title//tracks/90daysofdevops/day71",[3666,2.782,7207,3.018,7402,4.893]],["content//tracks/90daysofdevops/day71",[6,0.149,25,2.869,27,2.265,29,1.592,30,1.407,31,1.556,32,1.267,34,1.032,35,1.574,38,0.965,44,1.392,45,2.318,65,1.751,67,1.503,68,0.817,70,1.454,73,2.224,74,0.966,75,1.412,76,3.574,80,1.458,89,2.024,94,2.633,96,1.032,105,1.193,107,1.182,110,1.75,114,0.809,116,2.572,118,1.788,120,1.093,122,2.848,124,1.34,126,0.994,139,1.862,147,1.147,161,1.392,164,2.224,173,1.125,175,0.786,190,2.661,191,1.725,197,2.093,201,2.67,206,2.013,212,1.574,217,2.323,219,1.307,220,2.77,222,2.904,224,2.624,225,2.745,227,1.611,234,1.837,235,1.363,246,1.378,259,3.046,262,5.569,267,2.436,285,4.515,288,1.425,289,0.931,297,2.318,307,1.805,333,1.486,344,0.671,352,2.653,355,1.438,356,1.11,358,2.318,362,1.17,393,1.193,395,2.363,396,4.151,397,1.62,410,2.088,422,1.221,423,1.377,425,1.574,431,1.438,432,1.881,439,2.123,462,1.182,479,0.615,487,2.158,518,1.407,519,1.855,520,2.77,536,1.507,542,1.407,544,2.572,550,1.735,554,3.337,556,1.454,557,3.789,593,1.071,594,6.013,595,1.671,598,1.758,600,0.772,626,1.941,646,2.827,716,2.123,741,1.758,742,1.182,755,2.869,774,2.188,778,1.205,787,1.855,843,2.67,858,2.572,864,2.275,905,1.067,907,0.957,910,1.377,918,0.78,925,2.632,930,1.881,935,1.062,939,2.376,991,1.255,1002,2.745,1018,2.479,1023,2.363,1024,0.864,1036,1.47,1079,1.735,1088,2.057,1101,2.572,1138,1.159,1143,2.67,1150,2.934,1198,2.196,1205,2.507,1224,1.735,1226,2.411,1242,2.363,1255,1.714,1271,1.651,1284,1.631,1287,2.088,1294,2.934,1296,1.714,1309,1.935,1361,2.318,1363,2.406,1447,1.52,1451,4.151,1470,1.574,1489,2.927,1499,3.137,1528,3.312,1530,3.79,1591,2.461,1597,3.006,1599,2.123,1611,0.696,1618,1.52,1626,1.392,1632,2.31,1639,1.363,1649,2.77,1650,2.699,1652,1.692,1674,2.275,1680,1.692,1690,4.185,1692,3.789,1702,2.298,1704,1.907,1722,3.137,1775,3.259,1777,2.318,1786,1.631,1789,1.964,1818,1.805,1857,2.055,1869,2.348,1904,2.088,1912,1.829,1930,1.23,1955,2.158,1979,1.935,1987,3.122,2001,2.461,2013,2.572,2039,5.115,2067,1.407,2070,3.029,2620,5.145,2648,5.455,2662,2.634,2870,3.62,2873,2.699,2976,2.188,2979,3.029,3106,3.789,3152,3.137,3154,1.556,3159,2.348,3174,2.805,3189,2.411,3511,1.805,3655,3.47,3657,2.292,3800,2.088,3803,1.692,3884,3.137,3885,2.633,3915,2.158,3926,4.1,4088,2.77,4091,2.934,4201,3.792,4295,2.515,4303,4.98,4312,3.029,4314,3.402,4410,3.259,4424,1.935,4449,2.411,4463,2.77,4474,2.572,4475,2.515,4501,3.574,4721,3.885,4776,3.259,4830,2.633,5026,2.158,5028,2.235,5100,2.14,5182,2.055,5299,2.515,5301,3.402,5324,3.522,5366,3.259,5377,3.543,5397,2.699,5407,2.77,6294,1.993,6319,2.196,6338,2.927,6339,3.006,6355,4.224,6364,2.707,6367,2.318,6381,2.633,6658,3.137,6837,1.556,6847,5.148,6848,2.848,6875,2.699,6904,1.574,6937,3.574,6938,4.078,6977,5.589,7004,2.77,7055,3.789,7066,2.848,7067,2.699,7107,3.574,7174,4.224,7205,2.699,7207,6.138,7208,3.137,7209,2.515,7289,3.259,7291,3.574,7328,5.87,7403,4.515,7404,4.361,7405,6.5,7406,3.574,7407,2.699,7408,5.455,7409,4.898,7410,4.078,7411,4.515,7412,4.515,7413,4.078,7414,4.515,7415,3.259,7416,4.515,7417,4.078,7418,4.078,7419,2.934,7420,3.259,7421,4.515,7422,4.078,7423,3.789,7424,4.515,7425,4.515,7426,4.515,7427,4.515,7428,3.789,7429,4.515,7430,4.078,7431,4.515,7432,3.789,7433,4.078,7434,4.515,7435,4.515,7436,4.515,7437,4.515,7438,4.515,7439,3.259,7440,6.5]],["description//tracks/90daysofdevops/day71",[]],["title//tracks/90daysofdevops/day70",[2161,4.547,6875,3.239,7209,3.018]],["content//tracks/90daysofdevops/day70",[2,1.871,6,0.204,7,2.741,9,3.06,11,2.136,15,1.55,16,2.601,18,1.46,25,1.871,26,1.08,29,1.495,30,1.321,31,2.531,34,1.419,38,0.629,43,2.472,44,1.307,46,2.061,49,1.131,58,1.335,64,2.52,65,1.757,68,1.329,72,2.311,73,1.961,74,0.907,75,1.575,77,1.817,83,1.589,89,1.9,105,1.641,107,1.109,109,1.46,110,0.89,114,0.76,126,1.367,136,1.633,137,0.774,141,2.105,144,1.718,154,2.472,175,0.758,197,1.999,201,1.741,202,1.691,219,1.797,221,1.067,222,2.164,225,1.854,229,2.977,234,0.882,235,2.598,259,3.397,262,5.102,267,3.226,285,5.618,288,1.062,332,2.136,342,1.766,351,1.657,352,1.35,356,0.781,362,1.098,374,1.999,383,1.279,393,1.12,422,1.519,425,2.561,459,2.446,479,0.845,488,1.365,490,1.518,517,2.061,518,1.321,519,3.018,536,1.123,550,1.629,553,2.361,554,2.176,555,2.824,560,1.718,568,2.534,600,0.725,605,2.945,626,2.194,638,1.93,655,1.46,716,3.454,745,2.194,758,1.329,767,2.472,778,1.961,779,1.65,785,1.335,842,2.219,849,1.652,867,2.044,905,0.594,907,1.316,915,1.741,918,0.732,925,2.247,930,1.766,932,1.961,938,1.641,939,1.55,946,2.219,991,2.247,1019,1.55,1020,3.06,1024,0.811,1053,1.395,1055,1.24,1076,2.741,1088,2.265,1138,1.088,1143,2.55,1181,1.93,1198,2.061,1205,3.368,1206,3.073,1207,2.674,1208,2.217,1226,2.263,1234,1.477,1237,2.55,1242,2.219,1284,1.531,1299,3.129,1304,4.929,1309,1.817,1311,2.415,1331,1.227,1435,2.919,1440,3.711,1447,1.427,1480,2.026,1482,1.589,1488,1.741,1489,3.108,1517,2.945,1526,1.993,1583,2.674,1585,1.817,1591,2.311,1592,1.427,1597,1.961,1628,1.817,1632,1.922,1639,2.598,1653,2.263,1669,1.791,1674,2.136,1678,2.026,1690,3.919,1702,2.714,1721,2.945,1786,2.243,1829,1.589,1876,2.674,1912,2.977,1934,2.755,1955,2.026,1979,3.148,1984,2.136,1986,3.828,1987,3.834,2020,3.828,2027,2.415,2039,3.702,2054,2.361,2067,1.321,2189,2.755,2245,2.415,2275,2.945,2288,3.558,2382,1.589,2575,2.945,2712,3.194,2832,2.945,2906,2.844,2976,2.09,3013,2.263,3062,4.774,3152,2.945,3159,1.531,3174,3.273,3187,2.061,3305,2.136,3497,3.356,3511,1.695,3617,2.219,3696,2.536,3700,1.741,3761,3.828,3799,1.791,3803,1.589,3877,3.06,3915,2.026,3946,2.601,4064,2.674,4091,2.755,4145,2.945,4154,3.356,4193,3.356,4288,3.356,4312,2.844,4449,2.263,4459,1.843,4525,2.219,4530,2.415,4533,2.219,4802,2.136,4830,3.621,4942,3.558,5026,3.512,5028,3.073,5031,4.166,5067,3.558,5083,4.313,5100,1.395,5182,1.93,5287,2.755,5305,2.441,5321,2.945,5324,1.961,5377,4.004,5397,5.555,5407,2.601,5454,2.945,5503,2.755,5637,2.449,5666,3.194,5742,3.828,5778,2.674,5976,5.103,6004,1.993,6058,3.356,6294,1.871,6295,1.718,6297,3.194,6305,1.961,6339,4.16,6364,1.766,6367,2.176,6375,1.629,6634,2.755,6642,4.313,6649,2.415,6652,2.601,6694,3.356,6714,2.844,6837,1.46,6847,3.621,6848,2.674,6855,3.06,6875,4.834,6904,2.164,6909,2.945,6973,3.558,7071,3.558,7101,2.061,7107,3.356,7172,3.06,7174,5.255,7178,2.098,7205,2.534,7207,4.795,7208,2.945,7209,5.415,7272,4.313,7274,3.536,7275,3.558,7289,3.06,7307,3.558,7316,4.915,7364,4.903,7423,3.558,7428,3.558,7433,3.828,7441,7.346,7442,4.239,7443,2.945,7444,4.239,7445,3.356,7446,4.239,7447,4.239,7448,4.239,7449,3.828,7450,4.239,7451,4.239,7452,4.239,7453,3.828,7454,4.239,7455,4.239,7456,4.239,7457,2.472,7458,4.239,7459,7.346,7460,3.828,7461,6.209,7462,4.239,7463,4.239,7464,4.239,7465,2.472,7466,3.558,7467,2.945,7468,4.239,7469,3.356,7470,3.356,7471,4.239,7472,4.239,7473,3.558,7474,3.558,7475,3.06,7476,2.755,7477,4.239,7478,4.239,7479,3.828,7480,3.194,7481,4.239,7482,4.239,7483,3.356,7484,3.828,7485,3.917,7486,3.558,7487,4.239,7488,3.828,7489,4.481,7490,4.239,7491,4.239,7492,4.239,7493,4.239,7494,3.558,7495,4.239,7496,3.06,7497,3.828,7498,3.828,7499,4.239,7500,4.239,7501,4.239,7502,4.239,7503,4.239,7504,4.239,7505,2.945,7506,3.356,7507,3.828]],["description//tracks/90daysofdevops/day70",[]],["title//tracks/90daysofdevops/day69",[6338,1.367,6462,2.567,7508,3.212,7509,1.899,7510,2.985,7511,2.985,7512,2.985]],["content//tracks/90daysofdevops/day69",[6,0.268,26,1.373,29,1.519,32,0.839,45,3.224,57,1.895,65,1.054,68,1.341,70,2.623,71,2.642,74,1.344,75,0.73,105,1.138,107,1.127,109,1.483,110,1.711,113,1.433,114,0.772,115,3.108,124,0.888,126,1.632,136,1.647,137,0.786,141,1.233,149,2.058,164,1.979,175,0.765,176,1.247,191,0.975,206,1.138,216,1.032,219,1.246,222,3.152,224,2.163,225,1.286,230,0.975,234,0.896,235,2.237,245,1.58,246,0.913,251,2.094,259,2.296,265,1.634,267,2.353,268,1.272,272,1.819,288,0.737,289,1.68,293,2.024,300,1.555,304,2.17,306,2.889,337,1.433,343,1.042,344,0.444,354,1.921,356,1.024,374,2.127,393,1.138,402,2.254,410,3.768,421,1.845,422,1.179,423,1.915,462,1.127,479,0.586,490,1.535,507,1.356,517,2.094,535,1.094,536,1.637,550,1.655,553,2.398,593,1.222,598,2.445,600,1.268,612,1.96,628,1.818,636,1.45,647,2.691,650,2.889,722,2.347,741,2.445,742,1.127,755,1.901,756,2.022,758,1.586,760,4.722,785,1.356,832,2.17,849,1.769,851,3.108,867,1.417,901,3.206,905,0.603,907,1.837,917,2.432,918,1.496,925,1.196,930,1.793,938,1.138,991,1.745,1002,1.286,1005,3.224,1018,2.652,1021,1.259,1024,1.202,1030,2.642,1033,2.398,1037,2.131,1046,1.555,1054,3.214,1055,1.259,1065,3.108,1070,3.244,1088,1.727,1089,1.555,1110,1.574,1138,1.105,1181,1.96,1190,2.716,1191,2.574,1202,2.574,1208,1.895,1224,1.655,1254,2.211,1255,1.634,1269,1.614,1288,3.287,1294,2.798,1331,1.246,1341,1.45,1405,1.555,1410,2.453,1422,2.574,1423,2.131,1436,3.408,1488,1.769,1489,1.655,1490,6.221,1491,2.798,1516,1.501,1526,2.024,1535,2.511,1557,2.511,1585,2.691,1601,2.347,1631,2.398,1632,2.267,1634,3.888,1643,2.17,1694,1.93,1701,2.211,1702,2.459,1726,3.888,1729,3.002,1742,3.768,1750,1.991,1789,1.872,1793,2.889,1855,2.511,1869,1.327,1912,1.745,1931,2.453,1932,2.642,1954,1.246,1978,2.453,2004,2.616,2067,1.342,2131,2.398,2213,2.398,2218,2.574,2225,2.17,2283,2.211,2299,2.299,2324,2.347,2387,2.889,2651,2.31,2692,2.574,2693,1.872,2731,2.398,2949,1.819,3107,3.853,3159,2.677,3174,2.917,3179,1.96,3426,1.634,3546,2.511,3696,1.611,3799,3.131,3817,3.108,3891,2.094,3926,3.962,4034,2.716,4118,2.131,4136,2.511,4201,1.96,4274,2.511,4295,2.398,4314,2.254,4398,2.991,4463,2.642,4482,3.244,4484,3.108,4530,4.222,4533,2.254,4870,2.716,4921,3.244,5008,1.845,5026,2.058,5033,1.93,5043,2.131,5100,2.682,5122,1.793,5127,2.299,5143,2.511,5153,1.845,5157,2.347,5262,2.889,5313,3.108,5324,2.905,5335,2.642,5337,2.511,5569,2.398,5637,1.699,5736,2.024,6202,3.287,6281,1.96,6294,3.597,6295,1.745,6316,4.183,6319,4.398,6338,3.589,6356,3.108,6357,2.574,6367,2.211,6369,3.353,6391,2.453,6403,3.244,6409,2.716,6411,2.991,6437,4.129,6439,3.408,6445,1.699,6452,2.889,6462,5.881,6532,3.244,6534,2.991,6586,2.991,6652,3.853,6689,2.798,6707,3.408,6711,3.888,6848,2.716,6873,2.991,6890,3.614,6895,3.408,6978,2.716,7115,4.213,7197,3.888,7201,4.973,7203,5.27,7205,2.574,7209,3.498,7211,3.614,7229,3.888,7233,3.888,7308,3.408,7392,2.511,7419,2.798,7480,3.244,7509,5.934,7510,6.221,7511,9.229,7512,7.271,7513,6.283,7514,6.221,7515,6.221,7516,3.614,7517,4.306,7518,4.306,7519,3.408,7520,3.108,7521,4.306,7522,4.306,7523,4.306,7524,4.306,7525,4.306,7526,4.306,7527,4.306,7528,7.413,7529,3.408,7530,4.306,7531,4.306,7532,4.306,7533,3.244,7534,3.244,7535,4.533,7536,4.306,7537,4.306,7538,5.149,7539,3.408,7540,2.511,7541,3.888,7542,4.306,7543,4.306,7544,6.45,7545,6.28,7546,2.991,7547,3.108,7548,3.244]],["description//tracks/90daysofdevops/day69",[]],["title//tracks/90daysofdevops/day68",[190,0.948,235,0.988,344,0.338,425,1.142,1747,1.103,5309,1.824,7549,2.749,7550,2.749]],["content//tracks/90daysofdevops/day68",[2,1.243,6,0.366,15,1.03,26,0.958,29,0.993,32,1.109,42,1.535,46,1.37,49,1.21,57,1.368,64,1.772,65,0.473,68,1.452,70,0.907,71,1.988,73,1.518,74,0.603,75,0.477,80,0.632,102,0.709,105,0.744,107,0.737,109,0.97,111,0.799,112,0.775,113,0.938,114,0.505,118,0.775,124,1.473,126,1.68,136,1.264,154,1.643,159,0.97,164,0.752,173,2,175,0.912,176,0.559,183,1.788,190,2.559,196,1.598,197,1.459,202,1.234,216,0.675,221,1.431,230,1.288,234,0.586,235,1.967,245,0.709,246,0.597,247,2.549,257,1.282,261,1.72,263,1.812,264,0.982,268,1.681,270,2.975,289,2.068,295,2.06,300,1.017,302,1.303,331,0.897,334,1.394,343,1.578,344,0.912,351,0.752,353,1.728,354,1.689,355,0.897,356,0.57,359,1.056,361,1.504,362,1.174,374,2.301,378,1.207,383,0.85,393,0.744,397,0.702,408,3.691,410,3.014,422,0.529,423,1.382,424,3.411,425,2.909,431,2.657,432,1.173,437,1.765,439,1.324,442,1.346,448,3.041,454,1.83,459,1.509,461,1.58,462,1.488,470,0.959,471,1.243,473,1.282,477,1.419,479,1.307,490,1.593,494,1.37,518,2.031,519,1.157,536,1.293,546,1.684,550,1.083,555,1.083,560,1.836,570,3.588,593,1.322,600,1.738,612,1.282,626,1.353,627,1.419,628,2.209,635,1.544,639,3.411,648,1.742,655,0.97,675,0.824,679,2.122,702,1.324,718,1.637,745,0.841,750,1.474,756,1.459,758,0.97,778,1.21,785,0.887,817,2.179,827,1.684,836,3.588,845,1.173,849,1.961,852,1.324,859,1.19,905,1.124,907,0.597,909,0.841,910,0.859,917,0.716,918,0.783,925,1.259,931,2.909,938,0.744,939,1.03,942,3.896,946,3.411,951,2.643,993,2.383,995,3.169,998,1.243,1002,1.353,1005,2.473,1017,1.157,1019,1.657,1021,1.906,1024,1.648,1036,1.475,1046,1.017,1053,0.927,1054,1.788,1055,0.824,1059,1.394,1079,1.083,1103,1.157,1109,2.167,1110,1.657,1138,0.723,1183,2.945,1187,2.674,1208,0.85,1224,1.083,1237,1.862,1242,2.372,1243,1.728,1266,2.105,1292,2.977,1300,2.402,1315,1.111,1331,1.312,1341,3.268,1354,1.83,1363,1.043,1365,1.262,1371,1.777,1405,2.58,1410,1.604,1424,2.054,1437,1.504,1451,1.535,1482,1.699,1515,1.89,1516,1.58,1526,1.324,1611,0.877,1626,1.753,1645,1.569,1650,1.684,1656,1.561,1661,1.544,1694,2.549,1696,2.859,1702,1.368,1704,1.19,1741,1.207,1747,3.299,1786,1.017,1792,1.111,1874,1.89,1887,1.535,1953,2.122,1954,1.646,1956,1.569,1979,1.942,2004,1.173,2044,1.89,2098,3.014,2162,2.859,2181,1.777,2186,1.777,2251,2.471,2258,3.064,2277,0.948,2324,1.535,2333,1.282,2587,1.474,2651,0.878,2731,2.524,2789,3.284,2800,3.588,2837,3.712,2856,2.42,2902,2.709,2904,2.327,2911,4.093,2915,5.033,2937,1.777,2949,1.19,2987,2.945,3076,4.528,3145,2.471,3146,2.859,3154,0.97,3172,1.346,3174,0.948,3175,1.643,3179,1.282,3308,4.093,3394,1.173,3397,1.684,3537,2.033,3659,2.524,3660,2.42,3696,0.723,3697,1.957,3764,1.643,3799,1.19,3838,2.544,3891,1.37,3959,1.83,4034,1.777,4150,1.684,4229,3.902,4533,1.474,4546,1.89,4809,4.705,4835,1.957,5022,1.89,5031,1.89,5033,1.262,5043,1.394,5065,1.303,5153,1.207,5224,3.588,5262,5.779,5297,2.122,5300,1.346,5304,1.111,5305,2.026,5308,6.164,5309,5.348,5313,2.815,5314,1.83,5315,1.728,5323,2.372,5327,1.728,5360,2.781,5389,2.815,5391,1.957,5404,5.739,5482,1.643,5550,1.474,5552,1.83,5569,1.569,5585,2.364,5614,1.643,5862,6.063,5992,2.23,6110,3.272,6122,1.728,6281,1.282,6289,3.271,6337,1.777,6338,1.083,6373,1.957,6387,2.364,6415,1.728,6419,1.915,6564,3.272,6622,4.112,6623,1.419,6648,1.89,6748,2.122,6862,1.89,6978,1.777,6987,2.364,6989,2.122,7000,4.506,7035,2.544,7036,5.751,7046,5.955,7202,3.041,7274,1.604,7358,2.544,7382,2.945,7489,2.033,7509,5.529,7535,7.135,7538,1.957,7544,2.23,7546,1.957,7547,2.033,7548,2.122,7549,4.773,7550,2.364,7551,2.544,7552,2.817,7553,4.532,7554,6.024,7555,6.217,7556,5.984,7557,5.383,7558,5.159,7559,5.159,7560,5.655,7561,5.159,7562,2.122,7563,4.911,7564,6.809,7565,6.142,7566,5.687,7567,2.364,7568,4.773,7569,2.817,7570,2.817,7571,2.817,7572,4.532,7573,2.817,7574,2.817,7575,2.817,7576,5.687,7577,3.415,7578,5.687,7579,4.093,7580,4.532,7581,4.532,7582,4.532,7583,4.093,7584,4.093,7585,2.817,7586,2.817,7587,2.817,7588,2.817,7589,2.033,7590,2.817,7591,3.816,7592,2.817,7593,2.817,7594,2.817,7595,2.817,7596,2.544,7597,2.544,7598,2.817,7599,3.24,7600,6.451,7601,2.122,7602,2.817,7603,5.687,7604,2.817,7605,2.817,7606,5.136,7607,3.588,7608,5.687,7609,6.518,7610,4.502,7611,3.804,7612,2.544,7613,2.817,7614,2.817,7615,2.817,7616,2.817,7617,2.817,7618,4.773,7619,2.817,7620,2.817,7621,2.817,7622,2.364,7623,5.687,7624,2.364,7625,2.817,7626,4.532,7627,4.532,7628,4.532,7629,5.687,7630,4.532,7631,5.687,7632,4.532,7633,4.532,7634,2.817,7635,2.817,7636,2.817,7637,2.817,7638,2.544,7639,4.532,7640,2.817,7641,2.817,7642,4.532,7643,2.817,7644,2.817]],["description//tracks/90daysofdevops/day68",[]],["title//tracks/90daysofdevops/day67",[410,1.986,1702,1.296,5323,2.248,5360,2.635,7645,3.878]],["content//tracks/90daysofdevops/day67",[6,0.354,26,1.198,29,2.5,31,2.443,49,1.363,57,2.14,65,1.19,68,1.283,73,1.893,74,1.517,75,0.865,80,1.145,83,1.913,95,3.685,102,1.285,107,1.336,111,2.01,114,0.915,124,1.462,137,0.932,139,1.248,141,1.463,164,2.349,173,2.03,175,0.987,190,2.676,191,1.156,197,1.644,202,1.39,230,1.606,235,2.14,245,1.285,246,1.083,268,1.509,288,0.874,289,2.063,295,2.172,300,2.561,302,2.362,343,1.236,344,0.527,351,1.893,355,2.258,356,0.891,361,2.726,362,1.323,366,2.4,374,2.31,375,1.662,378,2.188,383,2.888,398,2.4,408,3.491,410,4.917,422,1.332,431,2.594,433,2.621,442,3.389,467,2.14,471,2.254,476,2.014,479,0.965,486,3.318,490,1.733,519,2.097,536,0.924,548,1.7,550,1.962,554,2.621,570,4.042,593,0.841,638,2.324,640,2.415,675,1.493,712,4.285,718,1.844,742,1.336,758,1.517,787,2.097,817,2.162,823,2.573,844,2.621,849,1.448,867,1.681,905,0.994,907,1.083,918,1.224,931,3.223,935,1.201,942,4.238,991,1.97,993,1.867,995,2.483,1002,1.525,1017,2.097,1028,2.908,1055,2.382,1079,1.962,1109,3.893,1110,3.217,1138,1.819,1187,2.4,1224,1.962,1234,1.78,1292,2.672,1296,1.938,1330,2.908,1336,2.441,1341,2.387,1410,2.908,1470,1.78,1516,1.78,1539,2.908,1626,1.574,1630,2.573,1632,1.336,1651,2.188,1653,2.726,1661,1.739,1694,3.651,1741,3.491,1786,2.561,1930,1.931,1954,1.478,2004,2.127,2098,3.279,2162,3.221,2186,3.221,2258,2.4,2277,1.719,2643,2.288,2651,1.591,2800,4.042,2837,4.039,2856,2.726,2932,2.573,2937,3.221,2949,2.157,3076,4.925,3146,3.221,3154,1.759,3172,2.441,3175,2.978,3432,3.052,3658,2.4,3660,2.726,3697,3.547,3799,2.157,3811,2.4,3883,3.133,4272,2.441,4533,2.672,5030,2.978,5033,2.288,5043,2.527,5153,2.188,5262,5.465,5315,3.133,5360,3.133,5389,3.509,5569,2.844,5862,6.714,5865,3.318,6202,2.672,6281,2.324,6289,3.038,6295,2.069,6305,2.362,6415,4.35,6445,2.014,6564,3.685,6623,2.573,6720,2.844,6978,3.221,7000,6.313,7004,3.133,7036,5.342,7046,5.673,7202,6.42,7404,3.426,7489,3.685,7509,5.494,7535,5.879,7538,3.547,7544,4.042,7546,3.547,7547,3.685,7548,3.847,7554,5.879,7555,5.879,7556,5.658,7557,5.342,7558,5.612,7559,5.612,7560,5.612,7561,5.612,7562,5.342,7563,6.137,7564,3.847,7565,4.925,7579,4.611,7583,4.611,7584,4.611,7591,5.465,7599,4.039,7606,6.403,7611,4.285,7612,4.611,7618,5.95,7646,4.042,7647,5.106,7648,5.106,7649,4.285,7650,4.285,7651,5.106,7652,7.09,7653,7.09,7654,4.042,7655,8.145,7656,5.106,7657,5.106,7658,5.106,7659,5.106,7660,5.106,7661,5.106]],["description//tracks/90daysofdevops/day67",[]],["title//tracks/90daysofdevops/day66",[120,1.04,393,1.135,7509,2.293,7562,3.236,7565,2.983]],["content//tracks/90daysofdevops/day66",[6,0.331,15,1.916,18,1.806,26,1.062,34,1.198,57,2.817,65,0.88,68,1.494,73,1.927,74,1.768,105,1.385,107,2.161,114,0.94,120,1.269,124,1.488,126,2.055,136,1.165,137,0.957,139,1.281,161,2.226,175,0.918,176,1.434,190,2.576,196,1.849,216,1.257,217,1.599,270,3.007,289,2.076,295,1.782,300,1.893,333,2.377,342,2.183,344,0.745,356,0.908,362,1.358,374,2.144,383,1.582,404,3.517,408,2.246,410,4.572,422,0.984,425,1.827,431,2.63,459,1.745,461,1.827,467,1.582,470,1.785,479,1.124,536,1.306,550,2.015,595,1.94,600,1.523,640,2.459,718,1.893,742,1.889,779,2.041,784,3.406,849,1.475,852,2.464,864,2.641,867,1.725,905,1.157,907,1.887,916,3.784,917,1.835,918,1.247,925,1.456,931,2.879,938,1.908,942,3.133,1002,2.881,1005,3.14,1009,3.641,1018,1.706,1024,1.381,1042,4.316,1046,1.893,1055,2.112,1066,1.94,1079,2.015,1090,5.367,1110,1.916,1224,2.775,1299,2.641,1305,3.641,1341,3.328,1364,2.153,1365,2.349,1410,2.986,1482,1.964,1516,2.879,1535,3.057,1597,2.424,1606,4.399,1626,2.743,1651,2.246,1680,1.964,1694,3.236,1702,2.179,1765,3.057,1768,3.216,1786,1.893,1930,1.427,1954,1.517,1956,4.6,1994,3.784,2004,2.183,2069,4.113,2098,2.424,2181,3.307,2277,1.765,2643,2.349,2645,4.211,2651,1.633,2652,3.641,2837,2.986,2904,2.691,2906,4.844,2926,3.95,2949,2.214,3145,2.857,3146,4.555,3172,2.506,3174,2.781,3306,3.307,3362,3.517,3508,2.594,3657,1.849,3660,2.799,3799,2.214,4136,3.057,4415,2.314,4533,2.744,4545,2.386,4568,3.307,5022,3.517,5030,3.057,5033,2.349,5043,2.594,5153,2.246,5215,3.057,5262,3.517,5315,3.216,5323,2.744,5360,3.216,5482,3.057,5569,2.919,5736,2.464,5862,3.517,6122,3.216,6281,2.386,6289,2.246,6338,2.015,6384,4.113,6419,2.214,6622,4.555,6639,3.307,6678,5.715,6978,3.307,7000,3.307,7036,3.95,7046,3.216,7087,4.149,7202,3.517,7216,4.149,7382,4.692,7415,6.737,7509,5.821,7535,7.466,7538,3.641,7544,7.825,7546,3.641,7547,3.784,7548,3.95,7554,3.784,7555,3.784,7556,3.641,7557,3.95,7558,4.149,7559,4.149,7560,4.149,7561,4.149,7562,3.95,7563,7.033,7565,5.737,7568,4.399,7591,3.517,7599,2.986,7607,5.614,7610,5.715,7611,4.399,7618,4.399,7622,6.06,7646,4.149,7649,4.399,7650,4.399,7662,5.242,7663,5.242,7664,5.242,7665,5.242,7666,5.242,7667,4.734,7668,5.242,7669,5.242,7670,3.641,7671,4.734,7672,4.734,7673,4.399,7674,7.22,7675,5.242,7676,3.517,7677,5.242,7678,5.242,7679,5.242,7680,5.242,7681,7.22,7682,5.242,7683,4.734,7684,5.242,7685,5.242,7686,5.242,7687,5.242,7688,5.242,7689,5.242]],["description//tracks/90daysofdevops/day66",[]],["title//tracks/90daysofdevops/day65",[114,0.77,393,1.135,7509,2.293,7565,2.983,7690,3.604]],["content//tracks/90daysofdevops/day65",[1,0.904,2,2.049,6,0.36,15,1.061,18,1,26,1.066,30,0.904,31,1.599,32,0.905,38,0.861,42,1.582,49,0.774,56,1.101,57,0.876,58,1.827,64,2.41,65,0.487,67,0.966,68,0.84,73,0.774,75,0.492,80,1.487,82,2.186,89,1.3,96,1.061,105,0.767,107,1.215,109,1,110,0.975,111,1.645,113,1.545,114,0.832,118,0.798,120,0.702,121,2.297,124,1.367,126,0.639,136,1.611,137,0.53,139,1.62,141,1.33,147,1.179,161,1.431,164,0.774,173,1.927,175,0.898,176,0.576,190,2.728,191,0.657,196,3.324,197,0.934,202,0.79,203,1.847,204,1.563,206,0.767,215,1.436,219,1.343,221,1.46,225,0.866,230,1.051,235,2.546,236,6.085,245,0.73,246,0.984,247,2.08,261,1.101,263,1.855,264,1.618,268,2.143,270,1.933,288,0.794,289,2.065,295,2.082,296,2.297,299,2.094,300,1.048,302,1.342,305,2.641,331,1.847,336,2.383,337,0.966,342,1.208,343,1.755,351,1.77,354,2.104,355,1.847,356,0.912,358,1.49,359,1.087,362,0.752,374,2.268,375,0.944,376,1.989,377,1.13,378,3.824,383,0.876,393,1.752,395,1.519,397,1.652,408,1.243,413,2.478,417,2.775,422,0.545,423,0.885,425,1.011,427,2.202,431,2.463,432,2.761,433,1.49,437,1.13,439,1.364,442,2.219,459,2.207,462,0.759,464,1.023,467,0.876,470,0.988,472,1.831,477,2.923,479,0.395,482,1.342,488,0.934,490,1.135,518,1.446,519,1.906,525,1.321,535,0.737,536,0.84,541,1.519,546,2.775,548,1.545,550,1.115,560,1.176,571,1.734,593,0.765,595,2.454,600,1.588,626,1.98,628,1.343,640,2.469,655,1,701,1.78,718,1.048,742,1.215,758,1.242,760,3.614,774,0.977,778,1.239,805,1.226,817,2.022,827,1.734,849,1.895,852,1.364,859,1.226,867,0.955,886,1.653,896,4.068,905,1.43,907,1.789,909,0.866,910,0.885,914,2.644,917,2.063,918,1.002,925,1.612,930,1.208,931,2.022,938,0.767,939,1.697,942,2.775,991,1.612,995,2.257,996,2.219,1001,2.186,1002,0.866,1005,2.018,1024,1.775,1034,1.653,1036,1.511,1042,2.775,1046,1.048,1053,0.955,1054,1.831,1055,1.357,1076,1.281,1090,4.308,1109,3.882,1110,1.061,1138,0.744,1177,2.186,1197,1.519,1202,1.734,1205,1.91,1224,1.115,1242,1.519,1243,1.78,1255,1.101,1266,1.074,1268,1.549,1269,1.087,1271,1.061,1292,3.795,1301,0.914,1312,2.848,1315,1.145,1320,1.616,1331,0.84,1336,2.219,1341,3.173,1361,1.49,1362,1.436,1364,1.192,1365,1.3,1371,2.928,1377,1.653,1410,2.644,1422,2.775,1423,2.297,1424,1.048,1428,3.016,1431,2.015,1447,0.977,1458,2.435,1469,2.015,1474,1.616,1479,1.734,1480,1.387,1484,1.208,1516,1.011,1597,2.147,1611,0.448,1618,0.977,1625,2.928,1626,2.601,1632,0.759,1651,1.243,1661,0.988,1677,1.519,1680,1.087,1741,1.989,1747,1.953,1765,1.692,1786,2.095,1818,1.16,1825,2.435,1857,2.113,1863,1.281,1907,2.297,1912,1.176,1930,1.974,1948,2.094,1954,0.84,1955,2.219,1972,2.186,1983,2.848,1987,1.739,1988,1.49,2004,3.02,2027,3.776,2045,1.582,2055,1.549,2067,1.446,2098,1.342,2104,2.094,2146,1.519,2185,2.015,2186,5.123,2210,2.297,2211,1.692,2214,1.78,2258,2.727,2277,1.953,2333,1.321,2600,1.83,2647,2.182,2651,0.904,2662,1.881,2680,2.297,2789,2.339,2800,3.674,2822,2.435,2856,2.478,2904,2.383,2906,3.114,2915,1.616,2949,1.961,3076,4.03,3099,2.015,3146,4.182,3147,2.53,3154,1.999,3158,2.015,3174,0.977,3370,1.653,3380,2.015,3394,1.208,3495,1,3511,1.16,3627,2.094,3657,2.046,3658,3.817,3660,1.549,3661,1.411,3696,1.489,3699,1.262,3763,2.297,3799,1.226,3803,1.087,3811,1.364,3883,1.78,3915,1.387,3948,1.692,4023,2.094,4034,1.83,4229,3.526,4474,1.653,4530,1.653,4532,2.62,4533,1.519,4616,1.83,4765,3.114,4775,1.78,4798,1.947,4972,2.435,5022,3.114,5028,1.436,5031,1.947,5033,1.3,5043,1.436,5100,0.955,5128,1.49,5153,1.243,5215,1.692,5268,2.297,5304,2.288,5313,3.588,5373,1.549,5389,4.592,5411,2.186,5482,1.692,5484,2.015,5554,1.582,5569,1.616,6004,1.364,6053,5.74,6054,2.297,6202,2.429,6281,1.321,6289,1.243,6295,1.176,6301,1.616,6310,2.186,6320,2.186,6366,1.462,6375,1.115,6384,2.644,6405,1.734,6419,1.961,6421,2.186,6446,1.947,6590,1.78,6622,3.66,6623,2.923,6648,1.947,6649,1.653,6652,1.78,6850,2.62,6978,1.83,7004,1.78,7036,2.186,7046,5.475,7136,3.224,7156,1.885,7178,1.436,7202,4.448,7274,1.653,7312,2.094,7382,1.885,7415,6.441,7509,5.573,7535,7.367,7538,2.015,7546,2.015,7547,2.094,7548,2.186,7550,3.895,7551,6.984,7554,5.582,7555,3.35,7556,3.224,7557,2.186,7558,2.297,7559,2.297,7560,2.297,7563,4.995,7564,2.186,7565,4.03,7591,1.947,7597,2.62,7599,4.405,7600,5.987,7601,2.186,7607,4.182,7610,3.674,7622,3.895,7649,7.301,7650,6.815,7667,4.192,7670,3.224,7671,2.62,7672,4.192,7673,2.435,7683,4.192,7691,2.901,7692,2.094,7693,2.435,7694,5.801,7695,4.641,7696,2.901,7697,2.62,7698,2.62,7699,4.641,7700,2.901,7701,2.901,7702,2.901,7703,2.901,7704,2.901,7705,2.901,7706,2.62,7707,2.435,7708,4.641,7709,2.901,7710,2.901,7711,2.297,7712,2.435,7713,5.987,7714,5.987,7715,4.641,7716,6.63,7717,2.901,7718,4.641,7719,2.901,7720,4.641,7721,2.901,7722,2.901,7723,2.901,7724,2.901,7725,2.62,7726,2.901,7727,2.62,7728,5.801,7729,2.901,7730,2.901,7731,2.62,7732,4.192,7733,2.901,7734,2.435,7735,2.901,7736,2.901,7737,2.901,7738,2.901,7739,2.901,7740,2.901,7741,2.901,7742,2.62,7743,2.707,7744,4.192,7745,3.895,7746,2.435,7747,2.62,7748,2.901,7749,3.383,7750,2.62,7751,2.901,7752,2.901,7753,2.901,7754,2.297,7755,2.435,7756,2.297,7757,2.62,7758,2.901,7759,2.901,7760,2.901,7761,2.901,7762,2.297,7763,2.435,7764,1.519,7765,2.901,7766,2.62,7767,2.015,7768,2.62]],["description//tracks/90daysofdevops/day65",[]],["title//tracks/90daysofdevops/day64",[3666,2.782,7509,2.893,7769,4.547]],["content//tracks/90daysofdevops/day64",[6,0.253,14,2.002,15,1.674,26,0.673,32,0.892,38,0.975,49,1.222,52,2.855,58,1.442,64,1.427,65,0.769,68,0.828,70,1.474,71,2.002,73,1.222,74,1.405,83,1.716,91,2.084,96,1.047,107,1.718,111,1.298,114,0.821,124,0.944,136,1.706,137,1.402,139,1.605,164,2.049,173,1.913,175,0.953,190,1.9,191,1.738,196,3.495,201,1.881,203,2.09,204,1.541,206,1.21,214,3.338,217,2.002,219,1.325,221,1.931,224,1.577,225,1.367,230,1.487,235,1.981,245,1.152,246,1.392,268,1.353,288,1.123,289,2.006,295,2.069,300,2.371,305,2.084,307,1.83,333,2.526,334,3.249,336,2.351,342,1.907,343,2.236,344,0.472,352,1.458,354,2.172,356,0.576,361,2.445,362,2.3,369,2.152,374,2.114,375,1.49,397,1.141,413,2.445,427,1.737,431,1.458,432,1.907,467,1.981,471,2.898,474,3.192,479,0.893,487,2.188,488,1.474,490,2.049,507,1.442,526,3.072,536,1.389,541,2.396,548,2.791,575,1.907,582,2.737,587,4.077,592,2.608,593,1.082,600,1.434,611,1.654,626,1.96,628,1.325,636,1.541,640,2.614,678,3.37,709,2.608,718,1.654,741,1.783,742,1.198,774,1.541,817,2.557,843,3.444,844,3.94,849,2.1,867,1.507,905,1.076,907,0.971,909,1.367,917,2.555,918,0.791,925,1.272,934,2.266,993,2.4,995,2.226,1002,2.292,1005,1.991,1021,1.339,1024,1.862,1036,2.137,1049,2.898,1053,1.507,1054,1.806,1081,3.45,1109,3.138,1110,1.674,1148,2.888,1205,1.507,1208,1.382,1234,1.596,1266,2.43,1288,2.396,1292,4.645,1301,2.417,1315,1.806,1320,2.55,1336,2.188,1361,2.351,1365,2.052,1410,2.608,1424,2.371,1428,4.266,1431,3.18,1447,1.541,1469,3.18,1480,2.188,1483,2.396,1516,1.596,1526,2.152,1528,1.991,1529,2.445,1585,1.962,1601,4.184,1626,2.736,1628,1.962,1630,2.307,1632,1.718,1639,1.382,1661,1.559,1734,2.445,1825,3.842,1857,2.084,1869,2.024,1874,3.072,1930,2.738,1987,1.716,1994,3.305,1999,3.842,2185,3.18,2190,2.445,2259,2.021,2277,1.541,2283,2.351,2299,2.445,2324,2.496,2410,3.305,2467,2.188,2525,3.45,2647,2.152,2651,1.427,2662,1.855,2856,4.739,2870,2.55,2929,2.118,3015,2.988,3154,2.888,3172,2.188,3198,2.888,3351,4.135,3412,3.842,3508,2.266,3546,2.67,3616,3.305,3655,2.445,3657,3.495,3658,2.152,3659,4.669,3660,4.476,3696,1.685,3799,1.934,3803,1.716,3862,3.624,3907,4.135,3926,2.888,4229,4.077,4424,1.962,4474,2.608,4545,2.084,4775,2.809,4937,3.45,5033,2.052,5153,1.962,5300,2.188,5304,2.59,5324,2.118,5389,4.571,5569,2.55,5777,3.842,5862,3.072,6004,2.152,6053,7.312,6281,2.084,6338,1.76,6339,3.036,6364,2.734,6388,2.307,6406,3.45,6415,2.809,6441,3.624,6445,2.59,6649,2.608,6676,3.18,6709,2.975,6741,2.496,6749,3.624,6760,4.135,6960,3.18,7046,5.144,7069,4.947,7113,3.842,7176,3.072,7178,3.249,7430,4.135,7439,3.305,7496,3.305,7509,5.917,7538,3.18,7546,3.18,7554,4.739,7556,3.18,7589,3.305,7596,4.135,7743,2.67,7770,5.929,7771,4.578,7772,4.135,7773,3.624,7774,4.578,7775,4.578,7776,4.578,7777,4.135,7778,3.842,7779,6.565,7780,4.578,7781,3.18,7782,3.18,7783,5.929,7784,4.135,7785,4.578,7786,3.842,7787,4.578,7788,3.072,7789,4.578,7790,4.578,7791,3.842]],["description//tracks/90daysofdevops/day64",[]],["title//tracks/90daysofdevops/day63",[235,1.296,917,1.091,1632,1.124,7792,3.878,7793,4.294]],["content//tracks/90daysofdevops/day63",[6,0.366,26,0.656,31,1.537,32,0.87,38,0.662,44,1.987,64,1.39,65,1.391,67,1.485,68,0.807,70,1.437,73,1.72,75,1.404,77,1.912,80,1.001,82,3.362,87,5.82,89,2,94,2.602,105,1.179,107,1.168,114,0.8,118,1.227,126,1.665,136,2.035,137,1.177,139,1.091,141,2.517,164,2.019,175,0.855,190,2.894,191,1.01,196,1.574,197,1.437,201,3.403,202,1.215,216,1.07,217,1.361,224,1.537,225,1.332,229,1.808,230,1.713,235,3.199,246,0.946,260,2.432,261,1.693,268,1.904,300,2.328,331,2.052,343,1.56,352,2.409,354,1.67,355,2.638,356,0.561,372,1.885,377,2.509,422,0.838,429,3.671,431,1.421,470,1.52,494,2.17,534,3.221,535,1.134,542,1.39,545,2.667,548,2.518,550,1.715,554,2.291,555,1.715,558,2.485,560,1.808,593,1.062,637,1.808,663,2.17,681,5.618,714,2.335,718,1.612,758,0.955,778,1.72,821,3.1,852,3.03,859,1.885,867,2.121,905,1.06,907,1.604,909,2.624,910,1.361,917,2.663,918,0.771,938,1.703,939,1.631,1033,2.485,1036,1.452,1059,2.208,1088,1.04,1101,2.542,1143,2.647,1184,3.03,1193,3.532,1206,2.208,1208,2.283,1240,1.76,1252,2.815,1284,2.732,1308,1.72,1367,3.532,1370,3.532,1410,2.542,1443,2.485,1451,4.516,1482,1.672,1485,2.335,1488,1.833,1516,1.555,1538,2.9,1539,2.542,1586,3.1,1592,1.502,1597,3.499,1611,0.688,1618,3.178,1620,2.9,1622,2.542,1627,2.248,1630,2.248,1631,2.485,1632,2.65,1639,2.5,1680,2.415,1688,2.248,1701,2.291,1702,1.945,1718,6.243,1766,3.745,1791,2.208,1793,2.994,1869,1.375,1903,6.104,1912,1.808,1930,2.256,1993,4.642,2044,2.994,2053,2.994,2067,2.008,2101,2.738,2170,2.602,2245,2.542,2258,2.098,2283,3.884,2382,1.672,2647,2.098,2651,1.39,2652,3.1,2932,2.248,3008,3.441,3013,2.382,3065,2.667,3146,4.065,3154,2.22,3158,4.477,3175,4.412,3495,1.537,3553,3.532,3666,2.291,3696,2.126,3703,2.815,3831,3.362,3883,3.954,3963,2.602,3993,4.772,4088,2.738,4118,2.208,4136,2.602,4142,3.745,4314,2.335,4424,1.912,4459,3.29,4474,2.542,4497,3.766,4775,2.738,4919,3.532,5024,2.432,5033,2,5122,2.684,5127,2.382,5129,3.441,5146,4.065,5153,1.912,5164,4.188,5419,5.988,5569,2.485,5592,3.1,5665,3.221,5772,2.382,5974,1.97,6281,2.031,6300,2.031,6311,3.362,6338,2.477,6364,1.858,6376,5.409,6622,2.815,6623,4.428,6694,5.101,6698,3.532,6705,3.221,6858,2.485,6866,4.652,6991,3.1,7069,3.362,7101,2.17,7176,4.324,7188,4.952,7259,2.9,7294,4.03,7360,3.745,7420,3.221,7494,5.409,7506,3.532,7509,5.687,7535,4.652,7538,3.1,7546,3.1,7767,4.477,7794,3.221,7795,5.45,7796,4.462,7797,4.462,7798,3.1,7799,3.745,7800,4.03,7801,4.462,7802,4.462,7803,9.157,7804,4.462,7805,4.462,7806,4.462,7807,4.462,7808,4.462,7809,3.532,7810,6.243,7811,4.462,7812,4.462,7813,6.444,7814,4.462,7815,6.444,7816,4.462,7817,5.384,7818,3.221,7819,4.03,7820,7.565,7821,5.82,7822,6.558,7823,6.444,7824,6.444,7825,3.1,7826,4.03,7827,7.565,7828,3.532,7829,4.462,7830,3.532,7831,5.084,7832,4.462,7833,4.03,7834,4.462,7835,7.565,7836,4.477,7837,6.444,7838,4.462]],["description//tracks/90daysofdevops/day63",[]],["title//tracks/90daysofdevops/day62",[259,1.57,1312,2.635,1632,1.124,7795,2.341,7839,3.878]],["content//tracks/90daysofdevops/day62",[1,1.344,6,0.365,7,2.776,8,1.964,9,3.113,14,1.316,16,4.553,18,1.486,25,1.904,26,1.091,27,1.503,32,0.841,34,0.986,36,3.25,37,2.578,43,2.515,45,2.214,57,1.302,60,2.578,64,1.344,65,1.771,70,1.389,71,1.316,73,1.678,74,1.588,75,0.731,77,1.848,95,3.113,96,1.696,105,1.662,110,1.559,118,1.73,136,1.397,137,1.148,141,1.236,172,1.995,175,0.964,179,2.135,183,1.702,191,0.977,197,1.389,206,1.14,208,2.214,212,1.503,224,1.486,225,1.288,226,3.091,227,1.539,230,1.424,234,0.898,235,2.82,246,0.915,259,3.501,270,2.619,288,1.395,331,1.373,333,1.42,351,1.151,356,1.025,358,2.214,374,1.649,383,2.239,397,1.075,422,0.81,429,2.457,439,2.028,461,1.503,464,2.218,470,1.469,476,1.702,478,1.876,479,0.587,494,3.965,530,1.964,535,1.096,536,1.343,542,1.959,544,3.582,548,3.013,550,1.658,553,2.402,600,0.738,611,1.558,620,2.721,637,1.748,701,4.553,730,2.258,741,1.679,742,1.129,755,2.776,758,1.855,777,3.488,785,1.359,787,2.583,796,2.996,805,1.822,809,3.414,818,2.894,849,1.284,856,1.772,867,1.42,880,2.803,886,2.457,905,0.881,907,1.729,909,1.288,917,2.072,918,1.086,925,1.198,926,1.539,932,2.908,935,1.746,939,1.577,1002,1.288,1018,2.415,1024,0.825,1076,2.776,1086,2.578,1089,1.558,1140,2.894,1184,2.028,1195,2.351,1208,1.302,1234,1.503,1237,1.772,1240,1.702,1254,3.81,1268,2.303,1269,1.616,1280,3.502,1301,1.359,1302,2.062,1312,5.319,1320,2.402,1336,2.062,1341,1.452,1351,1.679,1365,1.933,1367,3.414,1404,2.721,1405,1.558,1478,1.772,1517,2.996,1530,2.515,1538,2.803,1557,2.515,1583,2.721,1599,2.028,1610,2.713,1611,0.665,1618,1.452,1631,2.402,1632,2.368,1645,2.402,1647,2.135,1672,2.402,1700,2.578,1702,2.461,1764,4.086,1792,1.702,1821,3.895,1857,1.964,1898,3.414,1903,2.996,1912,1.748,1954,1.248,1978,2.457,1996,2.214,2018,3.895,2019,3.62,2042,3.414,2055,2.303,2070,2.894,2074,2.721,2095,3.113,2225,3.169,2258,2.028,2299,2.303,2334,2.894,2382,3.249,2467,2.062,2619,2.996,2768,2.803,2823,3.62,2975,2.351,2976,2.498,3015,1.964,3145,2.351,3172,2.062,3213,2.721,3253,2.647,3304,2.214,3327,2.578,3339,3.25,3394,1.797,3424,2.647,3437,2.996,3501,3.62,3511,2.514,3554,2.402,3696,2.224,3699,1.876,3803,1.616,3883,4.553,3884,2.996,3891,2.097,3946,2.647,3974,3.62,3988,2.803,3992,3.895,3993,3.967,4067,3.291,4118,2.135,4193,3.414,4285,2.303,4340,3.62,4399,2.996,4424,1.848,4475,2.402,4497,4.252,4827,2.721,4955,3.414,5008,3.495,5026,2.062,5035,4.977,5036,3.332,5043,2.135,5058,3.414,5060,2.721,5065,2.908,5122,2.619,5137,3.895,5138,2.351,5158,2.809,5171,2.647,5178,2.515,5195,2.894,5201,4.219,5217,2.351,5287,2.803,5305,1.223,5788,7.364,5974,1.904,6072,2.647,6281,1.964,6285,2.303,6300,2.862,6339,1.995,6366,2.174,6367,2.214,6375,1.658,6388,2.174,6572,2.803,6663,4.539,6700,2.956,6709,2.803,6837,2.809,6890,3.62,6942,3.113,6974,2.578,7004,2.647,7050,3.895,7067,2.578,7089,2.647,7122,1.876,7188,4.874,7295,3.895,7296,3.62,7326,3.228,7443,2.996,7496,3.113,7505,2.996,7509,2.303,7513,2.996,7520,3.113,7540,4.755,7610,3.414,7794,5.356,7795,6.014,7817,2.803,7836,2.996,7840,4.313,7841,4.313,7842,6.288,7843,4.313,7844,4.313,7845,4.313,7846,4.313,7847,6.288,7848,4.313,7849,4.313,7850,3.113,7851,4.313,7852,4.313,7853,4.313,7854,3.895,7855,4.313,7856,3.62,7857,4.313,7858,3.895,7859,4.313,7860,4.313,7861,4.738,7862,4.313,7863,4.313,7864,4.313,7865,4.313,7866,4.313,7867,4.313,7868,4.313,7869,4.313,7870,4.313,7871,2.894,7872,6.288,7873,4.313,7874,3.895,7875,6.288,7876,4.313,7877,4.313,7878,3.62,7879,3.895,7880,8.438,7881,4.313,7882,3.25,7883,3.113,7884,3.62,7885,4.313,7886,3.62,7887,2.996,7888,3.895,7889,2.996,7890,2.996,7891,4.313]],["description//tracks/90daysofdevops/day62",[]],["title//tracks/90daysofdevops/day61",[2373,3.61,3696,1.229,5100,1.577,7892,4.327]],["content//tracks/90daysofdevops/day61",[4,3.296,6,0.374,32,1.277,46,2.22,65,1.489,67,1.52,68,1.185,70,1.47,73,1.219,74,1.402,96,1.044,110,0.959,120,1.586,124,1.351,126,1.005,137,1.4,139,1.116,147,1.16,159,2.257,169,2.801,175,1.003,179,2.259,191,1.034,197,1.47,204,1.537,212,1.591,222,1.591,226,1.902,227,2.338,230,1.034,234,0.95,235,1.378,240,1.629,265,1.733,267,1.711,289,1.58,295,1.127,331,1.454,333,1.503,343,1.855,352,2.086,354,1.986,356,0.824,374,2.112,425,2.284,433,3.364,462,1.195,470,1.555,473,2.078,479,0.892,482,2.112,536,0.826,548,2.181,550,1.755,593,1.263,600,1.311,640,1.555,663,2.22,681,4.702,708,2.601,730,2.39,742,1.715,758,0.977,778,1.219,785,1.438,803,4.133,817,1.392,849,1.71,867,1.503,886,2.601,901,1.69,907,1.775,917,1.665,918,1.446,931,2.284,932,3.03,935,1.541,938,1.207,991,2.129,1009,3.172,1019,1.669,1024,1.602,1026,2.112,1030,2.801,1051,4.123,1054,3.023,1057,3.08,1059,2.259,1085,2.729,1088,1.527,1143,2.691,1184,2.146,1205,1.503,1226,2.438,1229,2.601,1237,1.875,1269,1.711,1271,1.669,1284,1.649,1297,2.489,1300,2.768,1301,2.064,1304,4.396,1308,1.749,1331,1.321,1341,2.819,1351,1.778,1361,2.344,1365,2.046,1386,3.434,1470,1.591,1482,1.711,1516,1.591,1610,1.669,1622,2.601,1626,2.02,1632,1.715,1669,1.929,1680,1.711,1689,2.729,1693,2.967,1694,2.936,1702,2.935,1742,3.873,1743,3.832,1745,1.755,1775,3.296,1792,1.801,1867,2.967,1931,3.732,1956,2.543,1979,1.957,1996,2.344,2004,1.902,2054,2.543,2057,2.662,2067,1.423,2104,3.296,2162,4.834,2258,3.08,2259,2.015,2277,2.206,2299,2.438,2373,4.937,2382,2.455,2564,2.078,2699,2.22,2727,4.471,2975,4.177,2976,2.58,3146,2.88,3174,1.537,3299,3.614,3397,2.729,3424,2.801,3434,2.808,3554,2.543,3696,1.966,3948,2.662,3963,2.662,3988,2.967,4255,3.614,4272,3.132,4447,2.88,4449,2.438,4475,2.543,4497,1.957,4830,2.662,5028,3.792,5043,2.259,5100,3.439,5138,2.489,5153,1.957,5158,2.885,5171,2.801,5178,2.662,5201,3.063,5217,2.489,5305,1.295,5324,2.112,5337,2.662,5637,3.023,6032,6.92,6294,4.196,6316,3.364,6319,3.186,6326,3.296,6383,3.364,6388,3.302,6391,3.732,6392,2.543,6409,4.834,6430,2.801,6442,3.44,6452,3.063,6534,5.817,6825,5.774,6837,2.885,6904,2.284,6909,3.172,6974,2.729,7000,6.247,7012,3.44,7188,3.916,7191,4.729,7259,2.967,7308,6.066,7326,3.364,7529,3.614,7534,3.44,7540,3.821,7743,2.662,7767,5.323,7795,5.955,7817,2.967,7889,3.172,7890,3.172,7893,4.566,7894,4.566,7895,3.614,7896,4.123,7897,3.614,7898,4.566,7899,4.566,7900,4.566,7901,4.566,7902,4.566,7903,4.566,7904,6.552,7905,4.123,7906,5.917,7907,4.566,7908,6.552,7909,4.566,7910,4.566,7911,4.566,7912,4.566,7913,4.566,7914,4.566,7915,3.832,7916,4.566,7917,4.566,7918,3.44,7919,4.123,7920,3.832,7921,4.566,7922,4.123,7923,4.566,7924,4.566,7925,6.552,7926,4.566,7927,5.186,7928,3.614,7929,4.566,7930,4.566,7931,4.566]],["description//tracks/90daysofdevops/day61",[]],["title//tracks/90daysofdevops/day60",[1271,1.57,1301,1.353,2160,3.399,6383,2.205,6904,1.497]],["content//tracks/90daysofdevops/day60",[6,0.374,26,0.624,27,2.167,32,1.212,38,0.63,65,1.359,68,0.768,70,1.367,71,1.295,74,0.909,75,0.72,96,0.971,107,1.111,118,1.71,124,1.516,126,1.619,137,1.343,139,1.52,141,1.216,146,2.14,155,2.605,164,1.133,172,1.964,175,0.984,176,1.46,179,2.101,203,2.342,204,1.43,206,1.643,216,1.018,221,1.069,222,2.167,235,2.443,238,2.03,245,1.069,246,0.9,259,1.552,265,1.611,270,1.769,288,0.726,289,1.516,295,1.048,300,1.534,304,2.14,306,2.849,311,2.14,331,2.577,343,1.028,344,0.438,354,1.611,356,1.018,359,1.591,374,2.227,376,1.82,377,1.653,381,1.675,421,2.664,422,1.168,425,1.48,431,1.98,453,2.95,462,1.111,464,1.498,477,3.133,479,1.001,482,1.964,507,1.338,548,1.414,550,1.632,571,3.716,593,1.334,595,2.301,600,1.258,626,2.196,637,1.72,646,1.847,663,2.065,675,1.242,681,4.512,714,2.222,730,2.222,742,1.111,756,1.367,758,1.732,770,2.419,817,1.295,836,4.921,849,1.653,886,2.419,905,0.871,907,1.826,917,1.58,918,1.646,926,1.515,931,1.48,932,2.875,935,0.999,939,1.552,1002,1.856,1021,1.818,1024,1.722,1026,3.401,1088,0.989,1103,1.744,1109,2.03,1110,1.552,1173,4.921,1184,1.996,1224,1.632,1266,1.572,1269,1.591,1271,3.614,1299,2.14,1301,3.114,1308,1.133,1312,2.605,1314,3.065,1331,1.229,1336,2.03,1341,3.03,1351,1.653,1354,2.759,1365,2.786,1428,2.759,1429,3.361,1447,1.43,1450,2.476,1482,2.33,1487,2.101,1526,1.996,1585,1.82,1610,1.552,1626,2.267,1630,2.14,1632,1.627,1651,1.82,1669,1.794,1701,3.192,1702,1.281,1741,2.664,1793,2.849,1912,2.519,1932,2.605,1942,3.065,1956,3.462,1996,2.18,2004,1.769,2013,2.419,2067,1.323,2074,2.679,2162,3.922,2176,3.835,2211,2.476,2259,1.874,2277,2.093,2299,2.267,2382,2.33,2470,2.065,2647,2.922,2652,2.95,2727,3.319,2975,4.906,2976,2.725,3023,5.308,3424,2.605,3426,1.611,3553,3.361,3554,2.365,3696,1.595,3755,2.759,3800,1.964,3988,2.759,4010,2.419,4123,2.759,4229,2.065,4497,3.151,5043,2.101,5100,2.836,5135,3.2,5138,2.315,5157,2.315,5158,2.788,5171,2.605,5178,2.476,5201,2.849,5217,2.315,5305,1.204,5337,4.288,5388,2.95,5404,3.716,5571,3.2,5637,2.452,5974,1.874,6072,2.605,6294,1.874,6295,2.98,6335,3.835,6369,2.267,6383,4.621,6384,2.419,6388,3.133,6404,2.476,6445,1.675,6490,4.684,6626,3.2,6752,3.361,6837,2.788,6904,3.72,6937,3.361,7000,5.106,7076,4.72,7098,3.564,7172,3.065,7188,3.716,7191,4.487,7201,2.849,7262,3.835,7326,3.192,7339,2.849,7388,5.821,7509,2.267,7534,3.2,7540,2.476,7557,4.684,7607,3.922,7743,2.476,7757,3.835,7767,2.95,7795,5.896,7810,3.2,7817,2.759,7822,3.361,7887,2.95,7889,2.95,7890,2.95,7897,4.921,7928,4.921,7932,2.95,7933,3.361,7934,2.95,7935,6.216,7936,6.216,7937,4.246,7938,4.246,7939,4.246,7940,8.094,7941,4.246,7942,6.216,7943,4.684,7944,6.819,7945,4.246,7946,4.246,7947,4.246,7948,6.641,7949,4.246,7950,8.094,7951,3.835,7952,6.216,7953,4.246,7954,4.246,7955,4.246,7956,4.246,7957,4.246,7958,3.835,7959,4.246,7960,4.246,7961,4.246,7962,4.246,7963,4.246,7964,3.835,7965,4.246,7966,5.217,7967,4.246,7968,4.246,7969,4.246,7970,4.246,7971,4.246,7972,3.564,7973,5.614,7974,4.246,7975,3.564]],["description//tracks/90daysofdevops/day60",[]],["title//tracks/90daysofdevops/day59",[176,0.773,593,0.641,1626,1.199,2277,1.31,7795,2.121,7976,3.514]],["content//tracks/90daysofdevops/day59",[2,2.261,6,0.369,16,5.006,26,0.753,57,1.546,58,1.613,65,1.48,68,1.286,70,1.649,71,2.167,73,1.367,96,1.171,102,1.289,114,1.274,120,2.133,124,1.056,126,1.564,137,0.935,147,1.301,173,1.276,175,0.909,176,1.411,179,2.535,183,2.02,191,1.16,196,2.506,203,1.631,206,1.354,215,2.535,216,1.228,217,2.167,222,1.785,230,1.16,234,1.066,235,2.462,270,2.133,289,1.908,295,2.014,319,2.104,344,0.528,354,1.327,356,0.644,358,3.648,374,2.057,397,1.276,413,2.735,432,2.133,462,1.34,467,1.546,472,2.02,473,2.332,479,0.697,536,1.286,548,2.365,550,1.969,554,2.63,593,1.525,600,1.808,626,1.529,663,3.455,721,3.328,730,2.681,742,1.34,795,2.261,817,2.996,849,1.451,886,2.917,907,1.086,910,1.562,918,1.409,926,1.828,931,3.071,932,3.286,935,1.205,940,2.681,942,4.247,991,1.423,996,2.448,1002,2.122,1009,4.936,1021,1.498,1024,1.36,1026,2.369,1033,2.853,1053,1.686,1059,2.535,1088,1.193,1140,3.436,1184,2.408,1197,2.681,1224,1.969,1282,2.681,1300,2.164,1330,2.917,1331,1.482,1341,1.724,1351,1.994,1355,4.625,1365,2.296,1423,2.535,1424,2.566,1437,2.735,1447,1.724,1516,2.844,1517,3.558,1526,2.408,1626,3.028,1628,2.195,1639,1.546,1656,1.764,1701,2.63,1702,1.546,1741,2.195,1745,2.731,1747,3.372,1786,1.85,1811,4.047,1920,1.744,1930,1.935,1956,2.853,1996,2.63,2074,3.231,2082,3.558,2098,2.369,2099,2.49,2132,4.047,2258,2.408,2277,3.225,2321,3.697,2382,2.663,2467,2.448,2470,2.49,2645,2.987,2975,3.873,2976,2.747,3172,2.448,3385,4.482,3424,3.143,3508,2.535,3554,2.853,3661,2.49,3698,4.298,3750,2.853,3883,4.36,3988,3.328,4271,2.227,4272,2.448,4415,3.136,4449,3.794,5043,2.535,5138,2.792,5158,3.036,5171,3.143,5178,2.987,5201,3.436,5217,2.792,5304,2.02,5305,1.452,5324,2.369,5337,2.987,5422,4.625,6300,3.235,6375,2.731,6383,4.524,6387,4.298,6409,3.231,6837,3.036,6989,3.859,6995,4.054,7101,2.49,7115,3.436,7188,4.247,7191,6.361,7326,3.648,7392,2.987,7540,2.987,7599,4.047,7743,6.164,7746,4.298,7795,6.028,7809,4.054,7817,3.328,7889,3.558,7890,3.558,7897,4.054,7928,4.054,7934,3.558,7977,2.792,7978,4.298,7979,5.122,7980,5.122,7981,7.105,7982,5.122,7983,5.122,7984,5.122,7985,5.122,7986,5.122,7987,5.122,7988,5.122,7989,5.122,7990,5.122,7991,4.298,7992,5.122,7993,5.122,7994,5.122,7995,5.122,7996,5.122,7997,5.122,7998,7.105,7999,5.122,8000,4.625,8001,5.122,8002,5.122,8003,5.122,8004,6.417,8005,4.625]],["description//tracks/90daysofdevops/day59",[]],["title//tracks/90daysofdevops/day58",[235,1.296,1618,1.446,7540,2.504,7883,3.1,8006,3.878]],["content//tracks/90daysofdevops/day58",[5,1.749,6,0.371,8,1.491,9,2.365,15,1.198,16,3.853,18,1.129,26,1.043,30,1.021,31,1.129,32,0.639,35,1.142,49,0.875,52,1.425,57,1.542,58,1.032,64,1.021,65,1.648,67,1.091,68,0.593,72,1.786,73,0.875,74,1.744,91,1.491,107,1.856,109,1.129,110,1.319,111,0.929,112,0.901,113,1.701,114,0.916,118,0.901,120,0.793,124,0.675,126,1.561,136,0.728,137,0.598,139,1.535,141,0.939,146,1.651,161,1.575,173,1.565,175,0.933,179,1.621,190,0.948,202,1.391,203,2.259,204,1.103,214,1.425,217,0.999,219,1.818,220,2.01,221,0.824,222,2.189,230,1.742,234,1.696,235,2.459,240,1.169,246,1.631,251,1.593,259,1.198,261,1.243,268,1.51,288,0.561,289,1.942,295,1.55,300,1.183,331,1.627,333,1.078,343,1.862,344,0.732,351,0.875,352,1.043,354,1.627,356,0.412,362,0.849,374,2.055,376,1.404,383,0.989,393,0.866,397,0.816,406,1.651,421,1.404,422,0.615,431,1.043,441,1.425,461,1.142,462,1.337,464,1.155,467,1.542,471,2.255,474,2.484,479,1.198,488,1.645,489,1.54,494,1.593,518,1.021,536,1.136,540,1.365,548,2.712,550,1.259,554,1.682,560,2.07,582,1.958,593,1.035,595,2.625,598,1.276,600,1.547,601,1.958,626,1.526,628,0.948,637,1.327,638,2.326,645,1.749,655,1.76,663,1.593,675,0.958,681,4.352,718,1.183,730,1.715,756,1.645,778,1.676,785,1.032,795,1.446,805,1.384,809,2.593,817,1.915,845,1.365,849,1.889,856,1.346,859,1.384,867,1.078,886,1.866,903,1.243,905,0.459,907,1.083,918,1.562,925,0.91,931,2.84,932,2.363,935,0.771,939,1.198,940,1.715,991,0.91,998,2.255,1017,2.58,1021,1.494,1024,1.357,1036,1.066,1053,1.078,1057,1.54,1059,1.621,1073,1.825,1076,1.446,1079,1.259,1088,0.763,1103,1.346,1138,1.82,1184,1.54,1208,0.989,1224,1.259,1229,1.866,1232,1.866,1252,2.067,1266,2.324,1268,1.749,1282,1.715,1284,1.183,1301,1.032,1304,2.198,1311,1.866,1330,1.866,1331,0.948,1341,2.114,1351,1.276,1362,1.621,1364,1.346,1365,3.447,1405,1.845,1410,1.866,1423,2.528,1447,1.103,1470,1.142,1479,1.958,1482,1.228,1484,1.365,1487,1.621,1489,1.259,1516,1.781,1526,1.54,1530,1.911,1536,1.425,1557,2.979,1592,1.72,1597,1.515,1610,2.296,1611,0.505,1618,2.865,1619,2.772,1620,2.129,1626,1.01,1627,1.651,1639,0.989,1647,1.621,1656,2.164,1661,1.74,1694,1.468,1702,1.895,1741,1.404,1745,1.259,1768,2.01,1786,1.845,1792,2.015,1811,3.577,1858,1.243,1874,3.428,1887,3.423,1912,1.327,1916,1.911,1919,2.593,1930,1.391,1931,1.866,1952,2.575,1954,1.479,1956,3.498,1984,2.575,1996,1.682,2053,2.198,2067,1.592,2098,3.769,2099,3.449,2132,2.91,2227,1.958,2240,2.01,2259,2.255,2277,1.103,2382,2.354,2470,2.484,2564,1.491,2587,1.715,2647,1.54,2659,2.979,2902,1.958,2975,4.441,2976,2.114,3147,1.786,3159,1.845,3174,1.72,3179,1.491,3187,1.593,3214,1.365,3305,3.165,3365,2.469,3394,2.128,3404,2.198,3424,2.01,3546,1.911,3554,1.825,3659,2.846,3661,2.484,3696,1.612,3699,2.222,3700,2.099,3755,2.129,3764,1.911,3803,2.354,3884,2.276,3885,1.911,3904,4.732,3988,2.129,3993,2.067,4000,2.593,4103,1.682,4229,1.593,4241,3.32,4272,1.566,4274,1.911,4286,2.469,4358,5.271,4424,1.404,4449,1.749,4497,3.04,4886,2.75,5008,4.158,5026,3.002,5028,1.621,5033,1.468,5036,1.259,5043,1.621,5052,2.593,5065,1.515,5092,4.927,5097,4.288,5100,1.078,5127,2.728,5132,2.01,5133,2.129,5135,3.85,5138,1.786,5149,2.276,5158,2.444,5171,2.01,5178,1.911,5188,4.288,5201,2.198,5217,1.786,5300,1.566,5305,0.929,5308,4.081,5323,1.715,5324,1.515,5337,3.662,5412,5.672,5550,1.715,5637,2.798,5659,2.469,5667,2.365,5719,2.75,5736,1.54,5778,2.067,5927,2.198,5952,2.276,5974,1.446,5976,2.276,6004,1.54,6202,1.715,6289,3.296,6295,2.545,6300,2.326,6338,1.259,6347,2.067,6357,1.958,6367,2.623,6369,1.749,6375,1.259,6381,1.911,6383,5.04,6384,3.577,6386,2.593,6392,1.825,6405,1.958,6445,1.292,6458,2.959,6497,1.786,6622,2.067,6634,2.129,6639,2.067,6693,2.469,6700,1.54,6837,2.444,6851,4.288,6904,1.142,6918,2.75,7103,2.365,7112,4.288,7115,2.198,7122,2.222,7136,2.276,7188,3.054,7191,4.533,7326,2.623,7394,2.959,7439,2.365,7540,4.485,7673,4.288,7743,1.911,7767,2.276,7777,2.959,7794,2.365,7795,6.038,7817,2.129,7831,2.01,7883,4.533,7889,2.276,7890,2.276,7897,4.971,7928,4.044,7933,4.044,7977,1.786,8000,5.672,8007,3.276,8008,2.75,8009,2.276,8010,2.276,8011,3.276,8012,3.276,8013,2.469,8014,4.614,8015,6.28,8016,6.28,8017,3.276,8018,3.276,8019,6.28,8020,3.276,8021,5.109,8022,5.109,8023,5.109,8024,5.109,8025,3.276,8026,3.276,8027,5.109,8028,4.614,8029,5.109,8030,2.75,8031,3.276,8032,5.109,8033,3.276,8034,3.276,8035,3.276,8036,3.276,8037,3.276,8038,3.276,8039,2.959,8040,5.109,8041,3.276,8042,5.109,8043,2.959,8044,3.276,8045,3.276,8046,5.109,8047,3.276,8048,4.614,8049,2.75,8050,2.959,8051,3.276,8052,2.365,8053,2.75,8054,2.593,8055,2.276,8056,3.276,8057,3.276,8058,2.959,8059,3.276,8060,3.276,8061,2.75,8062,3.276,8063,3.276,8064,3.276,8065,3.276,8066,3.276,8067,3.276,8068,3.276,8069,3.276,8070,3.276]],["description//tracks/90daysofdevops/day58",[]],["title//tracks/90daysofdevops/day57",[3666,2.782,7795,2.954,7878,4.547]],["content//tracks/90daysofdevops/day57",[5,3.654,6,0.354,8,2.21,25,2.143,26,1.006,31,1.672,32,1.545,34,1.11,35,3,38,0.721,42,2.646,43,2.831,45,2.492,57,1.465,65,1.581,67,1.616,70,2.203,71,1.48,73,1.827,74,1.039,75,0.823,105,1.283,107,1.27,110,1.906,111,1.376,118,2.368,124,1.411,126,1.069,137,0.886,139,1.186,164,2.298,175,0.818,176,1.709,179,2.402,203,2.179,206,1.283,216,1.164,217,1.48,224,2.731,225,2.044,226,3.301,227,1.732,230,1.795,234,1.01,235,1.465,245,2.166,246,1.029,267,2.565,272,2.05,288,1.473,289,1.774,331,1.546,333,1.598,336,2.492,337,2.278,343,2.084,356,0.86,374,1.521,397,1.21,422,1.489,427,1.842,462,1.791,479,0.661,482,2.245,494,2.36,542,2.47,545,2.901,548,1.616,550,1.866,555,1.866,560,1.967,593,1.496,598,1.89,600,0.83,611,1.753,637,3.212,640,1.653,645,2.592,647,2.08,675,2.001,730,2.54,742,1.791,758,1.039,779,1.89,803,3.062,805,2.05,817,1.48,823,2.446,828,2.402,849,1.398,858,2.765,886,2.765,909,1.449,910,1.48,917,2.187,918,1.778,926,1.732,932,3.165,935,1.142,938,1.283,991,1.901,1002,1.449,1021,1.42,1024,1.647,1068,2.492,1076,2.143,1085,2.901,1088,1.595,1100,2.36,1143,1.994,1184,2.282,1187,2.282,1205,2.253,1224,1.866,1266,2.533,1269,2.97,1271,2.502,1297,2.646,1301,2.497,1351,1.89,1450,2.831,1478,1.994,1487,2.402,1522,4.383,1526,2.282,1585,2.08,1610,1.775,1618,1.634,1626,2.11,1632,2.72,1639,1.465,1645,3.812,1647,2.402,1656,3.127,1702,2.598,1729,2.32,1741,2.08,1791,2.402,1857,2.21,1869,2.11,1886,4.199,1987,1.819,1996,2.492,2004,2.85,2005,2.446,2046,2.7,2057,2.831,2067,1.512,2258,2.282,2277,1.634,2382,2.565,2438,3.154,2699,2.36,2902,4.738,2975,2.646,2976,2.669,3154,1.672,3159,3.109,3305,2.446,3394,2.85,3424,2.978,3495,1.672,3501,4.074,3554,2.703,3657,1.712,3696,2.034,3764,2.831,3799,3.348,3811,2.282,3915,2.32,3988,3.154,3993,3.062,4001,3.657,4034,3.062,4286,5.157,4424,2.08,4432,3.062,4497,4.305,5008,2.08,5024,2.646,5026,2.32,5035,3.842,5036,3.047,5043,2.402,5100,1.598,5122,2.85,5127,5.167,5138,2.646,5153,2.08,5158,2.965,5171,2.978,5178,2.831,5201,3.257,5217,2.646,5304,1.915,5305,1.376,5637,1.915,5689,3.657,6300,3.115,6374,3.842,6381,2.831,6383,4.069,6388,2.446,6409,3.062,6620,6.274,6700,2.282,6709,3.154,6837,2.965,7087,3.842,7122,2.111,7176,4.591,7178,2.402,7188,4.091,7315,4.074,7326,3.513,7540,5.762,7599,4.515,7795,6.104,7817,3.154,7879,4.383,7880,4.383,7883,4.94,7889,3.372,7890,3.372,8014,4.383,8071,4.854,8072,4.074,8073,4.383,8074,3.842,8075,4.854,8076,3.842,8077,4.074,8078,3.842,8079,4.854]],["description//tracks/90daysofdevops/day57",[]],["title//tracks/90daysofdevops/day56",[1478,2.226,7794,3.911,8080,4.893]],["content//tracks/90daysofdevops/day56",[5,2.44,6,0.304,15,2.397,26,0.672,27,1.593,31,1.574,43,2.665,49,1.22,52,1.987,58,2.065,65,1.708,68,1.516,72,3.574,73,2.047,74,2.035,75,1.742,77,1.958,96,1.045,105,1.208,107,1.196,110,1.377,111,1.859,120,1.106,126,1.006,136,1.457,137,0.835,164,2.367,169,2.804,175,0.864,176,1.523,179,2.262,190,3.024,191,1.035,197,1.471,202,1.785,204,2.581,206,2.026,216,1.096,217,1.394,226,3.489,230,1.485,235,2.869,246,0.969,259,1.671,261,1.734,267,1.713,288,1.122,331,1.455,333,2.158,344,0.791,351,1.22,355,1.455,356,0.964,359,1.713,374,1.457,393,2.026,397,1.139,411,2.392,422,0.858,425,1.593,461,2.92,464,2.312,479,1.043,482,2.114,507,1.439,535,1.161,536,0.827,541,3.431,542,1.424,548,1.521,550,1.756,560,1.852,564,3.734,592,2.603,593,1.08,600,0.782,626,1.365,646,1.987,714,2.392,718,2.368,730,2.392,756,2.111,779,2.985,805,2.77,817,2,858,3.734,867,1.504,886,2.603,903,1.734,905,0.64,906,3.617,907,1.776,910,1.394,917,2.129,918,1.324,932,3.032,935,1.542,938,1.208,939,1.671,991,1.27,1017,1.877,1018,1.488,1024,0.874,1033,2.545,1043,3.734,1054,1.803,1059,2.262,1066,2.427,1079,2.52,1088,1.952,1107,2.303,1108,2.665,1148,4.136,1184,2.148,1205,3.039,1237,2.693,1266,1.691,1271,1.671,1279,4.136,1282,2.392,1284,1.651,1308,1.22,1315,1.803,1331,1.323,1351,1.779,1363,1.691,1364,1.877,1439,2.732,1440,2.732,1443,2.545,1470,2.92,1478,1.877,1591,2.491,1592,1.539,1610,1.671,1626,2.582,1632,2.592,1639,1.379,1661,1.556,1669,1.93,1674,3.864,1678,2.184,1681,2.883,1700,2.732,1702,2.677,1776,2.883,1786,1.651,1803,2.491,1805,4.94,1869,2.021,1872,4.127,1880,2.44,1904,2.114,1930,1.785,1984,2.303,1987,3.139,1993,2.804,1996,2.346,2005,3.304,2046,2.586,2190,2.44,2225,2.303,2264,2.804,2277,2.581,2283,2.346,2364,1.574,2382,3.459,2467,2.184,2651,1.424,2660,2.97,2662,1.852,2976,2.581,3013,3.501,3154,2.641,3159,2.368,3198,2.883,3237,5.19,3272,4.27,3424,2.804,3514,3.617,3515,2.545,3554,2.545,3665,2.97,3696,2.149,3803,1.713,3984,3.188,3988,2.97,4000,3.617,4117,3.443,4123,2.97,4349,4.127,4424,1.958,4459,1.987,4474,3.734,4475,2.545,4497,4.478,4626,7.565,4827,4.136,4952,4.127,5043,2.262,5100,1.504,5138,2.491,5158,2.886,5171,2.804,5178,2.665,5201,3.066,5217,2.491,5291,3.299,5294,4.399,5299,2.545,5305,2.174,5323,3.431,5360,2.804,5484,3.175,5637,3.024,5704,2.804,5736,2.148,6004,2.148,6146,5.19,6338,2.52,6339,3.032,6364,2.731,6461,3.066,6626,3.443,6632,5.19,6634,4.26,6642,3.175,6649,2.603,6705,3.299,6714,3.066,6837,2.886,6858,2.545,6906,3.443,6923,5.052,7101,2.222,7176,4.399,7188,5.518,7265,3.299,7326,3.366,7373,3.175,7509,3.501,7540,2.665,7589,3.299,7794,6.046,7795,5.696,7810,3.443,7817,2.97,7821,5.921,7822,3.617,7828,3.617,7889,3.175,7890,3.175,7927,3.617,7977,2.491,8013,3.443,8054,3.617,8081,3.443,8082,4.57,8083,3.835,8084,4.57,8085,7.667,8086,3.617,8087,3.835,8088,3.443,8089,3.835,8090,6.556,8091,3.066,8092,3.617,8093,3.835,8094,4.127,8095,5.19,8096,4.57,8097,4.57,8098,3.835,8099,4.57,8100,4.57,8101,4.57,8102,4.57,8103,3.835]],["description//tracks/90daysofdevops/day56",[]],["title//tracks/90daysofdevops/day55",[1665,3.61,5100,1.577,6452,3.215,6622,3.023]],["content//tracks/90daysofdevops/day55",[6,0.237,25,1.264,26,1.131,27,0.998,32,0.895,36,2.158,38,0.977,42,1.561,44,2.221,53,1.564,56,1.087,57,0.864,63,2.746,64,1.792,65,0.481,67,0.953,68,1.303,70,0.922,71,0.874,74,1.542,75,1.744,96,0.655,103,1.757,107,1.722,110,0.602,113,2.191,114,0.513,118,1.81,124,1.357,126,1.011,133,1.757,136,1.278,137,0.839,144,1.16,146,2.315,159,0.987,161,0.883,169,1.757,173,0.714,175,0.679,176,0.569,183,2.269,190,0.829,196,1.62,197,1.852,202,1.566,203,0.912,204,1.547,206,1.739,212,0.998,216,0.687,219,0.829,220,1.757,221,1.447,226,1.193,227,2.053,229,1.16,230,1.631,234,1.197,235,1.986,238,1.369,240,1.022,245,2.285,246,1.219,261,1.087,264,0.998,265,1.087,268,0.846,272,1.941,288,1.126,289,1.731,295,0.707,301,1.087,304,1.443,311,1.443,313,2.129,319,1.176,331,0.912,337,1.529,343,1.112,344,1.051,351,0.765,352,1.831,354,2.093,355,0.912,356,0.827,362,1.19,366,1.346,372,1.21,374,2.287,375,1.872,394,2.067,397,1.145,406,1.443,410,1.325,421,1.227,422,1.353,423,0.874,424,1.499,425,2.927,427,1.743,433,1.47,453,1.99,461,0.998,462,1.202,464,2.028,465,3.998,468,1.176,470,1.564,479,1.296,482,1.325,490,1.761,494,2.234,507,0.902,517,1.393,527,1.631,530,1.304,536,1.041,542,0.892,548,2.795,556,0.922,593,1.331,600,1.316,612,2.618,625,1.99,626,1.718,628,1.33,637,1.861,638,1.304,640,1.564,645,1.529,655,1.981,675,0.838,678,1.47,712,2.404,718,1.659,734,2.267,742,0.75,767,1.67,777,1.346,778,1.923,779,1.115,785,1.447,787,1.176,805,1.941,817,1.401,828,1.417,840,3.044,843,1.887,849,1.968,859,1.21,867,0.943,882,1.47,901,2.846,905,0.401,907,0.974,908,2.267,918,0.793,925,0.796,930,1.913,935,0.674,939,1.68,991,0.796,998,1.264,1009,1.99,1010,4.276,1021,1.343,1024,1.378,1028,1.631,1038,1.67,1046,1.035,1049,1.264,1053,1.512,1054,3.648,1061,1.998,1103,1.176,1109,2.196,1110,1.047,1143,1.176,1187,1.346,1208,0.864,1234,0.998,1241,2.158,1246,1.443,1252,1.807,1266,1.06,1268,1.529,1280,3.665,1284,2.077,1287,1.325,1288,3.01,1292,3.01,1300,1.21,1310,2.267,1331,1.905,1341,1.547,1351,1.115,1364,2.362,1374,1.304,1386,2.059,1405,1.659,1424,1.659,1439,1.712,1440,1.712,1450,1.67,1482,2.7,1484,1.913,1485,1.499,1491,1.861,1530,1.67,1557,1.67,1592,1.936,1599,1.346,1601,3.135,1625,4.545,1646,1.346,1648,2.358,1656,0.987,1661,0.975,1669,1.21,1678,1.369,1690,1.304,1693,1.861,1696,1.807,1700,1.712,1702,2.321,1705,1.99,1715,5.523,1734,1.529,1742,4.006,1764,1.861,1774,1.595,1792,2.596,1794,2.158,1818,1.145,1851,2.404,1858,2.734,1863,2.028,1869,0.883,1883,2.267,1916,2.679,1942,2.067,1954,0.829,1958,2.028,1978,1.631,1979,1.227,1984,1.443,2001,1.561,2012,2.158,2027,1.631,2033,2.067,2039,1.443,2045,2.504,2052,1.393,2054,1.595,2055,1.529,2067,1.431,2104,4.152,2227,2.746,2251,3.135,2264,1.757,2284,1.712,2364,0.987,2381,3.461,2467,1.369,2564,1.304,2611,1.67,2613,2.267,2643,1.284,2693,1.998,2727,2.453,2765,1.443,2820,1.304,2872,1.922,2888,1.922,2902,1.712,2929,1.325,2976,1.936,3000,1.67,3008,1.529,3014,2.158,3107,1.757,3172,2.196,3174,1.547,3187,1.393,3242,1.712,3305,1.443,3394,1.193,3426,1.087,3434,1.227,3636,1.861,3750,1.595,3764,1.67,3803,1.073,3811,1.346,3889,2.158,3891,1.393,3915,1.369,3963,1.67,3964,1.922,3978,2.067,3984,1.393,4039,1.284,4136,3.354,4201,1.304,4271,3.133,4273,2.158,4285,1.529,4415,1.264,4437,2.898,4475,1.595,4497,1.227,4545,1.304,4554,2.617,4770,2.587,4802,4.909,4989,1.346,5008,1.227,5017,2.587,5024,1.561,5026,2.196,5100,3.443,5106,2.267,5122,1.193,5136,2.267,5143,2.679,5146,1.807,5158,1.583,5173,1.47,5194,1.99,5217,2.504,5258,2.267,5262,1.922,5304,1.812,5305,0.812,5321,1.99,5323,3.771,5327,1.757,5360,2.819,5404,1.712,5521,2.267,5524,1.969,5736,1.346,5884,4.827,5889,2.404,5892,1.99,6004,1.346,6291,2.158,6294,4.3,6295,1.16,6300,1.304,6304,1.922,6305,4.505,6307,1.99,6309,6.009,6316,4.889,6317,2.267,6318,7.85,6319,4.497,6326,2.067,6327,5.209,6328,5.428,6329,4.827,6330,1.99,6343,1.861,6354,2.067,6357,1.712,6364,2.396,6375,1.766,6382,3.316,6383,2.358,6388,1.443,6391,1.631,6392,2.559,6405,2.746,6409,1.807,6415,1.757,6419,1.21,6421,2.158,6423,3.855,6424,2.404,6425,2.067,6426,2.404,6427,2.404,6429,2.404,6437,5.232,6440,6.087,6452,6.705,6464,2.067,6534,3.191,6581,7.459,6590,1.757,6605,3.855,6608,2.404,6616,3.855,6617,6.506,6618,4.149,6622,5.728,6623,4.071,6625,3.855,6628,2.587,6629,2.587,6630,2.404,6631,5.943,6651,1.99,6677,2.587,6696,2.587,6700,1.346,6729,2.067,6748,2.158,6825,3.461,6834,1.631,6837,2.267,6858,1.595,6862,1.922,6904,0.998,6955,2.067,6960,3.191,6965,3.855,7000,1.807,7001,2.587,7011,3.855,7082,1.712,7156,1.861,7163,2.587,7201,4.415,7281,2.587,7310,2.587,7339,3.082,7364,1.631,7374,4.149,7496,2.067,7516,2.404,7529,2.267,7918,2.158,7966,2.404,7973,2.587,8086,2.267,8091,1.922,8093,2.404,8104,5.194,8105,2.587,8106,4.594,8107,2.864,8108,2.864,8109,2.864,8110,8.662,8111,2.864,8112,2.864,8113,2.864,8114,6.842,8115,2.404,8116,2.864,8117,2.587,8118,4.594,8119,2.864,8120,2.067,8121,2.864,8122,2.404,8123,2.587,8124,2.864,8125,2.864,8126,2.864,8127,2.587,8128,5.943,8129,2.267,8130,2.864,8131,6.944,8132,2.864,8133,2.587,8134,2.864,8135,2.587,8136,4.594,8137,2.067,8138,2.864,8139,2.864,8140,2.864,8141,2.864,8142,2.864,8143,2.864,8144,2.404,8145,2.587,8146,2.587,8147,2.587,8148,4.594,8149,2.267,8150,2.864,8151,2.864,8152,2.864,8153,3.191,8154,2.067,8155,2.587,8156,1.99,8157,2.234,8158,2.234,8159,2.067,8160,2.067,8161,2.067,8162,2.067,8163,1.99,8164,2.404,8165,2.864,8166,2.864]],["description//tracks/90daysofdevops/day55",[]],["title//tracks/90daysofdevops/day54",[75,0.812,1702,1.446,2603,3.793,5100,1.577]],["content//tracks/90daysofdevops/day54",[6,0.29,7,1.589,14,1.098,26,0.808,27,1.255,32,0.702,38,0.534,44,1.11,57,1.658,64,1.122,68,1.206,70,1.159,74,1.176,75,1.769,80,1.233,94,2.099,96,1.523,105,1.452,107,1.744,109,1.24,110,0.756,111,1.558,112,0.99,114,1.337,118,1.511,124,1.374,126,1.467,136,0.8,137,1.217,139,1.343,141,1.031,147,1.396,161,1.11,164,1.467,175,0.96,176,1.091,182,2.271,190,1.929,196,1.27,197,1.159,202,0.98,203,1.75,204,1.212,206,1.971,208,1.848,211,2.339,212,1.255,216,1.598,217,1.676,219,1.929,227,2.866,229,1.459,230,1.818,234,0.749,235,1.658,238,3.564,240,1.961,245,1.876,251,1.751,259,1.316,264,1.255,265,2.085,288,1.14,289,1.956,295,1.356,301,1.366,304,1.814,306,2.415,342,1.499,343,1.613,344,0.371,351,0.961,352,1.146,354,2.081,356,0.838,362,1.727,374,2.307,376,1.543,377,1.402,393,0.951,397,0.897,402,1.884,406,1.814,411,1.884,421,1.543,422,1.032,423,1.676,427,2.085,431,2.374,432,1.499,470,1.226,473,1.639,479,1.235,489,1.692,490,1.343,517,1.751,519,2.257,530,2.501,536,0.651,541,1.884,548,1.198,556,1.769,560,2.226,587,1.751,593,1.451,595,1.332,598,1.402,600,1.712,601,2.152,612,1.639,626,1.075,636,2.243,639,1.884,640,2.269,647,1.543,648,1.384,650,4.47,675,2.181,708,2.051,718,1.3,741,1.402,742,1.438,758,1.718,771,2.099,778,1.467,817,1.098,819,1.884,843,1.479,849,1.938,901,3.258,907,1.581,910,1.098,917,0.915,918,1.387,925,1,926,1.285,934,2.719,935,0.847,939,1.316,953,3.251,991,1,1002,1.075,1005,3.492,1007,1.639,1012,1.782,1017,1.479,1018,1.172,1021,2.348,1024,1.846,1026,1.665,1030,2.209,1036,1.172,1049,1.589,1053,1.185,1054,3.669,1055,1.053,1061,1.566,1070,2.713,1079,1.384,1088,1.28,1089,1.985,1109,3.564,1121,2.152,1141,2.415,1232,2.051,1234,1.255,1240,1.42,1249,2.271,1254,1.848,1255,1.366,1266,1.332,1269,1.349,1271,2.009,1280,2.005,1283,1.848,1295,3.981,1296,2.83,1300,2.321,1308,0.961,1315,1.42,1331,1.929,1341,2.703,1351,1.402,1374,1.639,1386,2.986,1405,1.3,1424,1.985,1428,2.339,1439,2.152,1465,2.85,1482,2.059,1483,2.876,1487,2.719,1493,2.598,1528,1.566,1530,2.099,1591,1.962,1599,1.692,1626,1.11,1636,2.415,1639,2.011,1651,2.355,1652,1.349,1669,2.815,1674,1.814,1675,1.848,1680,1.349,1685,2.85,1702,2.953,1741,1.543,1742,4.302,1745,1.384,1774,3.06,1780,3.284,1786,1.3,1863,1.589,1876,2.271,1910,4.14,1955,1.721,2004,1.499,2046,1.42,2052,1.751,2067,1.712,2069,2.051,2162,4.203,2213,2.005,2690,2.501,2693,1.566,2698,1.814,2699,1.751,2727,4.519,2832,2.501,2976,1.85,3146,2.271,3149,2.85,3159,1.3,3179,3.394,3305,1.814,3327,2.152,3434,1.543,3660,2.934,3696,0.924,3702,2.501,3883,2.209,3923,2.415,3948,3.204,4034,2.271,4136,3.886,4248,2.598,4415,2.425,4424,1.543,4484,2.598,4546,2.415,4721,2.152,5026,4.446,5100,3.452,5158,1.893,5173,1.848,5194,2.501,5323,2.876,5324,1.665,5343,3.966,5360,2.209,5395,2.85,5482,2.099,5637,3.669,5927,2.415,5974,1.589,6294,4.527,6297,2.713,6300,1.639,6309,4.845,6316,4.872,6319,4.115,6326,2.598,6332,2.598,6364,2.288,6366,1.814,6381,2.099,6384,2.051,6388,1.814,6391,4.574,6392,3.711,6430,6.004,6437,2.005,6465,3.251,6532,5.021,6534,5.18,6590,2.209,6623,4.574,6625,3.021,6651,2.501,6676,2.501,6700,1.692,6720,2.005,6834,2.051,6837,2.295,6909,5.879,6965,3.021,7000,6.74,7012,4.14,7075,2.501,7097,3.021,7116,3.251,7201,2.415,7202,3.686,7203,3.021,7307,4.611,7308,5.274,7392,2.099,7401,2.598,7496,2.598,7529,2.85,7676,2.415,7743,2.099,7905,3.251,7906,4.962,8008,3.021,8030,3.021,8088,2.713,8104,3.251,8144,4.611,8145,3.251,8147,3.251,8149,2.85,8157,2.672,8158,2.672,8159,2.598,8160,2.598,8161,2.598,8162,2.598,8163,2.501,8167,2.501,8168,3.251,8169,3.6,8170,3.6,8171,3.6,8172,3.251,8173,3.6,8174,3.6,8175,3.6,8176,2.713,8177,3.6,8178,3.021,8179,3.6,8180,3.6,8181,3.6,8182,3.6,8183,3.6,8184,3.6,8185,3.6,8186,3.6,8187,3.6,8188,3.251,8189,3.021,8190,3.021,8191,3.6,8192,3.6,8193,3.6,8194,2.85,8195,2.598,8196,3.021,8197,6.663,8198,3.6,8199,3.6,8200,2.501,8201,3.6,8202,3.6,8203,3.021,8204,3.6,8205,3.6,8206,3.6,8207,3.6]],["description//tracks/90daysofdevops/day54",[]],["title//tracks/90daysofdevops/day53",[1478,2.226,2595,4.289,8208,4.289]],["content//tracks/90daysofdevops/day53",[6,0.264,15,1.527,18,1.439,26,1.258,27,2.539,30,1.302,32,1.197,38,0.62,44,1.288,46,2.031,65,0.701,68,1.318,71,1.274,74,1.559,75,1.235,80,1.634,96,1.404,105,1.104,107,1.093,109,1.439,110,1.29,111,1.742,112,1.149,113,1.391,114,0.749,118,1.149,120,1.011,124,0.861,126,1.352,136,0.928,137,1.122,141,1.197,147,2.041,149,1.997,159,1.439,161,1.894,172,1.932,175,0.954,176,1.837,196,3.473,197,1.345,202,1.673,203,2.725,206,1.623,207,2.145,214,2.671,216,1.002,217,1.274,227,2.192,229,1.693,230,0.946,235,1.261,245,2.021,246,0.886,256,3.992,264,1.456,268,1.815,272,2.595,288,1.374,289,0.861,295,2.342,300,1.509,304,2.105,343,1.487,344,0.431,351,1.64,352,1.956,354,1.083,356,0.525,374,2.245,381,1.648,397,1.531,408,2.632,413,2.231,427,2.331,431,1.33,439,1.964,442,1.997,464,2.569,468,1.716,470,1.423,474,2.031,479,0.836,488,1.345,490,1.963,519,1.716,540,1.74,545,2.497,556,1.345,571,3.672,593,1.2,595,1.546,598,2.836,600,1.583,611,1.509,612,2.796,626,1.834,647,3.122,648,2.8,675,1.222,718,1.509,757,2.987,758,1.559,766,2.563,778,1.944,785,1.316,817,1.274,823,3.095,843,2.523,849,1.938,852,1.964,857,1.932,859,1.765,907,1.302,911,2.715,917,1.851,918,0.721,925,1.707,931,2.141,991,2.486,998,1.844,1015,2.105,1017,1.716,1019,3.129,1021,1.796,1024,1.77,1034,2.38,1036,2,1046,1.509,1055,1.796,1057,1.964,1088,1.431,1110,1.527,1143,1.716,1224,1.606,1234,1.456,1237,1.716,1240,1.648,1244,2.803,1266,2.696,1269,1.566,1271,3.129,1284,2.219,1311,2.38,1315,1.648,1331,2.108,1351,1.627,1362,2.068,1363,1.546,1366,5.155,1386,1.872,1430,1.964,1435,2.888,1478,1.716,1480,1.997,1487,2.068,1504,2.277,1509,2.902,1516,1.456,1534,5.061,1541,2.803,1592,1.407,1597,1.932,1599,1.964,1610,1.527,1622,2.38,1626,1.894,1632,1.607,1639,1.261,1647,2.068,1651,2.632,1656,1.439,1674,3.095,1677,3.215,1680,1.566,1702,2.7,1745,1.606,1854,2.563,1912,1.693,1952,2.105,1954,2.108,1984,2.105,1987,1.566,2004,1.74,2005,2.105,2053,2.803,2067,2.27,2145,2.563,2251,3.348,2277,2.068,2283,2.145,2364,1.439,2470,2.031,2629,3.605,2647,1.964,2662,2.489,2723,2.497,2929,1.932,2976,2.068,3008,2.231,3147,4.378,3154,2.51,3159,2.219,3304,2.145,3353,1.964,3394,1.74,3426,1.585,3495,1.439,3511,1.67,3606,3.016,3659,4.057,3946,3.769,4034,3.875,4145,2.902,4155,2.563,4272,2.936,4398,2.902,4459,1.817,4497,1.79,4835,4.267,4975,3.773,5043,2.068,5100,3.436,5127,2.231,5158,2.116,5173,2.145,5194,2.902,5287,2.715,5305,1.185,5313,3.605,5314,2.715,5324,2.841,5386,2.902,5637,2.874,5665,3.016,5703,2.803,5974,3.216,5976,2.902,6202,3.215,6294,4.803,6300,1.902,6309,2.715,6316,3.74,6319,2.031,6375,2.361,6383,2.145,6390,2.563,6405,2.497,6419,3.077,6497,3.971,6658,2.902,6700,1.964,6708,4.434,6720,2.327,6755,2.902,6834,2.38,6837,2.51,6904,3.119,6934,3.148,6945,3.148,7010,3.016,7392,3.582,7475,3.016,7599,4.874,7624,6.114,7711,3.307,7743,3.582,7749,2.436,7756,3.307,8127,3.773,8157,2.987,8158,2.987,8159,3.016,8160,3.016,8161,3.016,8162,3.016,8163,2.902,8167,2.902,8208,8.547,8209,3.307,8210,3.773,8211,4.178,8212,7.285,8213,3.773,8214,4.178,8215,7.285,8216,4.178,8217,3.148,8218,6.143,8219,3.773,8220,3.773,8221,4.178,8222,4.178,8223,4.178,8224,5.547,8225,3.506,8226,4.178,8227,6.579,8228,7.285,8229,5.155,8230,6.143,8231,6.143,8232,6.143,8233,6.143,8234,6.143,8235,6.143,8236,6.143,8237,6.143,8238,6.143,8239,3.773,8240,3.506,8241,3.307,8242,3.506]],["description//tracks/90daysofdevops/day53",[]],["title//tracks/90daysofdevops/day52",[355,1.367,2591,3.604,5100,1.414,6294,1.896,8243,3.878]],["content//tracks/90daysofdevops/day52",[6,0.345,8,1.599,26,0.517,27,1.224,30,1.094,32,1.051,33,2.879,38,1.093,46,1.708,52,1.528,53,1.196,58,1.698,64,1.094,68,0.976,70,1.736,71,1.645,74,1.154,80,1.472,82,2.647,96,0.803,105,0.928,107,1.411,110,0.738,111,0.996,113,1.795,114,0.967,120,1.305,124,0.724,126,0.773,128,2.535,137,0.642,139,0.859,141,1.006,147,2.13,157,3.172,159,1.21,161,1.083,164,1.752,173,0.875,175,0.99,176,1.071,183,1.386,190,1.017,196,3.546,201,1.443,202,0.956,203,1.717,204,1.183,206,0.928,214,1.528,216,1.574,217,1.071,219,1.017,222,1.224,227,1.254,229,1.423,230,1.667,235,2.221,238,1.679,245,2.413,246,0.745,247,2.417,264,1.224,268,1.939,288,1.123,289,1.799,295,1.62,304,1.77,313,1.038,319,1.443,334,1.738,337,1.169,343,1.589,344,0.556,351,0.938,354,0.91,355,1.717,356,0.825,358,1.803,362,0.91,374,2.131,378,2.311,393,1.425,397,1.834,413,2.879,421,1.505,423,1.071,441,1.528,442,2.577,462,1.717,464,1.902,467,1.627,470,1.196,472,2.127,476,1.386,477,2.717,479,1.002,485,2.939,486,2.283,489,1.651,490,2.049,507,1.106,517,2.622,519,1.443,527,2.001,536,1.332,555,1.35,562,2.155,593,1.081,595,3.55,600,1.493,603,2.155,612,1.599,626,1.049,628,1.017,635,1.196,718,1.269,742,0.919,758,1.154,778,0.938,779,1.368,785,1.106,823,1.77,832,1.77,843,3.024,849,1.622,852,1.651,857,1.625,859,1.484,867,1.156,896,3.308,903,2.046,907,1.391,908,2.78,910,1.071,917,1.871,918,0.607,925,0.976,930,2.733,931,2.287,991,2.619,995,1.708,996,3.519,1002,1.96,1005,2.854,1009,2.44,1017,2.695,1018,1.143,1021,1.577,1024,1.256,1034,2.001,1036,1.755,1046,2.868,1053,1.775,1055,1.027,1061,1.528,1088,1.529,1109,3.137,1110,1.284,1143,1.443,1187,1.651,1193,2.78,1197,1.838,1205,1.156,1208,1.06,1211,1.915,1224,2.072,1232,2.001,1268,2.879,1292,1.838,1296,1.333,1297,2.939,1305,2.44,1331,1.899,1351,1.368,1361,1.803,1374,1.599,1425,2.78,1484,1.463,1508,2.048,1516,1.224,1592,1.183,1626,2.847,1632,1.717,1647,1.738,1649,2.155,1650,2.1,1654,2.1,1680,1.316,1702,2.529,1725,2.647,1786,1.948,1829,1.316,1858,1.333,1869,1.083,1930,1.468,1942,2.535,1948,2.535,1954,1.561,1979,1.505,1985,2.283,1987,1.316,1988,1.803,2001,1.915,2004,1.463,2027,4.774,2046,2.127,2054,1.956,2069,3.071,2138,2.78,2158,2.048,2181,2.216,2259,1.55,2263,2.647,2277,2.478,2333,1.599,2564,1.599,2600,2.216,2647,1.651,2659,2.048,2660,2.283,2662,1.423,2820,1.599,2821,2.78,2873,2.1,2902,2.1,2904,2.768,2976,1.815,3008,2.879,3147,1.915,3159,1.269,3172,1.679,3174,1.183,3179,2.987,3213,2.216,3270,4.945,3353,1.651,3397,2.1,3426,1.333,3492,2.78,3508,1.738,3657,1.902,3658,1.651,3661,2.622,3696,1.384,3700,2.215,3803,1.316,3963,2.048,4010,2.001,4034,3.401,4120,2.283,4449,1.875,4536,3.172,4765,2.357,4827,2.216,5008,1.505,5029,2.216,5036,1.35,5078,3.827,5093,2.048,5100,3.527,5101,4.268,5127,3.504,5158,1.858,5173,1.803,5194,2.44,5241,3.308,5300,1.679,5313,1.738,5320,3.746,5324,3.035,5335,2.155,5343,2.535,5366,2.535,5389,3.93,5548,5.217,5637,1.386,5644,3.172,5956,2.948,6059,2.948,6072,2.155,6122,2.155,6294,4.688,6316,4.741,6319,3.191,6338,1.35,6364,2.246,6366,1.77,6384,4.193,6404,3.144,6405,2.1,6415,2.155,6416,3.172,6425,2.535,6445,1.386,6464,2.535,6620,4.268,6651,2.44,6832,2.647,6834,2.001,6836,4.063,6837,2.261,6848,2.216,6862,2.357,6904,2.287,6915,2.647,6980,3.172,7055,6.178,7101,1.708,7103,2.535,7122,2.345,7201,2.357,7247,2.44,7291,2.78,7299,2.78,7305,6.325,7359,2.647,7363,2.535,7392,4.631,7404,2.357,7457,4.631,7475,2.535,7485,2.216,7520,4.737,7599,5.857,7601,5.547,7711,5.195,7712,2.948,7713,3.172,7714,3.172,7727,4.869,7731,3.172,7732,3.172,7742,3.172,7743,4.631,7745,4.525,7747,3.172,7749,2.048,7750,5.926,7784,3.172,7858,3.172,7896,3.172,7915,2.948,7932,2.44,7934,2.44,7977,1.915,8009,2.44,8010,2.44,8052,2.535,8054,2.78,8115,2.948,8137,2.535,8156,3.746,8157,2.622,8158,2.622,8159,2.535,8160,2.535,8161,2.535,8162,2.535,8163,2.44,8224,5.926,8225,2.948,8229,5.507,8243,4.869,8244,3.172,8245,2.647,8246,3.223,8247,5.392,8248,2.948,8249,3.512,8250,3.512,8251,3.512,8252,5.392,8253,5.392,8254,3.512,8255,3.512,8256,3.512,8257,3.512,8258,3.512,8259,3.512,8260,3.512,8261,3.172,8262,3.512,8263,3.512,8264,3.512,8265,5.392,8266,5.392,8267,5.392,8268,3.512,8269,5.392,8270,5.392,8271,3.512,8272,5.392,8273,5.392,8274,5.392,8275,7.361,8276,6.562,8277,5.392,8278,3.512,8279,5.392,8280,6.562,8281,5.392,8282,2.78,8283,3.172,8284,3.512,8285,3.512,8286,3.512,8287,3.512,8288,3.512,8289,3.512,8290,4.525,8291,4.268,8292,2.948,8293,2.948,8294,2.948,8295,2.647]],["description//tracks/90daysofdevops/day52",[]],["title//tracks/90daysofdevops/day51",[164,1.446,2590,4.547,6319,2.635]],["content//tracks/90daysofdevops/day51",[1,1.03,6,0.375,8,1.505,26,1.048,27,1.153,29,1.815,32,1.39,35,1.794,38,1.214,65,0.555,70,1.065,75,1.208,77,1.417,96,1.444,101,1.505,102,0.832,105,1.36,107,0.865,110,0.695,111,2.19,113,1.713,118,1.961,124,1.47,128,3.715,136,0.735,137,0.604,139,1.743,141,1.81,146,1.667,154,1.929,159,1.773,161,1.019,164,2.279,173,1.283,175,0.531,176,0.657,190,0.957,191,1.165,196,2.228,202,0.901,203,2.27,206,1.884,212,1.153,217,1.57,219,0.957,221,0.832,222,2.202,224,1.139,227,1.837,230,1.852,235,0.998,238,1.581,244,1.731,245,1.295,246,1.34,268,1.867,270,2.144,288,0.566,295,1.559,300,1.195,337,1.713,342,1.377,343,0.801,344,0.531,351,1.374,354,1.637,356,0.647,374,1.962,389,2.029,393,1.67,397,1.283,413,3.373,422,0.967,432,1.377,433,1.698,441,1.438,442,1.581,462,0.865,464,1.166,470,1.753,471,1.46,479,0.7,485,1.803,490,1.544,507,1.042,519,1.358,536,0.931,554,2.642,556,2.034,558,1.842,593,1.495,595,1.224,600,1.081,626,0.988,635,2.152,636,1.113,639,2.694,648,1.978,702,3.845,741,2.46,742,1.347,756,1.065,758,1.653,760,1.803,787,1.358,805,1.397,829,2.492,843,2.114,845,1.377,849,1.894,901,2.338,903,1.255,907,1.81,917,1.308,918,0.889,925,0.919,926,1.18,939,1.209,991,1.755,996,3.692,1002,0.988,1005,3.359,1010,2.149,1019,1.882,1021,0.967,1024,1.807,1036,1.077,1046,2.954,1047,2.387,1057,3.631,1088,0.771,1089,1.195,1121,3.076,1138,0.849,1197,2.694,1205,1.694,1208,0.998,1234,1.153,1240,1.305,1255,1.255,1269,1.239,1271,2.31,1295,2.748,1296,1.255,1307,2.219,1311,1.884,1331,0.957,1341,2.973,1351,2.004,1363,1.224,1405,2.79,1424,1.859,1450,1.929,1451,1.803,1474,1.842,1478,1.358,1480,2.46,1484,1.377,1489,1.271,1508,1.929,1529,1.766,1536,1.438,1597,1.53,1599,1.555,1615,2.618,1626,2.381,1630,1.667,1632,1.653,1636,2.219,1639,1.907,1641,2.297,1647,2.547,1652,1.239,1678,1.581,1702,2.737,1729,2.46,1840,1.884,1871,2.219,1887,1.803,1903,2.297,1930,0.901,1954,0.957,1983,2.029,1987,1.929,2012,3.878,2067,1.604,2103,2.149,2149,2.987,2213,1.842,2240,2.029,2277,1.733,2333,2.343,2381,2.492,2467,1.581,2470,2.503,2587,1.731,2647,1.555,2680,2.618,2693,1.438,2699,2.503,2949,1.397,2975,4.813,2976,1.733,3000,3.001,3147,1.803,3152,2.297,3154,1.139,3174,1.733,3302,2.775,3353,1.555,3362,2.219,3380,2.297,3494,2.492,3500,2.219,3508,1.637,3511,2.057,3516,3.158,3546,1.929,3655,2.748,3657,2.514,3661,1.608,3696,1.621,3699,1.438,3700,2.114,3714,2.775,3764,1.929,3811,1.555,3884,2.297,3926,2.086,3948,1.929,4025,2.775,4155,2.029,4415,2.272,4802,1.667,5004,2.775,5008,1.417,5026,2.46,5029,2.086,5036,1.271,5078,3.684,5093,1.929,5100,3.555,5101,4.074,5127,3.373,5158,1.773,5173,1.698,5194,2.297,5241,2.029,5304,1.305,5320,2.297,5324,1.53,5335,2.029,5343,5.146,5637,3.047,5704,2.029,5821,2.775,6140,3.453,6294,4.616,6300,2.343,6310,2.492,6316,5.448,6317,2.618,6319,5.038,6321,2.219,6322,2.387,6327,2.618,6328,2.492,6339,1.53,6364,2.144,6369,3.807,6375,2.428,6388,1.667,6391,5.167,6409,2.086,6415,2.029,6425,2.387,6430,2.029,6437,4.918,6445,2.03,6452,2.219,6588,2.987,6608,5.302,6609,2.987,6620,7.18,6622,2.086,6623,1.667,6652,2.029,6700,1.555,6707,2.618,6709,2.149,6755,2.297,6779,2.775,6780,2.775,6834,1.884,6836,5.372,6837,2.177,6904,2.851,6921,2.987,6923,1.884,7006,2.775,7011,2.775,7041,2.618,7066,3.247,7122,2.238,7170,1.766,7201,2.219,7247,4.389,7326,1.698,7392,1.929,7457,4.505,7506,2.618,7520,2.387,7599,1.884,7646,2.618,7676,2.219,7743,3.684,7886,2.775,7977,1.803,8009,2.297,8010,2.297,8128,2.987,8131,2.987,8137,2.387,8154,2.387,8156,4.389,8157,2.503,8158,2.503,8159,2.387,8160,2.387,8161,2.387,8162,2.387,8163,2.297,8178,2.775,8282,2.618,8290,4.319,8291,4.074,8292,2.775,8293,2.775,8294,2.775,8295,2.492,8296,2.987,8297,3.307,8298,3.307,8299,2.775,8300,1.803,8301,3.307,8302,2.618,8303,2.297,8304,3.307,8305,2.987,8306,2.618,8307,2.618,8308,3.307,8309,3.307,8310,2.987,8311,3.307,8312,3.307,8313,3.307,8314,2.987,8315,3.307,8316,3.307,8317,3.307,8318,3.307,8319,2.987,8320,2.387,8321,3.307,8322,3.307,8323,3.307,8324,3.307,8325,3.307,8326,3.307,8327,3.307,8328,3.307,8329,3.307,8330,3.307,8331,3.307,8332,3.307,8333,3.307,8334,3.307,8335,3.307,8336,2.987,8337,3.307,8338,2.987,8339,3.307]],["description//tracks/90daysofdevops/day51",[]],["title//tracks/90daysofdevops/day50",[222,1.497,1240,1.694,1641,2.983,3159,1.551,5100,1.414]],["content//tracks/90daysofdevops/day50",[6,0.296,8,3.068,18,1.637,26,0.699,27,1.656,32,0.926,37,2.84,38,1.001,42,2.59,52,2.931,53,1.618,74,1.017,75,1.328,76,3.761,80,1.066,96,1.086,105,1.256,107,1.243,109,1.637,110,0.998,115,3.429,126,1.484,136,1.498,137,0.868,149,2.271,159,1.637,175,1.014,176,1.556,190,2.468,196,3.175,198,2.31,203,2.978,206,2.253,216,1.616,217,3.049,219,1.375,221,1.195,226,1.979,227,2.406,230,1.076,245,1.696,246,1.007,267,1.78,268,2.519,272,2.847,288,1.54,295,1.173,331,1.513,333,1.564,343,1.15,351,1.268,356,0.985,374,1.056,383,2.034,397,1.184,398,2.233,422,1.266,423,1.449,441,2.066,442,2.271,461,1.656,464,3.007,467,2.573,479,0.647,488,1.529,489,2.233,517,2.31,518,2.1,519,1.951,535,1.713,539,2.706,540,1.979,541,2.487,555,2.591,593,0.783,600,1.459,611,1.716,626,2.688,628,1.951,636,1.6,637,1.925,650,3.187,756,1.529,758,1.677,774,2.269,777,2.233,779,1.85,805,2.007,823,2.394,843,2.769,845,2.807,851,3.429,859,2.847,902,2.439,907,1.007,917,2.166,918,0.82,935,1.118,938,1.256,939,1.737,991,2.177,998,2.097,1002,1.419,1005,3.708,1021,1.389,1040,2.394,1046,3.252,1059,2.351,1066,2.495,1143,1.951,1198,2.31,1208,2.034,1234,2.349,1240,3.551,1271,1.737,1282,2.487,1289,2.77,1299,2.394,1301,1.496,1308,1.268,1309,2.036,1363,1.758,1435,3.169,1451,3.674,1461,3.58,1478,1.951,1482,1.78,1484,1.979,1508,2.77,1526,3.169,1528,2.931,1530,2.77,1535,2.77,1599,2.233,1626,2.628,1627,2.394,1639,1.434,1656,2.699,1669,2.847,1686,4.522,1690,3.566,1826,3.187,1907,3.761,1912,1.925,1930,1.294,2189,3.087,2225,2.394,2245,2.706,2277,2.87,2438,3.087,2470,2.31,2647,2.233,2660,3.087,3013,2.537,3065,2.84,3147,2.59,3149,3.761,3159,3.252,3172,2.271,3394,2.807,3426,1.803,3515,2.646,3657,1.675,3696,2.01,3700,3.502,3702,4.682,3750,2.646,3764,3.931,3779,2.997,3799,3.601,3800,2.197,3803,1.78,3891,2.31,3926,2.997,3944,2.997,3959,3.087,3984,3.809,4079,2.487,4109,3.187,4123,5.091,4137,3.58,4285,2.537,4379,3.58,4424,2.889,4459,2.066,4538,3.761,4616,2.997,4805,3.087,4810,4.29,4989,2.233,5008,2.036,5029,2.997,5036,1.826,5078,4.972,5093,2.77,5100,3.624,5101,6.201,5122,1.979,5241,2.915,5323,2.487,5335,2.915,5343,3.429,5386,3.3,5407,2.915,5450,2.066,5482,2.77,5542,2.439,5559,3.187,5637,1.874,5952,3.3,6004,2.233,6294,4.57,6300,2.163,6319,4.146,6364,2.807,6375,2.591,6383,2.439,6422,4.29,6441,3.761,6652,2.915,6685,4.29,6689,3.087,6779,3.987,6780,3.987,6836,5.079,6858,2.646,6904,1.656,6924,3.987,6942,3.429,6974,2.84,7066,4.252,7067,4.029,7122,2.931,7123,3.3,7161,3.3,7201,3.187,7259,3.087,7282,4.29,7406,3.761,7457,5.25,7480,3.58,7514,3.987,7515,3.987,7520,4.865,7589,3.429,7749,2.77,7934,4.682,7977,5.097,8009,3.3,8010,3.3,8052,3.429,8055,3.3,8156,4.682,8210,4.29,8245,3.58,8290,5.657,8291,6.201,8292,5.657,8293,3.987,8294,3.987,8295,3.58,8296,6.087,8340,4.29,8341,4.751,8342,4.751,8343,4.29,8344,4.29,8345,3.987,8346,3.429,8347,4.751,8348,4.29,8349,4.751,8350,4.751,8351,4.29,8352,4.29,8353,3.58,8354,4.751,8355,4.751,8356,4.751,8357,4.751]],["description//tracks/90daysofdevops/day50",[]],["title//tracks/90daysofdevops/day49",[1208,1.635,2138,4.289,5100,1.784]],["content//tracks/90daysofdevops/day49",[1,0.887,4,2.054,5,1.52,6,0.15,8,1.296,11,1.434,14,0.868,18,1.575,26,1.185,27,0.992,29,1.004,32,1.495,35,2.672,38,0.85,44,0.877,49,0.76,52,1.988,53,1.95,54,3.175,56,1.08,57,1.379,58,1.804,65,1.101,67,1.521,68,1.036,70,0.916,71,2,72,1.551,73,0.76,75,1.679,77,1.22,80,1.72,89,1.276,96,0.651,101,1.296,102,0.716,110,1.508,112,1.257,115,2.054,118,1.575,124,0.942,126,1.261,127,1.49,133,1.746,136,1.457,139,0.696,159,1.575,161,0.877,173,1.139,175,0.791,176,0.565,190,1.898,191,0.644,193,2.054,195,3.919,196,3.608,197,0.916,201,1.877,202,1.245,203,0.906,204,0.958,206,0.752,207,1.461,212,0.992,214,3.504,215,1.408,216,1.096,217,1.394,220,1.746,221,1.65,222,0.992,224,1.973,225,1.71,226,2.385,227,3.165,230,2.124,235,2.167,240,1.016,245,1.15,246,1.214,261,2.725,263,1.138,268,1.692,272,1.931,288,0.782,295,1.128,297,1.461,301,2.488,302,2.649,304,1.434,305,1.296,307,1.138,331,0.906,336,1.461,337,0.947,342,1.185,344,0.831,351,0.76,352,2.287,356,1.087,359,1.067,362,0.737,366,1.338,374,1.016,383,1.979,393,0.752,397,0.709,408,1.22,410,1.316,413,3.834,421,2.81,422,1.666,425,1.593,428,1.977,429,1.621,431,0.906,432,1.185,435,1.461,461,0.992,464,2.704,467,0.859,470,1.556,474,1.384,476,1.123,478,2.491,479,0.622,482,1.316,488,0.916,489,1.338,509,2.388,519,1.877,529,3.618,535,0.723,536,1.036,539,1.621,542,2.238,546,1.701,548,3.073,555,1.094,560,1.153,592,1.621,593,1.183,597,1.795,600,0.782,611,1.028,612,1.296,626,1.958,628,0.824,638,1.296,655,0.98,675,1.917,708,1.621,716,1.338,741,1.779,756,0.916,758,0.978,760,1.551,770,1.621,774,0.958,778,1.917,779,1.108,783,1.977,805,1.202,849,0.933,855,1.795,859,1.202,902,2.346,905,0.803,907,1.214,909,1.365,910,1.394,914,1.621,915,1.169,917,2.472,918,1.493,935,0.669,938,1.208,991,2.328,995,2.785,996,1.36,1005,1.238,1009,1.977,1018,0.926,1020,2.054,1024,1.542,1036,2.338,1040,2.303,1053,0.937,1054,1.123,1057,3.082,1069,1.701,1088,1.334,1106,1.977,1107,1.434,1109,1.36,1110,1.041,1138,1.47,1143,1.169,1205,1.504,1208,1.379,1240,1.803,1243,1.746,1246,1.434,1255,1.734,1271,3.969,1279,1.795,1282,2.997,1284,2.069,1289,1.66,1295,2.44,1296,1.08,1303,1.66,1309,1.22,1351,1.108,1371,2.883,1439,3.919,1458,2.388,1461,2.144,1478,1.169,1480,2.185,1482,1.067,1484,1.185,1485,1.49,1516,0.992,1535,2.665,1592,0.958,1600,1.621,1601,1.551,1626,2.582,1627,1.434,1632,1.196,1639,1.379,1647,1.408,1656,0.98,1673,2.388,1675,2.346,1677,1.49,1701,2.346,1702,2.786,1729,1.36,1736,1.849,1741,1.22,1742,1.316,1745,1.094,1764,1.849,1767,1.849,1791,1.408,1792,1.803,1829,1.067,1857,1.296,1858,2.173,1869,1.409,1887,3.914,1905,1.746,1916,3.34,1930,1.56,1978,1.621,1979,2.454,1983,1.746,1987,1.067,1993,2.804,2001,2.491,2044,3.066,2045,3.574,2052,2.785,2054,2.545,2067,1.424,2143,2.054,2145,1.746,2189,1.849,2213,1.585,2225,1.434,2269,3.836,2277,1.928,2364,1.575,2496,3.299,2575,1.977,2611,1.66,2613,2.253,2648,3.836,2662,1.153,2695,2.253,2820,1.296,2976,1.539,2979,1.909,3008,2.44,3013,1.52,3015,1.296,3065,1.701,3150,1.551,3152,1.977,3154,1.575,3159,2.368,3172,2.185,3187,1.384,3198,1.795,3214,1.185,3304,1.461,3349,2.054,3353,1.338,3354,2.253,3362,1.909,3432,1.701,3434,1.959,3495,1.575,3508,1.408,3511,1.827,3696,1.173,3699,1.238,3831,2.144,3883,4.023,3885,1.66,3915,2.185,3926,1.795,3959,1.849,3980,1.551,3984,2.785,4001,2.144,4088,1.746,4103,1.461,4184,4.315,4229,2.222,4269,1.977,4271,1.238,4286,2.144,4303,1.701,4314,1.49,4382,2.57,4418,2.253,4472,2.253,4475,1.585,4497,1.22,4572,2.57,4616,3.613,4620,2.388,4721,2.732,4782,1.66,4798,1.909,4802,2.886,4805,1.849,4825,2.388,4830,1.66,4849,1.585,4854,2.388,4872,1.977,4989,2.149,5036,1.094,5091,1.66,5100,3.64,5126,2.253,5127,1.52,5146,1.795,5158,1.575,5173,1.461,5194,1.977,5258,2.253,5290,2.57,5305,0.807,5313,1.408,5319,2.253,5322,2.388,5323,4.013,5324,1.316,5327,1.746,5332,1.795,5389,1.408,5404,1.701,5459,2.57,5559,1.909,5581,2.144,5637,1.123,5665,2.054,5689,2.144,5772,1.52,6122,1.746,6294,4.465,6295,1.153,6297,2.144,6305,3.033,6306,2.388,6307,1.977,6309,4.261,6316,3.687,6326,3.299,6332,2.054,6338,1.757,6339,2.114,6364,1.185,6375,1.094,6382,3.299,6383,1.461,6396,2.144,6425,2.054,6437,5.776,6448,2.054,6452,1.909,6462,6.239,6529,2.144,6577,2.253,6581,3.836,6586,4.988,6694,2.253,6695,2.388,6698,2.253,6729,3.299,6759,2.388,6789,2.57,6833,2.253,6834,1.621,6837,1.973,6847,1.66,6852,1.977,6882,2.57,6904,2.285,6906,2.144,6915,6.071,6966,2.144,7006,3.836,7012,2.144,7041,3.618,7069,3.444,7076,1.66,7082,2.732,7089,1.746,7115,1.909,7136,1.977,7170,2.44,7176,3.842,7178,1.408,7183,2.253,7194,5.921,7216,2.253,7396,3.618,7401,2.054,7485,1.795,7520,4.134,7540,1.66,7564,5.411,7568,4.806,7693,2.388,7818,2.054,7819,2.57,7825,5.597,7830,2.253,7836,1.977,7977,2.491,8008,2.388,8055,1.977,8072,2.388,8091,1.909,8114,4.315,8157,2.222,8158,2.222,8159,2.054,8160,2.054,8161,2.054,8162,2.054,8163,1.977,8167,4.555,8168,4.127,8178,4.806,8227,2.57,8229,2.388,8282,2.253,8283,4.127,8303,1.977,8305,2.57,8343,2.57,8344,2.57,8358,2.57,8359,2.846,8360,2.846,8361,2.57,8362,2.846,8363,2.846,8364,2.846,8365,1.701,8366,2.57,8367,2.388,8368,2.846,8369,2.57,8370,2.846,8371,2.57,8372,2.57,8373,2.57,8374,2.57,8375,2.846,8376,2.846,8377,2.846,8378,2.846,8379,2.846,8380,2.388,8381,7.181,8382,3.836,8383,2.846,8384,2.846,8385,2.57,8386,2.846,8387,2.253,8388,4.57,8389,4.57,8390,2.846,8391,4.57,8392,2.388,8393,2.144,8394,2.846,8395,2.846,8396,2.388,8397,5.727,8398,2.846,8399,2.57,8400,4.127,8401,2.846,8402,2.57,8403,2.846,8404,2.846,8405,2.57,8406,5.172,8407,2.846,8408,2.846,8409,5.727,8410,2.144,8411,2.57,8412,2.846,8413,2.57,8414,2.57]],["description//tracks/90daysofdevops/day49",[]],["title//tracks/90daysofdevops/day48",[1312,3.325,2569,4.289,6904,1.889]],["content//tracks/90daysofdevops/day48",[6,0.305,7,2.051,26,0.683,27,2.313,32,0.906,34,1.062,38,0.69,44,2.386,49,1.771,53,1.583,57,1.403,58,1.464,60,2.778,65,0.78,70,1.496,73,1.241,75,1.125,80,1.489,105,1.228,109,1.601,110,1.95,111,1.882,120,1.125,124,0.958,126,1.461,136,1.033,139,1.136,164,1.241,173,1.158,175,0.986,176,1.318,197,2.136,199,3.679,201,1.909,207,2.386,214,2.021,216,1.591,220,2.852,222,1.62,224,1.601,225,1.388,227,1.659,230,1.503,245,1.169,246,0.985,259,1.699,261,1.764,263,1.858,267,2.487,268,1.373,272,1.963,288,1.324,289,1.595,295,1.638,296,3.679,297,2.386,302,2.15,304,3.344,331,1.48,333,1.53,334,2.3,336,2.386,342,1.936,344,0.685,354,1.204,356,0.973,362,1.204,376,1.992,377,1.81,393,1.228,410,2.15,421,1.992,423,1.417,429,2.647,464,1.639,482,3.069,487,2.222,519,1.909,527,2.647,535,1.181,555,1.786,575,1.936,593,1.61,595,1.72,598,1.81,600,1.527,602,2.386,605,3.229,627,2.342,628,1.345,638,2.116,643,3.02,647,1.992,675,2.469,678,2.386,716,2.185,762,3.118,774,2.234,778,1.771,834,3.502,843,3.179,849,2.154,907,0.985,909,1.388,914,3.78,917,1.686,918,1.146,925,1.291,926,1.659,991,1.291,993,1.699,995,4.105,1021,1.941,1023,2.432,1024,1.27,1025,2.932,1026,3.58,1028,4.408,1036,2.16,1046,3.049,1064,3.679,1069,3.967,1108,2.71,1138,1.193,1143,1.909,1182,3.9,1197,2.432,1198,2.26,1206,2.3,1207,2.932,1230,3.355,1254,2.386,1266,1.72,1271,3.572,1284,2.397,1297,2.533,1312,4.072,1315,1.833,1331,1.345,1360,3.679,1364,1.909,1443,2.588,1470,1.62,1482,1.742,1484,1.936,1504,2.533,1536,2.021,1626,2.386,1632,2.557,1656,2.666,1672,2.588,1680,3.345,1689,2.778,1690,2.116,1694,2.974,1701,2.386,1702,2.336,1887,2.533,1903,3.229,1930,1.807,1931,2.647,1954,1.345,1988,2.386,2022,3.679,2039,4.499,2101,2.852,2131,2.588,2171,3.02,2234,4.197,2259,2.051,2277,1.565,2279,3.502,2369,3.02,2467,2.222,2620,3.679,2647,2.185,2703,2.932,2789,2.342,2839,2.588,2902,2.778,2976,2.842,3145,2.533,3159,2.397,3174,1.565,3189,3.543,3301,4.197,3434,1.992,3508,2.3,3511,1.858,3537,3.355,3657,2.977,3658,4.197,3659,4.972,3660,4.507,3696,1.986,3800,2.15,3964,3.118,4314,2.432,4415,2.929,4423,2.71,4447,4.186,4751,3.9,4989,2.185,5033,2.083,5036,1.786,5043,2.3,5091,2.71,5100,1.53,5173,2.386,5178,2.71,5182,3.523,5222,3.355,5324,2.15,5763,3.118,6281,2.116,6285,2.481,6295,1.883,6305,2.15,6334,3.9,6347,2.932,6375,1.786,6390,2.852,6404,2.71,6419,1.963,6572,3.02,6590,2.852,6623,2.342,6657,3.229,6700,2.185,6837,2.666,6847,2.71,6852,3.229,6857,3.502,6875,2.778,6897,3.02,6904,3.837,6957,5.193,6960,4.61,6966,3.502,6977,3.118,7071,3.9,7091,3.502,7092,4.197,7291,3.679,7396,3.679,7457,3.87,7676,3.118,7743,2.71,7749,2.71,7764,2.432,7861,3.502,7943,3.502,7977,2.533,8028,4.197,8052,3.355,8153,4.61,8157,2.26,8158,2.26,8167,5.864,8208,3.679,8245,3.502,8282,6.126,8299,8.901,8365,3.967,8367,3.9,8393,3.502,8415,4.647,8416,3.679,8417,3.9,8418,4.647,8419,4.647,8420,4.197,8421,4.197,8422,4.647,8423,4.647,8424,4.647,8425,4.647,8426,4.647,8427,3.9,8428,4.647,8429,4.647,8430,4.647,8431,4.197,8432,4.647,8433,8.384,8434,3.679,8435,4.647,8436,4.647,8437,5.993,8438,5.993,8439,4.647,8440,4.197,8441,4.647,8442,4.647,8443,4.197,8444,4.647,8445,3.229,8446,3.679,8447,3.502,8448,4.647]],["description//tracks/90daysofdevops/day48",[]],["title//tracks/90daysofdevops/day47",[214,1.867,1057,2.019,1481,3.399,1610,1.57,6904,1.497]],["content//tracks/90daysofdevops/day47",[6,0.27,18,1.969,26,0.84,32,1.601,38,0.563,42,3.115,44,1.169,53,1.946,59,2.857,67,1.262,68,1.562,75,0.969,80,0.851,102,0.954,105,1.002,107,1.8,110,0.796,113,1.262,118,1.892,120,0.918,124,1.578,126,1.258,136,1.27,137,1.044,141,1.086,149,1.812,164,1.525,173,0.945,175,0.891,176,1.135,190,1.097,191,1.294,195,2.266,203,1.207,204,3.57,208,1.947,211,2.464,214,2.485,216,1.836,227,2.454,230,2.089,234,1.189,235,1.725,238,4.597,245,1.438,246,0.804,247,3.082,265,1.439,272,2.414,288,0.649,295,2.027,297,1.947,300,2.484,304,1.911,331,1.207,334,1.876,335,2.112,343,0.918,351,2.193,352,2.19,354,1.782,355,1.207,356,0.865,362,1.782,372,2.414,374,1.825,375,2.674,376,2.947,377,2.225,378,2.947,393,1.002,421,1.625,422,1.073,423,1.156,431,1.207,433,3.531,464,1.337,467,1.144,479,1.042,482,1.754,488,1.221,490,1.397,507,1.194,518,2.56,525,1.726,530,3.131,536,1.034,540,2.864,542,1.181,548,1.262,556,1.221,592,2.16,593,1.133,598,1.476,600,1.645,612,1.726,626,2.054,628,2.499,635,1.291,640,1.291,675,2.812,678,2.934,702,2.686,716,1.782,742,0.992,744,2.857,774,1.924,778,1.012,779,1.476,785,1.194,787,1.557,805,2.414,818,2.544,845,1.579,849,2.098,856,1.557,902,2.934,917,0.963,918,0.987,925,1.588,931,1.321,935,1.801,938,1.818,946,1.984,991,1.053,993,1.386,998,1.674,1002,1.132,1012,1.876,1017,1.557,1018,1.234,1024,1.316,1026,3.181,1046,2.484,1049,1.674,1054,1.496,1055,1.109,1057,1.782,1076,2.522,1088,1.332,1089,1.369,1109,3.927,1110,2.799,1143,2.347,1171,3.424,1180,3.181,1187,1.782,1202,2.266,1205,1.248,1208,1.725,1245,2.544,1246,2.88,1266,1.403,1269,1.421,1271,3.984,1288,1.984,1292,4.827,1294,2.464,1300,1.602,1308,1.012,1331,1.654,1341,1.924,1360,3.001,1361,2.934,1362,1.876,1363,1.403,1364,1.557,1374,2.601,1424,2.064,1429,6.061,1435,1.782,1447,1.277,1476,2.857,1484,2.864,1516,1.321,1534,2.634,1601,2.067,1610,3.372,1651,1.625,1656,1.306,1678,1.812,1680,1.421,1705,2.634,1709,3.424,1716,2.211,1729,2.732,1745,2.943,1765,2.211,1786,2.064,1857,1.726,1863,1.674,1916,3.333,1930,1.556,1983,2.326,2004,1.579,2035,3.115,2045,2.067,2049,3.424,2057,2.211,2146,2.991,2162,4.339,2227,2.266,2233,2.634,2251,2.067,2277,1.277,2283,1.947,2364,2.369,2365,2.857,2470,1.844,2622,4.523,2629,1.876,2765,1.911,2789,3.858,2820,1.726,2839,2.112,2929,1.754,2932,1.911,2949,1.602,2976,2.578,3103,2.634,3172,2.732,3174,1.924,3349,2.737,3358,2.737,3434,2.449,3495,1.306,3616,4.125,3620,2.634,3657,1.337,3658,3.233,3660,3.672,3696,1.466,3799,2.414,3830,3.182,4118,1.876,4158,2.737,4324,2.464,4459,1.649,4480,2.464,4816,2.112,4989,2.686,5003,3.424,5033,1.699,5074,2.266,5129,5.135,5173,1.947,5182,2.601,5222,2.737,5300,1.812,5304,1.496,5660,2.737,5927,2.544,6018,3.182,6053,4.523,6110,2.737,6281,1.726,6285,2.024,6295,1.536,6305,1.754,6320,2.857,6347,2.392,6357,2.266,6367,1.947,6375,1.457,6384,3.255,6419,3.647,6497,2.067,6598,2.464,6623,1.911,6666,5.161,6704,4.796,6755,2.634,6837,2.369,6851,3.182,6857,2.857,6904,3.811,6973,3.182,7000,5.182,7046,2.326,7227,4.523,7259,2.464,7271,5.182,7272,4.777,7306,3.424,7359,2.857,7362,3.182,7388,3.001,7407,2.266,7443,2.634,7457,2.211,7589,2.737,7734,8.071,7764,1.984,7781,2.634,7799,3.182,7943,5.182,8137,6.468,8153,3.97,8157,1.844,8158,1.844,8172,3.424,8358,3.424,8387,3.001,8393,2.857,8410,2.857,8445,2.634,8446,3.001,8447,2.857,8449,3.424,8450,3.791,8451,6.211,8452,3.182,8453,3.424,8454,3.001,8455,7.418,8456,3.424,8457,3.424,8458,3.791,8459,5.714,8460,3.791,8461,3.791,8462,3.791,8463,3.791,8464,3.791,8465,3.791,8466,6.877,8467,3.791,8468,5.772,8469,3.791,8470,3.791,8471,3.424,8472,3.791,8473,3.791,8474,3.791,8475,5.714,8476,5.714,8477,3.791,8478,3.791,8479,3.791,8480,3.791,8481,3.791,8482,3.424,8483,3.424,8484,3.424,8485,7.656,8486,3.182,8487,5.714,8488,3.791,8489,4.306,8490,3.791,8491,3.182,8492,3.424,8493,3.424,8494,3.424]],["description//tracks/90daysofdevops/day47",[]],["title//tracks/90daysofdevops/day46",[2524,4.547,6904,1.889,7076,3.16]],["content//tracks/90daysofdevops/day46",[6,0.229,7,1.709,14,1.181,15,1.416,25,1.709,26,1.024,27,3.033,32,1.132,34,0.885,38,0.575,44,1.79,49,1.859,57,1.168,58,1.829,64,1.206,68,1.4,73,1.55,74,0.829,75,1.573,80,1.302,89,1.735,96,1.327,105,1.841,107,1.519,110,0.813,111,1.098,113,1.289,120,1.405,124,1.436,126,1.703,136,0.86,137,1.06,139,0.946,141,1.109,158,2.231,164,1.859,172,1.791,173,0.965,175,0.898,176,1.383,183,1.527,190,1.121,196,1.366,197,1.247,198,1.883,202,1.581,203,2.218,219,1.121,221,0.974,222,2.024,230,1.315,234,1.61,235,2.335,240,1.382,264,1.35,265,2.936,268,1.716,288,1.418,289,2.073,295,1.433,297,1.988,304,2.926,333,1.911,342,2.418,343,1.405,344,0.898,351,1.034,354,2.005,355,1.233,356,0.973,374,2.21,375,1.89,393,1.534,397,0.965,423,1.181,425,2.428,427,2.643,432,1.613,442,3.699,459,1.289,461,1.35,479,0.527,507,1.829,517,1.883,518,1.809,531,3.25,536,1.05,542,1.206,548,1.289,555,1.488,593,1.148,600,1.679,605,2.69,611,1.399,612,3.171,626,1.156,628,1.121,637,2.352,639,2.027,640,1.977,675,2.424,713,2.315,718,1.399,742,1.013,758,1.491,778,1.034,785,1.829,817,1.181,832,1.951,836,4.596,843,2.385,849,2.005,857,1.791,867,1.275,903,1.469,907,0.821,909,2.08,917,0.984,918,1.003,930,1.613,931,2.428,935,1.638,939,1.416,993,1.416,995,3.387,1002,2.311,1005,1.684,1012,1.916,1015,2.926,1019,1.416,1021,1.698,1024,1.727,1026,3.579,1036,1.26,1038,2.258,1043,2.206,1046,2.516,1049,1.709,1054,1.527,1055,1.698,1068,1.988,1088,0.902,1110,2.546,1138,1.49,1187,2.729,1224,2.231,1254,1.988,1266,1.433,1268,2.067,1269,3.106,1271,3.742,1292,2.027,1307,2.598,1327,2.516,1331,2.016,1365,1.735,1374,2.643,1386,1.735,1423,1.916,1424,1.399,1482,1.451,1504,2.111,1526,1.82,1536,1.684,1583,2.443,1592,1.304,1601,2.111,1618,2.605,1619,1.709,1626,2.147,1632,2.025,1645,2.157,1646,3.274,1656,1.334,1669,1.636,1675,1.988,1680,1.451,1693,2.516,1702,1.168,1705,2.69,1747,1.304,1780,2.315,1792,2.29,1869,1.194,1881,1.916,1887,2.111,1904,1.791,1905,2.376,1910,2.918,1930,1.897,1932,2.376,1954,2.016,2004,1.613,2039,1.951,2046,1.527,2050,3.065,2067,1.206,2171,2.516,2225,1.951,2226,6.29,2258,1.82,2259,1.709,2277,1.304,2283,1.988,2587,2.027,2629,4.102,2659,2.258,2699,1.883,2727,2.067,2778,2.69,2839,2.157,2870,2.157,2902,2.315,2949,1.636,2976,2.605,3023,6.282,3172,1.851,3174,2.345,3179,1.763,3189,2.067,3353,1.82,3424,2.376,3434,2.985,3511,1.548,3620,2.69,3655,2.067,3657,1.366,3661,1.883,3734,2.918,3799,2.942,3800,1.791,3885,2.258,3963,2.258,3984,1.883,3993,4.394,4039,1.735,4201,1.763,4274,2.258,4474,2.206,4483,3.497,4775,2.376,4782,2.258,4786,3.497,5029,3.662,5033,1.735,5081,2.258,5100,1.911,5159,3.065,5173,1.988,5174,3.065,5182,2.643,5222,2.795,5309,2.157,5313,1.916,5350,2.795,5404,3.47,5524,1.659,5592,2.69,5657,3.065,5667,2.795,5736,1.82,5778,2.443,6281,1.763,6285,2.067,6289,1.659,6292,2.795,6337,2.443,6367,1.988,6369,3.719,6375,1.488,6388,1.951,6419,1.636,6445,3.27,6446,2.598,6623,5.011,6626,2.918,6639,2.443,6656,2.918,6680,2.69,6825,2.918,6837,2.399,6888,2.69,6901,2.598,6904,3.83,6905,3.497,6918,3.25,6957,2.598,7076,6.12,7098,3.25,7272,2.69,7339,5.562,7373,2.69,7457,2.258,7519,3.065,7534,2.918,7567,3.25,7607,3.662,7707,5.845,7764,3.645,7800,3.497,7825,2.69,7943,4.375,7944,8.264,7948,3.497,7951,3.497,7958,3.497,8048,3.497,8049,3.25,8114,6.558,8153,2.69,8157,1.883,8158,1.883,8346,2.795,8410,2.918,8445,2.69,8446,3.065,8447,2.918,8495,3.872,8496,5.806,8497,6.046,8498,3.872,8499,3.872,8500,3.25,8501,3.497,8502,5.806,8503,6.965,8504,3.872,8505,3.25,8506,3.25,8507,3.497,8508,3.497,8509,3.872,8510,3.872,8511,3.872,8512,3.872,8513,3.872,8514,3.872,8515,3.872,8516,3.872,8517,3.872,8518,3.872,8519,3.872,8520,3.872,8521,3.872,8522,3.872,8523,3.872,8524,3.497,8525,6.965,8526,3.25,8527,3.872,8528,7.738,8529,3.25,8530,3.497,8531,3.497,8532,3.065,8533,3.872]],["description//tracks/90daysofdevops/day46",[]],["title//tracks/90daysofdevops/day45",[212,1.67,2491,3.793,6904,1.67,8534,4.791]],["content//tracks/90daysofdevops/day45",[2,1.638,6,0.358,15,2.056,18,1.279,25,1.638,26,0.546,29,1.309,32,1.476,38,1.008,44,1.144,53,1.915,58,2.138,65,0.623,68,1.017,70,1.81,71,1.715,73,1.812,74,0.794,75,1.284,80,0.833,83,2.107,101,1.689,102,1.415,105,0.981,107,1.777,109,1.279,111,1.594,113,1.872,118,2.083,120,0.898,124,1.159,126,1.238,136,1.683,137,1.027,139,1.374,141,1.063,144,1.504,159,1.279,164,1.501,173,1.401,175,0.968,176,1.701,191,1.273,203,1.182,206,2.002,216,0.89,219,1.074,225,1.108,230,0.84,234,1.17,238,1.774,245,1.415,246,1.192,251,1.805,259,1.357,261,1.408,268,2.006,272,1.568,288,0.962,289,1.972,295,1.869,300,2.031,301,2.576,306,2.49,331,1.182,333,1.222,335,2.067,342,1.546,343,1.644,351,1.501,352,1.182,354,1.457,356,0.854,362,1.759,374,1.683,375,1.208,381,1.464,383,1.12,397,0.925,422,1.056,423,1.132,459,2.26,462,1.472,464,1.983,471,2.482,473,3.448,474,3.301,476,1.464,479,1.341,485,2.023,490,1.374,519,1.524,528,2.412,536,1.37,548,2.26,554,1.905,555,1.426,556,1.81,560,1.504,568,2.218,575,1.546,592,2.114,593,0.927,598,1.445,600,1.465,626,1.108,628,1.074,636,1.25,637,2.278,638,1.689,639,1.942,646,2.445,647,1.59,655,1.279,675,3.239,678,1.905,709,2.114,718,1.341,742,0.971,758,1.621,777,1.745,778,1.501,785,1.169,799,1.87,800,2.56,831,2.578,845,1.546,849,1.953,854,3.115,905,0.788,907,1.192,910,1.132,915,1.524,917,0.943,918,0.641,930,2.342,931,1.96,934,1.837,991,1.886,993,2.056,998,1.638,1002,2.027,1015,2.834,1017,1.524,1021,1.085,1024,1.299,1026,3.503,1033,2.067,1036,1.208,1046,2.031,1049,1.638,1053,1.222,1061,1.614,1073,2.067,1080,2.49,1088,1.995,1100,1.805,1138,1.443,1179,2.578,1180,1.717,1202,2.218,1205,2.679,1208,1.697,1224,2.161,1229,2.114,1232,2.114,1234,1.294,1237,1.524,1241,2.796,1252,2.341,1255,1.408,1266,1.374,1271,3.908,1284,1.341,1292,1.942,1296,1.408,1300,2.375,1308,1.501,1331,1.074,1341,1.25,1361,1.905,1363,1.374,1370,2.938,1426,1.805,1437,1.982,1470,1.294,1479,2.218,1480,1.774,1482,1.391,1484,2.828,1550,2.49,1591,2.023,1639,1.12,1648,1.905,1650,2.218,1656,1.279,1672,2.067,1678,1.774,1680,1.391,1695,2.679,1702,1.697,1704,2.375,1713,2.938,1715,3.115,1720,2.277,1741,1.59,1792,1.464,1869,1.144,1880,1.982,1954,1.074,1979,2.909,1983,2.277,1984,2.834,1987,3.05,1993,2.277,2004,1.546,2024,3.361,2039,3.817,2054,3.781,2055,1.982,2079,2.578,2146,2.943,2186,3.547,2190,1.982,2233,2.578,2259,3.78,2270,2.277,2283,2.887,2365,2.796,2370,4.237,2438,2.412,2470,1.805,2587,1.942,2597,2.938,2645,2.164,2699,1.805,2765,1.87,2929,1.717,2976,2.286,3065,2.218,3145,2.023,3159,2.031,3174,2.286,3179,1.689,3304,1.905,3370,3.867,3426,2.134,3434,2.909,3516,2.277,3617,2.943,3658,3.56,3660,3.625,3696,1.742,3799,2.375,3926,2.341,3944,2.341,3946,2.277,3948,3.279,4201,1.689,4272,1.774,4415,1.638,4417,2.679,4449,1.982,4545,1.689,4620,3.115,5071,5.078,5127,1.982,5172,3.352,5173,1.905,5182,3.705,5222,2.679,5309,3.132,5524,1.59,5660,2.679,5927,2.49,6281,1.689,6285,1.982,6295,1.504,6301,2.067,6347,2.341,6375,1.426,6388,1.87,6419,3.199,6445,1.464,6489,2.49,6531,2.49,6565,2.679,6572,3.654,6634,2.412,6700,1.745,6707,2.938,6730,3.115,6771,8.041,6837,2.339,6847,3.279,6855,2.679,6904,3.823,6985,2.796,7000,3.547,7012,2.796,7082,2.218,7101,1.805,7111,2.796,7123,2.578,7178,1.837,7248,3.115,7271,7.587,7272,5.261,7315,3.115,7316,2.938,7401,2.679,7457,2.164,7654,2.938,7676,4.555,7764,4.482,7786,3.115,7798,2.578,7932,4.716,8053,3.115,8061,3.115,8081,2.796,8093,3.115,8153,2.578,8157,1.805,8158,1.805,8167,3.906,8190,3.115,8306,2.938,8445,2.578,8446,2.938,8482,3.352,8483,3.352,8535,3.711,8536,3.352,8537,3.711,8538,2.679,8539,3.352,8540,3.352,8541,3.352,8542,3.711,8543,3.711,8544,3.352,8545,2.796,8546,3.711,8547,3.711,8548,3.352,8549,3.711,8550,3.115,8551,3.352,8552,3.352,8553,3.711,8554,3.711,8555,3.711,8556,2.796,8557,3.352,8558,3.711,8559,5.623,8560,3.711,8561,3.711,8562,3.352,8563,5.623,8564,3.711,8565,3.352,8566,3.711,8567,3.115,8568,3.711,8569,3.711,8570,3.711,8571,3.711,8572,3.711,8573,3.115,8574,3.711]],["description//tracks/90daysofdevops/day45",[]],["title//tracks/90daysofdevops/day44",[164,1.039,675,1.138,2488,3.08,6904,2.031,7764,2.036]],["content//tracks/90daysofdevops/day44",[6,0.139,38,0.627,42,2.303,44,1.909,45,2.169,49,1.128,50,2.464,53,2.109,57,1.275,64,1.316,65,1.04,67,1.406,68,0.764,70,1.36,71,1.889,74,0.904,89,1.893,96,0.966,105,1.637,107,1.106,111,1.756,113,1.406,118,2.017,120,1.023,124,0.871,126,1.363,136,0.939,137,1.339,139,1.033,149,2.019,164,1.128,173,1.053,175,0.927,176,0.839,191,1.402,197,1.994,202,1.15,203,2.571,214,1.837,216,1.013,217,1.288,221,1.063,224,1.455,225,1.261,227,1.508,230,1.828,234,0.879,260,2.303,264,1.472,265,1.603,268,1.248,278,2.169,288,1.06,289,0.871,295,2.35,301,2.35,304,4.332,307,2.476,331,1.345,333,1.391,343,1.499,344,0.639,351,1.957,354,1.9,355,1.345,356,1.13,369,1.986,374,2.159,375,1.375,376,1.81,377,1.645,383,1.869,393,1.637,395,3.241,397,1.053,420,2.592,421,1.81,423,2.236,425,2.159,431,1.972,432,3.054,437,3.144,461,1.472,479,0.843,482,2.864,490,1.514,507,1.331,518,1.93,535,1.073,536,1.327,537,3.344,540,1.759,553,2.353,558,2.353,598,1.645,600,1.662,612,2.819,635,1.439,636,1.422,638,1.923,639,2.211,640,2.109,648,1.624,675,3.193,709,2.406,742,1.106,756,1.36,758,1.728,779,1.645,785,1.331,787,2.544,823,3.121,849,1.756,903,1.603,905,0.592,907,1.313,918,1.266,925,1.174,926,1.508,930,3.965,940,2.211,952,1.954,991,1.174,995,2.054,998,1.865,1002,1.849,1007,2.819,1015,4.527,1017,2.544,1019,2.264,1021,1.811,1024,1.645,1026,3.391,1028,3.528,1034,3.528,1036,1.375,1046,2.648,1055,1.235,1061,1.837,1079,1.624,1089,1.526,1103,1.735,1138,1.589,1180,2.864,1183,2.745,1198,2.054,1205,2.039,1234,1.472,1240,1.666,1246,2.129,1252,2.665,1266,2.714,1269,1.583,1271,3.999,1284,1.526,1292,2.211,1295,2.256,1296,1.603,1309,1.81,1315,1.666,1331,2.687,1362,3.065,1374,1.923,1424,1.526,1430,1.986,1451,2.303,1480,2.019,1482,1.583,1483,2.211,1484,2.579,1487,2.091,1488,1.735,1489,1.624,1516,2.159,1517,2.935,1526,1.986,1585,2.654,1610,2.264,1653,2.256,1654,2.525,1655,3.183,1656,1.455,1658,2.592,1674,2.129,1688,2.129,1702,1.275,1704,1.785,1720,2.592,1729,3.505,1786,2.237,1792,1.666,1826,2.834,1857,1.923,1869,1.302,1930,2.446,1931,3.528,1952,2.129,1984,2.129,1987,2.321,2005,2.129,2069,2.406,2098,4.293,2099,4.514,2158,2.464,2251,2.303,2283,2.169,2629,2.091,2662,2.509,2697,2.665,2724,2.935,2929,1.954,2976,2.469,3145,2.303,3154,2.526,3174,2.718,3179,3.338,3316,3.183,3426,1.603,3433,3.545,3434,1.81,3508,2.091,3657,1.49,3658,3.447,3660,2.256,3661,2.054,3696,1.084,3702,2.935,3779,2.665,3799,1.785,3980,2.303,4000,3.344,4118,2.091,4201,1.923,4253,3.183,4398,2.935,4415,3.236,4437,2.665,4721,2.525,4790,3.183,4865,3.815,5029,2.665,5260,3.049,5304,1.666,5350,3.049,5404,2.525,5457,1.785,5524,2.654,5542,2.169,5601,3.815,5637,1.666,5974,1.865,6186,2.665,6202,2.211,6281,1.923,6285,2.256,6337,2.665,6338,1.624,6366,2.129,6369,2.256,6406,3.183,6419,3.411,6445,1.666,6497,3.997,6499,3.815,6590,2.592,6642,2.935,6708,3.049,6720,2.353,6837,2.526,6904,3.833,6960,2.935,6994,5.197,7075,2.935,7078,3.545,7082,2.525,7091,3.183,7270,4.666,7272,6.241,7339,2.834,7457,2.464,7465,2.464,7476,2.745,7479,3.815,7646,3.344,7749,2.464,7764,4.702,7861,3.183,7944,4.902,7975,3.545,8081,3.183,8114,3.183,8123,3.815,8135,3.815,8153,2.935,8157,2.054,8158,2.054,8167,2.935,8195,3.049,8213,3.815,8374,3.815,8416,3.344,8445,2.935,8489,3.183,8492,6.621,8536,6.621,8540,3.815,8551,3.815,8575,4.224,8576,3.815,8577,4.224,8578,4.224,8579,3.815,8580,3.545,8581,4.224,8582,4.224,8583,6.193,8584,4.224,8585,6.193,8586,4.224,8587,4.224,8588,3.815,8589,4.224,8590,4.224,8591,4.224]],["description//tracks/90daysofdevops/day44",[]],["title//tracks/90daysofdevops/day43",[164,1.446,2486,4.289,6904,1.889]],["content//tracks/90daysofdevops/day43",[2,2.385,6,0.178,15,1.975,19,3.009,27,1.883,29,1.905,35,1.883,38,0.802,58,1.702,65,0.907,74,1.156,75,1.689,101,2.46,102,1.36,110,1.135,120,1.308,122,3.408,124,1.114,136,1.201,137,0.987,139,1.321,159,1.861,164,2.599,175,1.005,176,1.79,190,1.564,191,1.224,201,3.028,216,1.296,222,1.883,224,1.861,225,1.613,227,1.928,246,1.146,261,2.05,264,2.569,267,2.763,268,2.479,288,1.614,289,1.73,304,2.723,337,1.799,343,1.308,354,1.4,356,0.679,374,1.201,376,2.315,377,2.104,421,2.315,422,1.772,425,1.883,464,1.905,470,1.84,473,2.46,487,2.583,535,1.373,536,0.978,541,3.858,542,1.684,551,3.625,598,2.87,600,0.924,601,3.23,611,1.952,626,2.201,636,1.819,637,2.189,675,2.636,698,3.9,722,2.945,741,2.87,758,1.578,785,1.702,787,2.219,805,2.282,819,2.828,843,4.093,849,1.714,902,2.774,903,2.05,907,1.146,917,1.373,918,1.273,934,2.674,935,1.271,991,1.501,993,2.695,998,2.385,1002,1.613,1024,1.034,1046,1.952,1053,1.779,1056,3.9,1087,4.106,1088,1.955,1234,1.883,1240,2.908,1271,3.643,1292,2.828,1310,5.835,1315,2.131,1443,3.009,1451,2.945,1479,3.23,1485,2.828,1489,2.077,1497,3.625,1591,2.945,1599,3.465,1600,3.078,1610,1.975,1626,2.272,1627,3.715,1628,2.315,1632,2.359,1652,2.025,1656,1.861,1669,3.544,1690,2.46,1729,2.583,1869,1.666,1930,2.285,1987,2.025,2004,2.25,2067,1.684,2213,3.009,2283,2.774,2492,4.535,2608,4.277,2611,3.151,2619,3.753,2647,2.54,2662,3.4,2976,2.825,3147,2.945,3154,1.861,3159,1.952,3189,2.885,3434,3.159,3495,1.861,3655,4.813,3657,1.905,3696,1.892,3699,2.35,3700,2.219,3779,5.951,3836,4.535,3990,4.277,4118,2.674,4201,3.356,4398,3.753,4721,3.23,4839,4.879,5127,2.885,5171,3.315,5974,2.385,6191,4.277,6281,2.46,6285,2.885,6338,2.077,6700,2.54,6837,2.891,6858,3.009,6904,3.937,6906,4.071,6960,5.829,6966,6.322,6974,3.23,7041,4.277,7075,3.753,7076,4.299,7101,2.627,7170,2.885,7271,6.792,7316,4.277,7457,3.151,7485,3.408,7506,4.277,7749,3.151,7764,5.096,7861,4.071,7977,2.945,8010,3.753,8153,3.753,8157,2.627,8158,2.627,8245,4.071,8299,4.535,8361,4.879,8417,6.187,8433,4.879,8434,5.835,8437,4.879,8445,3.753,8489,4.071,8532,4.277,8538,3.9,8544,4.879,8552,4.879,8592,5.403,8593,5.403,8594,4.535,8595,5.403,8596,5.403,8597,5.403,8598,5.403,8599,4.879,8600,4.071,8601,7.372,8602,4.535,8603,5.403,8604,4.535]],["description//tracks/90daysofdevops/day43",[]],["title//tracks/90daysofdevops/day42",[1271,2.279,2457,4.051]],["content//tracks/90daysofdevops/day42",[6,0.354,7,1.422,15,1.843,25,1.422,26,0.474,29,1.136,30,1.003,32,1.37,38,0.478,42,1.755,53,1.097,55,1.755,65,1.281,68,1.124,74,1.329,75,1.865,80,0.722,91,1.466,96,0.736,105,0.851,111,1.993,116,2.871,124,0.664,126,1.367,136,1.999,147,0.818,155,1.976,159,1.109,164,1.876,175,0.725,176,0.64,183,1.27,191,1.832,195,1.925,197,2,206,1.642,207,1.653,208,3.917,212,2.165,216,0.772,217,1.894,218,1.834,220,1.976,221,1.563,226,2.1,227,1.149,229,1.305,230,1.407,235,0.972,238,2.41,246,1.317,265,1.913,267,2.328,268,2.254,288,1.063,289,1.668,295,2.087,296,2.549,297,3.189,301,1.222,343,1.701,344,0.332,351,0.86,352,1.978,355,1.025,356,0.884,362,1.821,374,1.999,376,1.38,377,1.254,393,1.642,397,2.107,398,2.37,422,1.32,423,0.982,425,1.122,427,2.667,431,1.605,437,1.963,459,1.678,461,1.757,462,1.626,464,1.136,476,3.858,479,0.438,482,2.332,488,1.037,489,1.514,507,1.014,517,1.566,535,0.818,536,1.697,539,1.834,540,2.1,542,1.003,551,3.382,555,1.238,568,3.013,593,0.531,600,1.539,604,3.317,626,2.687,632,2.237,635,1.097,636,2.091,646,2.192,647,1.38,649,3.639,675,2.917,742,1.626,756,1.623,758,1.504,765,2.427,778,1.346,785,1.014,787,1.323,856,1.323,857,2.873,867,1.06,902,3.189,907,1.715,909,1.505,915,1.323,917,1.281,918,0.871,930,2.1,939,1.177,951,2.94,998,2.225,1002,0.962,1018,2.288,1021,0.942,1024,1.345,1033,2.808,1036,1.641,1053,1.06,1055,2.055,1065,2.325,1078,1.794,1088,2.221,1089,1.163,1106,2.237,1143,2.551,1150,2.093,1180,1.49,1198,1.566,1205,3.458,1206,2.495,1208,0.972,1240,1.27,1266,2.299,1268,3.317,1271,4.045,1287,1.49,1288,1.686,1293,1.794,1295,1.72,1296,2.895,1297,1.755,1302,4.301,1303,1.878,1361,1.653,1363,1.192,1435,2.92,1436,2.549,1443,2.808,1451,1.755,1470,1.757,1484,1.341,1487,2.495,1506,5.563,1517,2.237,1585,1.38,1592,1.084,1610,1.843,1626,2.494,1628,1.38,1630,1.623,1632,1.626,1639,1.521,1646,1.514,1648,2.588,1652,2.328,1653,1.72,1654,1.925,1656,1.109,1669,1.36,1674,1.623,1678,3.647,1680,3.169,1690,2.295,1695,2.325,1702,1.521,1704,2.969,1721,2.237,1742,1.49,1745,1.238,1750,1.49,1786,1.821,1829,1.207,1858,1.222,1861,2.237,1863,2.225,1869,0.993,1887,2.748,1912,1.305,1930,2.716,1931,2.871,1952,1.623,1987,3.936,1988,3.189,2013,4.816,2033,3.639,2046,1.27,2047,5.874,2057,3.622,2067,2.19,2192,2.549,2211,2.94,2240,3.093,2258,1.514,2277,2.366,2283,1.653,2438,2.093,2470,1.566,2570,1.623,2647,1.514,2660,2.093,2662,3.546,2698,3.13,2976,2.091,3013,1.72,3065,1.925,3067,2.093,3149,2.549,3152,2.237,3154,1.109,3159,1.821,3189,3.752,3198,2.032,3314,2.703,3349,2.325,3353,3.586,3394,1.341,3426,1.913,3434,1.38,3495,2.14,3585,2.427,3661,2.451,3696,1.957,3708,3.382,3764,3.622,3811,2.37,3891,1.566,3984,2.451,4029,3.18,4081,2.161,4123,2.093,4157,2.161,4230,2.427,4271,1.4,4272,1.539,4341,2.703,4417,2.325,4474,1.834,4485,2.703,4497,2.16,4616,2.032,4635,4.552,4712,4.484,4768,2.325,4775,3.811,4782,2.94,4827,2.032,4870,2.032,4989,1.514,5100,1.06,5238,3.99,5323,1.686,5345,2.549,5360,1.976,5404,1.925,5542,3.189,5549,1.976,5637,1.989,5736,1.514,5974,1.422,6281,1.466,6285,1.72,6300,1.466,6301,1.794,6304,2.161,6307,3.502,6308,2.703,6332,4.484,6364,2.587,6365,2.325,6373,2.237,6375,1.238,6656,2.427,6663,2.325,6759,2.703,6815,2.908,6837,2.14,6857,2.427,6873,4.315,6903,2.908,6904,2.947,6942,3.639,7067,1.925,7170,2.692,7259,2.093,7261,2.549,7289,2.325,7364,1.834,7420,2.325,7470,2.549,7484,2.908,7488,2.908,7533,2.427,7882,2.427,7920,2.703,7934,3.502,7978,2.703,8013,2.427,8076,2.549,8129,2.549,8157,1.566,8158,1.566,8164,2.703,8167,5.62,8188,2.908,8189,5.213,8190,2.703,8242,4.231,8248,2.703,8303,4.315,8353,3.798,8410,4.68,8416,2.549,8445,2.237,8491,2.703,8529,2.703,8530,2.908,8538,2.325,8602,5.213,8605,3.22,8606,3.22,8607,2.703,8608,2.908,8609,3.22,8610,3.22,8611,3.22,8612,3.22,8613,5.041,8614,3.22,8615,2.549,8616,3.22,8617,2.908,8618,3.22,8619,3.22,8620,4.68,8621,2.908,8622,3.22,8623,2.703,8624,3.22,8625,3.22,8626,3.22,8627,3.22,8628,2.908,8629,3.22,8630,5.041,8631,3.22,8632,3.22,8633,3.22,8634,3.22,8635,3.22,8636,2.908,8637,4.231,8638,2.908,8639,2.093,8640,2.908,8641,5.041,8642,2.908,8643,5.041,8644,2.908]],["description//tracks/90daysofdevops/day42",[75,0.829,268,1.445,6904,1.705,8645,4.417]],["title//tracks/90daysofdevops/day41",[65,0.653,224,1.34,225,1.162,991,1.081,1088,0.907,2437,3.265]],["content//tracks/90daysofdevops/day41",[1,1.447,2,2.05,6,0.153,26,1.138,32,1.293,34,1.516,44,2.861,49,1.239,56,3.522,64,2.41,65,1.417,70,1.495,73,2.831,74,1.655,75,1.124,96,1.061,107,2.024,114,0.832,122,2.929,124,0.957,126,1.857,139,1.135,141,1.33,147,1.18,158,1.785,173,1.928,175,0.479,176,1.317,197,1.495,202,1.806,203,2.687,216,1.113,219,2.239,222,3.594,224,2.285,225,1.98,229,1.881,230,1.502,251,3.225,285,3.225,288,1.444,289,1.739,300,2.395,333,2.183,343,1.605,344,0.479,351,2.065,354,1.203,356,0.973,359,2.485,366,2.183,374,1.983,378,1.99,383,1.401,393,1.753,401,3.017,422,0.872,423,1.416,434,3.897,467,1.401,472,1.832,476,1.832,479,1.053,485,3.615,490,1.891,507,2.089,519,2.724,536,0.84,550,2.549,560,1.881,564,2.645,568,2.776,582,2.776,600,1.588,606,1.657,612,2.114,636,1.563,638,2.114,640,2.258,646,2.019,663,2.258,718,1.677,722,3.615,741,3.012,742,1.215,757,2.258,758,1.655,760,3.615,805,1.961,832,2.34,849,0.948,859,3.268,867,1.528,918,0.802,925,1.29,930,1.934,934,2.298,938,2.044,939,1.698,951,2.708,952,4.127,991,1.29,1002,2.31,1019,2.828,1021,1.939,1024,1.269,1059,3.282,1061,2.019,1066,1.719,1076,2.05,1088,2.162,1103,1.907,1181,2.114,1187,2.183,1191,2.776,1208,1.401,1226,2.479,1227,3.225,1237,2.724,1240,1.832,1242,2.43,1246,2.34,1255,1.762,1266,2.454,1271,2.424,1284,1.677,1291,3.499,1297,2.531,1299,2.34,1331,1.344,1362,3.282,1365,2.972,1404,5.63,1405,1.677,1450,2.708,1470,1.618,1472,3.499,1474,2.586,1477,3.017,1478,1.907,1482,2.485,1483,2.43,1488,4.084,1489,3.567,1491,3.017,1499,3.225,1524,2.708,1528,2.019,1529,2.479,1539,2.645,1541,3.115,1597,2.148,1618,1.563,1626,2.044,1628,1.99,1638,3.897,1647,3.282,1651,1.99,1654,2.776,1678,2.219,1681,2.929,1720,2.849,1736,5.799,1786,1.677,1803,2.531,1869,1.431,1912,1.881,1932,2.849,1978,2.645,2039,2.34,2071,3.675,2221,5.027,2259,2.05,2382,1.74,2723,2.776,2803,3.897,2832,3.225,2838,2.929,2976,3.005,3008,2.479,3099,3.225,3145,2.531,3174,3.501,3187,3.225,3213,2.929,3394,1.934,3426,2.517,3546,2.708,3619,2.531,3677,3.675,3707,3.897,3708,4.449,3803,1.74,4034,2.929,4125,3.675,4415,2.05,4501,3.675,4776,3.351,4805,3.017,4830,3.867,4921,4.997,4962,4.193,5128,2.384,5153,1.99,5158,1.6,5177,2.929,5207,3.017,5260,3.351,5291,3.351,5292,4.193,5304,1.832,5524,1.99,5704,2.849,5927,3.115,6004,2.183,6083,3.675,6295,1.881,6301,2.586,6338,1.785,6371,4.449,6374,5.249,6379,3.225,6389,7.081,6441,3.675,6529,3.499,6572,5.799,6590,2.849,6639,5.323,6834,2.645,6837,2.665,6885,3.351,6895,6.123,6942,3.351,6977,3.115,7082,2.776,7089,2.849,7178,2.298,7181,3.675,7183,3.675,7326,2.384,7363,3.351,7364,5.083,7382,3.017,7419,3.017,7467,4.607,7475,3.351,7476,3.017,7483,3.675,7489,3.351,7798,3.225,7933,3.675,7977,2.531,8105,4.193,8505,5.565,8532,3.675,8646,4.643,8647,5.565,8648,4.643,8649,9.28,8650,7.735,8651,4.643,8652,4.643,8653,4.643,8654,4.787,8655,4.643,8656,4.643,8657,4.643,8658,4.643,8659,3.115,8660,3.897,8661,6.631,8662,4.643,8663,4.643,8664,4.643,8665,4.643,8666,4.643,8667,4.643,8668,4.193,8669,4.643,8670,4.643,8671,4.643,8672,4.193,8673,4.643,8674,4.643,8675,4.643,8676,4.643,8677,4.643,8678,3.675,8679,6.631,8680,4.607,8681,4.643,8682,4.643,8683,4.643,8684,3.351,8685,3.351,8686,3.017,8687,3.675]],["description//tracks/90daysofdevops/day41",[]],["title//tracks/90daysofdevops/day40",[6,0.192,1489,1.495,2159,2.703,7467,2.703,8685,2.808]],["content//tracks/90daysofdevops/day40",[1,0.959,6,0.284,7,1.358,14,0.939,26,0.715,27,1.073,31,1.06,34,1.706,37,1.84,38,1.018,44,2.301,49,0.821,53,1.048,56,1.846,57,2.068,64,1.879,65,1.688,68,1.091,70,2.675,71,2.277,73,2.639,75,0.522,77,2.084,80,0.69,94,1.795,96,1.112,105,1.811,110,1.746,111,0.873,113,1.024,118,1.338,122,1.941,124,0.634,126,1.328,127,1.611,132,2.583,136,1.34,137,1.102,139,0.752,143,1.611,147,1.236,158,1.183,159,1.06,173,0.767,175,0.819,183,1.214,191,1.102,197,1.566,198,1.496,202,0.838,203,2.646,204,2.031,215,1.523,216,1.166,217,2.628,219,1.746,221,0.774,222,3.412,224,1.676,225,2.37,227,1.098,230,2.057,235,1.468,245,0.774,246,0.652,251,2.365,263,1.944,267,1.153,272,1.3,278,1.58,285,2.138,288,1.358,289,1.243,293,2.287,307,1.23,333,1.013,337,2.008,343,0.745,344,0.318,354,1.26,355,0.98,356,1.083,359,1.153,362,0.797,369,2.287,374,1.971,375,1.583,376,2.084,377,1.198,378,1.319,393,2.097,397,0.767,398,1.447,422,1.287,423,1.84,426,1.677,431,1.921,433,3.096,435,1.58,437,1.198,441,1.338,459,1.024,462,1.273,464,1.085,472,1.214,473,1.401,479,0.821,485,1.677,487,1.471,488,0.991,490,1.189,507,1.9,521,1.941,536,1.351,540,1.282,542,0.959,548,1.024,550,1.87,553,1.714,560,2.444,568,1.84,585,3.161,600,1.656,601,1.84,602,1.58,604,1.643,611,1.112,628,1.408,635,2.054,636,1.036,638,1.401,639,1.611,648,2.318,655,1.676,663,1.496,670,1.795,722,2.651,742,1.273,745,0.919,758,1.983,760,2.651,774,1.638,778,0.821,787,1.264,805,1.3,817,1.484,828,2.407,845,2.512,849,0.993,852,1.447,858,1.753,859,3.153,867,1.013,905,1.165,907,1.682,909,0.919,917,1.236,918,0.84,925,1.351,930,1.282,931,1.073,935,1.144,938,2.097,940,1.611,952,1.423,955,2.837,991,0.855,1002,2.047,1007,1.401,1015,4.577,1018,1.002,1019,3.387,1021,2.321,1024,1.428,1028,1.753,1043,1.753,1053,1.013,1055,2.004,1061,3.747,1066,1.139,1071,2.221,1087,1.714,1088,1.133,1089,1.112,1103,1.264,1106,2.138,1110,1.125,1121,2.908,1138,1.248,1143,1.264,1175,2.138,1197,1.611,1205,1.013,1208,1.82,1226,1.643,1227,2.138,1229,1.753,1232,1.753,1234,1.695,1237,1.998,1244,2.065,1246,1.551,1254,1.58,1266,1.8,1269,1.823,1287,1.423,1296,1.168,1297,1.677,1299,1.551,1309,1.319,1314,2.221,1315,1.214,1331,2.16,1361,2.497,1362,2.407,1363,1.139,1365,2.18,1371,3.805,1404,4.709,1424,1.112,1425,2.436,1430,2.287,1433,2.779,1435,4.169,1450,1.795,1470,1.073,1478,1.264,1482,2.797,1488,3.806,1489,4.102,1491,2,1493,2.221,1516,1.073,1524,1.795,1533,2.583,1592,1.036,1594,1.84,1618,1.036,1626,0.949,1627,1.551,1630,3.039,1632,0.805,1639,1.82,1646,1.447,1651,2.084,1656,2.078,1672,1.714,1680,1.823,1688,2.451,1690,1.401,1694,1.379,1701,3.096,1725,2.319,1730,2.583,1732,2.436,1736,3.161,1747,1.036,1765,1.795,1775,2.221,1786,2.178,1792,1.919,1803,1.677,1857,1.401,1858,1.168,1869,1.499,1880,1.643,1912,1.247,1930,1.325,1943,1.941,1952,3.039,1953,2.319,1954,1.408,1955,1.471,1987,1.153,1988,2.497,2001,2.651,2005,1.551,2035,2.651,2046,1.919,2067,2.326,2159,2.138,2211,1.795,2218,1.84,2225,1.551,2258,1.447,2259,1.358,2264,1.888,2333,1.401,2364,1.676,2369,2,2382,1.153,2438,2,2570,1.551,2643,1.379,2698,1.551,2724,3.379,2820,1.401,2838,1.941,2870,1.714,2929,2.25,2932,2.451,2949,1.3,2976,2.513,3092,2.319,3099,2.138,3154,1.06,3159,1.112,3172,1.471,3174,3.683,3187,1.496,3305,1.551,3394,1.282,3426,1.168,3495,2.078,3508,2.407,3511,3.172,3546,1.795,3661,1.496,3699,2.115,3700,1.264,3708,2.065,3799,1.3,3800,1.423,3803,1.153,3806,2.583,3891,1.496,3913,6.219,3915,1.471,3944,1.941,3963,1.795,3970,2.583,3978,4.353,4067,1.611,4079,1.611,4091,2,4109,3.263,4118,2.407,4201,1.401,4229,1.496,4365,3.511,4415,1.358,4459,1.338,4461,2.221,4480,3.919,4501,2.436,4554,1.753,4576,2.779,4721,3.605,4755,2.583,4790,2.319,4889,2.319,4989,1.447,5074,1.84,5122,1.282,5128,1.58,5153,1.319,5158,1.06,5177,3.068,5207,2,5260,2.221,5291,2.221,5299,1.714,5300,3.276,5304,2.379,5315,1.888,5324,1.423,5337,1.795,5377,3.736,5397,1.84,5524,1.319,5542,1.58,5770,2.779,5815,1.888,5816,2.583,5948,2.221,5974,2.147,6004,1.447,6027,2,6147,2.065,6289,2.585,6305,2.25,6325,2.221,6339,1.423,6364,2.026,6373,2.138,6374,2.436,6375,1.87,6379,2.138,6388,1.551,6406,2.319,6445,1.214,6572,4.85,6639,4.709,6656,2.319,6659,2.583,6689,3.161,6723,2.319,6741,1.677,6832,3.665,6834,1.753,6837,2.078,6885,2.221,6895,3.85,6896,2.065,6909,2.138,6923,2.771,6925,2.779,7004,1.888,7063,3.85,7066,3.068,7082,2.908,7103,2.221,7111,2.319,7113,2.583,7123,2.138,7156,2,7166,2.583,7170,1.643,7178,1.523,7205,1.84,7209,1.714,7247,2.138,7255,2.583,7326,1.58,7364,2.771,7382,2,7467,5.185,7473,2.583,7476,2,7533,2.319,7692,2.221,7764,1.611,7788,2.065,7818,3.511,7861,2.319,7871,2.065,7915,4.082,8055,2.138,8058,2.779,8077,2.583,8095,2.436,8156,3.379,8240,4.082,8300,1.677,8306,2.436,8346,2.221,8413,2.779,8505,5.752,8526,2.583,8659,2.065,8685,4.353,8686,2,8687,2.436,8688,2.221,8689,3.077,8690,2.779,8691,3.077,8692,4.864,8693,1.84,8694,3.077,8695,2.436,8696,4.864,8697,2.583,8698,2.779,8699,2.436,8700,2.779,8701,3.077,8702,3.077,8703,3.077,8704,2.583,8705,2.583,8706,4.864,8707,3.077,8708,3.077,8709,2.583,8710,3.077,8711,3.077,8712,3.077,8713,6.854,8714,3.077,8715,3.077,8716,3.077,8717,3.077,8718,3.077,8719,3.077,8720,3.077,8721,6.854,8722,3.077,8723,3.077,8724,4.864,8725,4.864,8726,3.077,8727,3.077,8728,3.161,8729,2.583,8730,3.077,8731,2.779,8732,3.077,8733,3.077,8734,3.077,8735,3.077]],["description//tracks/90daysofdevops/day40",[228,4.105,1478,2.009,1488,2.009,3174,1.647]],["title//tracks/90daysofdevops/day39",[331,1.367,1246,2.164,2348,3.604,3272,2.392,8736,3.399]],["content//tracks/90daysofdevops/day39",[6,0.27,14,1.737,25,2.514,26,0.837,31,1.3,32,0.736,34,1.302,49,1.007,53,1.285,57,1.139,59,2.844,65,0.956,68,1.667,70,1.215,71,1.737,73,2.696,80,0.847,96,0.863,102,2.063,105,2.019,107,1.795,109,1.962,111,1.07,113,1.896,114,0.677,124,1.414,126,1.254,136,1.265,137,0.689,139,1.392,141,1.081,149,1.804,154,2.201,158,2.189,159,1.962,173,2.043,175,1.042,183,3.234,191,1.29,192,1.868,197,1.215,202,1.028,203,1.202,216,0.905,217,2.092,219,1.648,222,2.662,225,1.127,230,1.553,234,1.185,263,2.276,264,2.39,268,1.115,288,0.974,289,2.22,295,2.127,331,2.184,343,1.985,344,0.588,351,1.831,352,1.202,354,0.978,355,1.202,356,1.031,359,1.414,361,2.015,362,0.978,372,1.594,374,2.047,375,1.229,376,2.44,377,2.217,378,2.44,381,1.489,393,1.505,422,0.709,423,1.151,425,1.985,432,1.572,437,1.469,459,1.256,467,1.719,489,1.774,490,1.392,518,1.774,535,0.959,536,0.683,540,1.572,542,1.176,550,1.451,554,2.924,555,1.451,562,2.316,569,2.724,575,2.856,583,2.256,593,0.938,600,1.743,601,4.566,602,1.938,604,2.015,626,1.127,635,1.285,636,1.271,640,1.939,654,2.987,663,1.835,670,2.201,742,1.49,755,1.666,756,1.215,758,1.219,760,3.104,771,2.201,778,1.007,784,2.452,785,2.406,787,1.55,827,2.256,843,1.55,849,2.081,867,1.242,887,2.622,903,1.432,905,0.529,909,2.048,910,1.151,911,2.452,925,1.582,927,2.622,930,1.572,937,2.987,938,1.813,940,1.975,989,1.938,991,2.278,1002,1.127,1018,1.854,1019,2.082,1021,2.234,1024,1.569,1025,2.381,1046,1.363,1050,2.987,1053,1.242,1055,2.234,1061,2.476,1088,1.327,1107,2.87,1138,0.968,1151,3.533,1181,1.718,1191,2.256,1237,1.55,1240,1.489,1246,3.849,1266,2.108,1336,1.804,1362,1.868,1365,2.552,1374,1.718,1424,1.363,1434,2.987,1437,3.041,1447,1.271,1468,3.167,1476,4.291,1477,5.327,1480,1.804,1483,1.975,1488,4.549,1489,2.636,1515,4.601,1524,2.201,1528,3.322,1555,3.404,1592,1.271,1630,1.902,1632,1.999,1639,1.139,1660,2.844,1669,1.594,1759,2.201,1765,2.201,1769,3.922,1786,2.477,1803,2.057,1814,2.724,1846,4.779,1857,3.122,1881,1.868,1954,1.092,2014,2.987,2045,2.057,2052,1.835,2080,5.429,2190,3.041,2259,4.161,2276,3.167,2324,2.057,2364,1.3,2470,1.835,2552,6.489,2570,1.902,2659,2.201,2710,2.622,2856,2.015,2904,2.924,2976,2.309,3008,2.015,3119,2.724,3174,2.309,3213,2.381,3238,2.987,3270,2.844,3272,4.254,3353,1.774,3495,1.3,3511,2.276,3619,2.057,3708,5.5,3799,1.594,3800,1.746,3811,1.774,3860,3.408,3885,2.201,3916,2.532,4127,2.844,4141,2.724,4410,4.111,4413,2.987,4432,2.381,4830,2.201,5043,1.868,5128,1.938,5158,1.3,5207,2.452,5291,2.724,5309,2.102,5315,2.316,5332,2.381,5350,2.724,5493,3.956,5542,1.938,5550,2.981,5699,3.167,5736,1.774,5763,2.532,5842,2.532,5865,2.452,6047,5.514,6289,1.617,6301,2.102,6333,4.764,6344,5.125,6375,1.451,6379,2.622,6489,2.532,6579,2.724,6636,3.408,6637,3.408,6645,3.408,6646,3.167,6700,1.774,6720,2.102,6766,3.408,6834,2.15,6837,1.962,6933,3.408,6985,2.844,7234,2.987,7274,5.097,7404,2.532,7409,5.168,7419,2.452,7420,2.724,7443,2.622,7457,2.201,7476,6.5,7497,3.408,7533,5.168,7768,3.408,7798,3.956,7874,3.408,7920,3.167,8365,5.506,8548,3.408,8567,3.167,8654,6.458,8659,6.836,8678,6.489,8687,2.987,8699,2.987,8700,3.408,8705,4.779,8731,3.408,8736,4.508,8737,3.774,8738,3.774,8739,3.774,8740,3.774,8741,6.411,8742,3.774,8743,3.167,8744,3.774,8745,3.774,8746,3.774,8747,6.858,8748,3.774,8749,3.774,8750,5.695,8751,3.408,8752,3.774,8753,5.695,8754,3.774,8755,3.408,8756,7.638,8757,3.408,8758,5.756,8759,3.774,8760,3.774,8761,3.408,8762,3.408,8763,3.408,8764,3.774,8765,6.194,8766,2.844,8767,3.408,8768,3.774,8769,3.774,8770,3.774,8771,3.774,8772,7.784,8773,6.177,8774,3.774,8775,5.695,8776,3.774,8777,3.774,8778,3.774,8779,3.408,8780,3.774,8781,3.774,8782,3.774,8783,3.774,8784,3.774,8785,3.774,8786,3.167,8787,3.408]],["description//tracks/90daysofdevops/day39",[105,1.054,331,1.27,1246,2.01,1488,1.639,3272,2.222,8736,3.158]],["title//tracks/90daysofdevops/day38",[73,1.446,2344,4.289,7274,3.086]],["content//tracks/90daysofdevops/day38",[6,0.292,7,2.025,14,1.399,35,1.599,38,0.976,45,2.355,57,1.384,65,0.77,68,1.518,71,2.343,73,2.685,74,0.982,80,1.475,83,2.464,99,6.448,109,1.58,126,1.447,138,3.631,141,1.314,160,2.981,173,2.564,175,0.793,183,2.593,191,1.489,206,1.212,216,1.1,222,3.455,234,1.981,246,1.629,270,1.91,289,2.275,292,2.814,295,1.132,329,3.186,331,2.093,343,1.11,344,0.473,354,1.991,356,0.577,359,2.464,361,2.449,374,1.019,397,1.143,458,4.41,468,1.884,472,3.031,479,0.624,485,2.5,507,1.445,518,1.429,550,1.763,556,1.477,575,4.284,582,2.742,593,1.464,600,0.785,611,3.031,639,2.401,640,1.562,663,2.23,670,3.834,678,2.355,701,2.814,702,2.156,714,2.401,758,0.982,760,3.583,767,2.675,770,2.613,777,2.156,805,1.938,823,3.313,835,5.937,849,1.944,875,3.186,882,2.355,896,2.814,918,0.792,931,2.925,938,1.212,989,3.944,1023,2.401,1046,2.374,1054,1.809,1066,1.698,1088,1.069,1138,1.177,1181,2.088,1234,1.599,1237,1.884,1300,3.246,1308,1.224,1364,3.447,1365,2.946,1401,3.456,1404,2.894,1456,3.456,1470,2.291,1483,2.401,1488,4.533,1489,2.527,1528,3.649,1529,2.449,1645,2.555,1661,1.562,1694,2.056,1747,1.544,1792,1.809,1826,3.077,1849,2.981,1855,4.48,1863,2.025,1871,3.077,1886,4.033,1890,3.497,1930,1.79,1934,2.981,1954,1.328,1956,4.673,1965,3.85,2052,2.23,2125,2.675,2333,2.088,2552,6.082,2564,2.992,2659,2.675,2662,1.858,2765,2.311,2768,4.993,2832,3.186,2856,3.51,2937,2.894,2976,2.587,3076,4.567,3143,2.27,3174,2.587,3281,1.637,3437,3.186,3504,2.555,3948,2.675,3965,3.631,3997,3.456,4274,2.675,4314,2.401,4424,1.966,4432,4.147,4782,2.675,4872,3.186,5040,8.021,5074,2.742,5128,2.355,5132,2.814,5158,1.58,5167,4.142,5177,4.847,5203,3.311,5207,2.981,5215,2.675,5224,3.631,5373,2.449,5397,2.742,5398,3.85,5406,7.578,5542,2.355,5556,3.186,5676,3.744,5772,2.449,5842,5.155,5869,6.938,6083,3.631,6120,5.517,6305,2.121,6323,3.631,6324,3.631,6353,3.077,6419,1.938,6489,5.155,6720,2.555,6741,2.5,6742,6.411,6811,4.142,6834,2.613,6837,2.265,6991,3.186,7181,3.631,7274,5.546,7382,2.981,7409,3.456,7460,4.142,7470,5.204,7476,2.981,7539,3.631,7591,3.077,7786,3.85,8061,6.448,8117,8.347,8529,5.517,8545,3.456,8556,6.323,8654,6.411,8659,6.201,8693,2.742,8705,6.448,8743,3.85,8773,4.953,8788,4.587,8789,4.587,8790,3.186,8791,4.587,8792,4.587,8793,4.587,8794,4.587,8795,4.587,8796,3.85,8797,3.631,8798,4.587,8799,4.587,8800,4.587,8801,4.142,8802,4.587,8803,4.587,8804,4.587,8805,4.587,8806,4.587,8807,4.587,8808,9.085,8809,4.587,8810,4.142,8811,5.937,8812,4.587,8813,4.587,8814,3.186,8815,4.142,8816,4.587,8817,6.938,8818,4.142,8819,4.587,8820,4.587,8821,4.587,8822,4.142,8823,4.587,8824,4.142,8825,4.587,8826,4.587,8827,4.587,8828,3.631,8829,4.587,8830,4.587,8831,4.142,8832,4.587,8833,4.587,8834,3.631,8835,4.587,8836,4.587,8837,3.311,8838,8.391,8839,4.587,8840,4.587,8841,4.587,8842,4.587,8843,4.587,8844,4.587,8845,6.574,8846,4.587,8847,4.587,8848,4.142]],["description//tracks/90daysofdevops/day38",[73,1.305,289,1.008,1488,2.009,7274,2.786]],["title//tracks/90daysofdevops/day37",[1488,2.226,2330,4.289,8307,4.289]],["content//tracks/90daysofdevops/day37",[2,1.254,6,0.377,8,2.078,14,2.704,17,2.343,26,0.671,34,0.65,38,0.849,53,0.968,65,1.1,67,1.904,68,1.298,70,1.842,71,0.866,73,2.418,77,1.218,83,1.065,96,0.65,100,5.14,101,1.293,105,1.731,111,1.294,113,0.946,118,1.573,126,0.625,137,1.045,141,1.307,149,1.358,159,0.979,164,0.758,165,1.698,173,0.708,175,0.831,183,1.8,190,1.321,191,0.643,192,1.406,201,1.167,203,2.44,204,0.957,208,1.459,216,1.094,217,0.866,218,1.618,219,0.822,221,1.148,222,1.591,225,1.363,226,1.901,227,1.629,230,1.295,235,1.377,238,1.358,240,1.014,245,1.148,246,0.602,247,2.046,261,1.078,263,1.136,267,1.065,288,0.486,289,1.66,293,1.336,295,0.701,300,2.066,329,3.17,331,2.666,356,0.357,359,1.71,374,0.631,378,1.218,379,2.051,397,0.708,398,1.336,402,1.487,420,1.743,422,1.074,425,0.99,435,1.459,437,1.777,453,3.974,461,0.99,467,0.857,468,1.875,470,0.968,472,1.121,479,1.096,487,1.358,490,1.754,518,0.885,536,0.826,542,0.885,550,1.092,562,1.743,564,2.6,571,1.698,575,3.354,593,0.943,600,1.121,602,1.459,603,1.743,626,1.363,628,1.896,635,0.968,636,1.926,637,1.151,640,0.968,648,1.092,663,1.381,670,1.657,695,3.613,714,1.487,718,1.026,741,1.777,756,1.469,758,1.535,760,2.488,771,3.336,778,0.758,787,1.167,817,1.392,823,1.432,849,1.915,901,1.052,909,1.363,915,1.167,917,0.722,918,0.788,923,2.249,926,1.014,931,0.99,934,2.831,935,0.668,938,1.206,991,2.4,1012,1.406,1018,2.335,1021,0.831,1024,0.873,1034,1.618,1037,1.406,1055,2.448,1061,3.12,1076,1.254,1088,0.662,1089,1.026,1100,2.219,1110,1.039,1140,6.078,1151,2.111,1175,1.974,1181,1.293,1193,2.249,1208,1.726,1234,0.99,1243,1.743,1246,1.432,1269,1.065,1297,1.549,1308,1.527,1320,1.582,1331,0.822,1336,4.33,1363,1.052,1364,2.35,1365,2.046,1375,1.792,1426,1.381,1476,5.773,1478,1.167,1480,1.358,1483,3.755,1488,4.649,1489,2.199,1491,2.966,1503,3.613,1516,2.283,1536,1.235,1538,1.846,1555,5.164,1592,0.957,1626,0.876,1632,1.878,1639,0.857,1647,2.259,1653,1.517,1672,1.582,1680,1.065,1690,1.293,1720,1.743,1721,4.984,1729,1.358,1776,1.792,1802,2.879,1869,0.876,1886,1.743,1890,1.293,1905,1.743,1912,1.849,1916,1.657,1930,1.954,1954,0.822,1956,2.542,1977,2.566,2001,1.549,2006,2.219,2013,1.618,2022,2.249,2052,1.381,2259,3.695,2260,1.846,2297,2.141,2317,2.141,2321,2.051,2324,2.488,2365,2.141,2438,1.846,2468,4.483,2496,2.051,2693,1.235,2716,1.743,2721,1.974,2765,1.432,2831,2.249,2856,2.437,2904,4.813,2949,1.2,2976,1.926,3013,1.517,3062,1.846,3092,2.141,3154,0.979,3174,2.711,3179,1.293,3187,1.381,3299,2.249,3311,1.657,3312,1.743,3426,1.078,3495,1.572,3508,1.406,3511,1.136,3520,2.141,3546,1.657,3630,2.249,3642,1.582,3696,0.729,3700,1.167,3799,1.2,3803,1.065,3893,2.249,3916,3.838,3948,1.657,3978,2.051,4019,1.906,4064,1.792,4071,1.846,4201,2.078,4271,1.235,4303,1.698,4415,1.254,4459,3.12,4474,1.618,4809,2.051,4989,1.336,5008,1.218,5036,1.092,5078,1.657,5128,3.363,5158,0.979,5207,1.846,5308,3.717,5309,3.186,5332,1.792,5335,1.743,5339,3.83,5343,3.294,5373,1.517,5391,1.974,5600,2.566,5626,8.181,5686,4.936,5704,1.743,5772,2.437,5854,2.566,5890,2.141,5988,2.384,6004,1.336,6024,2.249,6047,3.294,6058,2.249,6122,2.8,6202,2.389,6295,1.151,6369,1.517,6375,1.754,6383,2.343,6407,2.566,6456,2.566,6565,6.399,6572,4.662,6676,1.974,6680,1.974,6689,1.846,6690,2.384,6741,1.549,6742,3.294,6834,1.618,6837,1.572,6935,2.566,6939,4.31,6941,2.249,6977,1.906,7101,1.381,7122,1.235,7137,5.166,7207,1.582,7209,1.582,7234,3.613,7274,1.618,7347,4.528,7408,2.384,7409,5.773,7465,1.657,7466,3.83,7467,1.974,7476,6.379,8054,2.249,8087,2.384,8307,3.613,8340,5.915,8365,3.419,8431,4.122,8545,3.439,8556,4.936,8620,3.439,8654,4.129,8659,5.948,8678,3.613,8684,2.051,8685,2.051,8687,2.249,8704,2.384,8736,2.249,8741,6.758,8743,2.384,8765,2.566,8767,2.566,8772,7.56,8779,5.166,8786,2.384,8848,2.566,8849,2.841,8850,2.841,8851,2.841,8852,2.841,8853,2.566,8854,2.841,8855,2.566,8856,2.566,8857,2.141,8858,2.841,8859,5.166,8860,2.841,8861,2.841,8862,2.841,8863,4.564,8864,2.841,8865,2.841,8866,4.564,8867,2.841,8868,2.566,8869,2.841,8870,2.841,8871,5.166,8872,3.83,8873,4.122,8874,4.564,8875,2.841,8876,2.841,8877,2.841,8878,5.166,8879,2.841]],["description//tracks/90daysofdevops/day37",[1488,2.595,8684,4.56]],["title//tracks/90daysofdevops/day36",[164,1.279,355,1.526,1488,1.968,2321,3.458]],["content//tracks/90daysofdevops/day36",[1,1.496,6,0.309,14,2.071,15,1.756,26,0.999,29,1.693,31,1.654,32,0.936,34,1.098,38,0.713,44,2.641,57,1.449,64,1.496,65,1.576,68,0.869,73,1.813,75,0.814,77,2.058,96,1.801,102,1.208,105,2.801,110,1.009,111,1.926,113,2.261,124,0.99,126,1.057,136,1.509,139,1.66,154,2.8,158,1.846,159,1.654,164,2.63,173,1.197,175,0.813,181,3.466,183,1.894,190,2.716,192,2.376,201,3.713,206,1.269,212,1.674,216,1.151,221,1.208,224,2.715,225,2.699,230,1.538,234,1.413,235,1.449,264,2.367,278,3.487,289,1.863,295,1.676,343,1.162,351,1.813,354,1.244,355,2.878,356,0.854,366,2.257,374,1.904,375,1.563,393,1.269,398,3.704,421,2.058,423,1.465,432,2.829,459,1.598,470,1.635,471,2.998,476,1.894,518,1.496,536,0.869,550,1.846,553,2.674,556,1.546,571,2.87,575,2,583,2.87,600,1.714,612,2.186,626,2.028,627,2.42,628,2.281,640,1.635,648,2.61,655,2.34,663,2.335,678,2.465,742,1.257,758,1.453,760,3.702,778,1.282,817,1.465,843,4.047,845,2,849,1.75,857,2.221,867,1.581,907,1.44,909,1.434,917,2.002,918,0.829,934,2.376,938,1.269,993,2.483,998,2.12,1002,1.434,1012,2.376,1017,1.972,1021,1.404,1024,1.729,1055,2.744,1088,1.582,1110,1.756,1197,2.513,1205,2.236,1206,2.376,1224,1.846,1232,2.735,1234,1.674,1254,2.465,1255,2.577,1266,1.777,1269,1.799,1289,2.8,1296,1.822,1341,1.617,1363,1.777,1365,3.839,1372,4.03,1470,2.367,1483,3.555,1487,2.376,1488,4.562,1489,2.61,1516,1.674,1555,5.403,1592,1.617,1610,1.756,1621,3.222,1626,2.429,1632,1.257,1639,1.449,1650,2.87,1669,2.028,1688,2.42,1690,4.272,1729,2.295,1770,3.029,1786,1.734,1884,3.222,1930,2.146,1984,2.42,1987,2.545,2013,2.735,2046,1.894,2047,5.951,2146,3.555,2240,5.256,2259,2.12,2334,3.222,2382,1.799,2662,1.946,2713,4.03,2870,2.674,2904,4.398,2932,2.42,2976,2.653,3015,3.092,3154,1.654,3174,2.884,3187,2.335,3311,2.8,3312,2.946,3394,2,3397,2.87,3426,1.822,3495,1.654,3537,3.466,3636,3.12,3655,2.564,3657,3.021,3658,3.704,3659,4.771,3660,4.574,3661,2.335,3696,1.232,3699,2.088,4064,3.029,4089,4.03,4123,3.12,4150,2.87,4303,4.71,4432,3.029,4459,4.081,4737,4.336,4809,4.902,4894,5.7,4940,4.336,5128,3.487,5158,1.654,5207,3.12,5241,4.167,5300,2.295,5304,2.679,5389,2.376,5736,2.257,6202,2.513,6369,2.564,6415,2.946,6446,3.222,6497,4.295,6621,4.03,6709,3.12,6741,2.617,6834,2.735,6837,2.34,6848,3.029,7082,2.87,7170,2.564,7178,2.376,7248,4.03,7408,4.03,7415,3.466,7443,4.718,7476,3.12,7480,3.618,7766,4.336,8081,3.618,8194,5.376,8365,2.87,8538,3.466,8659,3.222,8859,4.336,8871,4.336,8872,4.03,8873,4.336,8880,4.802,8881,4.802,8882,4.03,8883,4.802,8884,4.802,8885,4.336,8886,4.336,8887,4.336,8888,4.802,8889,4.802,8890,4.802,8891,4.802,8892,4.802,8893,4.802,8894,4.802,8895,4.802,8896,3.466,8897,4.802,8898,4.802]],["description//tracks/90daysofdevops/day36",[164,1.472,355,1.756,1488,2.265]],["title//tracks/90daysofdevops/day35",[6,0.141,105,1.135,1488,1.764,2317,3.236,4459,1.867]],["content//tracks/90daysofdevops/day35",[6,0.315,15,1.458,26,0.873,27,2.069,32,1.382,34,1.621,38,0.592,44,1.229,49,1.584,50,2.326,57,2.139,65,1.728,68,1.519,73,2.096,74,0.854,75,1.491,80,1.331,94,2.326,96,0.912,101,1.815,102,1.004,105,2.876,107,1.044,109,1.374,110,1.489,111,1.683,118,1.95,124,1.224,126,0.878,136,1.865,137,1.295,139,0.975,141,1.142,155,2.447,158,1.533,173,1.479,175,0.966,176,0.792,191,1.344,203,1.89,205,2.174,206,1.569,207,2.048,215,1.974,217,2.162,219,1.154,221,1.004,222,3.394,224,1.374,225,2.507,230,1.344,234,0.83,262,2.516,267,1.495,288,1.559,289,2.063,295,1.465,300,2.144,332,2.01,333,1.313,343,1.716,344,0.731,351,1.065,354,1.033,356,1.177,359,1.495,361,2.129,362,1.538,372,1.685,374,2.247,383,2.37,393,1.569,398,2.79,422,1.331,423,2.162,425,2.069,433,3.639,458,2.676,459,2.36,461,2.471,464,1.406,467,1.204,473,1.815,478,1.734,479,0.965,507,1.256,519,1.638,520,2.447,536,1.421,540,1.661,548,1.328,550,1.533,554,2.048,564,2.272,575,2.472,593,1.45,598,1.553,600,1.773,602,3.047,603,2.447,632,2.77,637,1.616,639,2.087,640,1.358,647,1.709,663,1.939,670,2.326,675,1.166,718,1.44,733,2.087,758,0.854,760,3.235,778,1.065,779,1.553,819,2.087,849,2.152,856,1.638,867,2.585,903,1.513,907,0.846,909,1.772,917,2.379,918,0.689,927,2.77,931,2.471,938,1.054,939,1.458,955,2.326,1021,2.296,1024,1.136,1025,3.744,1037,1.974,1053,1.313,1055,1.166,1061,2.581,1067,2.447,1073,2.221,1081,3.005,1107,2.01,1121,2.384,1138,1.023,1151,3.279,1197,2.087,1205,1.954,1208,1.791,1229,2.272,1234,1.39,1237,1.638,1266,1.476,1299,2.01,1300,1.685,1301,2.233,1331,1.718,1361,2.048,1364,1.638,1365,2.66,1435,2.79,1437,2.129,1441,3.857,1470,1.39,1478,1.638,1488,4.487,1489,2.281,1516,1.39,1526,1.875,1528,1.734,1529,2.129,1605,3.157,1626,1.83,1632,2.197,1669,2.507,1680,1.495,1690,3.574,1701,2.048,1704,1.685,1747,1.343,1786,1.44,1829,2.224,1930,2.482,1952,2.01,1956,2.221,1984,2.01,1987,2.657,1988,2.048,1990,3.157,2046,1.573,2047,4.123,2055,2.129,2067,1.849,2225,2.991,2259,3.129,2369,2.592,2382,1.495,2410,2.879,2419,2.384,2662,2.405,2856,3.169,2976,2.387,3067,2.592,3150,2.174,3154,1.374,3174,2.387,3214,1.661,3305,2.01,3311,2.326,3312,2.447,3358,4.284,3394,2.472,3544,3.157,3591,2.272,3699,3.415,3722,3.157,3755,3.857,3800,1.845,3803,1.495,3811,3.332,3915,1.906,3916,2.676,4128,2.879,4158,2.879,4303,2.384,4314,2.087,4432,3.744,4459,4.506,4484,2.879,4549,3.347,4734,3.347,4757,2.326,4830,2.326,5128,2.048,5158,1.374,5182,1.815,5207,2.592,5373,2.129,5554,2.174,5704,2.447,5778,2.516,5842,2.676,6004,1.875,6072,2.447,6186,2.516,6289,1.709,6297,3.005,6364,2.472,6366,2.01,6445,2.341,6529,3.005,6598,2.592,6634,2.592,6646,3.347,6648,5.268,6649,2.272,6678,3.157,6680,2.77,6681,2.879,6700,1.875,6742,5.117,6834,2.272,6837,2.045,6896,2.676,6998,3.005,7082,3.548,7089,3.642,7114,3.602,7172,2.879,7207,2.221,7234,3.157,7259,2.592,7347,3.157,7364,2.272,7406,3.157,7407,2.384,7409,6.63,7439,4.284,7445,3.157,7453,3.602,7465,3.461,7591,2.676,7818,2.879,8086,3.157,8239,3.602,8365,4.237,8556,5.916,8602,3.347,8647,3.347,8654,2.879,8659,6.114,8678,4.698,8741,3.347,8757,3.602,8758,3.347,8899,3.988,8900,3.988,8901,3.988,8902,3.988,8903,3.157,8904,3.988,8905,3.988,8906,5.36,8907,3.988,8908,5.935,8909,5.935,8910,3.988,8911,3.988,8912,3.988,8913,3.602,8914,3.988,8915,3.988,8916,3.988,8917,3.988,8918,3.602,8919,5.935,8920,3.988,8921,5.935,8922,3.988,8923,3.988,8924,3.988,8925,3.157,8926,3.988]],["description//tracks/90daysofdevops/day35",[6,0.161,105,1.293,1488,2.009,4459,2.127]],["title//tracks/90daysofdevops/day34",[595,1.589,1674,2.164,2296,3.236,3700,1.764,7122,1.867]],["content//tracks/90daysofdevops/day34",[6,0.376,7,2.391,8,1.193,18,0.903,30,1.947,31,0.903,32,0.834,44,0.808,57,1.29,64,0.817,65,0.718,68,0.474,70,0.844,71,0.8,74,0.561,75,1.059,94,1.529,96,0.599,105,0.693,114,1.12,115,1.892,120,1.666,124,0.54,126,0.577,127,2.835,132,5.244,137,0.479,146,1.321,147,1.749,153,3.589,159,1.473,161,1.926,173,0.653,175,0.645,176,1.466,192,1.297,195,1.567,197,0.844,204,2.909,214,1.86,217,0.8,226,1.781,230,0.594,240,0.936,242,2.869,245,1.076,257,2.844,259,0.958,261,0.995,265,0.995,268,0.775,269,2.698,270,1.092,271,1.46,289,1.288,295,1.337,307,1.048,319,2.827,336,2.195,351,1.668,355,2.675,356,0.33,362,1.108,374,0.583,375,1.763,378,3.164,383,0.791,393,1.13,398,1.232,410,1.212,422,1.017,423,0.8,424,1.372,426,1.429,427,1.623,431,1.99,441,1.14,456,1.759,459,0.873,468,1.077,473,1.193,479,1.105,501,3.087,507,0.826,560,1.062,593,0.432,595,2.733,626,1.277,627,2.155,628,1.568,648,1.008,663,4.738,718,0.947,742,0.686,756,0.844,758,1.337,795,3.259,828,3.092,840,1.212,843,1.077,845,1.092,849,0.873,864,1.321,883,2.2,905,1.422,907,0.556,909,0.783,917,1.588,918,1.189,931,0.914,933,4.545,935,1.006,938,0.693,1019,0.958,1024,1.036,1034,1.493,1036,0.853,1046,0.947,1054,1.034,1055,0.767,1079,1.644,1109,2.044,1110,0.958,1140,5.636,1141,1.759,1175,3.762,1205,1.408,1208,1.29,1210,6.429,1211,1.429,1224,2.082,1240,1.034,1241,4.081,1255,1.623,1271,0.958,1281,2.2,1294,1.704,1301,2.558,1341,3.308,1364,1.077,1365,1.917,1386,1.175,1404,1.654,1405,0.947,1424,0.947,1426,1.275,1430,1.232,1435,1.232,1439,1.567,1456,1.975,1478,1.077,1484,1.092,1485,1.372,1488,1.077,1489,1.008,1601,1.429,1610,0.958,1626,1.926,1627,1.321,1650,1.567,1653,1.4,1674,3.149,1680,1.603,1688,2.729,1702,1.886,1704,1.806,1721,3.762,1741,1.123,1745,1.008,1774,1.46,1789,2.717,1811,2.436,1840,1.493,1843,1.157,1858,1.623,1904,1.212,1930,0.714,1954,1.238,1955,1.253,1960,3.862,1978,1.493,2035,1.429,2067,0.817,2074,2.698,2132,4.206,2186,2.698,2255,6.65,2262,2.075,2277,2.978,2283,1.346,2364,0.903,2395,2.367,2459,3.222,2467,1.253,2525,7.198,2729,2.2,2731,2.382,2975,2.331,2979,1.759,3013,1.4,3076,2.971,3107,3.834,3154,0.903,3174,0.883,3238,2.075,3385,2.698,3426,0.995,3511,1.048,3616,1.892,3696,1.603,3697,1.821,3700,3.033,3803,0.982,3948,1.529,4010,1.493,4039,1.175,4064,1.654,4085,1.759,4229,3.949,4272,2.589,4365,1.892,4447,1.654,4459,1.14,4835,1.821,5022,2.869,5036,2.402,5074,1.567,5095,2.367,5100,0.863,5127,1.4,5129,4.158,5130,2.075,5132,1.609,5133,1.704,5138,1.429,5158,0.903,5164,2.779,5241,4.53,5300,3.29,5302,1.821,5304,2.465,5320,2.971,5327,1.609,5348,3.385,5354,5.449,5373,1.4,5391,1.821,5411,1.975,5413,5.643,5544,1.759,5637,1.034,5830,2.367,5983,2.367,6004,1.232,6289,3.934,6291,1.975,6295,1.062,6300,2.844,6305,2.505,6369,1.4,6383,2.195,6532,6.119,6534,5.836,6564,6.384,6658,1.821,6720,1.46,6734,2.2,6737,1.892,6830,2.2,6835,6.668,6839,1.253,6858,2.382,7122,4.237,7170,1.4,7305,1.759,7401,1.892,7432,2.2,7465,1.529,7469,2.075,7577,4.081,7591,1.759,7711,2.075,7836,6.706,8091,1.759,8176,1.975,8246,3.735,8927,2.621,8928,2.621,8929,2.2,8930,2.621,8931,3.862,8932,2.621,8933,2.2,8934,2.367,8935,2.621,8936,4.276,8937,7.384,8938,6.248,8939,6.248,8940,4.276,8941,6.248,8942,6.248,8943,7.384,8944,6.248,8945,7.384,8946,7.384,8947,4.276,8948,7.384,8949,4.276,8950,6.883,8951,7.788,8952,7.384,8953,2.621,8954,4.276,8955,5.416,8956,6.883,8957,2.621,8958,4.276,8959,2.621,8960,4.276,8961,2.621,8962,2.621,8963,4.276,8964,4.276,8965,3.862,8966,4.276,8967,2.621,8968,4.276,8969,4.276,8970,4.276,8971,8.121,8972,7.033,8973,6.248,8974,5.416,8975,4.276,8976,4.276,8977,4.276,8978,4.276,8979,4.276,8980,4.276,8981,4.276,8982,4.276,8983,4.276,8984,4.276,8985,5.416,8986,4.276,8987,4.276,8988,3.862,8989,4.276,8990,4.276,8991,4.276,8992,4.276,8993,4.276,8994,4.276,8995,4.276,8996,4.276,8997,4.276,8998,7.384,8999,7.384,9000,4.276,9001,6.883,9002,2.621,9003,2.621,9004,2.621,9005,2.621,9006,2.621,9007,2.621,9008,4.276,9009,2.621,9010,4.276,9011,4.276,9012,4.276,9013,2.621,9014,4.276,9015,2.621,9016,8.844,9017,6.248,9018,8.121,9019,6.248,9020,6.248,9021,6.248,9022,4.276,9023,2.621,9024,2.621,9025,2.367,9026,2.621,9027,2.621,9028,2.621,9029,2.621,9030,2.621,9031,2.621,9032,2.621,9033,2.621,9034,3.222,9035,4.276,9036,3.862,9037,5.416,9038,2.367,9039,2.621,9040,2.621,9041,2.367,9042,4.276,9043,2.367,9044,2.621,9045,2.621,9046,4.276,9047,2.621,9048,4.276,9049,2.621,9050,2.621,9051,2.621,9052,2.621,9053,2.621,9054,2.621,9055,2.621,9056,2.621,9057,2.621,9058,2.621,9059,2.621,9060,2.621,9061,2.621,9062,4.276,9063,4.276,9064,5.416,9065,2.621,9066,2.621,9067,5.416,9068,5.416,9069,2.621,9070,2.621,9071,2.621,9072,2.621,9073,2.621,9074,2.621,9075,2.621,9076,2.621,9077,2.367,9078,2.621,9079,2.621,9080,2.367,9081,2.621,9082,2.621,9083,2.621,9084,2.367,9085,2.621,9086,2.621,9087,2.621,9088,2.621,9089,2.621,9090,2.367,9091,2.621,9092,4.891,9093,2.367,9094,2.621,9095,2.621,9096,2.621,9097,2.621,9098,2.621,9099,1.821,9100,1.821,9101,1.821]],["description//tracks/90daysofdevops/day34",[595,1.81,1674,2.465,3700,2.009,7122,2.127]],["title//tracks/90daysofdevops/day33",[6,0.108,214,1.424,917,0.832,2291,2.749,3015,1.491,3700,1.345,7122,2.221]],["content//tracks/90daysofdevops/day33",[1,0.949,5,1.627,6,0.371,8,1.387,18,1.663,26,0.71,27,1.062,30,0.949,32,1.168,33,2.577,34,1.37,35,1.062,38,0.89,44,0.939,46,1.482,52,1.325,58,2.147,65,0.81,67,2.269,68,0.551,70,0.981,73,0.813,75,1.339,80,1.529,82,2.296,96,0.697,101,3.597,102,1.988,109,1.663,110,1.259,111,0.864,113,1.607,118,1.648,124,0.628,126,0.671,127,3.136,136,1.651,137,0.556,139,0.745,161,0.939,164,0.813,175,0.97,176,1.475,190,1.397,191,1.357,195,4.074,197,0.981,204,3.51,205,1.661,206,0.805,211,3.136,212,1.062,214,3.6,215,1.508,216,0.731,217,0.929,218,1.736,221,0.767,225,0.91,226,2.496,229,1.235,230,1.543,235,1.456,238,1.456,245,1.715,246,0.646,247,2.686,251,1.482,257,1.387,259,1.114,264,1.062,265,1.156,269,4.686,288,1.025,289,0.995,295,0.752,301,1.156,331,1.537,332,2.432,334,1.508,336,1.564,342,1.269,343,0.738,344,0.498,356,0.857,359,1.142,372,2.531,374,1.332,375,1.571,381,1.202,382,1.922,383,1.456,393,1.584,396,2.631,397,0.759,398,3.204,405,2.557,406,1.535,410,1.409,416,2.557,417,1.821,420,2.961,421,1.306,422,1.28,423,0.929,427,2.274,431,2.17,432,2.496,459,1.014,464,1.702,470,1.038,471,1.345,476,1.202,477,1.535,479,1.075,486,3.136,489,1.432,490,0.745,517,1.482,518,0.949,530,1.387,535,0.774,536,0.873,542,0.949,548,1.014,555,1.171,587,1.482,593,0.795,598,1.186,600,1.025,611,1.101,626,1.441,627,1.535,628,1.734,637,1.955,643,1.98,675,1.411,714,1.595,742,0.797,744,3.636,758,1.59,770,1.736,774,1.026,781,1.387,783,2.117,787,1.252,796,4.163,840,1.409,843,3.631,845,1.269,849,1.517,864,1.535,867,1.003,905,0.84,907,0.646,909,1.441,917,2.246,918,1.564,929,2.044,931,1.062,939,1.114,991,0.847,1008,1.922,1018,0.992,1024,1.584,1028,1.736,1034,4.715,1040,1.535,1053,1.003,1054,1.202,1057,1.432,1068,1.564,1088,0.71,1104,4.163,1105,2.412,1109,3.551,1110,2.889,1140,2.044,1143,1.252,1180,1.409,1187,1.432,1208,2.242,1232,3.413,1234,1.062,1240,2.364,1246,2.432,1254,1.564,1279,1.922,1284,1.743,1292,1.595,1301,1.887,1308,0.813,1309,2.568,1312,1.87,1315,1.202,1341,1.026,1351,1.186,1354,3.136,1361,1.564,1405,1.101,1417,2.557,1423,1.508,1426,2.347,1441,1.98,1447,1.026,1470,1.062,1482,1.142,1483,1.595,1528,1.325,1583,1.922,1585,1.306,1586,4.163,1594,1.821,1599,1.432,1610,3.027,1618,1.625,1619,1.345,1621,2.044,1622,1.736,1626,2.792,1632,1.944,1642,2.412,1647,1.508,1648,1.564,1649,1.87,1652,1.142,1656,1.663,1675,1.564,1688,3.02,1701,1.564,1702,0.919,1704,1.287,1720,1.87,1738,2.557,1745,2.62,1774,1.697,1794,2.296,1818,1.218,1857,1.387,1869,0.939,1904,1.409,1930,0.83,1931,3.413,1954,0.882,1989,2.296,2014,2.412,2035,3.266,2043,1.98,2052,2.914,2067,0.949,2125,1.777,2225,1.535,2245,1.736,2277,3.571,2322,2.752,2324,1.661,2364,1.663,2369,1.98,2382,2.246,2466,2.117,2467,1.456,2587,2.526,2647,2.269,2712,2.296,2724,2.117,2727,3.199,2820,1.387,2873,1.821,2888,3.238,2949,1.287,3015,2.197,3159,1.743,3187,1.482,3253,2.961,3273,1.777,3311,3.494,3312,3.677,3348,2.412,3394,1.269,3426,1.831,3587,1.98,3655,3.639,3657,2.787,3696,1.749,3699,1.325,3700,3.72,3799,1.287,3811,1.432,3963,1.777,3980,1.661,4010,3.413,4103,1.564,4201,1.387,4213,2.557,4229,4.299,4241,3.894,4271,1.325,4303,1.821,4324,1.98,4369,2.412,4415,1.345,4459,1.325,4480,1.98,4497,1.306,4554,1.736,4757,1.777,4870,1.922,5008,3.183,5036,3.613,5074,2.885,5127,4.584,5129,1.627,5132,1.87,5133,1.98,5135,2.296,5138,1.661,5158,1.663,5215,1.777,5241,6.398,5300,1.456,5301,2.296,5302,3.352,5304,1.904,5305,0.864,5309,2.688,5322,2.557,5323,3.567,5337,3.494,5355,6.998,5360,3.677,5377,2.631,5386,2.117,5393,2.199,5493,3.352,5521,2.412,5532,3.82,5544,2.044,6027,3.136,6146,2.412,6202,1.595,6293,2.752,6295,1.235,6338,1.855,6339,1.409,6340,2.752,6341,2.752,6375,1.855,6405,1.821,6412,2.199,6445,1.202,6455,3.044,6461,3.238,6497,4.049,6675,1.87,6693,2.296,6708,2.199,6709,4.429,6737,2.199,6837,1.05,6839,1.456,7004,2.961,7072,2.752,7122,4.77,7153,2.752,7170,1.627,7202,2.044,7305,6.076,7355,5.029,7407,2.885,7445,2.412,7505,2.117,7554,3.483,7690,2.557,7778,2.557,7809,2.412,7836,2.117,7854,2.752,8091,2.044,8154,2.199,8387,2.412,8393,3.636,8405,2.752,8443,2.752,8468,2.557,8639,1.98,8728,1.98,8929,2.557,8931,4.358,9025,2.752,9036,4.358,9077,4.358,9080,2.752,9084,4.358,9099,2.117,9100,2.117,9101,2.117,9102,5.395,9103,3.047,9104,3.047,9105,3.047,9106,4.826,9107,2.752,9108,3.047,9109,3.047,9110,4.826,9111,3.047,9112,3.047,9113,3.047,9114,3.047,9115,3.047,9116,5.992,9117,3.047,9118,6.816,9119,3.047,9120,3.047,9121,3.047,9122,4.826,9123,3.047,9124,4.826,9125,3.047,9126,3.047,9127,3.047,9128,3.047,9129,3.047,9130,3.047,9131,3.047,9132,3.82,9133,2.752,9134,3.047,9135,2.752,9136,3.047,9137,5.954,9138,2.117,9139,4.325,9140,3.047,9141,3.047,9142,4.826,9143,2.752,9144,3.047,9145,3.047,9146,3.047,9147,3.047,9148,3.047,9149,2.557,9150,2.752,9151,3.047]],["description//tracks/90daysofdevops/day33",[6,0.12,214,1.589,917,0.928,3015,1.663,3700,1.501,7122,2.416]],["title//tracks/90daysofdevops/day32",[2280,3.236,3015,1.955,3700,1.764,6305,1.986,7122,1.867]],["content//tracks/90daysofdevops/day32",[1,1.752,6,0.309,8,1.689,11,2.834,19,2.067,26,0.546,27,1.294,29,1.309,32,1.323,35,2.366,38,0.551,44,1.144,49,0.991,53,1.264,65,0.623,67,2.26,70,1.195,74,0.794,75,1.151,80,0.833,102,0.934,105,0.981,107,0.971,110,0.78,112,1.547,113,1.235,118,2.71,135,3.352,136,1.25,139,0.907,147,0.943,173,0.925,175,0.945,176,1.117,195,2.218,196,1.309,201,1.524,202,1.011,203,1.791,204,1.893,205,3.065,206,1.486,216,1.348,217,2.482,218,2.114,224,1.937,225,1.679,227,1.325,229,1.504,230,0.84,234,0.772,238,1.774,240,2.703,244,3.553,245,2.446,246,0.787,261,1.408,264,1.294,265,1.408,270,1.546,271,2.067,272,2.375,289,1.4,295,1.388,301,2.134,302,3.503,307,1.484,329,3.906,341,4.412,343,0.898,344,1.109,352,1.182,354,1.457,356,0.854,359,1.391,374,1.903,375,1.83,383,2.456,393,1.794,397,2.134,402,2.943,406,1.87,408,1.59,411,1.942,421,1.59,422,1.056,425,3.388,426,2.023,427,3.56,428,3.906,431,1.182,439,2.643,459,1.872,464,2.87,468,2.788,476,1.464,479,0.765,488,1.195,490,1.374,535,0.943,536,1.228,539,2.114,540,1.546,542,2.772,548,1.235,563,4.9,585,2.412,593,0.927,600,1.392,606,1.325,611,1.341,636,1.25,647,1.59,648,2.161,655,1.279,709,2.114,718,1.341,743,3.115,758,1.742,778,0.991,781,1.689,787,1.524,793,1.25,799,1.87,805,1.568,828,1.837,832,2.834,845,3.816,867,1.851,883,4.719,902,1.905,905,0.52,907,0.787,909,2.262,910,1.715,914,2.114,918,1.308,925,1.031,930,1.546,938,2.151,991,1.031,1005,1.614,1021,1.085,1024,1.299,1025,3.547,1053,1.222,1055,1.644,1057,1.745,1061,1.614,1089,2.452,1108,2.164,1138,0.952,1143,2.31,1150,2.412,1180,1.717,1190,2.341,1198,1.805,1205,1.222,1206,2.783,1208,2.049,1234,1.96,1240,2.678,1243,2.277,1279,2.341,1280,2.067,1282,1.942,1284,2.031,1362,1.837,1363,2.513,1364,1.524,1424,1.341,1447,1.893,1467,5.374,1477,2.412,1484,1.546,1528,1.614,1535,2.164,1536,2.445,1587,3.203,1591,2.023,1597,1.717,1608,4.451,1610,1.357,1626,2.509,1648,1.905,1656,1.279,1669,1.568,1674,1.87,1677,1.942,1688,1.87,1695,2.679,1702,1.12,1731,2.412,1740,3.203,1741,1.59,1743,3.115,1792,2.218,1802,2.341,1829,2.107,1857,2.56,1858,3.689,1863,2.482,1869,1.144,1887,4.128,1930,1.531,1931,3.203,1942,2.679,1987,1.391,2045,3.065,2169,2.796,2183,4.719,2242,2.578,2244,2.218,2277,2.74,2327,2.679,2387,2.49,2470,1.805,2608,2.938,2646,2.796,2647,2.643,2652,2.578,2662,1.504,2698,1.87,2699,1.805,2724,2.578,2768,2.412,2820,2.56,2872,3.773,2888,5.081,2925,3.115,2932,2.834,2949,1.568,3015,3.705,3023,2.679,3067,2.412,3158,2.578,3159,1.341,3195,3.115,3283,5.374,3305,1.87,3327,2.218,3365,2.796,3392,2.679,3397,2.218,3426,2.576,3700,3.518,3803,1.391,3891,1.805,3948,2.164,3984,1.805,4039,1.663,4064,3.547,4075,3.115,4079,1.942,4094,2.796,4103,1.905,4200,4.237,4229,3.301,4241,5.289,4248,2.679,4271,2.952,4295,2.067,4303,2.218,4314,1.942,4324,3.654,4363,4.412,4371,2.578,4415,2.482,4434,3.115,4459,1.614,4497,1.59,4554,2.114,4568,2.341,4569,2.938,4721,3.361,4738,2.679,4768,2.679,4782,2.164,4802,2.834,4870,2.341,4911,3.352,5002,7.734,5036,2.161,5106,6.779,5138,2.023,5146,4.283,5158,1.279,5299,2.067,5300,4.38,5311,2.938,5323,1.942,5327,2.277,5335,2.277,5388,2.578,5404,2.218,5425,3.352,5544,2.49,5593,2.578,5794,2.412,6124,2.578,6295,1.504,6301,2.067,6304,2.49,6305,4.944,6308,3.115,6330,4.716,6336,3.352,6355,2.412,6382,2.679,6445,1.464,6500,3.352,6531,2.49,6675,5.255,6695,5.697,6721,5.078,6722,3.352,6737,2.679,6748,2.796,6773,4.719,6787,7.187,6788,5.078,6839,1.774,6840,3.115,6974,2.218,7066,3.547,7102,3.352,7109,3.352,7122,4.675,7178,1.837,7401,2.679,7476,2.412,7882,2.796,8013,2.796,8122,3.115,8244,3.352,8400,3.352,8695,2.938,8906,5.078,8933,3.115,8988,3.352,9099,2.578,9100,2.578,9101,2.578,9107,3.352,9137,2.796,9139,2.679,9152,3.711,9153,3.352,9154,3.711,9155,5.623,9156,3.711,9157,5.623,9158,3.352,9159,3.711,9160,3.352,9161,3.711,9162,3.711,9163,3.711,9164,3.711,9165,6.131,9166,5.623,9167,3.711,9168,3.352,9169,3.711,9170,3.352,9171,5.623,9172,3.711,9173,3.352,9174,3.352,9175,3.711,9176,5.623,9177,3.352,9178,3.711,9179,3.711,9180,3.711,9181,3.711,9182,3.711,9183,3.711,9184,3.711,9185,3.711,9186,3.711,9187,5.623,9188,3.352,9189,3.711,9190,3.711,9191,3.711,9192,3.711,9193,3.711,9194,3.711,9195,3.711,9196,3.711,9197,3.711,9198,3.711,9199,3.352,9200,3.352]],["description//tracks/90daysofdevops/day32",[3015,2.226,3700,2.009,6305,2.262,7122,2.127]],["title//tracks/90daysofdevops/day31",[75,0.659,1036,1.267,2271,2.932,3696,0.998,3700,1.598,7122,1.692]],["content//tracks/90daysofdevops/day31",[5,3.512,6,0.32,8,2.09,15,1.679,17,2.357,19,2.557,26,0.675,29,1.619,34,2.114,35,1.6,49,1.225,58,2.072,65,1.291,67,2.19,70,2.118,74,1.408,75,1.726,77,1.968,96,1.05,110,1.615,118,2.619,127,3.443,137,0.838,139,1.122,164,1.225,175,0.679,176,0.912,196,1.619,203,1.462,204,2.588,206,1.213,216,2.013,217,2.006,227,1.639,230,1.49,234,0.955,244,3.443,246,0.973,247,2.058,259,1.679,261,3.186,264,1.6,288,1.436,289,0.946,295,1.133,297,2.357,301,2.496,344,0.793,352,2.448,356,0.577,366,3.614,374,1.974,381,1.811,393,1.213,397,2.373,410,2.123,411,3.443,423,1.4,425,1.6,427,4.018,431,1.462,462,1.201,464,2.32,468,1.886,490,1.122,535,1.953,536,0.831,540,1.912,542,2.769,548,1.528,559,3.314,563,3.314,593,0.757,600,1.125,611,2.376,626,2.295,655,2.266,675,2.455,698,3.314,722,2.503,742,1.201,758,0.983,759,2.817,774,2.215,778,1.756,779,1.788,781,2.994,787,2.702,800,2.09,843,3.157,857,2.123,907,1.63,909,2.507,910,1.4,917,2.258,918,1.45,930,1.912,935,1.08,939,1.679,991,1.828,998,2.027,1002,1.371,1005,2.861,1023,2.403,1036,2.141,1068,2.357,1076,2.027,1088,1.07,1107,2.314,1143,3.65,1180,3.555,1206,2.272,1208,1.386,1240,1.811,1271,3.723,1282,2.403,1284,1.658,1294,2.983,1308,1.756,1351,1.788,1439,5.018,1470,1.6,1478,1.886,1538,2.983,1587,2.615,1592,1.546,1610,1.679,1611,0.708,1618,1.546,1619,2.027,1626,3.057,1631,2.557,1645,3.664,1656,1.582,1677,2.403,1700,2.744,1702,2.32,1717,3.459,1740,4.379,1765,2.677,1869,2.37,1876,2.896,1887,3.586,1891,3.314,1908,2.896,2013,2.615,2024,2.744,2035,2.503,2053,4.413,2190,2.451,2277,3.429,2555,4.995,2587,3.443,2647,2.158,2820,2.09,2888,3.08,3013,2.451,3014,3.459,3015,2.09,3145,4.843,3156,3.189,3157,4.146,3158,3.189,3272,3.664,3353,2.158,3434,1.968,3495,2.266,3617,2.403,3657,2.96,3696,1.688,3697,4.57,3700,3.448,3702,3.189,3799,1.939,3831,3.459,3877,3.314,3883,2.817,3887,3.08,3915,2.195,3959,2.983,4103,3.377,4127,3.459,4136,2.677,4161,3.459,4201,2.09,4241,5.455,4271,1.997,4295,3.664,4312,3.08,4314,3.443,4324,2.983,4361,3.08,4442,4.146,4497,1.968,4721,2.744,4802,2.314,4870,2.896,5008,2.819,5035,3.634,5036,2.528,5100,2.53,5138,2.503,5158,2.266,5215,2.677,5237,7.045,5304,1.811,5305,1.302,5324,3.042,5524,1.968,5544,3.08,5637,1.811,5660,3.314,5948,3.314,5952,3.189,6147,3.08,6186,2.896,6295,1.86,6296,3.189,6300,2.994,6307,3.189,6332,3.314,6334,3.853,6366,2.314,6367,2.357,6415,2.817,6417,3.853,6430,2.817,6448,3.314,6497,2.503,6633,4.146,6649,2.615,6693,3.459,6698,5.207,6700,3.092,6729,3.314,6755,3.189,6837,1.582,6839,2.195,6855,4.748,6904,1.6,6909,3.189,6989,3.459,7122,4.702,7247,3.189,7275,3.853,7420,3.314,7505,3.189,7756,3.634,7791,3.853,7795,3.586,7825,3.189,7886,3.853,8013,3.459,8053,3.853,8087,3.853,8248,3.853,8291,3.634,8300,2.503,8351,4.146,8387,3.634,8417,3.853,8453,4.146,8489,4.957,8607,3.853,8885,4.146,9092,4.146,9099,3.189,9100,3.189,9101,3.189,9139,3.314,9201,4.591,9202,4.591,9203,3.853,9204,4.146,9205,3.853,9206,4.591,9207,3.853,9208,4.591,9209,4.591,9210,4.591,9211,4.591,9212,4.146,9213,4.591,9214,4.146,9215,4.591,9216,4.146,9217,4.591,9218,4.591,9219,3.853,9220,4.591,9221,4.591,9222,4.591,9223,4.591]],["description//tracks/90daysofdevops/day31",[75,0.745,1036,1.431,3696,1.128,3700,1.805,7122,1.911]],["title//tracks/90daysofdevops/day30",[1301,1.353,1610,1.57,2158,2.504,3700,1.764,7122,1.867]],["content//tracks/90daysofdevops/day30",[2,1.652,5,3.021,6,0.186,8,2.576,15,2.069,18,2.351,19,3.152,29,1.32,32,1.33,34,0.856,35,1.972,38,1.129,44,2.103,49,0.999,56,2.589,57,1.129,58,1.179,64,1.763,67,1.246,68,1.478,70,1.205,71,1.141,74,0.801,75,1.512,78,3.383,83,2.121,109,1.289,110,1.189,113,1.246,116,2.132,127,2.962,136,1.516,137,1.033,141,1.072,144,1.516,154,3.3,159,1.289,167,2.237,172,1.731,173,1.7,175,0.704,176,1.124,178,2.82,190,1.975,192,1.852,197,1.205,201,1.537,203,1.802,213,2.182,216,1.824,217,2.081,221,1.424,226,2.842,229,1.516,230,1.281,235,1.708,240,1.336,245,2.513,246,0.793,247,1.677,272,1.581,288,1.397,293,1.759,300,1.352,301,1.42,306,2.511,307,1.496,331,1.192,343,1.977,352,1.802,356,0.858,362,2.226,369,2.66,374,2.041,375,1.842,376,1.604,377,1.457,381,1.476,383,1.129,393,0.989,397,0.933,410,4.349,414,1.921,417,4.079,422,1.063,427,3.26,428,2.6,459,1.246,462,1.481,467,1.129,468,1.537,472,1.476,479,1.169,489,1.759,518,1.166,530,1.704,534,2.701,536,1.376,542,1.763,548,1.246,575,1.559,582,5.821,593,0.617,600,1.64,610,3.141,611,2.465,627,3.833,628,2.967,635,2.324,639,1.959,640,2.926,646,1.627,647,1.604,655,1.949,709,2.132,716,1.759,718,2.044,742,0.979,744,2.82,755,3.012,758,0.801,774,1.26,778,0.999,819,1.959,828,3.764,843,1.537,845,3.168,907,0.793,909,1.69,910,1.726,917,2.076,918,1.783,938,0.989,946,1.959,955,2.182,998,1.652,1002,2.038,1005,1.627,1015,1.886,1017,2.324,1018,2.476,1019,1.368,1021,1.094,1024,1.455,1054,1.476,1068,1.921,1076,1.652,1087,3.152,1138,0.96,1202,2.237,1208,1.708,1230,2.701,1231,2.701,1244,2.511,1246,2.852,1255,2.147,1266,2.094,1271,1.368,1284,1.352,1299,1.886,1308,0.999,1315,1.476,1331,2.201,1341,1.26,1351,1.457,1439,2.237,1478,1.537,1482,2.85,1504,2.04,1516,2.378,1529,1.998,1585,1.604,1599,1.759,1601,2.04,1610,3.359,1615,2.962,1630,1.886,1631,2.084,1632,0.979,1651,1.604,1656,1.949,1672,3.8,1678,1.789,1680,1.402,1681,2.361,1696,3.57,1704,1.581,1734,1.998,1740,2.132,1745,2.175,1776,2.361,1803,2.04,1826,2.511,1857,3.462,1858,1.42,1869,1.154,1889,2.511,1904,1.731,1908,2.361,1936,3.141,1954,1.083,2046,2.232,2124,2.962,2259,2.498,2333,1.704,2364,1.949,2366,2.82,2587,1.959,2613,2.962,2723,4.883,2768,6.488,2820,1.704,2929,2.617,2975,3.085,3120,2.701,3253,3.472,3404,2.511,3426,1.42,3457,2.701,3606,2.701,3669,2.962,3696,0.96,3699,2.461,3700,4.24,3800,1.731,3891,1.82,3926,3.57,3945,3.38,3946,3.472,3956,3.38,4067,1.959,4118,2.8,4136,2.182,4201,1.704,4229,4.947,4244,5.401,4295,2.084,4312,2.511,4363,2.432,4365,4.925,4372,4.749,4404,3.141,4415,1.652,4459,1.627,4542,2.962,4569,2.962,4713,4.749,4746,5.11,4752,3.38,4768,2.701,4776,2.701,4782,3.3,4790,2.82,4802,1.886,4807,2.962,4849,2.084,4954,2.82,5008,2.924,5025,2.82,5036,2.923,5066,3.141,5074,3.383,5122,1.559,5138,2.04,5141,4.085,5158,1.949,5215,2.182,5241,2.296,5287,2.432,5300,4.391,5302,3.931,5313,2.8,5314,2.432,5493,2.6,5521,4.479,5524,2.425,5544,2.511,5559,2.511,5637,1.476,5736,1.759,5932,2.962,6289,3.26,6295,1.516,6300,3.106,6305,1.731,6339,1.731,6355,2.432,6358,3.141,6381,2.182,6382,2.701,6383,1.921,6406,2.82,6408,5.726,6414,3.141,6652,2.296,6658,2.6,6782,2.962,6787,3.141,6837,1.289,6839,1.789,6858,2.084,7004,2.296,7101,1.82,7122,4.792,7136,2.6,7185,3.38,7364,2.132,7439,2.701,7469,4.479,7483,2.962,7485,2.361,7505,2.6,7577,2.82,7589,4.085,7809,2.962,8217,2.82,8454,2.962,8494,3.38,8539,3.38,8620,2.82,8695,7.813,8796,3.141,8797,2.962,9099,2.6,9100,2.6,9101,2.6,9102,4.479,9137,6.474,9139,4.085,9207,3.141,9224,3.742,9225,3.742,9226,5.659,9227,3.742,9228,3.742,9229,5.11,9230,3.742,9231,6.855,9232,3.38,9233,3.742,9234,3.742,9235,3.742,9236,3.38,9237,3.742,9238,3.742,9239,4.749,9240,3.742,9241,3.38,9242,5.726,9243,3.141,9244,3.742,9245,3.38,9246,3.742,9247,3.38,9248,3.38,9249,3.742,9250,3.742,9251,3.742,9252,5.659,9253,6.823,9254,5.659,9255,3.742,9256,3.742,9257,3.742,9258,2.82,9259,3.38,9260,3.742,9261,3.742,9262,3.141]],["description//tracks/90daysofdevops/day30",[1301,1.541,1610,1.788,3700,2.009,7122,2.127]],["title//tracks/90daysofdevops/day29",[178,3.61,3700,1.968,7122,2.084,8684,3.458]],["content//tracks/90daysofdevops/day29",[1,1.31,2,1.855,6,0.282,8,1.913,15,1.537,25,3.227,26,1.075,27,1.465,29,1.482,31,1.448,32,0.819,34,0.961,35,1.465,38,1.085,45,2.158,46,2.044,53,1.431,64,1.31,68,0.76,71,1.282,75,0.712,80,0.943,96,0.961,107,1.615,110,1.296,118,2.615,126,1.358,127,2.2,137,1.127,139,1.027,141,1.767,147,1.068,154,2.451,155,2.579,159,2.126,172,1.944,175,0.831,176,1.225,191,0.952,201,1.726,206,1.111,216,1.479,217,1.282,218,2.394,221,1.058,222,1.465,226,3.573,227,1.5,230,1.397,231,2.731,245,1.553,260,2.291,261,1.595,271,2.341,272,3.088,288,1.468,305,1.913,333,1.383,334,2.08,337,1.399,343,1.494,344,0.434,351,1.122,354,1.089,356,0.919,362,1.599,372,1.775,374,1.993,375,2.622,383,1.268,393,1.111,396,2.291,397,1.538,420,2.579,422,1.373,423,1.882,427,3.057,431,1.338,459,2.054,462,1.1,464,2.841,473,1.913,476,1.658,479,1.22,482,1.944,486,2.731,490,1.508,518,1.31,519,2.534,539,2.394,542,1.31,560,1.703,582,3.688,600,1.534,601,2.512,611,1.518,636,1.415,639,2.2,640,1.431,645,2.244,646,1.828,648,1.615,655,1.448,711,3.167,741,2.402,756,1.353,758,1.564,760,2.291,779,1.636,781,1.913,805,1.775,817,1.282,827,2.512,828,3.053,857,1.944,859,2.606,867,1.383,907,0.891,909,1.255,910,1.282,917,2.465,918,1.86,930,3.355,938,1.631,998,1.855,1002,1.255,1005,1.828,1007,1.913,1017,1.726,1019,1.537,1021,2.138,1024,1.716,1026,1.944,1068,2.158,1073,2.341,1076,1.855,1089,1.518,1121,2.512,1138,1.078,1190,2.651,1198,3,1208,2.431,1255,1.595,1266,2.284,1268,2.244,1280,2.341,1331,2.596,1351,1.636,1405,1.518,1424,1.518,1426,2.044,1524,2.451,1541,2.82,1550,2.82,1555,2.512,1585,1.801,1592,1.415,1600,2.394,1627,2.118,1646,2.9,1661,1.431,1680,2.312,1686,2.82,1702,1.268,1729,2.009,1731,2.731,1740,2.394,1777,3.168,1786,1.518,1822,3.327,1855,2.451,1867,2.731,1908,2.651,1916,2.451,1943,2.651,1952,2.118,1954,1.786,1979,1.801,2004,1.75,2023,4.649,2035,2.291,2054,2.341,2067,1.922,2160,3.327,2167,2.512,2170,2.451,2225,2.118,2334,2.82,2370,3.167,2587,3.826,2643,1.884,2722,3.527,2752,5.572,2873,2.512,2888,5.404,2929,1.944,2932,2.118,2975,4.676,3015,3.666,3145,2.291,3150,3.363,3159,1.518,3187,2.044,3311,4.697,3312,4.942,3362,2.82,3380,2.92,3397,2.512,3426,1.595,3661,2.044,3696,1.583,3698,3.527,3699,3.731,3700,4.263,3707,3.527,3803,2.739,3891,2.044,3921,3.327,3964,2.82,4039,1.884,4067,3.826,4079,2.2,4085,2.82,4094,3.167,4103,4.135,4226,3.527,4229,5.222,4241,6.745,4247,2.82,4264,3.795,4285,2.244,4292,5.178,4295,3.436,4297,6.135,4308,3.795,4312,4.139,4361,2.82,4399,2.92,4415,1.855,4424,1.801,4433,3.527,4440,3.167,4459,1.828,4463,2.579,4472,3.327,4816,3.436,4857,3.527,4870,3.892,4942,3.527,4989,1.976,5008,2.644,5036,3.096,5078,2.451,5122,3.355,5138,2.291,5141,3.034,5158,2.126,5207,2.731,5215,2.451,5262,2.82,5300,2.949,5302,5.078,5304,2.884,5324,1.944,5500,3.527,5542,2.158,5544,2.82,5736,1.976,5842,2.82,5974,1.855,6027,4.009,6289,1.801,6300,2.809,6338,1.615,6364,1.75,6375,1.615,6379,2.92,6383,3.168,6446,2.82,6455,2.651,6590,2.579,6654,3.795,6837,1.448,6839,2.009,7091,3.167,7122,4.653,7170,2.244,7171,3.034,7176,2.82,7178,2.08,7188,2.512,7362,3.527,7465,2.451,7485,3.892,7486,3.527,7764,2.2,7791,3.527,7871,2.82,8088,3.167,8092,3.327,8246,2.512,8449,3.795,8684,3.034,9038,6.602,9099,4.286,9100,2.92,9101,2.92,9102,8.086,9137,3.167,9229,5.572,9263,5.572,9264,3.795,9265,4.203,9266,4.203,9267,4.203,9268,6.17,9269,3.795,9270,4.203,9271,3.795,9272,4.203,9273,3.795,9274,4.203,9275,4.203,9276,4.203,9277,4.203,9278,4.203,9279,3.795,9280,4.203,9281,3.795,9282,4.203,9283,4.203,9284,6.17,9285,6.17,9286,3.795,9287,4.203,9288,4.203]],["description//tracks/90daysofdevops/day29",[3515,2.724,3700,2.009,6288,4.105,7122,2.127]],["title//tracks/90daysofdevops/day28",[2242,3.764,5305,1.536,6300,2.467]],["content//tracks/90daysofdevops/day28",[6,0.294,8,3.31,15,1.522,25,1.838,26,1.179,29,1.468,32,0.812,34,1.662,37,3.663,42,3.34,44,1.284,49,1.111,52,2.665,58,1.311,64,1.909,70,1.34,75,1.566,77,3.83,91,1.895,96,1.401,105,1.1,109,1.434,118,1.145,127,4.836,136,1.362,137,0.76,141,2.083,154,2.428,155,2.555,164,1.636,169,2.555,183,2.417,190,1.205,192,2.061,202,1.669,203,2.846,204,2.063,206,1.1,212,1.451,215,2.061,216,0.998,217,1.869,219,1.773,226,3.723,227,1.486,229,1.687,230,1.816,246,1.299,264,1.451,288,1.529,295,1.028,301,1.58,333,2.017,343,1.76,344,0.922,351,1.111,353,2.555,356,1.008,362,1.079,374,0.925,383,1.849,393,1.619,397,1.038,398,1.957,404,2.794,406,2.098,411,2.179,422,0.782,423,1.869,427,2.325,439,1.957,459,1.386,464,3.014,466,3.296,468,1.71,476,1.642,490,1.777,492,2.138,507,1.311,518,1.297,520,2.555,536,1.716,542,2.265,554,2.138,592,2.372,600,1.372,611,1.504,626,1.83,628,1.773,637,1.687,638,2.789,681,2.555,745,1.243,756,1.973,758,1.913,765,4.617,774,2.448,777,1.957,778,1.111,781,2.789,785,1.311,787,1.71,803,2.627,805,1.759,819,3.805,844,2.138,849,0.85,857,1.926,858,2.372,867,1.371,902,2.138,907,1.541,909,2.394,910,1.27,914,2.372,917,1.557,918,1.058,935,1.441,937,3.296,938,1.1,991,1.157,1002,1.83,1005,3.487,1006,5.142,1017,1.71,1018,1.995,1021,1.218,1024,1.172,1037,2.061,1053,2.393,1061,1.811,1079,2.355,1088,1.428,1101,2.372,1107,2.098,1143,1.71,1198,2.025,1205,2.017,1208,1.849,1240,1.642,1243,2.555,1268,2.223,1271,1.522,1303,2.428,1351,1.621,1363,3.308,1425,3.296,1426,2.025,1450,2.428,1482,1.56,1484,1.734,1485,2.179,1500,5.534,1585,1.784,1587,2.372,1588,3.76,1589,3.76,1592,2.7,1594,2.489,1626,1.889,1627,2.098,1631,2.319,1639,1.257,1651,1.784,1653,2.223,1656,1.434,1669,2.588,1675,2.138,1688,2.098,1734,2.223,1741,1.784,1777,2.138,1786,1.504,1792,2.417,1818,1.664,1858,2.325,1904,1.926,1914,2.706,1930,2.516,1943,5.391,1945,3.494,1954,1.205,1955,1.99,1987,1.56,1988,2.138,2035,2.27,2067,1.297,2225,3.088,2227,2.489,2245,2.372,2277,2.063,2364,1.434,2459,6.735,2470,2.98,2555,5.553,2570,2.098,2662,3.249,2711,3.494,2716,2.555,2721,4.257,2820,2.789,2875,3.76,3014,5.478,3015,1.895,3150,3.34,3159,1.504,3187,2.025,3273,2.428,3304,2.138,3305,2.098,3353,1.957,3354,3.296,3376,3.005,3394,2.552,3495,1.434,3508,2.061,3511,1.664,3591,2.372,3663,3.494,3696,2.057,3699,1.811,3700,3.51,3799,2.588,3800,3.363,3803,2.296,3891,3.899,3915,1.99,3964,2.794,3976,3.296,3984,3.899,4039,1.866,4079,2.179,4103,5.123,4200,3.137,4201,1.895,4269,2.892,4271,1.811,4285,2.223,4286,3.137,4295,3.413,4328,5.142,4364,2.794,4379,3.137,4424,2.626,4449,2.223,4459,1.811,4497,1.784,4543,3.76,4554,3.49,4757,2.428,4798,4.111,4805,2.706,4816,2.319,5006,4.617,5008,2.626,5036,3.835,5122,1.734,5138,2.27,5146,2.627,5158,2.111,5215,2.428,5305,2.62,5323,2.179,5335,2.555,5482,2.428,5492,3.76,5524,1.784,5544,2.794,5554,2.27,5676,2.372,5772,2.223,5952,2.892,6004,1.957,6147,2.794,6300,4.718,6305,1.926,6354,3.005,6355,2.706,6364,1.734,6367,3.146,6369,2.223,6375,2.355,6383,2.138,6445,1.642,6641,3.76,6689,2.706,6700,2.881,6705,3.005,6831,5.142,6837,1.434,6839,1.99,6936,4.85,6998,3.137,7087,3.296,7089,2.555,7122,3.162,7156,2.706,7165,3.76,7170,3.272,7211,3.494,7259,2.706,7265,3.005,7364,2.372,7397,3.005,7407,2.489,7443,4.257,7465,3.573,7486,3.494,7773,3.296,7977,2.27,8009,2.892,8089,3.494,8092,3.296,8345,5.142,8348,5.534,8353,3.137,8365,2.489,8380,3.494,8385,3.76,8538,3.005,8576,3.76,8637,5.142,8639,2.706,8761,3.76,9099,4.257,9100,2.892,9101,2.892,9160,3.76,9243,6.102,9262,3.494,9264,3.76,9269,8.739,9289,3.76,9290,4.164,9291,4.164,9292,4.164,9293,4.164,9294,4.164,9295,4.164,9296,4.164,9297,4.164,9298,4.164,9299,4.164,9300,4.164,9301,4.164,9302,4.164,9303,4.164,9304,8.546,9305,4.164,9306,4.164,9307,4.164,9308,4.164,9309,4.164,9310,4.164,9311,4.164,9312,4.164,9313,4.164,9314,4.164,9315,3.76,9316,4.164,9317,4.164,9318,3.76]],["description//tracks/90daysofdevops/day28",[1478,1.805,1622,2.503,5305,1.246,6300,2,9319,3.969]],["title//tracks/90daysofdevops/day27",[191,1.085,204,1.613,1611,0.739,2222,3.328]],["content//tracks/90daysofdevops/day27",[6,0.371,26,0.929,32,1.004,38,0.765,44,1.02,49,0.883,57,1.554,65,0.865,67,1.714,68,0.599,71,1.57,72,1.804,73,1.374,74,0.708,77,1.418,80,1.6,102,0.833,103,3.159,107,0.866,111,1.792,120,0.801,124,0.682,126,1.391,137,1.411,139,1.545,147,0.841,164,1.374,169,2.031,173,1.283,175,0.736,188,1.461,191,1.166,201,2.115,204,3.23,214,3.558,217,1.009,226,1.378,230,1.615,234,0.689,235,2.578,238,2.461,242,6.338,245,1.591,247,1.483,263,2.058,269,2.088,272,1.398,288,1.322,289,0.682,290,2.031,295,0.817,305,2.877,307,1.323,313,0.978,334,2.548,336,3.967,343,1.53,351,1.687,354,1.638,355,2.271,356,0.416,362,1.334,374,2.334,393,0.875,406,1.668,417,1.978,419,1.93,423,2.175,437,1.288,442,1.582,456,3.455,459,1.102,461,1.153,472,1.305,479,0.86,490,0.809,494,2.504,536,1.144,546,3.078,550,1.272,554,1.699,560,1.341,575,1.378,587,4.982,593,1.273,595,3.161,598,2.005,600,1.4,619,6.978,626,1.538,632,3.577,635,1.754,636,1.114,640,1.127,648,1.979,675,0.968,733,1.732,742,1.348,756,1.065,758,1.102,774,1.114,781,1.506,812,2.494,817,1.009,844,1.699,849,1.291,857,1.531,867,1.089,901,1.225,905,0.464,907,1.34,909,0.988,917,0.841,918,1.232,925,0.919,926,1.181,935,0.778,946,3.308,952,1.531,978,2.494,991,1.756,993,2.607,996,1.582,1018,1.077,1019,1.21,1021,0.968,1024,1.365,1034,1.885,1036,1.077,1046,1.195,1053,1.089,1054,1.305,1055,0.968,1061,2.239,1081,2.494,1107,3.594,1109,4.433,1110,2.311,1121,1.978,1138,0.849,1187,1.556,1190,2.088,1197,1.732,1205,1.089,1234,1.153,1255,1.954,1266,1.225,1298,1.978,1301,2.69,1331,1.49,1336,2.461,1351,1.288,1354,2.15,1377,1.885,1405,1.195,1410,1.885,1484,1.378,1485,1.732,1488,1.359,1489,1.979,1515,3.455,1516,2.203,1528,1.439,1533,2.777,1535,1.93,1599,1.556,1611,1.48,1631,1.843,1632,1.348,1639,0.999,1674,1.668,1681,2.088,1688,3.185,1724,1.699,1729,1.582,1745,2.429,1765,1.93,1811,1.885,1843,3.411,1857,1.506,1869,1.02,1880,1.767,1920,3.217,1952,1.668,1954,1.49,1978,1.885,2015,4.322,2016,2.22,2046,1.305,2067,1.031,2190,2.749,2204,1.978,2214,3.159,2277,1.114,2284,1.978,2287,2.031,2364,1.14,2419,1.978,2555,2.15,2584,2.299,2586,2.389,2626,2.777,2680,2.62,2699,1.609,2716,2.031,2731,5.535,2844,2.777,2863,4.65,2904,1.699,2987,4.634,3034,2.494,3107,5.796,3150,2.807,3154,1.774,3179,1.506,3192,2.389,3297,2.989,3353,1.556,3370,1.885,3495,1.14,3511,1.323,3657,2.229,3675,2.777,3696,1.321,3877,2.389,3885,1.93,3964,3.455,4285,1.767,4398,2.299,4545,2.344,4736,2.389,4816,1.843,4835,2.299,5060,2.088,5091,1.93,5129,4.369,5143,1.93,5157,1.804,5158,1.774,5170,2.989,5178,3.003,5183,2.494,5214,2.62,5227,2.494,5267,2.989,5304,2.031,5320,2.299,5389,4.59,5393,2.389,5454,2.299,5614,1.93,5637,1.305,5736,1.556,5794,2.15,5974,1.461,6281,1.506,6289,2.207,6291,2.494,6295,1.341,6300,2.344,6338,2.741,6339,2.382,6343,4.107,6366,1.668,6446,2.22,6497,1.804,6520,3.88,6639,2.088,6648,2.22,6649,1.885,6700,1.556,6734,2.777,6923,3.6,6974,1.978,7004,2.031,7046,5.691,7067,1.978,7101,1.609,7198,2.777,7312,3.717,7373,2.299,7392,3.686,7485,2.088,7513,4.391,7516,2.777,7692,2.389,7781,4.954,7782,2.299,7871,2.22,8149,4.076,8217,2.494,8320,5.148,8684,2.389,8728,2.15,8925,2.62,8934,2.989,9150,2.989,9320,2.989,9321,3.309,9322,2.989,9323,5.374,9324,3.309,9325,2.389,9326,3.309,9327,3.309,9328,3.88,9329,3.309,9330,2.777,9331,2.989,9332,6.321,9333,2.989,9334,2.989,9335,7.132,9336,2.989,9337,2.989,9338,7.727,9339,2.989,9340,2.989,9341,7.132,9342,2.989,9343,2.989,9344,7.132,9345,2.989,9346,3.309,9347,7.976,9348,6.321,9349,8.182,9350,4.65,9351,9.274,9352,9.274,9353,9.724,9354,7.389,9355,7.713,9356,6.441,9357,6.441,9358,6.321,9359,5.149,9360,5.149,9361,5.149,9362,5.149,9363,3.309,9364,3.309,9365,3.309,9366,6.321,9367,7.132,9368,3.309,9369,3.309,9370,2.989,9371,3.309,9372,3.309,9373,3.309,9374,3.309,9375,3.309,9376,7.389,9377,7.132,9378,5.149,9379,5.149,9380,3.309,9381,5.149,9382,6.321,9383,3.309,9384,5.149,9385,3.309,9386,3.309,9387,3.309,9388,3.309,9389,3.309,9390,3.309,9391,3.309,9392,3.309,9393,3.309,9394,3.309,9395,3.309,9396,3.309,9397,3.309,9398,3.309,9399,3.309,9400,3.309,9401,5.149,9402,3.309,9403,3.309,9404,3.309,9405,3.309,9406,3.309,9407,3.309,9408,3.309,9409,3.309,9410,2.989,9411,3.309,9412,3.309,9413,3.309,9414,3.309,9415,3.309,9416,5.149,9417,3.309,9418,3.309,9419,3.309,9420,3.309,9421,3.309,9422,2.989,9423,5.149,9424,5.149,9425,5.149,9426,2.62]],["description//tracks/90daysofdevops/day27",[191,1.249,204,1.856,1611,0.85]],["title//tracks/90daysofdevops/day26",[525,1.491,1305,2.275,1702,0.988,2204,1.958,2277,1.103,6923,1.866,8320,2.364,9323,2.468]],["content//tracks/90daysofdevops/day26",[6,0.37,26,0.715,31,1.676,38,1.279,44,1.499,68,0.88,75,0.824,77,2.084,80,1.78,96,1.112,107,1.273,110,1.022,111,1.379,112,1.338,113,1.619,114,0.872,126,1.509,139,1.189,147,1.236,161,1.499,164,2.118,173,2.263,175,0.502,176,1.576,188,2.147,192,2.407,196,2.417,197,1.566,201,2.815,204,3.058,206,1.285,214,3.746,216,1.166,230,1.797,231,5.156,234,1.426,235,2.068,247,3.861,288,0.832,290,2.984,292,2.984,293,2.286,295,1.2,333,2.612,334,3.391,336,2.497,337,1.619,343,2.086,355,2.527,356,1.083,359,2.568,374,2.329,414,2.497,422,1.287,423,1.483,431,1.549,433,2.497,454,3.16,461,1.695,462,1.273,467,1.468,479,1.08,494,2.365,507,1.532,530,2.214,536,0.88,575,2.854,587,4.582,593,1.308,598,1.894,600,1.358,632,3.379,635,1.656,636,2.307,637,1.971,675,2.004,679,5.979,718,1.757,733,2.546,742,1.273,757,3.332,758,1.698,817,1.483,843,1.998,888,3.511,918,1.183,925,1.904,930,2.854,931,1.695,935,1.612,952,2.249,996,3.793,998,2.147,1002,2.046,1024,1.518,1026,2.249,1046,2.475,1054,1.919,1068,2.497,1073,2.709,1079,1.869,1088,1.133,1104,3.379,1109,3.276,1110,1.778,1181,2.214,1224,1.869,1232,2.77,1240,1.919,1296,3.269,1297,2.651,1305,6.982,1331,2.297,1351,1.894,1354,3.16,1405,1.757,1422,2.907,1426,2.365,1430,2.286,1482,1.823,1487,2.407,1499,3.379,1506,3.85,1516,3.003,1592,1.637,1611,1.057,1626,2.113,1630,2.451,1680,1.823,1704,2.054,1729,2.325,1745,1.869,1748,4.082,1749,3.025,1768,2.984,1890,2.214,1908,3.068,1983,4.205,2004,2.026,2069,2.77,2096,4.096,2137,3.16,2181,3.068,2227,2.907,2277,1.637,2333,2.214,2364,1.676,2551,4.082,2604,3.511,2647,2.286,2668,4.082,3034,3.665,3174,1.637,3179,2.214,3187,2.365,3271,4.392,3495,1.676,3508,2.407,3516,2.984,3655,2.597,3657,2.417,3661,3.332,3696,1.248,3699,2.115,3750,2.709,3879,2.651,3984,2.365,4415,2.147,4734,4.082,5060,3.068,5091,2.836,5129,4.6,5157,2.651,5158,2.361,5177,3.068,5178,4.627,5180,3.263,5183,3.665,5222,3.511,5227,3.665,5294,3.263,5329,3.85,5389,2.407,5457,2.054,5482,2.836,5569,2.709,5637,1.919,5676,2.77,5688,3.85,5703,3.263,6124,3.379,6164,4.082,6281,2.214,6338,1.869,6339,2.249,6366,2.451,6523,4.082,6782,3.85,6855,3.511,6985,3.665,7198,4.082,7199,4.082,7419,3.16,7485,3.068,7513,5.512,7781,5.512,7782,5.985,7783,4.392,7871,3.263,8009,3.379,8052,3.511,8156,3.379,8320,7.435,8447,3.665,8600,3.665,8660,4.082,8882,4.082,8925,3.85,9034,3.665,9322,4.392,9323,7.762,9325,3.511,9330,6.659,9331,4.392,9333,6.189,9334,4.392,9336,6.189,9337,4.392,9339,6.189,9340,4.392,9342,6.189,9343,4.392,9350,4.392,9354,4.392,9355,4.392,9356,4.392,9357,4.392,9426,3.85,9427,3.85,9428,4.863,9429,4.863,9430,4.863,9431,4.863,9432,4.392,9433,7.622,9434,4.863,9435,9.082,9436,4.863,9437,4.863,9438,4.863,9439,4.392,9440,4.863,9441,4.863,9442,4.392,9443,4.863,9444,4.392,9445,3.85,9446,4.863,9447,4.863,9448,4.392,9449,4.863]],["description//tracks/90daysofdevops/day26",[525,1.663,1305,2.538,1702,1.102,2277,1.23,6923,2.081,8320,2.637,9323,2.753]],["title//tracks/90daysofdevops/day25",[204,1.446,593,0.708,1611,0.662,2137,2.791,6338,1.651]],["content//tracks/90daysofdevops/day25",[2,2.517,6,0.316,26,0.556,44,2.116,49,1.009,52,1.644,53,1.287,57,2.476,64,1.178,65,1.153,67,1.258,68,0.684,71,1.153,73,1.009,74,0.809,77,2.443,80,0.848,100,2.536,102,0.951,105,0.999,107,0.989,109,2.826,110,0.794,111,1.072,113,2.285,116,2.153,118,1.04,124,0.779,126,0.832,127,1.978,136,1.525,137,1.254,141,1.083,147,0.96,149,1.807,158,1.453,161,1.165,164,1.522,173,0.942,174,3.413,175,0.973,182,2.384,191,0.856,197,1.835,202,1.029,203,1.204,204,3.235,207,1.941,208,1.941,214,3.893,215,1.871,216,0.906,217,1.739,219,1.094,230,2.027,231,2.456,235,2.307,242,2.536,245,1.924,259,1.382,265,2.164,270,1.574,288,1.475,289,1.175,295,1.694,299,2.728,300,2.059,305,1.721,307,1.511,333,1.244,334,1.871,335,2.105,343,1.851,344,0.39,352,1.815,353,2.319,354,0.979,355,2.434,356,1.126,358,1.941,362,1.477,374,1.823,375,1.23,376,1.62,377,1.472,378,2.443,383,1.141,397,1.421,398,1.777,405,4.785,411,1.978,423,1.153,432,2.375,441,2.479,459,1.258,461,1.317,468,1.553,470,1.942,479,0.514,490,0.924,507,1.191,518,1.776,519,1.553,526,2.536,536,0.684,548,1.898,553,2.105,555,1.453,560,1.531,587,4.585,595,1.399,598,1.472,600,1.308,611,1.365,626,1.702,628,1.65,645,2.018,648,2.938,675,2.236,722,2.06,733,1.978,741,1.472,756,1.835,758,1.22,778,1.522,832,1.905,843,2.342,849,1.402,852,1.777,896,4.212,903,1.434,907,0.801,909,1.129,910,1.739,914,2.153,916,2.728,917,1.449,918,0.985,924,2.259,925,1.584,931,1.987,991,2.124,996,1.807,998,1.668,1002,2.05,1012,1.871,1015,1.905,1017,1.553,1021,1.105,1024,1.463,1028,2.153,1053,1.877,1055,1.667,1068,2.927,1088,0.881,1101,2.153,1104,2.626,1107,2.873,1109,3.281,1110,2.51,1121,2.259,1136,2.992,1205,1.244,1208,1.141,1234,1.317,1268,2.018,1279,2.384,1280,3.823,1284,1.365,1292,2.984,1296,1.434,1297,2.06,1302,3.654,1309,1.62,1351,1.472,1363,2.541,1364,1.553,1405,1.365,1423,2.821,1424,1.365,1426,1.838,1430,1.777,1435,3.227,1465,2.992,1469,2.626,1487,2.821,1513,3.413,1524,2.204,1532,2.848,1550,2.536,1585,2.942,1591,2.06,1592,1.273,1597,1.748,1599,1.777,1611,1.526,1618,1.92,1619,1.668,1620,2.456,1626,2.357,1632,1.796,1653,2.018,1656,1.302,1674,1.905,1677,1.978,1680,2.137,1683,3.172,1688,3.459,1700,2.259,1701,2.927,1704,2.408,1724,1.941,1741,1.62,1763,2.536,1770,2.384,1775,2.728,1789,1.644,1829,1.416,1863,1.668,1869,1.758,1903,2.626,1930,1.553,1933,3.823,1943,2.384,1987,2.137,2004,1.574,2005,1.905,2039,1.905,2046,2.249,2098,1.748,2099,2.772,2103,3.705,2104,2.728,2190,3.044,2233,2.626,2240,2.319,2245,3.248,2277,2.311,2290,4.513,2382,1.416,2604,2.728,2611,3.325,2629,1.871,2647,1.777,2694,3.172,2731,2.105,2789,3.459,2820,2.595,2929,1.748,2949,1.597,2987,2.456,3106,3.172,3107,2.319,3154,1.302,3159,2.059,3187,1.838,3198,2.384,3214,1.574,3273,2.204,3305,1.905,3310,3.413,3426,1.434,3494,2.848,3591,2.153,3617,1.978,3625,2.728,3641,3.413,3658,1.777,3661,3.717,3669,2.992,3696,2.213,3699,1.644,3811,2.68,3883,3.498,3924,5.149,3946,2.319,3980,2.06,3984,2.772,4019,2.536,4067,1.978,4161,2.848,4271,1.644,4424,1.62,4449,2.018,4545,1.721,4554,2.153,4712,2.728,4755,3.172,4757,2.204,4782,2.204,4802,1.905,4809,2.728,4894,3.172,4986,3.413,5024,2.06,5060,2.384,5065,2.637,5091,2.204,5100,1.244,5122,1.574,5129,4.38,5157,3.108,5158,1.964,5178,2.204,5180,2.536,5183,2.848,5299,2.105,5304,1.491,5313,3.397,5327,3.498,5355,2.992,5388,3.961,5389,3.397,5522,2.848,5524,1.62,5542,1.941,5736,2.68,5974,1.668,6058,2.992,6164,4.785,6186,2.384,6281,1.721,6300,1.721,6338,3.315,6339,3.175,6364,2.375,6365,2.728,6375,3.315,6408,3.172,6442,2.848,6445,1.491,6462,4.115,6598,2.456,6601,3.413,6650,3.413,6663,2.728,6700,3.227,6708,2.728,6720,2.105,6777,2.728,6818,3.413,6858,2.105,6906,2.848,6939,2.848,6960,5.31,7067,2.259,7125,3.413,7178,2.821,7265,2.728,7392,4.003,7432,3.172,7443,2.626,7485,2.384,7509,2.018,7513,3.961,7519,2.992,7693,3.172,7743,2.204,7756,2.992,7773,2.992,7781,2.626,7782,2.626,7817,3.705,7825,2.626,7830,2.992,7836,2.626,7895,2.992,7977,4.167,8009,6.675,8050,3.413,8129,2.992,8155,3.413,8195,4.115,8245,2.848,8246,4.103,8300,2.06,8302,2.992,8320,7.293,8452,3.172,8615,2.992,8868,3.413,9034,4.296,9173,3.413,9205,3.172,9207,3.172,9216,3.413,9231,3.172,9320,3.413,9323,7.355,9347,3.413,9376,3.413,9422,3.413,9426,2.992,9427,7.086,9433,3.172,9450,3.413,9451,3.78,9452,3.78,9453,3.78,9454,5.701,9455,3.413,9456,3.78,9457,3.78,9458,6.864,9459,3.78,9460,3.78,9461,5.149,9462,8.204,9463,3.78,9464,3.78,9465,5.701,9466,3.78,9467,3.78,9468,3.413,9469,3.78,9470,5.701,9471,5.701,9472,3.78,9473,3.78,9474,3.78,9475,3.78,9476,3.413,9477,3.413,9478,3.78,9479,3.78,9480,5.761,9481,5.701,9482,5.701,9483,3.78,9484,3.413,9485,3.413,9486,3.78,9487,3.78,9488,3.78]],["description//tracks/90daysofdevops/day25",[204,1.647,593,0.806,1611,0.754,6338,1.88]],["title//tracks/90daysofdevops/day24",[204,1.824,2167,3.239,6338,2.083]],["content//tracks/90daysofdevops/day24",[6,0.304,9,2.747,11,1.918,14,1.161,18,1.974,25,1.68,26,0.56,27,1.327,31,1.311,34,0.87,35,2.403,44,1.767,46,1.851,51,3.437,52,2.492,56,3.123,60,4.586,64,1.186,65,0.962,68,0.689,70,1.845,71,1.161,73,2.196,74,1.227,75,1.521,80,0.854,83,1.426,105,1.515,112,1.047,115,4.137,116,2.168,118,1.896,122,2.401,124,1.181,126,0.838,136,0.846,137,1.047,147,1.456,160,2.473,175,0.591,176,1.717,183,1.501,191,1.298,195,2.275,197,1.225,201,1.563,203,1.212,204,3.241,207,1.954,208,1.954,214,4.308,215,1.884,216,2.073,222,1.327,227,3.296,228,3.194,229,1.542,230,2.032,235,2.609,240,2.045,246,1.215,259,1.392,264,1.998,267,1.426,288,0.651,301,2.175,307,2.291,336,1.954,337,1.267,342,1.585,344,0.591,351,1.016,352,1.212,354,0.986,356,1.035,361,3.06,362,1.988,375,1.239,378,2.456,393,1.515,397,1.912,410,1.76,411,1.992,422,1.076,423,1.161,428,2.644,459,2.295,462,0.996,464,1.342,466,3.013,467,1.149,470,1.296,476,1.501,488,1.225,489,1.789,529,3.013,530,1.733,535,1.456,536,0.689,542,1.186,544,2.168,545,2.275,546,2.275,555,1.463,559,2.747,587,4.205,592,2.168,598,2.231,602,1.954,611,2.07,628,1.659,635,1.296,637,1.542,641,2.868,741,1.482,745,1.137,756,1.225,757,1.851,758,0.815,760,3.124,766,2.335,778,1.016,793,1.281,803,3.615,805,1.608,817,2.737,840,1.76,849,1.171,858,2.168,905,1.324,907,1.626,909,1.711,911,2.473,917,2.091,918,1.55,925,1.592,935,1.348,938,1.006,991,1.592,1005,1.655,1008,2.401,1018,2.497,1033,2.12,1049,1.68,1053,1.253,1057,2.694,1066,2.121,1088,2.308,1089,1.375,1108,2.22,1143,2.831,1148,3.615,1150,2.473,1184,1.789,1192,2.868,1205,2.709,1207,2.401,1208,2.315,1211,2.075,1229,2.168,1230,2.747,1237,1.563,1255,2.175,1269,1.426,1279,3.615,1282,4.015,1284,2.07,1301,1.199,1303,2.22,1308,2.395,1315,2.261,1351,1.482,1363,2.121,1365,1.706,1422,2.275,1435,2.694,1470,1.998,1488,2.354,1489,1.463,1504,2.075,1526,1.789,1529,2.032,1553,3.013,1591,3.758,1592,1.281,1597,2.651,1599,1.789,1610,1.392,1611,1.424,1618,2.321,1619,1.68,1621,3.845,1626,1.173,1627,2.888,1631,2.12,1632,2.417,1639,1.149,1645,2.12,1646,1.789,1656,2.375,1661,1.952,1675,1.954,1678,2.74,1679,3.437,1693,4.985,1694,1.706,1698,4.81,1702,2.609,1704,1.608,1705,2.644,1736,2.473,1803,2.075,1819,3.437,1826,2.554,1838,3.013,1863,1.68,1874,2.554,1904,1.76,1906,3.437,1930,1.561,1987,2.583,2067,1.186,2072,3.194,2101,2.335,2240,2.335,2277,1.281,2279,4.318,2299,2.032,2324,2.075,2364,1.311,2382,1.426,2467,1.819,2564,2.609,2570,2.888,2610,3.437,2643,1.706,2652,2.644,2653,5.176,2662,1.542,2698,2.888,2985,2.401,3000,2.22,3009,2.335,3010,3.194,3150,2.075,3159,1.375,3174,1.93,3189,2.032,3237,3.013,3253,2.335,3273,3.342,3300,3.194,3311,2.22,3312,2.335,3327,2.275,3359,2.747,3394,1.585,3426,1.444,3617,1.992,3619,3.124,3657,1.342,3696,1.769,3748,4.537,3799,1.608,3800,1.76,3891,1.851,3946,2.335,3954,3.437,3984,1.851,3993,2.401,3999,4.318,4039,1.706,4067,4.015,4103,2.942,4118,1.884,4145,2.644,4164,2.747,4230,2.868,4243,3.194,4285,2.032,4288,3.013,4290,2.868,4314,1.992,4423,5.385,4447,2.401,4459,2.998,4461,2.747,4482,2.868,4497,2.456,4545,1.733,4554,2.168,4791,2.747,4830,2.22,4849,2.12,4850,3.194,4872,2.644,4902,3.194,4919,3.013,4965,3.013,4996,3.437,5028,1.884,5060,2.401,5065,1.76,5091,2.22,5129,4.93,5158,1.311,5180,2.554,5183,2.868,5299,2.12,5304,1.501,5305,1.079,5321,2.644,5327,2.335,5454,2.644,5485,3.194,5500,3.194,5581,2.868,5637,1.501,5665,2.747,5676,2.168,5736,2.694,5952,2.644,5974,1.68,6186,2.401,6295,2.322,6338,4.093,6339,3.806,6355,2.473,6357,2.275,6365,2.747,6373,2.644,6379,2.644,6381,2.22,6414,3.194,6417,3.194,6462,2.747,6616,3.194,6657,2.644,6700,2.694,6709,2.473,6716,2.473,6755,2.644,6876,3.437,6910,3.194,6939,2.868,7070,3.013,7081,3.437,7097,3.194,7101,1.851,7123,2.644,7150,3.013,7207,2.12,7209,2.12,7259,2.473,7265,4.137,7363,2.747,7364,2.168,7417,3.437,7419,2.473,7465,2.22,7467,2.644,7509,4.617,7510,3.194,7513,5.329,7825,2.644,7830,3.013,7887,2.644,8091,2.554,8098,3.194,8163,2.644,8300,2.075,8545,2.868,8639,3.724,8685,2.747,8766,2.868,8918,3.437,9034,2.868,9138,2.644,9204,3.437,9328,2.868,9426,3.013,9433,3.194,9448,3.437,9455,3.437,9489,3.806,9490,3.806,9491,3.437,9492,3.806,9493,3.806,9494,3.437,9495,3.437,9496,3.806,9497,3.806,9498,3.806,9499,3.806,9500,3.806,9501,3.806,9502,3.806,9503,3.806,9504,3.806,9505,3.437,9506,3.806,9507,3.806,9508,3.806,9509,3.806,9510,3.437,9511,3.806,9512,8.228,9513,3.806,9514,3.806,9515,3.806,9516,3.806,9517,3.806,9518,3.806,9519,3.806,9520,3.806,9521,3.806,9522,3.806,9523,4.81,9524,3.806,9525,3.806,9526,3.806,9527,3.437,9528,3.194,9529,5.731,9530,5.731,9531,3.806,9532,3.806]],["description//tracks/90daysofdevops/day24",[204,2.127,6338,2.428]],["title//tracks/90daysofdevops/day23",[204,1.824,213,3.16,2121,4.083]],["content//tracks/90daysofdevops/day23",[6,0.308,8,2.883,19,2.426,29,1.536,38,1.348,44,1.952,53,2.157,58,1.372,64,1.357,67,1.45,71,1.328,72,2.374,74,0.932,75,0.738,77,3.511,80,1.421,107,1.14,110,1.828,113,1.45,118,2.052,120,1.054,124,0.898,127,2.28,136,0.968,146,2.195,147,1.107,154,2.54,161,1.952,175,0.653,184,3.144,190,2.371,191,0.986,192,2.155,199,3.448,201,1.789,202,1.186,203,1.387,204,3.59,213,5.875,214,3.245,215,2.155,218,4.666,219,1.261,221,1.096,229,1.765,230,2.056,234,0.906,244,2.28,245,2.061,246,0.923,247,3.901,265,1.653,270,1.814,272,1.84,288,1.277,289,1.538,301,1.653,305,1.983,307,2.983,335,2.426,336,3.251,337,1.45,342,1.814,343,1.054,344,0.449,355,1.387,356,0.548,362,1.641,372,1.84,374,2.018,377,1.696,383,1.314,393,1.151,396,4.465,414,4.468,416,3.655,422,1.538,423,1.328,426,5.42,427,1.653,431,2.376,435,2.236,437,2.905,439,2.047,461,1.518,462,1.14,464,2.233,466,3.448,472,1.718,488,2.402,490,1.548,494,2.118,542,1.357,555,2.434,585,2.83,587,3.079,593,1.044,600,1.083,608,3.026,611,1.573,627,2.195,630,3.655,637,1.765,638,2.883,646,1.894,675,1.274,735,3.655,742,1.657,758,0.932,817,1.931,855,3.995,856,1.789,857,2.929,886,2.481,887,3.026,902,2.236,905,0.61,909,1.891,910,1.931,918,1.094,935,1.025,938,1.674,1013,3.933,1018,2.061,1019,1.592,1024,1.567,1038,2.54,1043,2.481,1053,2.084,1054,3.232,1088,1.015,1089,1.573,1104,3.026,1109,4.679,1110,3.724,1121,2.603,1138,1.118,1141,5.839,1143,2.601,1180,2.929,1205,1.434,1208,1.314,1226,2.325,1246,2.195,1249,2.748,1266,1.612,1269,2.796,1284,2.287,1292,5.273,1309,1.866,1315,1.718,1341,1.466,1342,3.655,1351,1.696,1354,4.115,1363,3.032,1441,2.83,1524,2.54,1529,2.325,1600,2.481,1610,3.182,1626,1.952,1628,1.866,1630,2.195,1653,2.325,1662,3.933,1669,1.84,1672,2.426,1680,1.632,1696,2.748,1740,2.481,1742,2.014,1750,2.014,1910,3.282,1916,2.54,1917,2.54,1930,1.186,1932,2.672,1936,5.315,1943,2.748,1954,1.261,2006,3.079,2044,2.922,2045,2.374,2046,2.498,2055,2.325,2067,1.357,2169,3.282,2297,3.282,2364,2.571,2698,2.195,2699,2.118,2716,2.672,2718,3.655,2719,6.738,2720,6.738,2721,5.691,2723,2.603,2724,3.026,2820,1.983,2985,2.748,3013,3.381,3015,1.983,3150,2.374,3353,2.047,3359,3.144,3394,3.108,3495,1.5,3616,3.144,3696,1.118,3700,1.789,3800,2.929,3811,2.047,3879,2.374,3978,3.144,3984,2.118,4016,3.933,4091,2.83,4118,3.134,4288,3.448,4300,3.655,4410,3.144,4447,2.748,4496,3.144,4568,2.748,4757,2.54,4791,3.144,4805,2.83,5025,3.282,5060,2.748,5074,4.46,5091,2.54,5128,2.236,5129,3.381,5130,3.448,5158,1.5,5327,5.891,5345,3.448,5354,5.013,5355,8.205,5559,2.922,5688,3.448,5778,2.748,6295,2.566,6330,3.026,6369,2.325,6373,3.026,6375,1.674,6455,2.748,6658,3.026,6691,3.655,6699,3.933,6720,2.426,6866,3.144,6923,2.481,6992,3.282,6995,3.448,7046,2.672,7063,5.013,7082,2.603,7103,3.144,7115,2.922,7383,3.933,7407,3.785,7577,3.282,7754,3.448,7782,5.183,7799,5.315,7887,3.026,7934,3.026,7975,3.655,8010,3.026,8241,3.448,8452,3.655,8468,3.655,9132,5.013,9135,5.719,9231,6.875,9243,3.655,9328,6.558,9484,3.933,9533,6.738,9534,4.355,9535,4.355,9536,7.461,9537,4.355,9538,7.461,9539,3.144,9540,8.192,9541,4.355,9542,7.859,9543,3.933,9544,4.355,9545,4.355,9546,4.355,9547,4.355,9548,4.355,9549,4.355,9550,5.719,9551,3.933,9552,4.355,9553,4.355,9554,4.355,9555,4.355,9556,4.355,9557,4.355,9558,4.355,9559,3.655,9560,3.933,9561,5.719,9562,5.315,9563,6.332,9564,4.355,9565,6.332,9566,4.355,9567,4.355,9568,4.355,9569,4.355,9570,3.933,9571,4.355,9572,4.355,9573,3.933]],["description//tracks/90daysofdevops/day23",[204,2.127,213,3.684]],["title//tracks/90daysofdevops/day22",[214,1.867,224,1.479,1972,3.236,3015,1.955,9539,3.1]],["content//tracks/90daysofdevops/day22",[6,0.32,7,3.383,15,3.061,27,1.591,29,2.311,30,1.423,32,0.89,34,1.498,38,0.678,44,1.407,45,2.344,52,1.985,74,1.402,75,1.299,80,1.024,89,2.936,95,3.296,96,1.752,107,1.195,110,0.959,114,1.174,120,2.463,124,0.941,147,2.585,161,2.733,172,2.112,173,1.91,191,1.034,196,2.311,204,3.274,207,2.344,213,3.821,214,4.013,216,1.571,219,2.423,224,1.573,225,1.956,238,4.238,261,1.733,288,1.121,301,3.178,307,1.825,332,2.301,334,3.242,335,2.543,337,1.52,344,1.121,351,1.219,352,2.44,362,2.297,374,1.456,383,1.378,397,1.633,414,4.738,422,0.857,423,1.392,435,2.344,459,1.52,478,1.985,480,3.44,481,4.258,485,2.489,487,3.663,490,1.601,518,2.041,526,3.063,532,3.296,536,1.185,541,2.39,545,2.729,560,2.655,587,2.22,593,0.752,600,1.121,611,1.649,627,2.301,643,2.967,646,3.332,710,4.123,714,2.39,765,3.44,770,2.601,778,1.219,840,2.112,856,2.691,859,2.768,864,2.301,882,2.344,905,0.64,907,1.389,918,0.788,929,4.396,935,1.97,939,1.669,1021,1.335,1033,2.543,1037,2.259,1053,1.503,1057,2.146,1061,1.985,1079,2.518,1088,1.064,1103,1.875,1107,2.301,1109,4.733,1110,3.845,1143,1.875,1150,2.967,1205,2.157,1226,2.438,1232,2.601,1249,5.822,1267,5.774,1286,4.123,1292,5.636,1296,2.908,1351,1.778,1363,4.034,1424,1.649,1478,1.875,1482,1.711,1526,2.146,1528,1.985,1535,2.662,1536,1.985,1591,5.03,1599,2.146,1618,2.206,1645,2.543,1651,1.957,1672,3.649,1694,2.046,1786,1.649,1789,1.985,1818,2.619,1822,3.614,1912,1.85,1930,1.784,1952,2.301,1953,3.44,1955,2.182,1987,1.711,1988,2.344,2012,3.44,2027,2.601,2037,3.44,2046,2.585,2056,3.172,2067,1.423,2105,4.123,2299,2.438,2364,3.054,2592,3.832,2643,2.046,2820,4.756,2870,2.543,3014,3.44,3015,4.575,3120,3.296,3172,2.182,3173,5.186,3304,3.934,3495,1.573,3508,2.259,3511,1.825,3515,2.543,3587,2.967,3625,3.296,3666,2.344,3984,4.487,4029,2.88,4103,3.934,4118,2.259,4453,3.296,4496,3.296,4573,3.832,4743,3.614,4795,4.123,4835,3.172,5060,2.88,5091,2.662,5128,2.344,5129,4.092,5158,1.573,5224,3.614,5238,5.186,5676,2.601,6339,2.112,6367,2.344,6531,4.396,6687,3.832,6689,2.967,6700,2.146,6771,3.614,6974,2.729,7170,2.438,7178,2.259,7364,2.601,7404,3.063,7419,4.258,7473,3.832,7767,3.172,7781,5.817,7782,5.323,8055,3.172,8089,3.832,8091,3.063,8115,3.832,8176,4.937,8189,3.832,8241,3.614,8580,3.832,8638,4.123,8647,3.832,8818,4.123,9043,4.123,9239,5.499,9495,4.123,9533,4.123,9539,7.148,9543,4.123,9561,5.917,9562,5.499,9574,5.917,9575,4.566,9576,4.566,9577,4.566,9578,4.566,9579,4.566,9580,4.566,9581,4.566,9582,6.552,9583,4.566,9584,4.566,9585,6.552,9586,4.566,9587,4.566,9588,4.566,9589,4.566,9590,4.566,9591,7.978,9592,4.566,9593,4.123,9594,6.552,9595,4.566,9596,4.566]],["description//tracks/90daysofdevops/day22",[1363,1.81,1818,1.955,3015,2.226,9539,3.53]],["title//tracks/90daysofdevops/day21",[204,1.613,355,1.526,2056,3.328,5305,1.359]],["content//tracks/90daysofdevops/day21",[1,1.509,6,0.345,25,3.017,26,1.164,27,2.382,32,0.944,34,1.107,38,0.719,43,3.985,52,2.972,53,2.697,58,1.526,65,1.147,73,1.293,74,1.463,77,2.929,80,1.533,105,1.806,109,2.963,110,1.018,124,0.999,133,2.972,137,1.248,147,1.231,175,0.817,176,0.962,191,1.097,195,4.733,197,1.56,203,1.543,204,3.698,211,4.441,214,4.614,216,1.162,221,1.219,230,1.097,245,1.219,246,1.823,247,3.063,259,2.895,264,1.688,271,2.698,288,0.829,307,1.937,333,1.595,334,3.382,344,0.887,352,1.543,355,1.543,356,0.996,362,2.052,374,1.077,378,2.076,381,1.911,383,1.462,396,4.316,397,1.703,406,2.441,411,3.577,421,2.076,422,1.487,423,2.084,461,1.688,462,1.268,470,1.65,479,0.93,487,3.267,488,1.56,489,2.277,490,1.184,536,1.237,538,3.25,540,2.018,541,3.577,542,1.509,587,4.802,600,0.829,646,2.972,711,3.65,714,2.535,718,1.75,742,1.268,745,1.447,758,1.841,774,1.631,778,1.293,831,4.747,849,1.396,855,3.056,902,3.509,905,0.679,917,1.231,918,0.837,926,2.439,935,1.608,938,1.806,1002,2.041,1008,3.056,1018,1.577,1024,0.927,1025,3.056,1040,2.441,1076,2.138,1088,2.193,1102,3.497,1104,3.365,1109,4.335,1110,3.144,1138,1.243,1141,3.25,1208,2.389,1271,1.771,1284,2.468,1292,5.169,1296,2.593,1341,1.631,1351,1.886,1354,3.148,1478,1.99,1484,2.846,1485,2.535,1594,2.896,1610,1.771,1622,3.893,1626,2.107,1631,2.698,1632,1.788,1639,1.462,1646,2.277,1647,2.397,1672,2.698,1689,4.085,1702,2.389,1704,2.046,1734,4.228,1740,2.759,1742,2.241,1745,2.627,1777,2.487,1786,1.75,1791,2.397,1818,1.937,1837,3.835,1869,1.493,1880,2.587,1912,1.963,1954,1.978,1984,2.441,1987,1.815,2056,3.365,2057,2.825,2143,3.497,2277,2.301,2324,2.641,2570,2.441,3015,2.205,3065,2.896,3120,3.497,3152,4.747,3273,3.985,3304,2.487,3357,4.066,3696,1.754,3779,3.056,3799,2.046,3800,2.241,3803,1.815,3844,4.375,3879,3.725,4010,2.759,4039,3.063,4067,2.535,4118,2.397,4120,3.148,4186,4.375,4229,3.323,4415,2.138,4459,2.972,4497,3.686,4568,4.995,4765,3.25,4816,3.806,4849,2.698,4989,3.213,5024,2.641,5025,3.65,5091,2.825,5100,1.595,5128,2.487,5129,5.273,5132,2.972,5133,3.148,5158,1.669,5305,2.991,5327,4.193,5354,3.835,5772,2.587,5974,3.017,6004,2.277,6338,3.306,6339,2.241,6364,2.846,6375,2.627,6531,3.25,6634,3.148,6974,2.896,7046,2.972,7089,2.972,7101,2.356,7445,3.835,7564,3.65,7762,3.835,7781,6.861,7782,7.07,8081,3.65,8088,3.65,8091,5.77,8242,4.066,8246,4.085,8352,4.375,8353,3.65,8615,3.835,8925,6.808,9034,3.65,9132,3.835,9138,3.365,9328,5.149,9330,6.645,9539,3.497,9597,4.844,9598,4.844,9599,4.844,9600,7.918,9601,4.375,9602,4.844,9603,4.844,9604,4.844,9605,4.844,9606,4.844,9607,4.844,9608,4.066,9609,7.918,9610,4.844]],["description//tracks/90daysofdevops/day21",[204,1.647,383,1.476,5305,1.387,7089,3.001]],["title//tracks/90daysofdevops/day20",[355,1.367,991,1.193,2043,2.791,3696,1.102,5305,1.218]],["content//tracks/90daysofdevops/day20",[6,0.237,8,1.861,18,1.408,26,0.889,34,1.382,38,1.18,53,1.392,57,2.171,58,1.287,65,0.686,68,1.094,73,1.92,74,1.294,75,1.024,77,2.59,80,0.917,96,0.934,101,1.861,102,1.029,107,1.882,111,1.714,113,2.394,114,1.084,118,1.124,124,0.843,126,1.749,127,2.139,137,0.747,141,1.171,143,2.139,158,1.571,159,1.408,164,1.92,172,1.891,173,1.792,175,0.82,190,1.183,212,1.425,214,2.629,216,0.98,217,2.194,219,2.082,224,1.408,225,1.221,230,1.8,235,2.957,245,1.029,261,1.551,264,1.425,288,1.231,289,2.158,293,3.987,295,2.093,313,1.208,340,2.182,343,1.463,344,0.422,351,1.613,352,2.29,354,1.864,355,2.701,356,1.066,358,2.099,359,2.265,361,2.182,374,2.296,397,1.019,398,1.922,420,2.508,422,0.768,423,1.247,433,2.099,454,2.656,462,1.07,464,1.442,467,1.234,468,1.679,471,1.804,472,1.612,479,0.823,490,0.999,507,1.904,518,1.274,519,1.679,520,2.508,530,2.752,536,0.74,553,2.277,592,2.328,593,1.31,600,1.648,604,2.182,612,1.861,626,1.221,635,2.059,636,1.376,647,1.752,648,1.571,675,1.195,695,3.236,718,2.183,758,2.061,767,2.384,774,2.422,779,2.353,800,1.861,849,1.623,896,2.508,903,1.551,907,0.867,914,2.328,917,1.039,918,1.044,925,1.998,926,1.459,930,1.702,931,2.107,935,1.422,946,2.139,990,2.95,991,2.208,993,1.494,998,1.804,1002,1.805,1007,2.752,1018,1.331,1021,2.324,1024,1.376,1034,5.581,1040,2.06,1053,1.345,1057,3.736,1059,2.991,1066,1.513,1068,2.099,1073,2.277,1085,2.443,1088,0.952,1089,1.476,1138,1.049,1187,2.842,1211,2.228,1224,2.323,1240,1.612,1269,2.265,1273,3.921,1287,1.891,1291,3.08,1294,2.656,1295,2.182,1296,1.551,1315,1.612,1330,3.443,1331,1.183,1351,1.591,1374,3.861,1424,1.476,1426,1.988,1437,2.182,1447,1.376,1480,1.954,1484,1.702,1485,2.139,1488,2.954,1489,1.571,1491,3.928,1516,2.77,1528,1.778,1585,1.752,1587,2.328,1626,2.217,1628,2.59,1639,1.234,1646,3.987,1647,2.023,1651,1.752,1652,2.695,1669,1.727,1678,1.954,1688,2.06,1745,1.571,1768,2.508,1786,2.183,1792,1.612,1818,1.634,1869,1.26,1917,4.194,1926,8.018,1930,2.418,1983,2.508,1988,2.099,2012,3.08,2067,1.274,2071,3.236,2101,2.508,2227,2.443,2277,2.035,2283,3.103,2419,3.613,2468,2.023,2710,2.839,2949,1.727,2976,1.376,3154,1.408,3159,1.476,3179,1.861,3394,2.518,3504,2.277,3511,3.177,3516,2.508,3624,2.839,3657,3.397,3658,3.381,3659,2.277,3660,3.84,3696,1.049,3699,1.778,3703,2.579,3708,2.742,3750,2.277,3799,1.727,4039,1.832,4201,1.861,4274,2.384,4285,2.182,4805,2.656,4854,3.43,4872,2.839,4989,1.922,5033,1.832,5036,1.571,5043,2.023,5060,2.579,5122,1.702,5127,2.182,5129,2.182,5153,1.752,5158,1.408,5161,3.928,5177,3.813,5203,2.95,5299,3.367,5304,1.612,5305,1.159,5314,2.656,5332,2.579,5380,5.459,5389,3.559,5405,2.508,5542,2.099,5703,2.742,5736,1.922,5772,3.227,6124,2.839,6202,3.164,6289,1.752,6291,3.08,6292,2.95,6295,1.656,6337,2.579,6375,2.323,6405,2.443,6497,5.141,6598,2.656,6639,2.579,6676,2.839,6716,2.656,6720,2.277,6735,3.691,6833,3.236,6839,1.954,6855,2.95,6904,2.107,6923,2.328,6977,4.055,6978,2.579,6983,3.43,6985,3.08,6992,3.08,7010,2.95,7066,2.579,7082,2.443,7101,1.988,7122,1.778,7261,3.236,7296,6.036,7305,2.742,7312,2.95,7395,3.691,7419,2.656,7428,3.43,7475,2.95,7507,3.691,7599,2.328,7676,4.826,7749,4.194,7764,2.139,7795,2.228,7991,3.43,8083,3.43,8137,2.95,8154,2.95,8196,3.43,8246,2.443,8303,4.199,8346,2.95,8382,3.43,8416,3.236,8427,3.43,8438,3.691,8579,3.691,8617,3.691,8623,3.43,8639,2.656,8644,3.691,8688,2.95,8728,2.656,8857,3.08,9318,3.691,9439,3.691,9445,3.236,9468,3.691,9611,3.691,9612,7.947,9613,4.087,9614,4.087,9615,4.087,9616,3.691,9617,8.481,9618,4.087,9619,4.087,9620,4.087,9621,9.503,9622,3.691,9623,3.43,9624,4.087,9625,4.087,9626,7.192,9627,7.192,9628,4.087,9629,4.087,9630,4.087,9631,4.087,9632,6.045,9633,6.045,9634,4.087,9635,6.045,9636,6.045,9637,4.087,9638,6.045,9639,2.95,9640,4.087,9641,7.177,9642,4.087,9643,4.087,9644,4.087,9645,5.073,9646,4.087,9647,4.087,9648,4.087,9649,7.192,9650,4.087,9651,4.087,9652,3.43,9653,3.43,9654,4.363,9655,4.199,9656,2.839]],["description//tracks/90daysofdevops/day20",[355,1.756,991,1.532,3696,1.415]],["title//tracks/90daysofdevops/day18",[190,1.387,424,2.508,2016,3.215,5389,2.371]],["content//tracks/90daysofdevops/day18",[1,1.071,6,0.302,15,1.256,26,1.273,30,1.071,31,1.827,32,0.67,38,0.961,44,1.995,56,1.304,57,1.037,58,1.082,64,2.267,65,0.577,68,0.622,70,1.106,71,1.048,73,0.917,74,1.385,96,0.786,101,1.564,102,1.334,107,0.899,111,2.063,113,1.144,114,0.616,118,1.458,124,1.621,126,1.969,127,1.799,136,1.617,137,0.968,139,1.582,158,1.321,161,1.059,164,1.942,173,1.613,175,0.947,176,0.682,190,2.87,191,0.778,197,2.343,198,1.671,201,3.673,202,1.763,203,2.061,204,1.785,206,1.711,213,2.004,214,3.419,218,3.687,224,1.184,225,1.026,226,1.431,227,1.226,229,3.509,230,1.882,235,2.373,238,2.534,244,2.775,245,2.358,246,1.124,247,3.524,251,1.671,264,1.198,265,1.304,269,2.168,278,1.764,288,0.588,289,1.621,295,1.796,302,4.535,305,2.413,331,2.984,336,2.722,343,2.011,344,0.923,351,1.942,352,1.094,354,1.374,355,2.061,356,0.432,359,1.288,374,2.304,375,1.726,376,1.473,377,1.338,378,2.272,381,1.356,396,1.873,398,2.492,408,3.119,414,1.764,423,2.398,424,1.799,425,1.848,426,1.873,427,2.457,431,2.504,432,2.696,454,2.233,462,0.899,464,1.212,472,1.356,476,1.356,479,0.99,482,1.589,488,1.106,489,1.615,490,2.117,506,2.481,518,2.017,536,1.171,542,1.071,587,1.671,593,1.512,600,1.57,612,1.564,627,1.732,628,1.874,637,1.392,638,1.564,640,1.17,648,1.321,718,2.84,745,1.026,756,1.106,758,1.135,777,1.615,778,1.728,779,2.064,781,1.564,819,1.799,843,2.989,849,1.874,854,2.884,896,2.109,903,1.304,905,0.482,907,0.729,917,0.873,918,0.593,925,2.185,926,1.226,939,1.256,946,1.799,952,1.589,990,2.481,991,0.955,993,3.038,1001,2.589,1005,1.494,1007,1.564,1008,3.345,1012,1.701,1019,1.256,1021,1.551,1024,1.657,1034,1.957,1038,2.004,1042,2.054,1053,1.131,1057,1.615,1061,1.494,1079,1.321,1089,1.915,1105,2.72,1109,3.758,1110,3.355,1141,2.306,1143,2.178,1208,1.037,1211,1.873,1232,1.957,1234,1.198,1245,2.306,1255,1.304,1269,1.987,1273,1.873,1284,1.915,1294,2.233,1297,1.873,1299,1.732,1304,2.306,1312,2.109,1315,1.356,1331,0.995,1333,2.72,1364,2.178,1405,1.915,1422,2.054,1423,1.701,1430,2.492,1475,3.103,1488,1.412,1492,3.103,1495,3.103,1516,2.536,1585,1.473,1598,2.722,1610,3.166,1618,1.157,1626,3.086,1680,1.288,1717,7.609,1749,1.517,1774,2.953,1786,1.241,1792,1.356,1794,2.589,1869,1.059,1890,1.564,1930,2.67,1954,0.995,1972,3.995,2046,1.356,2055,1.835,2181,2.168,2186,3.345,2213,1.914,2227,2.054,2251,1.873,2259,1.517,2277,3.011,2364,1.184,2419,2.054,2462,2.481,2570,1.732,2592,2.884,2731,1.914,2789,1.732,2915,2.953,2949,2.24,2976,1.157,3107,3.253,3154,1.184,3304,2.722,3358,2.481,3370,1.957,3426,1.304,3447,2.72,3495,1.184,3508,1.701,3624,2.387,3657,2.93,3658,1.615,3659,5.706,3660,4.198,3666,1.764,3696,0.882,3722,2.72,3800,2.452,3993,2.168,4295,1.914,4530,1.957,4545,1.564,5033,1.54,5043,1.701,5074,3.169,5128,1.764,5129,3.456,5153,1.473,5161,3.445,5241,3.253,5299,2.953,5300,1.643,5304,2.091,5313,4.285,5389,5.393,5397,2.054,5404,5.176,5405,2.109,5786,3.103,6110,2.481,6122,2.109,6202,1.799,6337,3.345,6339,2.452,6375,1.321,6418,2.884,6445,2.554,6489,2.306,6497,1.873,6520,2.589,6639,2.168,6692,2.884,6716,2.233,6720,1.914,6742,2.481,6785,3.103,6839,1.643,6923,1.957,7029,3.103,7216,2.72,7305,3.557,7373,2.387,7392,2.004,7407,2.054,7415,4.672,7556,4.497,7563,6.914,7599,4.733,7607,4.083,7624,4.45,7676,3.557,7734,4.45,7755,2.884,7778,2.884,7944,6.577,8149,4.197,8176,2.589,8246,2.054,8302,2.72,8303,2.387,8392,2.884,8455,4.788,8471,3.103,8501,3.103,8538,2.481,8567,2.884,8660,2.884,8766,2.589,8882,2.884,8886,3.103,8933,2.884,9325,2.481,9345,4.788,9480,2.884,9570,3.103,9573,4.788,9639,5.253,9652,2.884,9653,2.884,9654,3.827,9655,3.683,9656,2.387,9657,3.436,9658,5.302,9659,3.436,9660,3.436,9661,7.277,9662,3.436,9663,3.436,9664,3.436,9665,5.302,9666,3.436,9667,3.436,9668,5.302,9669,3.436,9670,3.436,9671,3.436,9672,3.103,9673,3.436,9674,3.436,9675,3.436,9676,6.473,9677,3.436,9678,3.436,9679,3.436,9680,3.436,9681,3.436,9682,3.436,9683,5.302,9684,3.436,9685,3.436,9686,3.436,9687,3.436,9688,3.436,9689,3.103,9690,5.302,9691,5.302,9692,3.436,9693,3.436,9694,3.436,9695,3.436,9696,3.436,9697,3.436,9698,3.436,9699,3.436,9700,2.72,9701,3.436,9702,5.302]],["description//tracks/90daysofdevops/day18",[190,1.596,424,2.886,5389,2.729]],["title//tracks/90daysofdevops/day17",[934,2.371,1483,2.508,2011,3.61,9703,4.791]],["content//tracks/90daysofdevops/day17",[6,0.295,7,2.357,26,0.785,34,1.22,38,0.793,57,2.835,58,1.682,64,2.278,67,1.777,68,1.623,72,2.91,73,2.59,74,1.143,77,2.288,80,1.198,91,2.43,96,1.22,102,2.257,110,1.121,114,0.957,118,1.468,124,1.101,126,1.609,139,1.305,148,4.48,149,2.552,155,3.276,159,1.839,169,3.276,172,2.469,173,2.341,175,1.044,183,2.884,190,1.545,192,2.642,205,4.545,214,2.322,216,1.28,217,1.628,224,1.839,234,1.111,235,2.706,278,2.741,288,1.534,289,2.178,295,2.213,297,4.281,301,2.026,343,2.349,356,1.181,422,1.003,423,2.23,433,2.741,486,3.469,507,1.682,536,0.966,540,2.224,558,2.973,593,1.205,598,2.079,600,1.776,635,1.818,638,2.43,648,2.052,760,2.91,785,2.303,849,1.493,901,1.976,903,2.775,905,0.748,909,2.183,910,1.628,918,0.922,934,4.916,938,1.411,940,2.794,951,3.113,952,2.469,1021,1.561,1024,1.595,1040,2.69,1043,3.041,1053,2.407,1061,3.18,1067,3.276,1089,1.928,1181,4.083,1191,3.191,1234,1.861,1273,2.91,1283,4.604,1287,3.382,1299,2.69,1300,2.255,1331,1.545,1335,3.709,1336,2.552,1374,2.43,1473,6.136,1474,4.644,1480,2.552,1483,5.078,1485,2.794,1499,3.709,1503,4.226,1600,3.041,1601,2.91,1620,3.469,1628,2.288,1639,2.706,1651,2.288,1661,1.818,1749,2.357,1818,2.134,1869,1.646,1912,2.962,1930,1.991,2004,2.224,2046,2.106,2090,4.023,2181,3.368,2251,3.985,2252,4.023,2270,3.276,2283,2.741,2419,3.191,2496,3.853,2698,3.684,2699,2.596,2703,3.368,2710,3.709,2837,4.165,2976,1.797,3150,2.91,3154,1.839,3306,3.368,3311,3.113,3426,2.775,3519,3.191,3520,4.023,3591,3.041,3617,3.827,3624,3.709,3626,4.226,3643,6.136,3657,3.421,3663,4.48,3670,4.905,3677,4.226,3702,3.709,3799,2.255,3803,2.001,3862,5.788,3882,4.48,3963,3.113,4150,3.191,4449,2.85,4545,3.328,4554,4.165,5033,2.393,5153,2.288,5161,4.751,5405,3.276,5537,2.741,5703,3.582,5772,2.85,6004,2.51,6186,3.368,6202,3.827,6289,3.133,6337,3.368,6367,2.741,6375,2.052,6450,3.853,6603,4.023,6676,3.709,6678,4.226,6704,4.48,6839,2.552,6951,3.469,6952,3.191,7010,3.853,7063,4.226,7170,2.85,7183,4.226,7798,5.079,7818,3.853,8709,4.48,8729,4.48,8853,4.821,9639,7.003,9654,7.799,9655,5.079,9656,3.709,9704,8.338,9705,5.338,9706,5.338,9707,7.311,9708,8.338,9709,5.338,9710,5.338,9711,5.338,9712,5.338,9713,5.338,9714,5.338,9715,5.338,9716,7.311,9717,4.821,9718,5.338,9719,5.338,9720,5.338,9721,5.338,9722,5.338,9723,5.338]],["description//tracks/90daysofdevops/day17",[934,2.42,1483,2.56,9639,3.53,9654,3.53]],["title//tracks/90daysofdevops/day16",[917,0.904,1930,1.482,1931,2.026,2002,2.244,3657,1.254,6305,1.645]],["content//tracks/90daysofdevops/day16",[6,0.305,14,1.083,26,0.799,31,1.873,32,0.692,33,2.903,38,0.981,42,1.935,53,1.209,57,1.641,58,1.118,64,1.106,68,0.642,70,1.143,71,2.434,73,0.948,75,1.255,83,2.476,91,1.616,96,1.51,100,2.382,107,0.929,109,1.873,110,0.746,111,2.099,113,1.81,114,0.636,118,2.036,126,1.853,136,0.789,137,0.993,149,1.697,164,2.338,172,1.642,173,1.845,175,0.976,183,1.401,190,1.912,191,1.496,192,3.269,198,1.726,202,2.173,205,1.935,216,1.304,217,2.015,221,2.008,230,1.984,235,2.644,245,1.368,246,0.753,261,1.347,265,1.347,272,1.5,281,2.382,288,0.607,289,2.184,295,0.876,299,2.563,301,1.347,302,1.642,337,1.182,343,1.932,344,0.869,351,0.948,354,0.92,356,1.165,359,1.331,362,0.92,369,3.48,374,2.195,381,1.401,393,0.938,397,1.845,402,2.845,419,3.17,422,0.667,423,1.083,425,1.895,431,1.131,432,1.479,459,1.182,461,1.895,464,1.917,468,1.458,471,2.4,473,1.616,479,0.74,486,2.307,490,0.868,507,1.118,526,2.382,536,1.195,548,1.182,575,2.264,585,2.307,587,2.644,593,1.489,600,1.499,626,1.06,628,1.574,635,1.209,638,1.616,640,1.209,647,2.33,678,1.823,718,1.282,741,1.382,742,1.423,755,1.567,758,1.164,774,2.224,777,1.669,778,1.976,785,1.712,800,1.616,831,2.466,843,2.714,849,1.63,896,2.179,907,1.57,915,1.458,917,1.679,918,0.939,926,1.267,931,3.479,934,2.69,938,1.437,942,3.25,946,1.858,991,1.511,993,2.415,1002,2.211,1018,1.156,1021,1.038,1024,1.527,1053,1.169,1055,1.59,1057,1.669,1069,3.25,1088,1.961,1151,1.642,1183,3.533,1190,2.24,1205,3.211,1207,2.24,1226,1.896,1234,1.238,1245,2.382,1254,2.791,1279,3.43,1295,2.903,1296,3.028,1299,1.789,1302,1.697,1308,0.948,1331,1.574,1372,2.98,1374,2.475,1430,1.669,1443,3.028,1447,1.195,1469,5.143,1470,2.781,1483,2.845,1487,3.269,1497,3.648,1585,1.522,1610,1.298,1626,2.282,1632,1.423,1636,2.382,1647,1.757,1652,3.472,1672,1.978,1690,1.616,1694,1.591,1720,2.179,1747,1.195,1769,1.823,1786,1.964,1792,2.145,1849,2.307,1858,2.063,1871,2.382,1912,1.439,1930,2.875,1931,4.217,1952,1.789,1954,2.31,1955,1.697,1984,1.789,1985,2.307,1987,3.656,1996,1.823,2001,1.935,2013,4.546,2046,2.145,2052,3.6,2053,4.432,2067,2.059,2069,2.022,2074,2.24,2131,1.978,2206,2.675,2225,1.789,2227,2.122,2259,3.523,2263,4.978,2277,2.224,2364,1.873,2583,3.206,2584,2.466,2647,3.48,2662,2.203,2701,3.206,2789,2.74,2803,4.563,3154,2.749,3174,2.95,3179,1.616,3184,2.811,3273,2.071,3327,2.122,3362,2.382,3370,2.022,3426,1.347,3495,1.873,3520,2.675,3546,2.071,3587,2.307,3655,1.896,3657,3.553,3658,3.957,3659,5.433,3660,5.048,3661,2.644,3666,1.823,3696,0.911,3803,1.331,3915,1.697,3980,3.601,3984,1.726,4109,2.382,4274,2.071,4399,2.466,4415,1.567,4554,2.022,4802,1.789,5033,1.591,5128,2.791,5153,1.522,5161,3.533,5173,1.823,5270,2.307,5305,1.007,5314,2.307,5320,2.466,5378,3.206,5393,2.563,5405,2.179,5537,1.823,5549,2.179,5552,2.307,5557,3.924,5864,3.924,6004,1.669,6186,2.24,6202,4.177,6295,1.439,6305,3.424,6366,1.789,6367,1.823,6410,2.811,6419,2.297,6446,2.382,6648,2.382,6662,3.206,6675,6.357,6676,2.466,6687,2.98,6700,1.669,6741,1.935,6749,2.811,6751,3.206,6752,5.229,6839,1.697,6923,2.022,7078,2.98,7101,1.726,7150,2.811,7170,1.896,7247,3.777,7392,2.071,7396,2.811,7407,2.122,7540,3.17,7599,4.546,7654,6.663,7676,2.382,7749,2.071,7764,1.858,7918,2.675,7927,2.811,8196,2.98,8246,2.122,8303,2.466,8314,3.206,8371,3.206,8421,3.206,8573,2.98,8600,2.675,8668,3.206,8680,2.466,8688,2.563,8729,2.98,8786,2.98,8790,2.466,8828,2.811,9199,3.206,9655,3.777,9656,2.466,9724,3.551,9725,3.206,9726,3.551,9727,3.551,9728,3.551,9729,3.551,9730,3.551,9731,3.551,9732,3.551,9733,3.551,9734,7.207,9735,2.98,9736,5.437,9737,4.91,9738,3.551,9739,3.551,9740,3.551,9741,5.437,9742,5.437,9743,3.551,9744,3.551,9745,3.551,9746,5.437,9747,5.437,9748,3.551,9749,3.551,9750,3.551,9751,5.437,9752,3.551,9753,3.551,9754,3.551,9755,3.551,9756,3.551,9757,3.551,9758,3.551,9759,5.437,9760,3.551,9761,3.551,9762,3.551,9763,3.551,9764,3.551,9765,3.551,9766,3.551,9767,3.551,9768,3.551,9769,3.551,9770,3.551,9771,3.551,9772,3.551,9773,3.551,9774,3.551,9775,3.551,9776,3.206,9777,3.551,9778,3.551,9779,6.606,9780,3.551,9781,5.437,9782,3.551,9783,3.551,9784,3.551,9785,3.551]],["description//tracks/90daysofdevops/day16",[917,1.014,1930,1.617,1931,2.273,3657,1.407,6305,1.845]],["title//tracks/90daysofdevops/day15",[849,0.979,1996,2.46,3657,1.69,5305,1.359]],["content//tracks/90daysofdevops/day15",[1,1.496,6,0.354,7,2.12,14,0.924,25,1.337,26,0.706,27,1.055,30,0.944,32,0.59,38,1.1,44,2.094,49,1.282,56,1.149,57,2.235,58,0.954,68,1.08,71,0.924,74,1.028,75,0.513,77,1.298,80,1.661,83,1.8,96,1.098,101,1.378,102,1.983,107,1.257,109,1.654,110,1.427,111,0.859,114,1.07,118,0.833,120,1.163,124,1.527,126,1.942,136,1.326,137,0.553,139,0.74,141,1.71,147,1.726,149,2.296,158,1.164,159,1.043,160,1.968,161,0.933,164,0.808,173,2.199,175,1.07,176,0.601,183,3.258,190,1.39,191,0.686,202,1.85,206,1.269,207,1.555,212,1.674,216,0.726,217,0.924,219,1.39,221,1.208,230,1.088,234,0.999,235,1.449,245,1.208,263,1.92,268,1.419,272,1.279,288,1.021,289,2.212,295,2.316,304,1.526,313,0.895,332,1.526,333,1.581,335,1.687,343,2.233,344,0.701,351,0.808,352,0.964,354,0.785,356,0.854,362,0.785,374,2.258,376,2.558,377,2.324,393,0.8,402,2.514,406,1.526,408,1.298,422,0.569,423,1.465,427,1.149,432,1.261,461,1.055,462,1.562,464,1.068,467,0.914,468,1.244,478,1.317,479,1.166,488,1.546,490,1.459,509,2.541,518,1.496,536,0.548,540,1.261,557,2.541,560,3.001,564,1.725,575,1.261,593,1.59,598,1.179,600,1.808,601,1.81,626,2.353,628,2.554,635,2.812,637,1.946,647,1.298,648,1.846,670,1.766,675,0.886,741,1.179,742,1.257,757,1.472,758,1.277,783,2.104,785,0.954,787,1.973,793,1.617,800,2.186,832,3.007,843,2.451,845,1.261,849,2.216,858,1.725,867,0.997,896,1.858,905,0.424,906,2.397,907,0.642,909,0.904,918,0.523,926,2.13,931,3.32,940,1.585,946,1.585,952,1.401,955,1.766,966,2.397,991,1.887,993,1.107,998,1.337,1002,0.904,1007,1.378,1015,1.526,1017,2.451,1019,1.756,1021,1.745,1024,1.73,1036,0.986,1049,1.337,1053,0.997,1054,1.195,1065,2.186,1068,1.555,1070,2.282,1089,1.094,1100,1.472,1138,1.232,1180,1.401,1224,1.164,1255,1.149,1283,1.555,1284,1.094,1288,1.585,1308,0.808,1331,1.39,1333,2.397,1336,1.447,1362,1.499,1364,1.973,1374,2.186,1422,1.81,1423,1.499,1437,1.617,1443,2.675,1447,1.617,1468,2.541,1474,1.687,1480,2.853,1516,1.055,1526,1.424,1530,1.766,1536,2.595,1585,2.558,1601,4.037,1626,1.84,1632,0.792,1639,1.801,1648,1.555,1651,1.298,1653,2.564,1654,1.81,1655,2.282,1656,2.056,1658,2.947,1661,1.031,1680,1.8,1689,1.81,1693,1.968,1704,1.279,1710,2.282,1716,4.816,1742,1.401,1745,1.164,1747,1.617,1749,2.12,1765,1.766,1776,1.91,1786,2.453,1789,1.317,1803,1.651,1818,1.211,1827,1.81,1829,1.135,1858,1.149,1863,1.337,1881,1.499,1890,1.378,1930,2.461,1931,3.399,1932,1.858,1954,0.876,1995,2.104,2050,2.397,2095,4.903,2098,1.401,2101,1.858,2146,2.514,2181,1.91,2191,3.121,2206,2.282,2214,1.858,2251,1.651,2252,2.282,2259,4.142,2262,2.397,2277,1.617,2284,4.06,2333,2.186,2364,2.056,2629,2.953,2678,4.971,2692,1.81,2693,2.595,2710,5.145,2765,1.526,2778,3.336,2789,3.007,2856,2.564,2906,5.287,2925,2.541,2949,1.279,3067,1.968,3154,1.043,3179,2.717,3254,2.735,3316,2.282,3358,2.186,3370,2.735,3394,2.486,3395,2.735,3428,2.397,3492,2.397,3495,1.654,3511,1.92,3624,3.336,3626,2.397,3644,2.541,3655,1.617,3657,3.112,3659,5.537,3660,1.617,3780,5.389,3799,1.279,3800,1.401,3862,3.801,3944,1.91,3973,2.541,4046,2.735,4229,3.832,4274,2.801,4437,1.91,4568,3.03,4738,3.466,4937,2.282,4954,2.282,5033,1.357,5153,1.298,5161,3.121,5261,2.541,5268,2.397,5294,2.032,5295,2.397,5297,2.282,5300,1.447,5302,2.104,5305,1.692,5313,4.24,5314,1.968,5376,2.735,5386,2.104,5389,2.377,5395,3.801,5397,3.567,5398,6.614,5405,1.858,5542,1.555,5592,2.104,5593,2.104,5772,1.617,5794,1.968,5868,2.541,6122,2.947,6124,2.104,6289,2.911,6295,1.227,6301,1.687,6303,5.862,6355,1.968,6369,1.617,6399,5.376,6404,4.816,6411,4.146,6455,1.91,6489,4.969,6520,2.282,6564,4.903,6642,2.104,6649,1.725,6700,1.424,6832,2.282,6839,1.447,6858,1.687,6868,2.735,6894,2.541,6923,1.725,6989,2.282,6997,2.541,7010,4.308,7101,1.472,7156,1.968,7170,3.186,7172,2.186,7227,4.724,7350,4.337,7384,4.337,7466,2.541,7469,3.801,7539,2.397,7591,2.032,7599,3.399,7692,3.466,7749,1.766,7764,1.585,7932,2.104,8049,2.541,8077,2.541,8246,1.81,8295,2.282,8345,2.541,8365,4.06,8399,2.735,8427,2.541,8484,2.735,8486,4.03,8506,2.541,8699,2.397,8709,2.541,8758,2.541,8790,4.146,8837,3.466,8855,2.735,8896,2.186,9325,2.186,9410,4.337,9442,2.735,9523,2.541,9616,6.134,9623,2.541,9655,3.336,9656,2.104,9786,3.028,9787,2.735,9788,3.028,9789,3.028,9790,3.028,9791,2.735,9792,3.028,9793,3.028,9794,3.028,9795,10.094,9796,3.028,9797,4.802,9798,2.735,9799,3.028,9800,3.028,9801,3.028,9802,3.028,9803,3.028,9804,3.028,9805,4.802,9806,3.028,9807,3.028,9808,4.802,9809,3.028,9810,3.028,9811,3.028,9812,3.028,9813,6.688,9814,4.802,9815,3.028,9816,3.028,9817,3.028,9818,6.792,9819,4.802,9820,3.028,9821,3.028,9822,2.735,9823,3.028,9824,3.028,9825,3.028,9826,3.028,9827,3.028,9828,3.028,9829,4.337,9830,5.968,9831,4.337,9832,2.735,9833,3.028,9834,3.028,9835,2.735]],["description//tracks/90daysofdevops/day15",[849,1.126,3657,1.944,5305,1.563]],["title//tracks/90daysofdevops/day14",[1985,3.521,3657,1.911,5305,1.536]],["content//tracks/90daysofdevops/day14",[1,1.251,6,0.326,9,2.897,25,3.715,26,1.238,27,2.079,31,1.383,32,1.163,36,3.025,38,1.057,44,2.194,49,1.899,53,2.031,64,1.251,65,1.001,68,0.726,74,0.859,75,0.68,78,2.4,96,1.627,102,1.01,105,1.061,111,2.234,112,1.104,113,1.336,114,0.72,116,2.286,124,0.828,126,1.567,127,3.121,136,1.581,137,0.733,139,1.458,141,1.709,161,1.838,173,1.486,175,0.868,176,0.797,190,2.28,191,1.351,192,1.987,197,1.92,198,1.952,204,2.396,211,3.876,214,1.746,217,1.224,221,1.01,222,2.079,224,2.452,225,1.781,229,1.626,230,2.068,235,1.8,242,2.693,264,1.399,267,2.235,268,2.103,288,0.687,289,1.229,295,0.991,307,1.605,333,1.321,342,1.672,343,2.038,344,0.734,351,1.071,355,2.266,356,0.99,372,3.006,374,2.199,375,1.307,378,2.556,381,1.584,383,1.211,393,2.082,395,2.101,398,2.804,402,2.101,410,2.758,422,1.336,432,1.672,439,1.887,442,2.851,459,2.369,462,1.05,464,1.416,467,1.211,470,1.367,489,1.887,490,0.981,507,2.241,519,2.45,536,1.425,540,1.672,553,2.236,558,2.236,587,1.952,598,1.563,600,1.348,628,1.162,635,1.367,636,1.352,638,1.827,645,2.143,646,1.746,655,1.383,675,1.174,718,1.45,741,1.563,742,1.05,758,1.276,759,2.463,770,2.286,771,2.341,774,3.075,778,1.071,785,1.264,787,1.649,817,1.224,843,3.457,849,1.453,896,5.881,902,2.061,907,0.851,909,2.125,910,1.224,917,1.515,918,0.693,924,2.4,925,1.115,926,1.433,931,2.079,935,1.403,938,1.061,939,1.468,952,1.857,991,2.607,1002,2.125,1017,1.649,1019,1.468,1021,1.744,1024,1.61,1034,2.286,1049,1.772,1053,1.963,1055,1.174,1065,2.897,1073,2.236,1138,1.03,1187,1.887,1205,2.342,1240,2.353,1252,2.532,1269,1.504,1289,3.478,1303,2.341,1307,2.693,1308,1.071,1331,2.06,1374,3.239,1423,1.987,1426,1.952,1435,1.887,1465,3.178,1516,1.399,1601,2.188,1624,2.789,1626,3.15,1627,2.023,1628,2.556,1632,1.561,1639,1.211,1645,2.236,1651,1.72,1653,2.143,1689,3.565,1690,1.827,1704,1.696,1724,2.061,1742,1.857,1786,1.45,1818,2.384,1884,2.693,1904,1.857,1912,1.626,1930,2.402,1954,2.06,1979,1.72,1987,2.667,1993,2.463,2027,3.397,2033,2.897,2035,2.188,2039,3.969,2046,3.32,2054,2.236,2055,2.143,2067,1.858,2070,2.693,2163,2.236,2225,2.023,2259,1.772,2263,3.025,2277,3.159,2333,1.827,2467,1.919,2564,1.827,2611,2.341,2660,2.609,2662,2.883,2731,2.236,2904,2.061,2929,1.857,2932,3.005,2976,1.352,3147,3.251,3150,2.188,3154,2.452,3158,2.789,3159,1.45,3172,1.919,3179,1.827,3183,3.625,3190,3.625,3305,2.023,3327,2.4,3394,2.484,3495,2.055,3507,3.178,3511,1.605,3627,2.897,3655,2.143,3657,3.766,3658,3.703,3661,1.952,3669,3.178,3696,2.021,3699,1.746,3702,4.943,3734,3.025,3755,2.609,3799,1.696,3811,1.887,3926,2.532,4010,2.286,4039,3.53,4109,2.693,4118,1.987,4230,3.025,4437,2.532,4497,1.72,4554,3.397,4736,2.897,4802,2.023,4959,3.025,4989,2.804,5033,1.799,5036,1.543,5127,2.143,5153,1.72,5161,3.876,5241,2.463,5304,3.32,5305,2.59,5313,1.987,5324,1.857,5388,2.789,5389,1.987,5405,2.463,5487,3.369,5637,2.807,6186,2.532,6202,2.101,6295,1.626,6357,3.565,6364,2.484,6366,2.023,6369,2.143,6375,1.543,6383,3.062,6442,3.025,6445,1.584,6598,2.609,6649,2.286,6708,2.897,6717,3.625,6817,3.369,6832,3.025,6839,1.919,6852,2.789,6862,4.001,6904,1.399,6923,2.286,6983,3.369,6994,3.369,7005,3.625,7080,3.369,7089,2.463,7217,3.369,7359,3.025,7392,2.341,7407,2.4,7519,3.178,7540,3.478,7599,5.768,7601,6.646,7712,3.369,7743,4.15,7744,5.386,7745,5.005,7749,4.594,7764,3.725,7770,3.625,7810,3.025,7818,2.897,7822,3.178,7871,2.693,7934,2.789,7977,2.188,7978,3.369,8010,2.789,8137,4.305,8225,3.369,8246,5.73,8261,3.625,8346,4.305,8365,2.4,8420,3.625,8636,3.625,8688,5.686,8728,2.609,8797,3.178,8896,2.897,9138,2.789,9219,3.369,9461,3.625,9476,3.625,9477,3.625,9551,3.625,9655,4.143,9656,2.789,9836,4.014,9837,5.964,9838,4.014,9839,4.014,9840,4.014,9841,4.014,9842,4.014,9843,3.625,9844,4.014,9845,3.625,9846,4.014,9847,4.014,9848,4.014,9849,4.014,9850,4.014,9851,4.014,9852,4.014,9853,4.014,9854,4.014,9855,5.964,9856,4.014,9857,4.014,9858,4.014,9859,3.369,9860,4.014,9861,3.369,9862,4.014]],["description//tracks/90daysofdevops/day14",[3657,2.228,5305,1.791]],["title//tracks/90daysofdevops/day13",[35,1.497,247,1.925,1974,2.791,5065,1.986,7397,3.1]],["content//tracks/90daysofdevops/day13",[6,0.371,26,0.662,27,1.57,31,0.963,32,0.878,34,1.03,35,3.202,36,2.105,43,1.629,44,2,49,0.746,56,1.06,57,0.843,64,0.871,65,1.397,68,1.174,70,0.9,71,0.852,74,1.627,75,1.624,76,2.212,77,1.197,83,1.047,96,0.639,107,1.179,109,0.963,111,1.277,124,1.337,126,1.245,136,1.001,137,0.51,144,2.883,147,1.437,149,1.336,173,0.696,175,0.584,176,0.555,179,1.383,183,1.102,191,0.633,197,0.9,206,0.738,207,1.435,219,0.809,222,0.974,230,1.611,231,1.816,234,0.581,243,7.222,245,1.633,248,2.357,256,5.969,257,2.05,269,2.841,271,3.613,282,3.251,288,0.478,289,1.771,295,0.69,300,1.627,302,3.517,305,2.05,333,1.482,337,0.93,344,0.584,353,1.714,354,1.167,356,0.566,359,1.047,374,1.909,397,0.696,398,1.314,402,2.961,417,1.67,422,0.525,428,3.128,435,1.435,437,2.202,441,2.821,452,1.67,454,5.969,456,3.795,462,0.731,467,0.843,472,1.776,476,1.776,479,1.088,480,2.105,489,1.314,490,1.101,492,2.312,507,0.88,520,3.981,536,1.024,540,1.164,550,2.734,568,1.67,600,0.968,603,1.714,620,4.093,623,2.312,626,0.834,635,0.952,640,0.952,646,1.215,648,1.074,663,2.19,702,1.314,708,1.592,718,1.009,730,2.357,756,0.9,758,1.211,774,0.941,779,1.088,795,3.893,805,1.18,817,0.852,819,1.462,843,1.85,845,1.164,849,0.92,856,1.148,859,1.18,867,0.92,880,2.926,903,1.06,905,0.392,923,2.212,931,1.57,938,0.738,942,4.546,946,4.355,998,1.233,1002,0.834,1015,1.408,1021,0.817,1024,1.455,1054,1.102,1055,1.317,1059,2.229,1073,1.556,1103,1.148,1148,2.841,1151,3.001,1184,1.314,1187,1.314,1208,0.843,1218,3.393,1219,2.345,1224,2.174,1229,1.592,1234,0.974,1237,1.85,1242,1.462,1287,1.292,1292,1.462,1296,1.06,1299,1.408,1302,1.336,1309,1.93,1330,2.565,1331,0.809,1345,3.779,1351,1.753,1364,1.148,1374,1.272,1377,2.565,1386,1.252,1447,1.516,1470,0.974,1476,3.393,1480,2.704,1502,2.763,1508,1.629,1528,1.958,1550,3.021,1557,2.626,1592,0.941,1610,1.022,1618,1.905,1619,2.497,1639,0.843,1651,1.197,1653,1.492,1656,0.963,1661,0.952,1669,1.18,1680,1.047,1690,2.953,1694,1.252,1704,1.18,1711,1.462,1741,1.197,1745,1.074,1747,1.905,1763,1.875,1769,3.904,1843,1.988,1889,4.353,1898,2.212,1904,1.292,1916,1.629,1920,2.423,1954,0.809,1956,1.556,1988,1.435,2004,1.164,2039,1.408,2045,1.523,2046,1.776,2055,1.492,2075,5.197,2131,4.454,2163,3.613,2167,1.67,2204,1.67,2213,4.912,2259,1.988,2275,1.941,2324,1.523,2364,0.963,2382,1.047,2454,1.941,2460,3.565,2468,1.383,2604,2.017,2647,2.117,2662,1.825,2723,1.67,2837,4.739,2838,2.841,2839,1.556,2904,2.312,2976,0.941,3067,1.816,3147,5.282,3154,1.949,3159,1.627,3175,3.299,3305,1.408,3404,1.875,3434,1.93,3447,2.212,3495,0.963,3511,1.8,3546,1.629,3655,1.492,3657,1.995,3665,1.816,3696,1.452,3750,2.508,3755,1.816,3861,3.779,3877,2.017,4039,1.252,4088,1.714,4447,1.763,4525,1.462,4533,1.462,4545,2.05,4765,1.875,4840,2.523,4959,2.105,5020,4.942,5028,2.229,5033,2.908,5065,4.764,5143,5.009,5153,2.78,5156,1.875,5157,1.523,5158,0.963,5162,1.816,5182,4.249,5300,2.153,5304,1.102,5305,0.792,5330,2.212,5405,2.763,5567,1.941,5655,3.565,5992,5.135,6285,2.405,6289,2.424,6290,6.473,6355,1.816,6366,1.408,6396,4.888,6411,4.507,6419,1.902,6421,2.105,6439,4.478,6445,1.102,6474,2.017,6489,3.795,6586,3.93,6598,1.816,6649,1.592,6723,2.105,6749,2.212,6799,3.779,6837,0.963,6839,1.336,6974,1.67,7067,1.67,7070,2.212,7170,1.492,7178,1.383,7274,1.592,7326,2.312,7382,1.816,7397,7.496,7457,2.626,7489,2.017,7670,1.941,7850,4.083,7932,1.941,8120,2.017,8157,1.359,8158,1.359,8217,2.105,8300,3.083,8447,3.393,8600,2.105,8686,1.816,8903,2.212,9139,3.251,9241,5.859,9279,5.859,9725,2.523,9863,2.794,9864,7.998,9865,2.794,9866,5.445,9867,7.758,9868,5.445,9869,4.067,9870,4.067,9871,4.067,9872,6.425,9873,6.331,9874,4.067,9875,4.067,9876,4.067,9877,3.393,9878,4.067,9879,3.779,9880,5.859,9881,4.067,9882,4.067,9883,4.067,9884,4.067,9885,4.067,9886,4.067,9887,2.794,9888,2.794,9889,7.709,9890,4.503,9891,4.503,9892,4.503,9893,4.503,9894,2.794,9895,2.794,9896,7.114,9897,2.523,9898,2.523,9899,8.43,9900,4.503,9901,4.503,9902,4.503,9903,4.503,9904,4.503,9905,6.487,9906,6.487,9907,6.487,9908,6.487,9909,4.503,9910,4.503,9911,4.503,9912,4.503,9913,6.487,9914,4.503,9915,4.503,9916,4.503,9917,4.503,9918,4.503,9919,4.503,9920,4.503,9921,5.445,9922,4.503,9923,4.503,9924,4.503,9925,6.487,9926,4.503,9927,4.503,9928,9.467,9929,4.503,9930,9.185,9931,4.503,9932,4.503,9933,2.794,9934,2.794,9935,4.503,9936,4.503,9937,4.503,9938,4.503,9939,4.503,9940,4.503,9941,4.503,9942,6.487,9943,6.487,9944,2.794,9945,2.794,9946,6.487,9947,2.523,9948,2.794,9949,2.794,9950,2.794,9951,2.794,9952,2.794,9953,2.794,9954,2.523,9955,2.794,9956,3.779,9957,2.794,9958,2.794,9959,2.794,9960,2.794,9961,7.604,9962,6.487,9963,2.794,9964,6.487,9965,2.794,9966,4.503,9967,2.794,9968,6.487,9969,2.794,9970,2.794,9971,2.794,9972,2.794,9973,2.794,9974,2.794,9975,2.794,9976,2.794,9977,2.794,9978,6.487,9979,2.794,9980,2.523,9981,1.941,9982,1.941,9983,1.941,9984,1.941,9985,1.941,9986,1.941,9987,1.941,9988,1.941,9989,1.941,9990,2.523,9991,2.794,9992,2.794,9993,2.794,9994,2.794]],["description//tracks/90daysofdevops/day13",[35,1.705,247,2.192,5065,2.262,7397,3.53]],["title//tracks/90daysofdevops/day12",[344,0.443,1648,2.205,1711,2.248,5537,2.205,8300,2.341]],["content//tracks/90daysofdevops/day12",[6,0.366,26,0.671,34,1.498,52,1.985,57,1.378,58,2.064,65,1.663,68,1.387,73,1.219,75,1.11,96,1.044,112,2.538,124,0.941,126,1.687,139,1.601,147,1.665,149,2.182,173,1.633,175,0.471,179,2.259,248,4.382,262,4.133,288,0.781,289,0.941,295,1.891,337,2.181,343,1.855,344,0.915,358,2.344,362,1.183,374,2.161,376,1.957,377,1.778,397,1.138,437,2.984,439,2.146,467,1.977,479,1.043,490,2.323,550,3.654,593,0.752,600,1.121,628,2.423,647,4.168,730,3.429,742,1.715,756,1.47,758,0.977,777,2.146,795,3.383,817,1.392,844,3.364,852,2.146,867,2.756,880,4.98,905,0.64,907,0.968,910,1.392,918,0.788,942,6.007,946,4.011,989,3.364,1002,1.363,1024,1.254,1067,2.801,1071,3.296,1110,1.669,1187,2.146,1208,1.378,1218,5.774,1266,1.69,1296,2.486,1331,2.218,1345,6.431,1351,1.778,1364,3.148,1371,2.88,1423,3.242,1447,2.206,1508,2.662,1536,4.306,1647,2.259,1652,3.323,1677,2.39,1711,4.011,1747,3.541,1769,5.159,1786,3.202,1811,2.601,1843,3.383,1881,2.259,1920,3.019,1950,3.821,2067,1.423,2075,5.761,2163,5.14,2167,2.729,2204,2.729,2641,3.44,2684,3.296,2697,2.88,2837,5.05,2838,4.133,2839,2.543,2880,3.614,2976,1.537,2982,3.172,3147,5.695,3156,3.172,3175,5.17,3426,1.733,3494,3.44,3495,2.257,3666,2.344,3750,2.543,3763,3.614,3799,1.929,4039,2.936,4364,3.063,4389,3.832,4525,2.39,4616,2.88,5020,4.551,5065,3.873,5153,3.284,5156,3.063,5157,2.489,5158,1.573,5268,3.614,5270,2.967,5297,3.44,5373,3.498,5405,4.02,5537,3.934,6285,2.438,6289,3.8,6290,7.872,6799,5.499,6837,1.573,6839,2.182,6862,3.063,6987,5.499,7067,2.729,7075,3.172,7101,2.22,7217,5.499,7397,5.531,7692,3.296,7850,6.861,7932,4.551,8157,2.22,8158,2.22,8300,4.564,8628,4.123,8686,2.967,8728,2.967,9866,8.311,9867,8.943,9868,6.431,9869,7.562,9870,5.917,9871,6.92,9872,9.075,9873,8.325,9874,5.917,9875,5.917,9876,5.917,9877,4.937,9878,5.917,9879,3.832,9880,5.917,9881,5.917,9882,5.917,9883,4.123,9884,6.92,9885,5.917,9886,5.917,9956,3.832,9981,3.172,9982,3.172,9983,3.172,9984,3.172,9985,3.172,9986,3.172,9987,3.172,9988,3.172,9989,3.172,9995,4.566,9996,4.566,9997,6.552,9998,6.552,9999,4.566,10000,4.566,10001,5.917,10002,4.566,10003,4.566,10004,4.566,10005,4.566,10006,4.566,10007,4.566,10008,4.566,10009,4.566]],["description//tracks/90daysofdevops/day12",[337,1.216,519,1.501,593,0.602,647,1.566,1536,1.589,1652,1.369,5537,1.876]],["title//tracks/90daysofdevops/day11",[1747,1.613,1950,2.794,2684,3.458,5065,2.216]],["content//tracks/90daysofdevops/day11",[2,1.753,6,0.352,25,1.753,26,1.152,31,1.368,32,1.379,34,1.353,38,1.05,57,2.651,58,1.251,64,1.238,65,1.726,68,1.071,70,2.523,71,1.211,72,2.165,74,0.85,75,1.328,77,1.702,83,1.489,96,0.908,102,2.29,107,2.051,112,2.805,113,1.322,124,1.615,126,1.303,136,0.883,137,1.081,139,1.446,141,1.138,147,1.504,167,2.374,173,2.088,175,0.965,179,1.966,197,2.277,212,2.465,216,0.952,217,1.211,219,1.15,221,1,230,1.34,232,2.581,234,1.472,248,4.101,260,2.165,266,4.271,268,1.174,288,0.68,295,1.46,301,1.507,340,2.121,343,1.897,344,0.986,351,1.06,354,1.533,356,0.889,358,2.039,374,2.266,397,0.99,422,0.746,423,1.211,439,1.867,459,1.97,462,1.549,468,1.632,470,2.669,474,2.877,478,1.727,479,0.805,489,1.867,490,1.729,507,1.251,518,2.204,521,2.506,536,1.28,541,2.079,550,2.274,553,2.212,593,0.655,600,1.557,626,1.186,628,1.713,636,1.337,637,1.609,645,2.121,647,1.702,655,3.629,663,4.272,675,1.731,718,1.435,730,3.097,741,1.547,742,1.039,756,1.279,758,0.85,785,1.251,793,3.064,795,2.612,817,2.556,855,3.733,856,1.632,867,1.307,901,1.47,905,0.991,910,2.39,915,2.431,918,0.686,926,1.418,935,2.141,938,1.05,942,5.591,989,2.039,991,1.104,1000,3.587,1023,2.079,1024,1.353,1054,1.567,1079,2.274,1087,2.212,1088,0.925,1180,1.837,1208,1.786,1224,2.718,1237,1.632,1266,1.47,1273,2.165,1280,2.212,1282,2.079,1283,3.038,1290,3.144,1296,2.246,1315,1.567,1331,2.425,1351,1.547,1371,2.506,1424,1.435,1435,1.867,1437,2.121,1447,2.381,1508,2.316,1516,1.384,1528,2.573,1529,2.121,1536,1.727,1585,1.702,1592,1.337,1619,1.753,1636,2.665,1646,1.867,1647,1.966,1648,2.039,1652,3.646,1654,2.374,1661,2.015,1694,1.78,1700,2.374,1701,2.039,1703,3.587,1711,3.097,1722,2.759,1724,2.039,1741,1.702,1747,3.604,1750,1.837,1769,4.802,1776,3.733,1786,2.137,1792,1.567,1826,5.258,1835,5.105,1836,3.334,1837,3.144,1842,2.121,1843,1.753,1853,2.581,1858,1.507,1868,4.913,1901,1.931,1914,2.581,1920,2.408,1950,2.316,1954,1.15,2003,2.867,2009,1.702,2042,3.144,2046,2.334,2067,1.238,2075,5.445,2098,1.837,2163,4.667,2167,2.374,2204,2.374,2227,2.374,2245,2.262,2468,1.966,2641,2.993,2643,1.78,2684,6.342,2837,2.262,2838,3.733,2839,2.212,2976,1.337,2981,3.144,3092,2.993,3147,3.226,3175,4.124,3187,1.931,3327,2.374,3328,3.587,3370,3.371,3407,3.587,3507,3.144,3508,1.966,3511,1.588,3606,2.867,3618,2.993,3628,3.334,3666,2.039,3696,1.518,3799,1.678,3800,1.837,3803,1.489,4039,4.425,4371,2.759,4484,2.867,4523,3.587,4525,2.079,4545,1.808,4775,2.437,4984,3.587,5065,4.789,5126,3.144,5153,3.031,5156,2.665,5157,2.165,5158,1.368,5182,2.694,5195,2.665,5215,2.316,5297,2.993,5373,2.121,5484,2.759,5496,3.144,5524,1.702,5537,2.039,5585,3.334,5667,2.867,5736,2.782,5763,2.665,6004,1.867,6027,2.581,6059,4.966,6147,2.665,6285,2.121,6289,4.096,6290,7.331,6419,1.678,6445,1.567,6657,2.759,6729,2.867,6837,1.368,6839,1.899,6942,2.867,7106,3.587,7363,4.271,7404,2.665,7465,2.316,7772,3.587,7850,5.656,7887,2.759,7964,3.587,8052,2.867,8078,3.144,8154,2.867,8157,3.439,8158,3.439,8300,4.568,8686,2.581,8728,2.581,9866,7.638,9868,3.334,9873,6.955,9981,2.759,9982,2.759,9983,2.759,9984,2.759,9985,2.759,9986,2.759,9987,2.759,9988,2.759,9989,2.759,10001,3.587,10010,3.972,10011,3.972,10012,3.972,10013,3.972,10014,3.972,10015,3.972,10016,3.972,10017,7.072,10018,3.972,10019,3.972,10020,5.917,10021,3.587,10022,3.587,10023,3.587,10024,3.972,10025,3.972,10026,3.587,10027,3.972,10028,3.972,10029,3.972,10030,3.972,10031,3.972]],["description//tracks/90daysofdevops/day11",[1747,1.856,2684,3.98,5065,2.55]],["title//tracks/90daysofdevops/day10",[1750,2.506,2258,2.547,5065,2.506]],["content//tracks/90daysofdevops/day10",[6,0.241,14,2.238,26,0.789,27,1.871,31,1.849,32,1.046,33,2.866,57,2.215,65,1.404,67,1.787,74,1.79,101,3.341,102,1.847,107,1.92,110,1.541,111,2.371,112,1.476,113,1.787,126,1.182,147,2.125,164,2.232,172,2.483,175,0.554,179,2.656,202,1.462,206,1.419,225,1.603,234,1.117,268,2.169,288,0.918,289,2.118,295,2.064,300,2.651,307,2.146,340,2.866,343,2.024,351,1.433,356,1.051,362,1.902,374,1.631,376,2.3,377,2.09,402,2.809,422,1.378,432,3.057,472,2.117,476,2.895,479,1.138,488,1.728,550,2.063,554,2.756,600,0.918,626,2.191,628,1.554,637,2.973,646,2.334,648,2.063,730,3.841,774,1.807,778,1.433,785,1.691,803,3.386,805,2.267,817,1.637,849,1.499,856,2.205,867,1.767,907,1.138,918,1.267,926,1.916,930,2.236,931,3.281,935,1.263,938,1.419,991,2.039,993,3.057,1018,1.747,1021,1.57,1024,1.027,1040,2.705,1045,4.505,1053,1.767,1088,1.251,1208,1.62,1218,4.045,1224,2.063,1234,2.558,1268,2.866,1296,3.688,1314,3.874,1331,2.124,1351,2.09,1364,2.205,1447,1.807,1499,3.729,1502,3.294,1508,3.13,1509,3.729,1585,2.3,1599,3.45,1618,1.807,1632,2.352,1647,3.632,1651,2.3,1652,3.369,1656,1.849,1657,4.505,1678,2.566,1704,2.267,1711,2.809,1722,6.244,1724,4.293,1742,3.394,1769,2.756,1792,2.895,1818,2.934,1863,2.369,1901,2.61,1912,2.175,1932,4.503,1950,3.13,1954,2.124,2001,2.926,2004,2.236,2013,5.361,2039,2.705,2098,4.158,2167,3.209,2204,3.209,2258,2.523,2259,3.239,2275,5.809,2278,6.159,2647,2.523,2659,3.13,2838,4.63,2839,2.99,2873,3.209,2976,1.807,2979,3.601,2985,3.386,3159,1.939,3175,3.13,3187,2.61,3380,3.729,3394,2.236,3404,3.601,3495,1.849,3508,2.656,3666,2.756,3755,4.769,3885,3.13,4039,3.289,4449,3.918,4525,2.809,5065,5.17,5122,2.236,5153,3.584,5156,3.601,5157,2.926,5158,1.849,5162,3.488,5182,4.285,5270,5.434,5597,4.045,5763,3.601,6147,3.601,6285,3.918,6289,3.584,6295,2.973,6356,3.874,6366,2.705,6388,2.705,6391,3.057,6404,3.13,6419,3.532,6445,2.117,6590,3.294,6649,3.057,6720,2.99,6741,2.926,6837,1.849,6839,2.566,6974,3.209,7178,3.632,7199,4.505,7326,3.768,7547,3.874,7670,5.098,8157,2.61,8158,2.61,8203,7.018,8300,4.558,8369,4.847,8637,4.505,8686,3.488,8857,4.045,8913,4.847,9427,4.249,9734,8.118,9832,4.847,9981,3.729,9982,3.729,9983,3.729,9984,3.729,9985,3.729,9986,3.729,9987,3.729,9988,3.729,9989,3.729,10032,8.362,10033,5.368,10034,5.368,10035,5.368,10036,5.368,10037,5.368,10038,5.368]],["description//tracks/90daysofdevops/day10",[2258,2.97,5065,2.922]],["title//tracks/90daysofdevops/day09",[136,0.954,1901,2.088,2098,1.986,2099,2.088,8300,2.341]],["content//tracks/90daysofdevops/day09",[6,0.346,10,4.481,15,1.814,27,1.729,29,1.75,30,1.546,32,1.355,34,2.226,37,2.966,38,1.032,44,2.142,49,1.324,52,2.158,53,2.96,55,2.705,58,1.563,65,1.766,67,1.652,74,2.084,75,0.841,96,1.589,102,2.602,107,1.298,114,0.889,124,1.654,126,1.092,136,1.544,139,1.213,141,1.421,147,2.208,154,2.893,161,1.529,164,1.324,173,1.236,175,1.005,179,2.455,197,2.237,202,1.351,206,1.311,216,1.666,225,2.075,230,1.124,246,1.052,264,1.729,266,3.581,288,0.849,289,2.081,301,2.637,307,1.983,333,1.633,343,1.682,354,2.079,356,0.874,369,2.332,374,2.033,393,1.311,422,0.932,423,2.446,437,1.932,459,1.652,462,1.298,473,3.164,479,0.946,507,1.563,518,2.499,527,2.826,545,2.966,550,1.907,560,2.01,594,3.581,600,1.189,604,2.649,637,2.01,730,3.637,742,1.819,756,1.597,778,1.324,800,2.259,803,3.13,845,2.067,849,1.013,856,2.038,867,1.633,905,0.695,907,1.052,925,1.931,931,1.729,938,1.837,1002,1.482,1017,2.038,1024,1.663,1036,1.615,1202,2.966,1208,1.497,1224,1.907,1242,2.597,1266,1.836,1288,2.597,1289,2.893,1296,4.08,1298,4.795,1302,2.372,1331,1.436,1351,1.932,1363,1.836,1364,3.758,1374,2.259,1447,1.67,1508,2.893,1597,3.214,1611,0.765,1618,2.701,1619,2.19,1626,2.821,1628,2.978,1631,2.763,1636,3.329,1652,3.833,1657,4.164,1658,3.044,1680,1.859,1683,4.164,1693,5.212,1704,2.096,1711,2.597,1722,6.038,1724,3.568,1741,2.126,1750,2.295,1769,5.309,1776,3.13,1786,1.792,1789,3.78,1796,3.13,1803,2.705,1863,3.836,1884,3.329,1912,2.01,1920,1.69,1930,1.351,1933,2.763,2005,3.502,2013,3.959,2046,1.957,2067,1.546,2075,4.516,2098,4.503,2099,3.9,2126,4.164,2134,3.581,2167,2.966,2204,2.966,2259,3.068,2275,4.828,2364,1.709,2641,3.739,2838,4.384,2839,2.763,2873,2.966,2929,3.214,2976,1.67,3175,4.678,3394,2.067,3432,2.966,3515,3.871,3665,4.516,4271,2.158,4331,4.481,4449,2.649,4525,2.597,4560,3.927,4827,3.13,5065,4.973,5153,3.437,5156,3.329,5157,2.705,5158,1.709,5182,2.259,5270,3.224,5366,3.581,5373,2.649,5480,4.481,5484,3.447,5778,3.13,6285,2.649,6289,3.725,6356,3.581,6445,1.957,6837,1.709,6839,2.372,7065,4.481,7103,6.273,7156,3.224,7178,2.455,7404,3.329,7850,5.79,7887,3.447,7932,4.828,8005,4.481,8086,5.501,8157,2.413,8158,2.413,8300,4.738,8686,3.224,8796,4.164,8903,3.927,9859,4.164,9889,6.732,9981,3.447,9982,3.447,9983,3.447,9984,3.447,9985,3.447,9986,3.447,9987,3.447,9988,3.447,9989,3.447,10021,7.244,10039,4.962,10040,4.481,10041,4.962,10042,4.962,10043,4.962,10044,4.962,10045,4.481,10046,4.962]],["description//tracks/90daysofdevops/day09",[136,1.087,2098,2.262,2099,2.378,8300,2.666]],["title//tracks/90daysofdevops/day07",[1309,1.84,1618,1.446,1619,1.896,1818,1.717,5305,1.218]],["content//tracks/90daysofdevops/day07",[1,1.291,6,0.312,11,2.088,15,1.515,25,1.829,26,1.066,29,2.556,33,2.212,34,0.947,38,0.615,44,2.466,49,1.106,53,1.411,64,1.291,65,1.025,74,1.909,75,1.445,77,3.428,80,0.929,91,3.3,96,1.657,107,1.084,110,0.87,111,1.175,116,2.36,122,2.613,126,0.912,136,1.983,137,1.324,141,2.443,147,1.842,175,0.427,179,3.587,191,0.938,197,1.334,202,1.128,204,1.395,208,2.127,219,1.199,229,1.678,246,1.294,259,1.515,263,1.656,268,1.224,288,0.709,289,1.758,331,1.944,343,1.755,344,0.427,352,2.716,353,4.448,356,0.911,375,1.987,381,1.634,383,1.25,393,1.613,395,2.168,402,3.794,404,2.779,410,3.353,422,0.778,423,1.263,426,2.258,427,1.572,431,1.319,432,1.725,458,2.779,461,1.444,467,2.188,476,2.408,479,0.564,489,4.009,490,1.013,517,2.014,518,1.902,530,2.779,535,1.053,536,1.105,540,2.543,550,1.592,551,2.779,562,2.542,600,1.044,606,1.478,638,2.779,639,2.168,646,1.802,648,2.786,730,3.195,755,3.2,758,1.306,774,1.395,777,1.947,781,2.779,785,1.923,787,2.507,817,1.263,843,1.702,849,1.247,856,1.702,859,1.75,903,1.572,905,0.581,907,1.294,909,1.823,917,1.551,918,1.252,926,1.478,939,2.232,940,2.168,991,1.696,996,1.98,1002,2.389,1024,0.793,1036,1.349,1040,2.088,1049,1.829,1053,2.009,1055,1.785,1065,2.99,1066,1.533,1079,1.592,1088,1.689,1138,2.188,1148,2.613,1177,3.121,1195,2.258,1202,2.476,1205,2.009,1212,3.121,1229,2.36,1240,1.634,1242,2.168,1254,2.127,1271,1.515,1280,2.307,1284,2.618,1287,1.916,1299,2.088,1302,3.823,1307,2.779,1308,1.106,1309,2.616,1351,1.613,1361,2.127,1363,1.533,1430,1.947,1447,1.395,1450,2.416,1451,2.258,1463,2.99,1480,1.98,1484,1.725,1506,3.279,1508,2.416,1528,1.802,1532,3.121,1538,2.692,1587,4.129,1592,1.395,1597,3.944,1611,1.597,1618,3.582,1619,4.571,1626,2.235,1627,2.088,1630,2.088,1631,2.307,1632,2.414,1639,2.188,1645,2.307,1646,1.947,1652,3.457,1654,2.476,1656,2.756,1669,1.75,1678,1.98,1680,1.552,1681,3.851,1688,2.088,1690,1.886,1702,1.842,1704,1.75,1705,2.878,1711,2.168,1720,3.746,1722,5.036,1724,2.127,1732,3.279,1734,2.212,1765,2.416,1789,1.802,1854,2.542,1857,2.779,1863,1.829,1884,2.779,1912,2.473,1954,1.767,1987,2.288,2013,4.129,2033,2.99,2039,3.076,2046,2.86,2069,2.36,2071,4.832,2167,2.476,2170,3.56,2204,2.476,2278,3.477,2281,3.741,2284,2.476,2299,2.212,2364,1.427,2387,2.779,2587,2.168,2604,2.99,2611,2.416,2660,2.692,2662,2.473,2698,2.088,2838,3.851,2839,2.307,2873,3.649,2902,2.476,2976,1.395,3154,2.103,3159,2.205,3189,2.212,3273,2.416,3352,3.741,3359,2.99,3426,2.317,3495,1.427,3511,2.44,3606,2.99,3627,2.99,3655,2.212,3657,1.461,3696,1.063,3764,2.416,3803,1.552,3811,2.87,3879,3.328,3885,2.416,3959,2.692,3978,2.99,4008,3.741,4039,2.736,4091,2.692,4111,3.121,4150,2.476,4272,1.98,4284,3.279,4314,2.168,4364,2.779,4424,3.107,4474,2.36,4480,2.692,4525,3.195,4750,3.741,4765,2.779,4816,3.4,4872,2.878,4876,3.477,4989,1.947,5036,1.592,5065,5.05,5100,2.386,5153,3.107,5156,2.779,5157,2.258,5158,1.427,5304,2.408,5305,2.989,5554,2.258,5676,2.36,5704,2.542,5737,2.878,6004,1.947,6147,2.779,6285,2.212,6307,2.878,6321,4.096,6322,2.99,6338,1.592,6351,2.779,6357,2.476,6366,2.088,6375,2.346,6623,3.076,6643,3.477,6837,1.427,6839,1.98,6852,2.878,6887,2.99,6897,2.692,6904,1.444,6939,3.121,7075,2.878,7089,2.542,7123,2.878,7157,2.542,7178,2.05,7265,5.232,7359,3.121,7373,2.878,7474,3.477,7795,2.258,7825,2.878,7826,3.741,7883,2.99,8095,3.279,8157,2.014,8158,2.014,8209,3.279,8300,4.649,8454,3.279,8620,3.121,8686,2.692,8697,3.477,8896,2.99,9263,3.741,9286,5.513,9956,3.477,9981,5.036,9982,4.241,9983,2.878,9984,2.878,9985,2.878,9986,2.878,9987,2.878,9988,2.878,9989,2.878,10047,4.143,10048,4.143,10049,6.105,10050,6.105,10051,4.143,10052,4.143,10053,6.105,10054,4.143,10055,4.143,10056,4.143,10057,4.143,10058,4.143,10059,3.279,10060,4.143,10061,4.143,10062,4.143,10063,4.143,10064,4.143,10065,4.143]],["description//tracks/90daysofdevops/day07",[1309,2.096,1618,1.647,1619,2.159,5305,1.387]],["title//tracks/90daysofdevops/day06",[1789,2.356,5305,1.536,8365,3.239]],["content//tracks/90daysofdevops/day06",[6,0.3,18,1.691,34,1.122,38,0.729,44,2.126,49,1.31,57,1.481,58,1.546,65,1.339,68,1.248,70,1.58,75,1.169,96,1.122,105,1.297,107,1.284,110,1.031,116,2.795,136,1.532,141,1.976,144,2.794,156,3.698,159,1.691,165,2.933,173,1.223,175,0.506,190,2.308,191,1.111,195,2.933,197,2.22,215,2.428,219,1.996,227,1.751,229,1.988,230,1.111,232,3.189,259,2.521,261,1.862,267,3.638,288,1.364,352,1.563,353,3.011,354,1.272,356,0.617,372,2.073,374,1.09,377,2.685,393,1.297,397,1.223,406,2.473,422,1.295,423,2.432,424,2.568,431,2.196,464,2.432,467,2.081,472,1.936,479,0.668,489,2.307,517,2.386,534,3.542,536,1.248,559,3.542,560,2.794,593,1.136,600,0.84,611,1.772,636,1.652,646,2.134,647,2.955,675,2.529,756,1.58,758,1.706,774,2.685,778,2.128,840,3.19,844,2.519,849,1.628,856,2.016,903,1.862,915,2.016,918,1.377,930,2.044,935,2.035,938,1.823,939,1.794,989,2.519,1005,2.134,1008,3.096,1021,1.435,1024,0.939,1031,3.189,1053,1.615,1073,3.841,1076,3.044,1079,1.886,1088,1.143,1108,4.022,1138,1.259,1143,2.016,1148,3.096,1197,2.568,1203,4.432,1205,2.847,1206,2.428,1224,1.886,1229,2.795,1242,4.173,1268,3.682,1284,1.772,1299,2.473,1303,4.022,1308,1.31,1309,2.103,1311,2.795,1330,2.795,1331,1.42,1401,3.698,1447,1.652,1450,2.862,1470,1.71,1482,1.839,1526,3.242,1528,2.134,1557,2.862,1585,2.103,1587,2.795,1600,2.795,1601,2.675,1618,1.652,1619,2.166,1625,3.096,1627,2.473,1628,2.955,1630,2.473,1639,1.481,1648,2.519,1653,2.62,1660,3.698,1669,2.073,1690,4.302,1700,4.766,1702,2.929,1704,2.913,1745,1.886,1777,2.519,1818,3.187,1829,1.839,1854,3.011,1869,1.513,1912,1.988,1943,4.35,1955,2.346,1979,2.955,1987,3.241,1988,2.519,1995,3.409,2002,3.096,2054,3.841,2126,4.118,2262,3.884,2364,1.691,2695,3.884,2789,2.473,2872,3.292,2873,2.933,3015,2.234,3065,4.122,3067,3.189,3159,1.772,3198,3.096,3343,3.096,3380,3.409,3426,1.862,3432,2.933,3495,1.691,3503,6.228,3511,1.962,3621,2.862,3696,1.259,3769,3.409,3799,2.913,3800,2.27,3803,3.241,3944,3.096,3963,2.862,3984,2.386,4001,3.698,4039,3.091,4053,4.432,4090,3.884,4103,2.519,4207,3.542,4248,3.542,4315,3.698,4335,3.884,4423,5.314,4424,4.05,4453,3.542,4497,2.103,4554,2.795,4633,4.118,4729,4.118,4816,2.733,4849,3.841,4965,3.884,5008,2.955,5078,5.778,5153,2.103,5217,2.675,5305,3.079,5324,3.688,5571,3.698,5737,3.409,5974,3.044,6004,3.748,6122,3.011,6300,3.139,6311,3.698,6357,2.933,6381,2.862,6455,3.096,6463,4.118,6598,3.189,6638,4.118,6652,3.011,6700,2.307,6847,4.65,6873,4.791,6978,3.096,6992,3.698,7157,3.011,7161,3.409,7170,2.62,7171,3.542,7172,3.542,7297,3.542,7364,2.795,7420,3.542,8078,3.884,8103,4.118,8144,4.118,8164,4.118,8209,3.884,8365,4.122,8396,4.118,8406,4.432,8608,4.432,8639,3.189,8763,4.432,9138,4.791,9149,4.118,9188,4.432,9262,4.118,9289,4.432,9523,4.118,9528,4.118,10066,4.907,10067,10.071,10068,4.907,10069,4.907,10070,5.788,10071,4.907,10072,4.907,10073,4.907,10074,4.907,10075,4.907,10076,4.907,10077,4.907,10078,4.907,10079,4.907,10080,4.907,10081,7.973,10082,4.907,10083,4.907,10084,4.907,10085,4.907,10086,4.907,10087,4.907,10088,4.907,10089,4.432,10090,4.907,10091,4.432,10092,4.907,10093,4.907,10094,4.907,10095,4.907,10096,4.907,10097,4.907,10098,4.907,10099,4.907,10100,4.907,10101,4.907,10102,4.907,10103,4.907,10104,4.907,10105,4.907,10106,4.907]],["description//tracks/90daysofdevops/day06",[5305,1.791,8365,3.777]],["title//tracks/90daysofdevops/day04",[161,1.67,5305,1.536,10107,4.083]],["content//tracks/90daysofdevops/day04",[6,0.332,25,1.928,26,0.642,27,2.211,30,1.361,31,2.826,38,0.648,44,1.346,45,3.837,49,1.166,52,3.567,57,1.915,65,1.065,68,1.148,73,1.166,74,0.935,77,2.719,80,0.98,101,1.988,105,1.677,110,0.917,112,1.745,116,2.487,118,1.201,124,0.9,147,1.11,158,1.678,159,1.504,165,2.61,176,0.867,179,2.161,197,2.043,201,2.606,206,1.154,220,2.679,222,2.605,229,1.769,230,0.989,244,2.286,259,1.597,264,1.522,266,3.152,267,3.886,268,1.29,272,1.845,288,1.278,301,2.408,303,3.665,307,1.746,337,1.454,344,0.451,351,1.166,352,1.391,354,1.132,356,1.031,362,1.644,372,2.68,375,2.065,381,2.503,383,1.318,393,1.677,396,4.073,397,1.088,399,3.944,404,2.93,406,2.201,421,1.871,422,1.403,459,2.73,460,3.944,462,1.143,467,2.255,479,0.594,482,2.935,485,2.38,488,1.406,507,1.376,520,2.679,536,1.148,541,3.321,544,2.487,551,4.257,555,1.678,556,2.043,611,2.292,628,2.163,645,2.332,741,2.91,756,1.406,758,0.935,766,2.679,777,2.053,781,1.988,786,3.665,787,2.606,805,1.845,849,2.081,856,2.606,858,2.487,902,2.242,905,1.047,907,0.926,909,1.304,915,1.794,917,1.612,925,1.213,926,1.559,929,2.93,935,1.758,938,2.168,991,1.213,1018,2.433,1024,1.214,1025,2.755,1033,2.432,1040,2.201,1055,1.277,1057,2.053,1076,3.846,1087,2.432,1088,1.911,1143,1.794,1205,3.224,1234,1.522,1237,1.794,1267,3.291,1279,2.755,1284,1.577,1299,2.201,1303,2.547,1308,2.189,1309,1.871,1315,1.723,1371,2.755,1426,2.123,1435,2.983,1440,2.61,1449,3.457,1450,2.547,1451,2.38,1470,2.211,1484,1.819,1489,1.678,1586,5.698,1591,2.38,1610,1.597,1620,2.838,1621,5.014,1632,2.454,1638,3.665,1639,2.255,1645,3.534,1661,2.545,1669,2.68,1678,3.033,1690,4.137,1694,2.844,1695,3.152,1702,2.629,1730,3.665,1774,2.432,1776,2.755,1802,4.714,1818,1.746,1829,1.637,1833,3.152,1934,2.838,1954,1.264,1979,1.871,1981,4.003,1987,3.601,2039,2.201,2046,1.723,2067,1.361,2082,3.034,2125,2.547,2171,2.838,2185,3.034,2225,3.197,2270,2.679,2299,2.332,2324,2.38,2369,2.838,2662,1.769,2837,2.487,2870,4.162,2932,2.201,3189,2.332,3221,2.93,3253,2.679,3273,2.547,3300,3.665,3359,3.152,3511,1.746,3636,2.838,3696,1.628,3748,3.457,3779,4.714,3879,2.38,4030,3.944,4031,3.944,4032,4.58,4039,1.957,4157,5.014,4193,3.457,4201,2.888,4218,3.944,4229,2.123,4259,3.944,4271,2.759,4312,2.93,4363,2.838,4365,3.152,4389,3.665,4450,3.944,4459,1.899,4461,5.394,4497,1.871,4525,2.286,4546,2.93,4753,3.291,4774,3.457,4802,2.201,4849,4.162,4872,3.034,4883,3.665,5301,3.291,5305,3.14,5330,3.457,5366,3.152,5377,2.38,5559,2.93,5736,2.053,5737,3.034,5772,2.332,5842,2.93,5884,3.665,5974,2.801,6338,2.872,6366,2.201,6369,2.332,6373,4.408,6657,3.034,6663,3.152,6681,4.58,6705,3.152,6714,2.93,6817,3.665,6847,2.547,6848,2.755,6873,6.052,6877,7.868,6896,2.93,6941,3.457,6992,3.291,6998,3.291,7112,3.665,7157,2.679,7161,3.034,7207,2.432,7289,3.152,7382,2.838,7449,3.944,7474,3.665,7494,3.665,7498,3.944,7555,3.152,7567,3.665,7577,3.291,7762,3.457,7918,3.291,8088,3.291,8092,3.457,8120,3.152,8154,4.58,8209,3.457,8241,3.457,8373,3.944,8493,3.944,8594,3.665,8599,3.944,8639,4.856,8685,3.152,8698,3.944,8773,3.291,8808,3.944,8856,3.944,9149,3.665,9168,3.944,9203,3.665,9219,3.665,9239,3.665,9445,3.457,9528,3.665,10089,3.944,10107,8.266,10108,4.367,10109,4.367,10110,4.367,10111,4.367,10112,4.367,10113,4.367,10114,4.367,10115,4.367,10116,4.367,10117,5.73,10118,4.367,10119,4.367,10120,4.367,10121,4.367,10122,4.367,10123,4.367,10124,4.367,10125,4.367,10126,4.367,10127,3.944,10128,4.367,10129,4.367,10130,4.367,10131,4.367,10132,3.944,10133,4.367,10134,4.367,10135,3.944,10136,4.367,10137,4.367,10138,4.367]],["description//tracks/90daysofdevops/day04",[5305,1.791,10107,4.761]],["title//tracks/90daysofdevops/day03",[75,0.918,147,1.377,10139,4.289]],["content//tracks/90daysofdevops/day03",[5,3.261,6,0.304,18,1.428,25,2.696,26,1.422,27,2.129,29,1.462,31,3.475,32,0.808,34,1.658,38,1.077,43,2.418,49,1.107,52,4.013,53,1.412,57,1.251,64,2.493,65,1.59,67,2.033,68,1.312,70,1.967,72,2.26,73,1.107,74,1.91,75,1.829,77,1.777,80,0.93,105,1.096,107,1.898,109,2.104,110,1.283,116,2.362,118,1.68,122,2.616,127,2.17,136,1.612,137,1.116,141,2.292,161,1.278,165,2.478,169,2.544,175,0.826,190,1.2,191,1.383,192,2.052,197,2.335,201,1.703,202,1.129,208,2.129,212,1.445,219,2.316,222,1.445,225,1.238,226,3.333,230,2.021,234,0.863,235,2.189,259,3.263,260,2.26,267,2.718,272,1.751,288,1.579,289,0.855,295,1.023,307,1.657,343,1.479,344,0.826,356,0.768,359,1.554,362,1.879,374,1.778,378,1.777,383,1.251,393,1.917,395,2.17,396,2.26,397,1.522,410,1.918,422,1.147,423,1.265,434,3.48,439,1.949,453,2.88,459,2.033,467,2.189,478,2.656,479,1.215,488,1.335,517,2.016,519,2.979,528,2.694,535,1.552,536,1.105,548,1.38,555,1.594,560,2.475,563,2.993,593,0.683,602,2.129,611,3.223,612,1.887,628,2.671,639,2.17,648,1.594,758,1.307,774,2.057,777,1.949,778,1.936,785,1.924,842,3.796,849,0.847,856,1.703,903,1.573,905,0.581,907,0.879,915,2.509,917,1.552,918,1.055,935,1.437,939,1.516,940,2.17,991,1.697,1017,1.703,1018,2.361,1024,1.169,1025,2.616,1049,1.83,1053,2.011,1054,1.636,1055,1.213,1071,2.993,1076,1.83,1079,2.788,1088,1.69,1101,2.362,1103,1.703,1138,1.567,1181,1.887,1190,2.616,1191,2.478,1205,2.938,1206,2.052,1207,3.853,1208,1.251,1226,3.261,1234,1.445,1237,1.703,1240,1.636,1268,3.261,1271,2.233,1273,2.26,1284,2.62,1303,2.418,1309,1.777,1424,1.498,1435,1.949,1461,3.124,1470,1.445,1485,2.17,1488,2.509,1489,1.594,1528,1.803,1530,2.418,1587,3.479,1592,2.442,1594,4.335,1597,1.918,1600,2.362,1610,1.516,1618,2.442,1619,2.696,1626,1.278,1632,1.085,1639,2.189,1646,1.949,1653,2.214,1675,2.129,1690,3.883,1701,3.136,1702,2.574,1704,1.751,1736,2.694,1750,1.918,1777,2.129,1786,1.498,1792,1.636,1854,2.544,1857,2.781,1858,1.573,1904,1.918,1912,2.939,1930,1.129,1954,1.2,1976,4.751,1979,3.429,1987,3.197,2001,3.33,2035,3.33,2054,4.039,2067,2.493,2082,2.88,2260,2.694,2266,3.48,2277,1.396,2364,1.428,2369,2.694,2646,3.124,2670,3.48,2870,2.309,2873,2.478,3159,1.498,3174,2.057,3304,2.129,3394,2.544,3397,2.478,3491,3.744,3616,2.993,3619,3.33,3696,2.053,3779,2.616,3803,1.554,3811,1.949,3879,4.864,3882,3.48,3883,2.544,3915,1.982,3959,2.694,3984,2.016,4019,2.782,4039,1.858,4201,3.301,4219,2.88,4285,3.261,4302,3.744,4335,3.282,4424,1.777,4436,3.48,4459,2.656,4465,3.282,4497,3.429,4525,3.197,4775,2.544,4802,4.65,4829,3.744,4830,2.418,4849,3.402,4889,3.124,4989,1.949,5006,4.603,5026,2.92,5028,3.023,5083,2.88,5100,1.365,5157,2.26,5177,3.853,5233,3.744,5305,2.827,5324,2.825,5524,1.777,5554,2.26,5665,2.993,5737,2.88,6072,2.544,6339,3.354,6356,2.993,6364,1.727,6366,2.089,6375,2.348,6379,2.88,6461,2.782,6529,3.124,6655,3.48,6656,3.124,6664,3.48,6681,4.409,6689,2.694,6700,2.872,6767,3.48,6831,3.48,6847,4.666,6848,4.575,6858,3.402,6945,3.124,7067,3.651,7091,3.124,7101,2.016,7157,3.748,7161,2.88,7178,2.052,7209,2.309,7267,3.744,7326,2.129,7373,2.88,7465,2.418,7467,2.88,7480,3.124,7483,3.282,7485,3.853,7692,2.993,7977,2.26,8353,3.124,8367,3.48,8382,3.48,8392,3.48,8532,3.282,8573,3.48,8659,2.782,8672,3.744,8688,2.993,8728,2.694,8834,3.282,9138,2.88,9258,3.124,10045,3.744,10117,3.744,10139,3.282,10140,4.146,10141,4.146,10142,4.146,10143,3.744,10144,4.146,10145,4.146,10146,4.146,10147,4.146,10148,4.146,10149,4.146,10150,4.146,10151,7.252,10152,4.146,10153,4.146,10154,4.146,10155,7.252,10156,4.146,10157,4.146,10158,3.48,10159,3.48,10160,5.126,10161,4.146,10162,4.146,10163,4.146]],["description//tracks/90daysofdevops/day03",[75,1.071,10139,5.001]],["title//tracks/90daysofdevops/day02",[120,1.16,905,0.671,3879,2.612,5305,1.359]],["content//tracks/90daysofdevops/day02",[1,1.614,6,0.236,25,2.287,26,0.762,27,1.806,29,2.526,31,1.785,32,1.01,34,1.877,43,3.021,52,3.115,58,1.632,65,0.87,67,1.725,68,1.296,70,2.306,72,2.824,74,1.757,75,1.824,94,3.021,96,1.184,105,1.369,107,1.356,114,0.929,118,1.425,126,2.046,127,2.712,136,1.824,139,1.266,141,1.484,147,1.317,173,1.291,176,1.029,190,3.043,191,1.859,197,2.306,201,2.128,203,1.65,204,2.764,206,1.369,217,2.184,219,1.5,226,2.158,246,1.74,259,1.894,263,2.071,267,1.942,268,2.117,288,0.886,289,1.068,302,2.396,307,2.071,343,1.254,344,0.535,351,1.383,355,2.281,356,1.209,359,1.942,362,2.295,374,1.592,377,2.017,381,2.825,383,1.564,393,2.34,396,3.904,397,1.785,422,0.973,427,3.361,464,2.526,467,1.564,472,3.238,476,2.044,479,1.117,482,3.313,489,2.436,490,1.266,555,1.991,593,0.854,601,3.097,611,1.871,612,2.359,628,2.073,636,1.744,638,2.359,718,2.587,745,1.547,756,2.306,758,1.757,774,1.744,844,2.66,857,2.396,864,2.611,905,1.004,907,1.74,909,2.139,917,1.317,918,1.418,935,1.685,938,2.169,939,1.894,1002,2.139,1018,2.672,1024,0.991,1040,3.609,1053,1.705,1057,2.436,1066,1.918,1071,3.74,1088,1.913,1101,2.951,1121,3.097,1148,3.268,1181,2.359,1191,3.097,1205,1.705,1208,1.564,1226,3.824,1234,1.806,1246,2.611,1271,2.619,1282,3.749,1287,2.396,1300,2.189,1331,1.5,1360,4.101,1363,1.918,1478,2.942,1484,2.983,1485,4.635,1489,1.991,1592,1.744,1618,2.411,1619,3.162,1627,2.611,1628,2.22,1632,2.317,1637,4.679,1647,2.564,1669,2.189,1673,4.348,1690,4.231,1702,1.564,1704,3.468,1786,2.587,1829,1.942,1869,2.208,1912,2.902,1930,1.411,1987,1.942,2039,2.611,2067,2.232,2163,2.886,2264,3.179,2662,2.099,2820,2.359,3154,1.785,3174,1.744,3273,4.177,3304,2.66,3353,2.436,3495,1.785,3591,2.951,3657,1.827,3696,1.838,3700,2.128,3722,4.101,3750,2.886,3799,2.189,3879,5.067,3923,3.476,3959,3.367,3963,3.021,3999,3.904,4032,5.925,4039,3.21,4103,2.66,4271,2.253,4463,3.179,4497,3.518,4753,3.904,4959,3.904,5008,2.22,5132,3.179,5133,3.367,5177,4.518,5237,4.348,5305,3.052,5323,2.712,5324,2.396,5327,3.179,5360,3.179,5482,3.021,5524,2.22,5637,2.044,5737,3.599,5974,2.287,6289,2.22,6300,2.359,6339,2.396,6356,3.74,6357,3.097,6364,2.983,6366,4.136,6369,2.766,6445,2.044,6455,3.268,6461,3.476,6603,5.397,6866,3.74,7157,3.179,7210,4.679,7289,3.74,7364,4.08,7407,3.097,7465,3.021,7475,3.74,7887,4.975,7977,2.824,8055,3.599,8098,4.348,8157,2.519,8158,2.519,8380,4.348,8414,4.679,8434,4.101,8607,4.348,8621,4.679,8688,3.74,8834,4.101,8896,3.74,8929,4.348,9328,3.904,9861,4.348,10070,4.348,10158,4.348,10159,4.348,10160,4.348,10164,5.181,10165,5.181,10166,5.181,10167,5.181,10168,5.181,10169,5.181,10170,5.181,10171,5.181,10172,5.181,10173,4.679]],["description//tracks/90daysofdevops/day02",[905,0.773,3879,3.005,5305,1.563]],["title//tracks/90daysofdevops/day01",[114,0.859,383,1.446,1952,2.414,5305,1.359]],["content//tracks/90daysofdevops/day01",[0,6.353,6,0.312,25,2.192,26,1.023,30,1.548,31,1.711,32,1.356,44,2.144,45,2.55,49,1.326,52,2.16,53,1.691,58,1.564,65,1.168,68,0.899,70,1.599,74,1.488,75,1.179,77,2.128,96,1.988,107,1.82,109,2.396,110,1.043,114,0.89,121,3.931,126,1.767,141,1.423,169,3.047,175,0.512,176,0.986,179,2.458,197,2.239,198,2.415,201,2.04,206,1.313,216,1.191,217,1.515,222,2.424,224,1.711,225,1.483,226,2.069,230,1.125,235,1.499,259,1.816,263,1.985,267,3.008,288,1.373,289,1.434,293,2.335,301,1.885,333,2.862,342,2.069,344,0.512,351,1.326,356,0.874,359,1.861,362,1.802,393,1.313,395,2.599,422,1.306,423,1.515,437,1.934,459,2.315,467,2.422,472,1.959,479,0.676,490,1.7,536,1.258,539,2.829,555,1.909,556,1.599,559,5.02,593,0.818,612,2.261,628,1.438,635,2.368,636,1.672,675,1.452,756,1.599,758,1.959,769,5.24,774,1.672,779,1.934,785,1.564,787,2.04,799,2.503,827,2.969,849,1.639,856,2.04,857,2.297,867,1.635,902,3.571,903,2.639,907,1.844,915,2.04,917,1.262,918,1.682,925,1.38,935,1.636,938,1.838,939,2.543,1017,2.04,1018,2.83,1024,1.536,1040,2.503,1055,1.452,1066,2.574,1067,3.047,1071,3.585,1076,2.192,1087,2.766,1088,1.62,1136,3.931,1181,2.261,1191,2.969,1198,2.415,1205,3.123,1208,1.499,1219,4.168,1224,1.909,1234,1.731,1273,2.707,1284,1.794,1293,2.766,1299,2.503,1309,2.98,1331,2.013,1363,2.574,1441,3.227,1447,1.672,1450,4.68,1482,1.861,1484,2.069,1489,1.909,1591,2.707,1600,2.829,1615,3.931,1618,1.672,1619,2.192,1626,1.531,1627,3.505,1628,2.128,1631,4.47,1632,2.1,1639,1.499,1646,2.335,1654,2.969,1656,1.711,1678,3.324,1681,4.387,1690,3.653,1700,2.969,1701,4.699,1702,1.499,1704,2.098,1711,3.64,1732,3.931,1734,2.652,1765,2.896,1774,2.766,1789,3.024,1904,3.217,1987,3.43,1988,2.55,2005,2.503,2069,2.829,2163,4.47,2277,1.672,2364,1.711,2438,4.519,2470,3.382,2839,2.766,2859,4.267,2873,2.969,3008,2.652,3150,3.791,3159,1.794,3174,2.702,3214,2.069,3221,3.332,3253,3.047,3353,2.335,3394,2.069,3426,3.3,3511,1.985,3518,3.047,3591,2.829,3598,3.585,3625,3.585,3666,2.55,3699,2.16,3799,2.098,3877,3.585,3879,2.707,3959,4.519,4032,3.585,4039,3.597,4128,3.585,4131,3.332,4269,3.45,4271,3.024,4418,3.931,4459,3.024,4475,2.766,4497,2.128,4533,2.599,4618,4.485,4805,3.227,4827,3.133,4921,3.742,4971,4.168,4989,2.335,5036,1.909,5100,2.289,5177,3.133,5304,1.959,5305,3.092,5391,3.45,5407,3.047,5736,2.335,5763,3.332,5974,2.192,6027,3.227,6147,4.666,6321,3.332,6338,1.909,6346,3.332,6351,3.332,6355,3.227,6357,4.157,6361,4.485,6365,3.585,6366,2.503,6375,2.673,6381,2.896,6443,4.485,6681,3.585,6847,2.896,6848,5.485,6852,3.45,6873,6.04,7157,4.267,7161,3.45,7166,4.168,7171,3.585,7439,3.585,7465,2.896,7496,3.585,7767,3.45,7795,2.707,7810,3.742,7828,3.931,7977,2.707,8055,3.45,8073,4.485,8078,3.931,8095,3.931,8156,5.575,8434,3.931,8615,3.931,8704,4.168,8834,5.505,8857,3.742,8896,3.585,9138,4.831,9203,4.168,9258,3.742,9527,4.485,9601,4.485,10023,4.485,10107,5.24,10143,4.485,10158,4.168,10159,4.168,10174,4.967,10175,4.967,10176,4.967,10177,4.485,10178,4.967,10179,4.967,10180,4.967,10181,4.967,10182,4.967,10183,4.967,10184,4.967,10185,4.967,10186,4.967,10187,4.967,10188,4.967]],["description//tracks/90daysofdevops/day01",[383,1.664,1952,2.778,5305,1.563]],["title//tracks/90daysofdevops/_index",[2163,3.018,4039,2.428,5305,1.536]],["content//tracks/90daysofdevops/_index",[6,0.379,16,2.214,30,1.124,75,0.611,105,0.954,114,0.647,120,0.873,144,2.23,147,0.917,161,1.112,178,2.719,257,1.642,344,0.372,408,1.546,424,1.888,441,2.393,442,2.631,448,2.421,494,3.63,663,1.754,681,2.214,701,2.214,722,1.967,733,1.888,760,3,840,3.086,842,3.907,880,2.344,882,4.523,887,2.506,903,1.369,905,0.506,935,0.849,946,1.888,989,1.852,993,2.012,1005,1.569,1026,3.086,1046,1.303,1141,2.421,1151,2.545,1173,2.856,1183,2.344,1184,2.587,1211,1.967,1288,1.888,1301,1.136,1309,1.546,1336,1.725,1365,1.617,1386,2.467,1401,2.719,1405,1.988,1478,1.482,1481,2.856,1488,3.301,1489,2.115,1502,2.214,1508,2.104,1610,1.319,1611,0.849,1618,1.215,1619,1.593,1639,1.089,1641,2.506,1665,2.719,1711,1.888,1724,1.852,1750,1.669,1789,1.569,1818,2.2,1874,2.421,1901,1.754,1938,3.028,1939,3.258,1950,2.104,1972,2.719,1974,2.344,1976,2.009,1979,1.546,1985,2.344,1996,1.852,2002,2.276,2011,2.719,2016,2.421,2032,3.028,2043,2.344,2056,2.506,2074,4.209,2098,3.086,2099,3.244,2121,2.719,2137,2.344,2138,2.856,2158,2.104,2159,2.506,2160,2.856,2161,3.028,2162,2.276,2163,2.009,2167,2.157,2204,2.157,2221,2.344,2222,2.506,2242,2.506,2271,2.719,2280,2.719,2288,3.028,2291,3.028,2296,2.719,2317,2.719,2321,2.604,2330,2.856,2344,2.856,2348,3.028,2382,3.012,2437,3.028,2457,2.344,2486,2.856,2488,2.856,2491,2.856,2524,3.028,2569,2.856,2590,3.028,2591,3.028,2595,2.856,2603,2.856,2904,1.852,2915,3.065,3076,2.506,3120,5.388,3174,1.215,3434,2.859,3550,3.258,3620,2.506,3657,2.633,3666,1.852,3700,3.479,3795,2.344,3879,1.967,3916,2.421,3993,3.472,4530,2.055,5016,4.619,5024,1.967,5026,3.568,5028,2.724,5029,3.472,5034,3.692,5036,2.115,5065,2.545,5074,2.157,5091,2.104,5100,2.99,5122,3.669,5128,1.852,5129,4.969,5146,3.472,5152,2.344,5153,2.359,5171,4.094,5178,2.104,5182,3.037,5215,2.104,5217,1.967,5227,6.638,5262,2.421,5305,2.776,5308,2.344,5335,3.377,5337,2.104,5377,1.967,5389,1.785,5419,2.856,5464,3,5753,3.028,5862,2.421,5992,2.856,6128,4.619,6285,2.939,6313,2.506,6314,3.823,6315,3.028,6343,4.336,6344,2.421,6353,2.421,6419,1.524,6452,2.421,6453,3.258,6454,3.028,6497,1.967,6602,3.258,6606,8.316,6607,8.949,6622,2.276,6655,3.028,6786,6.025,6836,4.147,6838,3.258,6839,1.725,6844,3.258,6886,3.028,6887,2.604,6901,2.421,6902,2.856,6904,3.166,6954,2.506,6956,3.258,6959,2.856,6981,3.258,7076,2.104,7086,3.258,7122,3.831,7124,3.258,7147,3.258,7173,3.258,7174,2.344,7188,2.157,7202,2.421,7205,4.462,7207,3.716,7209,3.065,7219,3.258,7268,3.258,7269,2.719,7274,2.055,7293,3.258,7361,3.258,7402,3.258,7457,4.687,7508,3.258,7509,3.986,7511,3.028,7512,3.028,7513,5.583,7540,2.104,7549,3.028,7562,2.719,7565,3.823,7645,3.258,7690,3.028,7764,1.888,7769,3.028,7788,2.421,7792,3.258,7794,2.604,7795,3,7836,2.506,7839,3.258,7878,3.028,7883,2.604,7892,3.258,7922,3.258,7966,3.028,7976,3.258,8006,3.258,8080,3.258,8120,3.973,8208,2.856,8295,2.719,8336,7.258,8755,3.258,8817,3.258,9132,2.856,9427,2.856,9539,2.604,9574,3.258,9639,2.604,9654,2.604,9899,3.258,10091,3.258,10107,2.719,10139,2.856,10189,3.028,10190,3.258,10191,3.608,10192,3.258,10193,3.608,10194,3.258,10195,3.608,10196,3.608,10197,3.608,10198,3.608,10199,3.608,10200,3.608,10201,3.258,10202,3.608,10203,3.608,10204,3.608,10205,3.608,10206,3.608,10207,3.608,10208,4.97,10209,3.608,10210,5.503,10211,8.037,10212,9.083,10213,6.025,10214,3.028,10215,3.608,10216,3.608,10217,3.608,10218,3.608,10219,3.608,10220,3.608,10221,3.608,10222,3.608,10223,3.608,10224,3.608,10225,3.608]],["description//tracks/90daysofdevops/_index",[903,1.856,1979,2.096,5305,1.387,10226,4.417]],["title//tracks/90daysofdevops/images/_index",[]],["content//tracks/90daysofdevops/images/_index",[]],["description//tracks/90daysofdevops/images/_index",[]],["title//tracks/90daysofdevops/day19/",[593,0.641,595,1.44,905,0.545,2032,3.265,6338,1.495,6497,2.121]],["content//tracks/90daysofdevops/day19/",[6,0.366,7,1.192,15,0.987,26,1.16,29,0.952,31,0.93,32,1.078,37,2.619,38,0.65,44,0.833,49,0.721,56,1.025,57,1.322,58,0.851,65,1.174,68,1.355,71,1.336,74,1.602,77,2.369,80,0.606,83,1.642,89,1.964,96,1.598,100,1.812,101,3.408,102,2.29,107,0.707,109,2.191,110,0.92,111,1.567,112,0.743,114,1.564,124,1.693,126,1.4,136,1.413,137,0.493,139,1.709,141,1.583,155,1.657,158,1.038,173,1.742,175,0.969,176,1.487,183,1.728,197,1.41,198,1.313,202,0.735,203,0.86,206,1.158,217,1.336,230,1.44,234,0.912,242,4.267,245,0.68,247,1.21,259,1.602,260,1.472,268,1.295,270,4.046,272,1.141,288,0.75,289,1.84,290,1.657,295,1.848,300,0.975,319,3.737,333,2.093,337,0.899,343,1.54,344,0.452,351,0.721,354,1.135,355,0.86,356,0.695,361,1.442,362,1.648,374,2.213,375,0.879,378,1.157,393,1.158,398,1.27,402,1.413,420,1.657,422,0.507,423,2.283,427,1.025,432,1.125,437,2.152,439,1.27,441,1.174,454,1.755,459,0.899,461,0.941,462,1.146,467,1.322,468,1.8,479,1.215,485,1.472,488,0.869,490,1.071,507,1.741,517,1.313,518,0.842,525,1.994,536,1.265,541,1.413,542,0.842,550,1.038,553,1.504,554,1.387,583,1.614,592,1.538,593,1.399,595,3.71,600,1.583,611,2.704,623,2.08,626,0.806,627,1.361,628,2.752,635,0.92,637,2.24,640,1.882,647,1.877,648,1.038,654,2.138,675,0.79,681,1.657,718,0.975,733,3.329,745,0.806,756,2.047,757,1.313,758,1.602,774,1.475,778,0.721,785,0.851,787,1.109,795,1.192,817,1.94,827,1.614,828,2.735,844,1.387,845,2.302,849,1.782,864,1.361,867,1.819,880,1.755,905,0.891,907,1.172,909,1.308,910,0.824,917,0.686,918,0.466,924,1.614,925,0.75,926,0.964,930,1.125,931,0.941,934,3.147,935,1.645,946,4.671,955,3.223,998,1.192,1002,1.308,1021,0.79,1024,1.708,1034,4.836,1036,0.879,1043,1.538,1049,1.192,1053,2.093,1054,1.065,1055,0.79,1059,1.337,1061,1.174,1066,2.046,1078,1.504,1085,1.614,1088,0.629,1089,0.975,1100,3.64,1138,0.693,1184,1.27,1211,3.013,1237,1.109,1242,2.893,1252,1.704,1266,2.046,1273,2.388,1287,2.026,1288,1.413,1300,1.851,1303,1.575,1305,1.876,1320,2.44,1327,2.847,1330,1.538,1331,1.841,1336,4.17,1341,2.858,1351,1.052,1362,1.337,1364,2.27,1374,1.229,1397,5.517,1405,2.704,1424,0.975,1437,1.442,1447,0.909,1477,1.755,1480,1.291,1483,3.329,1489,1.038,1526,1.27,1535,1.575,1536,2.404,1592,0.909,1599,2.06,1618,0.909,1619,1.192,1626,1.704,1631,1.504,1632,1.447,1639,0.815,1643,2.208,1651,1.157,1652,1.012,1654,1.614,1656,0.93,1674,2.208,1678,1.291,1681,1.704,1688,4.895,1704,1.141,1716,1.575,1741,1.157,1747,2.858,1749,2.44,1759,4.951,1763,1.812,1786,2.297,1818,1.08,1857,1.229,1889,4.267,1890,1.229,1912,1.094,1930,1.193,1954,0.782,1955,1.291,1987,1.012,1988,1.387,1996,1.387,2011,2.035,2013,1.538,2015,2.267,2029,1.812,2033,1.949,2067,1.365,2069,1.538,2070,1.812,2074,1.704,2095,1.949,2132,4.969,2142,4.375,2163,3.542,2214,1.657,2259,2.807,2277,1.475,2279,2.035,2299,1.442,2364,1.509,2419,4.475,2460,8.298,2463,6.314,2468,1.337,2629,1.337,2642,2.267,2660,1.755,2678,4.723,2693,2.404,2698,1.361,2710,3.043,2731,3.894,2765,1.361,2768,1.755,2837,2.495,2856,3.396,2910,2.439,2929,1.249,2976,0.909,3092,2.035,3147,1.472,3174,0.909,3179,1.229,3187,1.313,3304,1.387,3344,2.267,3357,2.267,3394,2.912,3412,2.267,3426,1.025,3436,3.677,3438,2.267,3442,2.267,3445,2.267,3446,3.468,3448,2.267,3492,2.138,3500,1.812,3504,3.079,3508,1.337,3516,1.657,3537,1.949,3617,2.293,3624,1.876,3657,2.897,3658,1.27,3659,4.17,3670,3.709,3750,1.504,3753,2.138,3792,1.876,3803,1.012,3884,1.876,3915,1.291,3979,2.035,4039,2.85,4312,1.812,4415,1.192,4423,1.575,4424,1.157,4449,1.442,4474,1.538,4533,1.413,4545,1.229,4639,2.267,4757,1.575,4774,2.138,4816,2.44,4937,2.035,5021,2.267,5033,1.21,5043,1.337,5060,1.704,5065,1.249,5070,3.956,5100,1.442,5153,1.157,5158,0.93,5161,2.847,5199,2.439,5263,2.267,5300,3.579,5302,1.876,5304,1.065,5305,0.766,5313,3.903,5320,1.876,5348,2.138,5389,2.168,5395,3.468,5397,1.614,5405,1.657,5614,1.575,5637,1.065,5736,1.27,5763,1.812,5772,1.442,5778,1.704,5842,1.812,5879,5.743,5890,2.035,6004,1.27,6018,2.267,6121,2.267,6289,2.996,6290,3.301,6294,1.192,6295,2.24,6319,1.313,6321,1.812,6322,1.949,6337,1.704,6338,2.125,6339,2.557,6364,1.825,6366,1.361,6404,5.665,6461,1.812,6464,1.949,6497,5.344,6501,4.639,6648,1.812,6659,2.267,6716,1.755,6720,1.504,6777,1.949,6839,1.291,6923,1.538,6974,1.614,7070,3.468,7082,2.619,7101,1.313,7136,1.876,7157,3.392,7227,2.138,7261,2.138,7305,2.939,7312,1.949,7326,1.387,7360,2.267,7423,2.267,7465,1.575,7489,1.949,7539,2.138,7561,2.138,7601,2.035,7654,2.138,7918,2.035,8039,4.992,8300,1.472,8302,2.138,8338,2.439,8411,2.439,8456,2.439,8486,5.337,8500,2.267,8580,2.267,8639,1.755,8728,1.755,8766,2.035,8790,1.876,8797,2.138,8837,3.99,9200,2.439,9214,2.439,9236,2.439,9315,2.439,9562,3.677,9611,2.439,9621,2.439,9623,2.267,9639,3.99,9652,2.267,9653,2.267,9654,3.162,9655,3.043,9656,1.876,9787,2.439,9798,2.439,9829,3.956,9831,2.439,9873,4.375,9877,2.035,9897,3.956,9954,2.439,9990,2.439,10173,2.439,10189,3.677,10194,2.439,10201,2.439,10227,2.701,10228,2.439,10229,2.701,10230,2.701,10231,4.381,10232,2.701,10233,2.439,10234,2.701,10235,2.701,10236,2.701,10237,7.487,10238,6.991,10239,2.701,10240,3.956,10241,2.701,10242,2.701,10243,2.701,10244,2.701,10245,2.701,10246,2.701,10247,2.701,10248,2.701,10249,2.701,10250,2.701,10251,2.701,10252,2.439,10253,2.701,10254,2.701,10255,4.381,10256,2.701,10257,2.701,10258,2.701,10259,4.381,10260,2.701,10261,2.701,10262,2.701,10263,6.991,10264,2.701,10265,2.701,10266,2.701,10267,4.381,10268,2.701,10269,2.701,10270,2.701,10271,2.701,10272,2.701,10273,2.701,10274,2.701,10275,2.701]],["description//tracks/90daysofdevops/day19/",[593,0.724,595,1.627,905,0.616,6338,1.689,6497,2.395]],["title//tracks/90daysofdevops/day08/",[268,0.968,355,1.043,1724,1.681,2098,1.515,2099,1.593,2258,1.54,5065,1.515,5305,0.929]],["content//tracks/90daysofdevops/day08/",[6,0.263,18,1.699,26,1.343,31,1.699,34,1.127,37,2.948,38,1.028,42,2.688,44,1.52,64,2.156,65,1.162,68,1.447,70,1.588,74,1.855,75,1.355,95,3.56,96,1.127,101,2.245,102,1.241,105,1.829,107,1.291,109,1.699,111,2.458,112,1.904,113,2.304,118,1.357,124,1.427,126,1.908,136,1.538,139,1.205,147,2.032,164,2.526,175,0.714,179,2.441,183,2.73,197,1.588,217,2.111,219,1.427,225,1.473,229,1.998,230,1.117,260,2.688,263,1.971,267,1.848,268,1.457,277,4.454,278,2.532,288,0.844,289,2.004,295,2.139,343,2.21,351,1.847,353,3.026,355,1.57,356,1.09,358,3.553,362,1.278,374,2.029,376,2.966,377,2.695,378,2.966,383,1.488,402,2.581,422,0.926,432,3.942,459,1.642,479,1.35,490,1.692,507,1.553,519,2.026,536,0.892,550,1.896,592,2.809,593,0.813,600,1.483,604,2.633,612,3.64,636,1.66,639,2.581,640,3.223,648,1.896,718,1.781,730,3.622,758,1.055,774,1.66,779,2.695,843,3.56,849,1.633,856,2.026,867,1.623,925,2.408,926,1.76,931,3.388,935,1.16,940,2.581,952,2.281,991,2.537,993,2.53,1002,2.387,1021,1.442,1024,1.898,1055,1.442,1088,1.149,1208,1.488,1224,1.896,1249,3.111,1266,2.561,1296,3.29,1300,2.083,1301,1.553,1309,2.113,1315,1.945,1331,2.003,1336,2.357,1351,1.92,1364,2.843,1365,2.21,1374,3.15,1376,3.56,1377,3.942,1430,2.318,1447,1.66,1474,2.747,1487,2.441,1508,2.876,1600,2.809,1618,1.66,1619,2.177,1626,1.52,1627,2.485,1639,2.088,1651,2.113,1652,2.996,1675,2.532,1680,1.848,1711,2.581,1769,4.105,1786,2.888,1890,2.245,1901,2.398,1903,3.426,1912,1.998,1917,2.876,1920,1.68,1930,1.885,1943,3.111,2001,2.688,2004,2.054,2013,2.809,2067,1.537,2075,3.205,2098,4.378,2099,3.888,2167,2.948,2204,2.948,2258,2.318,2259,4.03,2364,1.699,2382,2.593,2647,2.318,2651,1.537,2662,1.998,2698,2.485,2838,4.366,2839,2.747,2949,2.083,2976,1.66,3175,2.876,3179,2.245,3311,2.876,3312,3.026,3394,2.882,3495,1.699,3585,3.716,3587,3.205,3656,3.56,3661,3.365,3670,3.309,3696,1.776,3708,4.643,3916,3.309,3946,3.026,4341,4.139,4364,3.309,4525,2.581,4545,3.15,4782,2.876,4816,2.747,5065,5.066,5153,3.426,5156,3.309,5157,2.688,5158,1.699,5182,2.245,5241,3.026,5270,3.205,5299,2.747,5305,1.398,5350,3.56,5386,3.426,5482,2.876,5772,2.633,5976,3.426,6285,2.633,6289,2.113,6301,2.747,6365,3.56,6418,4.139,6419,2.083,6421,3.716,6445,1.945,6450,3.56,6461,4.643,6693,3.716,6833,3.904,6837,1.699,6839,2.357,6924,4.139,7247,3.426,7392,4.663,7406,3.904,7419,3.205,7541,4.454,7670,3.426,7850,3.56,8157,2.398,8158,2.398,8194,3.904,8200,4.807,8203,4.139,8300,4.976,8491,5.808,8600,3.716,8680,3.426,8686,3.205,8790,3.426,8857,3.716,9271,4.454,9325,3.56,9689,4.454,9859,4.139,9861,4.139,9889,7.662,9981,3.426,9982,3.426,9983,3.426,9984,3.426,9985,3.426,9986,3.426,9987,3.426,9988,3.426,9989,3.426,10040,4.454,10276,4.932,10277,4.932,10278,4.932,10279,4.932,10280,4.932,10281,4.932,10282,4.932]],["description//tracks/90daysofdevops/day08/",[268,1.08,355,1.163,2098,1.69,2099,1.776,2258,1.717,5065,1.69,5305,1.036]],["title//tracks/90daysofdevops/day05/",[6,0.227,16,1.231,30,0.625,842,1.05,2382,0.752,4530,1.143,5026,0.959,5028,0.993,5182,0.913,7788,1.346]],["content//tracks/90daysofdevops/day05/",[0,5.314,5,2.522,6,0.35,16,4.791,25,2.085,26,1.25,29,2.367,31,2.69,32,1.309,33,2.522,34,1.535,38,0.701,45,2.425,49,1.261,52,2.919,65,1.676,68,1.215,71,1.441,75,1.441,77,2.024,107,1.757,118,1.299,124,0.974,126,1.04,136,2.074,137,1.226,139,1.155,156,5.058,179,2.338,182,4.235,190,1.943,191,1.07,201,3.208,202,1.828,206,1.248,208,3.446,222,1.646,226,1.967,230,1.926,232,3.069,234,0.983,245,1.189,259,1.727,261,2.547,262,5.667,267,1.77,285,3.281,288,1.455,295,1.166,300,1.706,301,1.793,340,2.522,342,1.967,343,1.143,344,0.487,351,1.792,354,1.739,356,1.174,372,1.995,374,1.05,375,1.538,393,1.774,404,3.169,422,1.261,461,2.964,476,2.648,479,1.157,482,2.185,488,1.521,535,1.2,536,1.625,539,2.69,540,2.796,553,2.631,606,1.686,626,1.41,640,1.609,645,2.522,655,2.313,675,1.963,714,2.472,756,1.521,758,1.437,774,1.59,778,1.792,779,1.839,799,2.38,842,2.472,849,1.737,856,1.94,859,2.836,909,1.41,910,2.047,915,1.94,925,1.865,926,1.686,935,1.579,991,1.312,1002,2.787,1024,1.284,1053,1.555,1055,1.963,1066,3.147,1079,1.815,1087,2.631,1088,2.237,1148,2.98,1198,2.297,1201,4.266,1205,2.21,1208,1.425,1214,3.964,1226,3.584,1242,3.513,1255,1.793,1266,1.748,1269,1.77,1311,2.69,1376,3.409,1431,3.281,1439,4.013,1488,1.94,1489,1.815,1553,5.314,1585,2.024,1591,3.659,1592,1.59,1618,1.59,1628,3.347,1630,2.38,1632,1.236,1650,2.823,1655,3.559,1661,2.659,1677,2.472,1678,2.258,1690,4.467,1702,2.897,1704,1.995,1722,3.281,1736,3.069,1789,2.054,1904,2.185,1913,3.739,1930,1.286,1976,5.198,1979,2.877,1984,3.383,1987,2.516,1990,3.739,2001,2.575,2044,3.169,2052,2.297,2054,2.631,2125,2.755,2163,2.631,2170,2.755,2231,4.266,2245,3.824,2275,5.425,2382,2.926,2492,3.964,2570,2.38,2859,2.898,2949,1.995,3065,2.823,3067,3.069,3172,2.258,3174,2.863,3315,3.739,3354,3.739,3394,2.796,3432,2.823,3621,2.755,3636,3.069,3665,4.362,3696,1.722,3714,3.964,3779,4.926,3879,3.659,3964,3.169,3980,3.659,4034,2.98,4039,2.117,4128,3.409,4201,2.15,4248,3.409,4274,2.755,4423,2.755,4475,2.631,4497,2.877,4525,2.472,4530,2.69,4827,2.98,4849,3.739,5026,3.209,5028,3.865,5065,3.105,5066,3.964,5067,3.964,5083,4.663,5182,3.555,5214,3.739,5264,3.964,5299,2.631,5305,2.933,5373,2.522,5542,2.425,5569,2.631,5736,2.22,5737,3.281,6024,3.739,6047,3.409,6072,2.898,6338,2.58,6381,2.755,6420,3.739,6445,1.863,6621,3.964,6638,3.964,6642,3.281,6649,3.824,6657,3.281,6675,2.898,6714,3.169,6729,4.845,6750,4.266,6847,5.822,6848,4.926,6873,4.663,7067,2.823,7111,3.559,7123,3.281,7157,2.898,7161,3.281,7204,4.266,7205,2.823,7209,3.739,7270,5.058,7274,2.69,7278,3.739,7363,3.409,7364,2.69,7404,3.169,7555,4.845,7773,3.739,7788,4.504,7828,3.739,8076,3.739,8120,3.409,8157,2.297,8158,2.297,8489,3.559,8500,3.964,8545,3.559,8697,3.964,9205,3.964,9319,4.266,10070,3.964,10132,4.266,10228,4.266,10283,4.723,10284,4.723,10285,4.723,10286,4.723,10287,4.723,10288,4.723,10289,4.723,10290,4.723,10291,4.723,10292,4.723,10293,4.723,10294,4.723,10295,4.723,10296,4.723,10297,4.723,10298,4.723,10299,4.723,10300,4.723,10301,4.723,10302,4.723,10303,4.723,10304,4.723,10305,4.723,10306,4.723,10307,6.713,10308,4.723,10309,4.723,10310,4.723,10311,4.723,10312,4.723,10313,4.723,10314,4.723]],["description//tracks/90daysofdevops/day05/",[6,0.236,16,1.338,842,1.142,2382,0.817,4530,1.242,5026,1.043,5028,1.079,5182,0.993,7788,1.463]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README",[103,5.386,3703,6.303,5062,7.927,5083,6.097,5093,5.119,5464,4.785,10315,6.948,10316,7.367]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README",[270,3.778,408,3.887,442,3.56,494,5.074,701,4.57,993,2.723,1005,3.239,1336,3.56,1397,4.84,1502,4.57,1759,4.344,1811,4.243,1814,5.376,1855,4.344,2029,4.997,2260,4.84,2677,5.612,2693,4.427,2789,3.753,2904,3.824,3434,3.887,3500,4.997,4530,4.243,5020,5.174,5030,4.344,5081,4.344,5128,3.824,5162,4.84,5164,4.84,5173,4.657,5195,6.562,5464,4.06,5503,5.894,6140,4.997,6419,4.132,6741,4.06,6904,3.779,6930,8.192,6957,4.997,7076,5.704,7297,5.376,7607,5.722,8497,7.249,8693,4.452,8814,5.174,10317,11.207,10318,6.727,10319,6.727,10320,7.448,10321,7.448,10322,7.448,10323,7.448,10324,5.174,10325,5.376,10326,9.071,10327,7.448,10328,5.612,10329,7.448,10330,6.727,10331,7.448,10332,6.251,10333,7.448]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README",[6,0.355,35,2.781,103,4.896,144,3.233,270,3.324,441,3.47,442,3.815,494,4.597,880,6.547,1151,4.373,1336,3.815,1397,5.186,1759,4.654,1895,7.207,2587,4.948,2693,4.111,2727,4.261,2789,4.021,3703,5.964,5030,4.654,5173,4.097,5503,5.186,6392,4.445,6419,3.371,6741,4.35,6904,3.706,6957,6.343,7076,5.513,7205,4.77,8440,9.407,8497,6.999,8814,6.568,9593,8.538,10059,6.317,10324,5.544,10325,5.76,10334,7.98,10335,9.454,10336,7.98]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README",[270,4.076,389,4.577,408,3.197,442,3.566,494,5.076,701,4.577,842,3.904,882,3.83,993,2.727,1151,4.527,1336,3.566,1397,4.847,1502,4.577,1759,4.35,1814,5.385,1855,4.35,2029,5.005,2260,4.847,2677,5.621,2693,4.429,2789,3.759,2904,3.83,3143,3.692,3434,3.891,3500,5.005,5030,4.35,5081,4.35,5162,4.847,5164,4.847,5173,4.661,5195,6.567,5464,4.066,5503,4.847,6140,5.005,6392,5.057,6419,3.835,6564,5.385,6741,4.066,6904,3.78,6957,5.005,7076,5.708,7297,5.385,7298,5.905,7607,5.728,8497,7.252,8693,4.459,8814,5.182,10318,6.737,10319,6.737,10324,5.182,10325,5.385,10328,5.621,10330,6.737,10332,6.261,10337,11.208,10338,7.46,10339,9.079,10340,7.46,10341,7.46,10342,7.46,10343,7.46]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README",[6,0.301,35,3.032,103,5.618,120,1.204,144,3.845,146,4.909,243,3.746,254,3.336,269,3.136,270,4.14,274,5.509,280,5.841,319,2.042,408,2.983,424,3.643,426,2.71,441,3.982,442,2.376,446,3.935,494,5.03,575,2.899,582,2.972,698,5.024,701,4.927,702,2.337,722,2.71,733,3.643,840,2.299,841,3.746,946,3.643,1005,3.783,1046,3.142,1184,2.337,1336,2.376,1354,3.231,1397,3.231,1502,3.051,1508,2.899,1552,3.746,1759,2.899,1763,3.336,1789,2.162,1814,5.796,1855,2.899,2029,6.143,2074,5.066,2131,5.761,2132,2.832,2247,4.523,2251,2.71,2468,2.46,2494,4.49,2677,3.746,2693,3.783,2727,2.655,2731,5.537,2789,2.505,2823,4.172,2839,2.769,2904,4.466,2975,2.71,3434,3.441,3437,3.454,3497,3.935,3500,5.836,3502,3.589,3670,4.669,3703,4.39,3795,5.218,3973,4.172,5023,4.172,5029,5.776,5030,2.899,5031,3.336,5045,4.172,5055,4.49,5069,4.49,5074,5.824,5081,5.073,5093,4.683,5122,3.344,5126,5.509,5157,2.71,5162,4.523,5164,5.95,5166,5.841,5173,3.573,5188,5.841,5195,5.388,5214,3.935,5216,4.49,5393,3.589,5464,4.742,5556,7.702,6140,3.336,6251,3.746,6330,3.454,6419,2.94,6420,3.935,6741,2.71,6888,5.578,6904,3.465,6949,3.231,7046,3.051,7076,5.534,7079,4.49,7297,6.279,7607,4.39,7871,7.387,8176,3.746,8372,4.49,8497,6.361,8565,4.49,8693,4.16,8814,3.454,9542,4.49,9735,6.739,9898,4.49,9921,4.172,10059,3.935,10324,3.454,10325,3.589,10328,5.244,10344,4.972,10345,4.972,10346,4.972,10347,4.972,10348,10.101,10349,6.285,10350,4.972,10351,4.972,10352,6.285,10353,8.269,10354,8.03,10355,8.03,10356,4.972,10357,4.972,10358,6.96,10359,6.96,10360,6.96,10361,4.972,10362,6.96,10363,8.699,10364,4.972,10365,6.96,10366,4.972,10367,4.972,10368,4.972,10369,4.972,10370,6.96,10371,6.96,10372,6.96,10373,4.972,10374,4.972,10375,4.972,10376,6.96,10377,4.972,10378,4.972,10379,4.972,10380,6.96,10381,6.96,10382,4.972,10383,4.972,10384,8.03,10385,4.972,10386,4.972,10387,4.49,10388,4.972,10389,4.972,10390,9.742,10391,9.156,10392,4.972,10393,4.972,10394,4.972,10395,4.972,10396,4.972,10397,4.972,10398,4.972,10399,4.972,10400,4.972,10401,4.972,10402,4.972,10403,4.972,10404,4.972]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README",[144,3.314,270,3.995,442,3.91,448,5.488,494,3.977,734,6.474,1336,3.91,1397,5.315,1759,4.77,2260,5.315,2693,4.172,2768,5.315,2789,4.122,2839,4.555,2904,4.199,3703,5.16,5030,4.77,5081,4.77,5122,3.407,5173,4.199,5174,6.474,5195,5.488,6419,4.052,6741,4.458,6904,3.548,7076,5.594,8497,7.071,8814,5.682,10059,6.474,10252,7.386,10324,5.682,10325,5.904,10405,10.944,10406,8.179,10407,8.179,10408,7.386]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README",[6,0.333,146,4.286,251,3.266,269,4.237,270,2.797,313,1.985,319,2.759,408,4.662,417,5.085,441,4.06,442,4.066,448,4.506,455,6.065,456,4.506,494,4.539,575,2.797,734,5.316,840,3.106,882,3.448,888,7.309,1005,2.921,1046,2.426,1336,3.21,1341,2.261,1386,3.01,1397,4.364,1405,2.426,1561,4.364,1611,1.036,1759,3.917,1762,6.14,1901,3.266,1920,3.342,2029,4.506,2454,4.666,2460,5.316,2468,3.324,2677,5.061,2693,3.699,2789,3.384,2822,5.637,3012,7.034,3020,6.065,3143,3.324,3502,4.848,3703,4.237,3993,4.237,5030,3.917,5061,5.637,5081,3.917,5132,4.121,5162,4.364,5164,4.364,5173,4.367,5202,6.065,5215,3.917,5287,4.364,5384,5.637,5393,4.848,5464,3.661,6323,6.733,6331,6.065,6419,3.944,6741,3.661,6742,6.14,6888,6.817,6889,4.848,6904,3.529,6929,6.065,6976,10.106,7076,4.96,7221,7.39,7298,8.188,7831,4.121,8497,6.485,8693,4.015,8814,4.666,8815,6.065,8824,6.065,9273,6.065,9921,5.637,10208,6.065,10214,5.637,10324,4.666,10325,4.848,10332,5.637,10409,6.716,10410,6.716,10411,6.716,10412,6.065,10413,6.716,10414,8.506,10415,6.716,10416,8.506,10417,6.716,10418,6.716,10419,6.716,10420,6.716,10421,6.716,10422,6.716,10423,6.716,10424,6.716,10425,6.065,10426,6.716,10427,6.716,10428,6.716]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README",[]],["title//search/_index",[5556,4.331,8693,3.727]],["content//search/_index",[]],["description//search/_index",[]],["title//posts/ruGPT-3-notes",[147,1.584,10429,6.234]],["content//posts/ruGPT-3-notes",[147,2.242,1647,4.367,2283,4.531,6388,4.447,8219,7.969,10430,7.969]],["description//posts/ruGPT-3-notes",[147,1.605,10430,5.706]],["title//posts/math-support",[2058,4.935,7831,3.825]],["content//posts/math-support",[6,0.357,144,3.308,650,5.478,663,3.971,829,6.153,1749,3.604,1843,4.23,3114,6.153,5811,6.464,6110,5.894,7299,6.464,7831,5.01,9645,6.853,9877,6.153,10431,8.165,10432,8.655,10433,8.165,10434,10.172,10435,8.165,10436,8.165,10437,8.165,10438,8.165,10439,8.165,10440,10.494,10441,8.165,10442,10.172,10443,9.583,10444,9.583,10445,8.165,10446,8.165,10447,7.374,10448,8.165,10449,8.165,10450,8.165,10451,8.165]],["description//posts/math-support",[]],["title//posts/featured-image",[1026,2.883,8773,4.698]],["content//posts/featured-image",[378,3.931,1834,5.121,4639,8.123,6096,7.5,6528,8.284,7413,7.5,10452,6.469,10453,9.173,10454,7.5,10455,9.173,10456,9.173,10457,9.173,10458,6.469,10459,6.469,10460,8.305,10461,10.243,10462,10.01,10463,9.173,10464,9.173,10465,9.173,10466,9.173,10467,9.173,10468,10.01,10469,8.305,10470,9.679,10471,8.305,10472,6.469,10473,8.305,10474,8.305,10475,6.469,10476,6.469,10477,8.305,10478,6.469,10479,6.469,10480,8.305,10481,6.469,10482,9.173,10483,8.284,10484,8.305,10485,6.469,10486,6.469,10487,8.305,10488,5.842,10489,6.469,10490,9.173,10491,8.305,10492,8.305,10493,8.305,10494,6.469,10495,8.305,10496,6.469,10497,8.305,10498,8.305,10499,8.305,10500,9.173,10501,8.284,10502,8.284,10503,6.469,10504,8.305,10505,8.305,10506,6.469,10507,6.469,10508,6.469,10509,6.469,10510,8.305,10511,8.305,10512,10.01,10513,6.469,10514,9.173,10515,6.469,10516,8.305,10517,8.305,10518,9.173,10519,8.305,10520,8.305,10521,8.305,10522,6.469,10523,6.469,10524,8.305,10525,7.5,10526,6.469,10527,6.469,10528,6.469,10529,6.469,10530,6.469,10531,6.469,10532,6.469,10533,6.469,10534,8.305,10535,6.469,10536,6.469,10537,8.305,10538,6.469,10539,8.305,10540,8.305,10541,6.469,10542,6.469,10543,6.469,10544,6.469,10545,6.469,10546,8.305,10547,6.469,10548,8.305,10549,6.469,10550,8.305,10551,6.469,10552,6.469,10553,6.469,10554,5.842,10555,6.469,10556,6.469]],["description//posts/featured-image",[1026,2.55,3009,3.383,8773,4.154]],["title//posts/emoji-support",[7831,3.825,10557,5.232]],["content//posts/emoji-support",[6,0.367,103,5.927,144,3.612,270,3.015,280,8.46,281,4.858,313,2.139,319,2.974,441,3.149,492,3.717,494,3.521,663,3.521,814,5.029,829,5.455,841,5.455,932,3.349,1047,5.226,1367,5.731,1555,4.328,1604,8.051,1840,4.124,1862,6.538,1900,6.076,2030,5.455,2382,3.341,3114,5.455,3146,4.567,3376,6.435,3502,5.226,3737,5.731,3855,8.051,3974,6.076,5195,4.858,5335,4.442,5348,5.731,5407,4.442,5464,3.947,6330,5.029,6951,4.705,6952,4.328,7299,5.731,7326,3.717,9444,6.538,10315,5.731,10316,6.076,10447,6.538,10557,9.357,10558,5.47,10559,8.915,10560,8.915,10561,7.24,10562,7.24,10563,7.24,10564,8.915,10565,8.915,10566,7.24,10567,7.24,10568,7.24,10569,7.24,10570,7.24,10571,7.24,10572,10.351,10573,8.915,10574,10.08,10575,8.915,10576,8.915,10577,8.915,10578,7.24,10579,7.24,10580,6.076,10581,7.24,10582,7.24,10583,6.538,10584,7.24]],["description//posts/emoji-support",[5043,2.42,10324,3.398,10557,4.105,10558,3.001]],["title//posts/diagram-support",[5196,5.232,7831,3.825]],["content//posts/diagram-support",[6,0.358,17,5.447,144,3.207,270,3.297,319,3.251,750,4.143,800,3.603,1552,5.965,1557,4.616,1959,6.643,2382,2.966,2454,6.536,3114,7.09,3795,5.144,5030,4.616,5133,6.114,5159,6.266,5196,8.427,5308,5.144,5932,7.448,6371,5.311,7831,4.857,9158,7.149,9645,6.643,10328,7.09,10585,10.389,10586,7.916,10587,7.916,10588,7.916,10589,7.916,10590,7.916,10591,7.916,10592,7.916,10593,9.409,10594,9.409,10595,7.916,10596,9.409,10597,9.409,10598,7.916,10599,7.916,10600,9.409,10601,7.916,10602,7.916,10603,7.916,10604,7.916]],["description//posts/diagram-support",[]],["title//posts/_index",[3885,4.28]],["content//posts/_index",[1,2.775]],["description//posts/_index",[]],["title//posts/vps-docker-subdomains-setup/project/projects/3/",[]],["content//posts/vps-docker-subdomains-setup/project/projects/3/",[1561,6.54]],["description//posts/vps-docker-subdomains-setup/project/projects/3/",[]],["title//posts/trading-indicators/sma",[139,1.171,3343,3.023,4714,3.793,10605,4.021]],["content//posts/trading-indicators/sma",[6,0.302,38,1.126,53,2.584,107,2.4,139,1.854,175,0.783,182,4.786,202,2.498,221,1.909,288,1.569,482,3.509,648,2.916,711,5.716,827,4.535,852,3.566,886,4.321,1440,4.535,1641,7.116,2171,6.815,2333,4.774,2699,3.689,2841,6.005,2929,4.56,3343,5.786,3518,5.628,3619,4.135,4039,4.111,4154,6.005,4330,5.476,4465,6.005,4714,6.005,6120,6.367,6168,7.698,6180,5.716,6188,6.851,6367,4.709,7888,8.283,8366,6.851,10177,9.25,10605,9.193,10606,7.586,10607,6.851,10608,10.243,10609,7.586,10610,9.172,10611,7.586,10612,9.172,10613,7.586,10614,7.586,10615,7.586,10616,7.586,10617,9.172,10618,7.586,10619,7.586,10620,7.586,10621,7.586,10622,7.586]],["description//posts/trading-indicators/sma",[10605,6.208]],["title//posts/python-snippets/",[1611,0.962,10623,5.63]],["content//posts/python-snippets/",[1,2.616,2,0.985,6,0.376,14,0.681,15,1.368,17,4.254,18,0.425,26,0.55,27,0.778,29,0.435,30,3.045,32,0.844,34,1.942,38,1.104,44,0.941,47,0.828,49,0.596,50,3.499,53,0.42,57,0.921,58,0.962,63,4.808,65,0.375,67,0.411,68,0.875,73,0.596,74,0.654,80,0.277,83,0.836,88,1.036,90,2.905,96,0.99,100,0.828,102,1.824,105,0.59,107,0.323,109,0.425,110,0.909,111,0.35,112,2.454,113,1.609,114,1.922,120,2.555,124,0.997,126,0.953,136,0.832,137,0.684,139,0.302,141,0.354,147,2.635,149,0.59,158,1.664,161,3.123,165,0.738,167,2.237,172,1.032,173,0.556,175,0.447,176,0.443,183,1.205,184,2.204,197,0.983,202,0.608,203,0.711,205,1.664,206,1.144,216,0.732,219,1.253,220,0.758,221,0.562,224,0.425,225,0.369,234,0.257,240,2.996,241,3.152,245,0.562,246,0.647,261,0.847,264,1.064,270,0.514,286,0.891,289,1.167,300,0.446,301,0.469,302,3.042,307,0.892,311,4.659,313,2.481,319,3.937,332,1.125,333,0.406,343,0.299,344,0.544,351,0.33,352,0.972,354,0.32,356,0.663,359,0.836,362,0.32,369,0.58,372,0.522,376,2.425,377,2.203,379,0.891,381,0.487,383,0.673,401,0.802,414,0.634,422,1.063,437,0.481,441,0.97,459,0.411,461,0.778,462,1.57,464,0.435,465,4.744,467,1.13,468,0.917,470,1.04,472,0.88,477,3.315,478,1.328,479,0.509,488,0.983,490,1.608,517,0.6,518,0.385,539,0.703,540,0.514,548,1.016,555,0.475,556,3.058,559,0.891,562,0.758,569,0.891,583,3.152,590,0.891,593,0.797,595,0.826,597,0.779,598,0.481,600,0.64,606,2.435,608,1.55,623,2.302,627,1.125,628,0.357,635,2.044,636,0.416,637,0.5,640,1.04,645,0.659,655,1.817,663,1.485,680,0.93,702,2.035,714,0.646,716,1.435,741,0.481,742,0.323,745,2.104,755,1.652,756,0.718,771,0.72,778,0.999,781,0.562,785,1.179,793,1.776,796,2.121,800,1.971,812,1.681,817,1.32,819,0.646,823,0.622,828,0.611,844,0.634,848,1.146,851,2.204,852,2.273,855,0.779,859,0.522,887,0.858,895,1.036,907,0.262,909,0.369,915,2.325,917,0.567,926,0.441,931,1.064,935,0.525,938,0.326,939,0.451,978,0.93,1008,0.779,1010,0.802,1017,0.507,1018,0.402,1024,1.644,1038,0.72,1053,0.735,1054,0.88,1055,0.893,1061,0.97,1068,0.634,1078,2.085,1079,1.174,1085,1.334,1087,1.701,1089,1.352,1100,3.775,1103,1.254,1120,0.977,1138,0.317,1143,0.507,1181,0.562,1187,1.049,1198,2.351,1234,1.509,1237,2.803,1243,1.369,1255,1.835,1273,1.216,1280,1.701,1283,3.081,1298,2.237,1300,0.522,1301,1.986,1302,0.59,1320,1.701,1327,3.899,1330,0.703,1335,1.55,1341,2.441,1364,1.254,1377,0.703,1397,0.802,1405,0.446,1437,0.659,1440,1.334,1447,2.02,1456,0.93,1478,0.507,1482,1.403,1484,0.929,1497,1.497,1524,0.72,1541,1.497,1555,0.738,1561,0.802,1585,0.956,1586,1.55,1592,0.416,1598,0.634,1601,0.673,1611,1.325,1612,1.611,1628,0.529,1639,0.373,1643,3.177,1648,0.634,1652,0.463,1656,0.769,1661,1.04,1664,2.702,1666,0.93,1669,0.522,1672,0.688,1675,1.568,1677,0.646,1680,0.463,1692,1.036,1695,0.891,1696,1.408,1711,1.168,1720,0.758,1724,2.223,1741,0.529,1742,0.571,1747,2.614,1749,4.283,1750,3.353,1751,2.697,1753,2.963,1761,1.115,1762,3.125,1769,1.922,1770,2.361,1773,2.015,1782,1.271,1789,3.695,1790,4.036,1791,0.611,1792,0.487,1793,0.828,1796,2.731,1802,1.408,1803,0.673,1805,2.82,1818,2.629,1827,3.587,1829,0.836,1830,3.38,1831,2.015,1833,0.891,1835,2.204,1842,1.192,1843,0.545,1844,0.802,1849,0.802,1853,2.813,1857,1.704,1860,0.688,1864,3.836,1868,2.6,1869,2.292,1875,0.93,1881,2.392,1883,0.977,1884,0.828,1887,3.72,1888,3.427,1889,1.497,1890,0.562,1901,1.085,1908,0.779,1914,0.802,1917,1.301,1920,2.644,1932,1.874,1946,0.891,1949,1.115,1950,1.781,1951,1.681,1954,0.357,1956,1.701,1958,1.911,1961,1.998,1964,2.432,1974,1.984,1975,0.891,1979,0.956,1981,0.779,1983,0.758,1998,1.036,2002,0.779,2003,2.204,2006,2.564,2009,1.309,2026,2.417,2027,1.271,2028,3.91,2043,2.432,2044,0.828,2045,1.216,2046,0.487,2050,0.977,2052,1.485,2057,0.72,2058,3.427,2077,2.758,2078,0.858,2087,1.036,2096,1.334,2103,0.802,2121,1.681,2129,0.858,2131,1.243,2132,2.132,2136,1.036,2143,0.891,2145,0.758,2146,4.275,2150,1.766,2154,2.702,2158,2.183,2169,1.681,2174,1.55,2182,0.977,2189,1.45,2204,1.334,2205,1.115,2208,1.036,2211,1.301,2214,1.369,2218,0.738,2221,0.802,2222,1.55,2236,3.141,2240,0.758,2243,3.91,2244,1.334,2264,2.297,2270,0.758,2271,1.681,2282,4.366,2284,0.738,2297,0.93,2300,2.015,2317,0.93,2324,0.673,2327,0.891,2331,3.489,2332,5.207,2333,1.704,2334,0.828,2345,0.802,2363,4.057,2366,2.82,2367,4.264,2370,4.264,2373,1.681,2419,0.738,2440,1.873,2448,3.427,2449,1.036,2457,1.45,2467,0.59,2486,1.766,2496,0.891,2497,3.91,2525,1.681,2526,2.015,2528,1.115,2542,1.036,2555,0.802,2564,1.971,2573,3.643,2585,0.977,2586,2.204,2594,1.115,2600,0.779,2601,1.036,2629,2.801,2643,1.678,2645,1.781,2688,1.036,2693,1.883,2697,1.408,2699,0.6,2765,1.886,2844,1.036,2856,1.192,2870,1.701,2872,0.828,2880,0.977,3155,2.015,3156,0.858,3214,1.803,3242,2.588,3243,1.115,3246,1.115,3252,1.115,3258,1.115,3273,0.72,3284,1.115,3289,1.115,3299,2.417,3306,0.779,3314,1.873,3348,1.766,3350,1.115,3361,0.891,3362,1.497,3363,1.036,3364,1.873,3365,2.301,3389,1.036,3391,0.891,3402,4.75,3409,1.036,3428,0.977,3450,1.036,3499,0.977,3504,1.243,3505,1.036,3513,5.291,3533,2.015,3543,1.115,3544,0.977,3553,0.977,3555,1.115,3563,0.977,3567,2.758,3588,2.301,3589,0.977,3590,1.036,3591,0.703,3601,1.115,3615,1.115,3617,0.646,3624,0.858,3630,0.977,3631,1.115,3637,1.115,3642,0.688,3665,1.45,3667,1.115,3668,1.115,3686,2.015,3691,1.115,3725,1.115,3753,1.766,3765,2.015,3769,0.858,3779,0.779,3783,1.115,3791,1.115,3792,1.55,3795,4.097,3808,1.115,3829,1.115,3830,2.563,3846,3.38,3875,1.115,4317,1.036,4730,2.015,4798,2.049,4989,0.58,5020,0.858,5024,0.673,5028,1.104,5076,1.115,5367,1.036,5430,1.036,5454,0.858,5503,0.802,5548,0.738,5593,1.55,5596,2.015,5612,1.115,5667,0.891,5701,1.036,5707,2.015,5772,0.659,5842,0.828,5981,1.036,5998,0.977,5999,1.115,6168,1.036,6364,0.514,6606,1.036,6680,0.858,6730,1.873,6771,0.977,6782,0.977,6991,1.55,7067,0.738,7152,1.115,7178,0.611,7222,4.762,7309,1.115,7407,0.738,7422,1.115,7698,5.111,7754,1.766,7833,1.115,7882,1.681,7895,0.977,8004,1.115,8083,1.036,8094,6.163,8195,0.891,8303,0.858,8393,0.93,8402,1.115,8454,0.977,8541,1.115,8562,2.015,8623,1.873,8693,0.738,8766,0.93,8801,1.115,8822,1.115,8828,0.977,8965,2.015,9041,1.115,9232,2.758,9247,1.115,9258,2.301,9281,1.115,9325,0.891,9445,0.977,9491,1.115,9622,1.115,9672,1.115,9717,1.115,9776,5.94,10213,2.015,10607,1.115,10624,1.235,10625,1.235,10626,1.235,10627,1.235,10628,2.232,10629,2.232,10630,2.232,10631,2.232,10632,3.743,10633,3.743,10634,1.235,10635,1.235,10636,2.232,10637,1.235,10638,2.232,10639,1.115,10640,1.235,10641,1.235,10642,1.235,10643,1.235,10644,1.235,10645,1.235,10646,1.235,10647,3.743,10648,1.235,10649,1.235,10650,1.235,10651,1.235,10652,1.235,10653,1.235,10654,1.235,10655,1.235,10656,1.235,10657,1.235,10658,1.235,10659,1.235,10660,1.235,10661,1.235,10662,1.235,10663,1.235,10664,1.235,10665,1.235,10666,2.232,10667,1.235,10668,1.235,10669,1.235,10670,1.235,10671,1.235,10672,1.235,10673,1.235,10674,1.235,10675,1.235,10676,2.232,10677,1.235,10678,1.235,10679,1.235,10680,1.235,10681,1.115,10682,1.235,10683,2.232,10684,1.235,10685,1.235,10686,1.235,10687,1.235,10688,1.235,10689,2.232,10690,1.235,10691,1.235,10692,1.235,10693,4.834,10694,1.235,10695,1.235,10696,1.235,10697,3.054,10698,1.235,10699,1.235,10700,1.235,10701,2.232,10702,1.235,10703,1.235,10704,1.235,10705,1.235,10706,1.235,10707,2.232,10708,1.235,10709,1.235,10710,1.235,10711,1.235,10712,1.235,10713,2.232,10714,3.054,10715,4.834,10716,2.232,10717,1.235,10718,1.235,10719,1.235,10720,1.235,10721,1.235,10722,1.235,10723,3.054,10724,2.232,10725,2.232,10726,1.235,10727,1.235,10728,1.235,10729,1.235,10730,1.235,10731,3.054,10732,6.001,10733,1.235,10734,2.232,10735,2.232,10736,1.235,10737,1.235,10738,2.232,10739,1.235,10740,1.235,10741,1.235,10742,1.235,10743,2.232,10744,2.232,10745,2.232,10746,2.232,10747,2.232,10748,2.232,10749,1.235,10750,1.235,10751,1.235,10752,1.235,10753,1.235,10754,5.659,10755,1.235,10756,1.235,10757,1.235,10758,2.232,10759,2.232,10760,1.235,10761,1.235,10762,1.235,10763,1.036,10764,1.235,10765,1.235,10766,1.235,10767,3.743,10768,1.235,10769,2.232,10770,3.743,10771,1.235,10772,2.232,10773,1.235,10774,1.235,10775,1.235,10776,1.235,10777,1.235,10778,1.235,10779,1.235,10780,1.235,10781,1.235,10782,1.235,10783,1.235,10784,2.232,10785,1.235,10786,3.054,10787,2.232,10788,3.054,10789,1.235,10790,1.235,10791,1.235,10792,2.232,10793,1.235,10794,1.235,10795,1.235,10796,1.235,10797,1.235,10798,1.235,10799,1.235,10800,1.235,10801,1.235,10802,1.235,10803,1.235,10804,1.235,10805,1.235,10806,1.235,10807,1.235,10808,1.235,10809,1.235,10810,1.235,10811,1.235,10812,1.235,10813,1.235,10814,1.235,10815,1.235,10816,1.235,10817,1.235,10818,1.235,10819,2.232,10820,1.235,10821,1.235,10822,1.235,10823,3.743,10824,2.232,10825,1.235,10826,1.235,10827,3.054,10828,2.232,10829,1.235,10830,1.235,10831,1.235,10832,4.329,10833,1.235,10834,3.054,10835,1.235,10836,1.235,10837,1.235,10838,1.235,10839,3.743,10840,1.235,10841,1.235,10842,3.054,10843,2.232,10844,1.235,10845,3.054,10846,1.235,10847,1.235,10848,1.235,10849,1.235,10850,3.054,10851,1.235,10852,1.235,10853,1.235,10854,1.115,10855,5.659,10856,2.232,10857,1.235,10858,1.235,10859,1.235,10860,3.054,10861,2.232,10862,2.232,10863,1.235,10864,1.235,10865,2.232,10866,1.235,10867,1.235,10868,2.232,10869,4.834,10870,1.235,10871,1.235,10872,2.015,10873,1.235,10874,1.235,10875,2.232,10876,1.235,10877,1.235,10878,3.054,10879,2.232,10880,1.235,10881,2.232,10882,2.232,10883,1.235,10884,1.235,10885,1.235,10886,1.235,10887,1.235,10888,2.232,10889,2.232,10890,1.235,10891,1.235,10892,1.235,10893,1.115,10894,1.235,10895,1.235,10896,1.235,10897,1.235,10898,1.235,10899,1.235,10900,1.235,10901,1.235,10902,1.235,10903,1.235,10904,2.232,10905,1.235,10906,1.235,10907,1.235,10908,1.235,10909,1.235,10910,1.235,10911,1.235,10912,1.235,10913,1.235,10914,2.232,10915,2.232,10916,2.232,10917,2.232,10918,1.235,10919,1.235,10920,1.235,10921,1.235,10922,2.232,10923,1.235,10924,1.235,10925,1.235,10926,1.235,10927,1.235,10928,1.235,10929,1.235,10930,1.235,10931,1.235,10932,2.232,10933,1.235,10934,3.743,10935,1.235,10936,1.235,10937,1.235,10938,1.235,10939,1.235,10940,3.054,10941,1.235,10942,1.235]],["description//posts/python-snippets/",[1611,0.974,10623,5.706]],["title//posts/pyscript-python-embedded-in-html/",[750,2.508,755,2.115,1611,0.739,10943,4.021]],["content//posts/pyscript-python-embedded-in-html/",[2,1.855,6,0.369,8,1.913,13,3.892,17,2.158,27,1.465,29,1.482,32,0.819,34,0.961,38,0.624,58,1.324,65,1.556,74,0.899,75,1.239,83,2.739,102,2.159,107,1.1,110,1.884,114,1.31,116,2.394,120,2.348,136,1.371,137,1.471,144,1.703,161,2.764,164,1.951,173,1.538,175,0.831,190,1.786,191,0.952,198,2.044,203,1.965,216,1.008,221,1.553,222,2.807,224,1.448,225,1.255,230,0.952,234,1.521,240,1.5,245,1.058,265,3.608,267,2.312,268,1.823,278,2.158,289,1.768,295,1.523,311,2.118,355,1.965,356,0.776,366,1.976,374,0.934,381,2.434,383,1.268,396,2.291,406,2.118,421,3.676,422,1.159,431,1.965,435,2.158,470,1.431,476,1.658,479,0.995,542,1.31,556,1.353,593,1.017,595,1.556,598,1.636,600,0.719,623,2.238,626,1.255,640,1.431,647,1.801,701,2.579,718,1.518,745,2.405,750,4.216,755,1.855,758,0.899,770,2.394,771,2.451,774,2.077,778,1.122,828,2.08,845,1.75,875,2.92,882,2.158,896,2.579,918,0.726,934,3.053,935,0.989,940,2.2,952,3.725,955,3.598,991,1.168,1019,3.136,1024,0.804,1066,1.556,1080,2.82,1090,2.731,1138,1.583,1178,2.92,1179,2.92,1181,2.809,1195,3.985,1211,2.291,1224,1.615,1269,2.312,1271,2.256,1280,2.341,1284,2.228,1287,1.944,1293,3.436,1296,3.057,1300,1.775,1301,2.825,1302,2.949,1312,2.579,1315,1.658,1341,1.415,1366,3.527,1482,1.575,1483,2.2,1592,1.415,1611,1.576,1623,2.92,1628,1.801,1690,3.328,1696,2.651,1698,3.527,1735,3.167,1741,1.801,1745,3.562,1749,3.555,1751,2.38,1768,2.579,1827,3.688,1840,3.514,1854,2.579,1863,2.723,1875,3.167,1898,3.327,1918,7.978,1920,3.054,1933,2.341,1998,3.527,2005,2.118,2013,2.394,2038,3.527,2055,2.244,2098,1.944,2099,3,2146,4.851,2214,2.579,2255,4.884,2275,4.286,2285,3.795,2287,3.786,2382,1.575,2585,4.884,2586,3.034,2629,2.08,2640,3.795,2643,1.884,2678,2.651,2693,3.179,2694,3.527,2846,3.795,2904,2.158,2906,2.82,3028,3.034,3173,4.884,3175,2.451,3189,2.244,3191,7.747,3194,5.572,3306,2.651,3504,3.436,3587,4.009,3665,4.009,3685,3.327,3696,1.583,3748,3.327,3913,3.034,3916,2.82,4085,2.82,4335,3.327,4525,2.2,4712,3.034,4721,2.512,4723,3.795,4897,3.527,5031,2.82,5091,3.598,5132,2.579,5258,3.327,5287,2.731,5294,4.139,5309,5.96,5319,3.327,5367,3.527,5388,2.92,5484,2.92,5548,2.512,6191,3.327,6266,3.795,6288,3.527,6412,3.034,6490,3.167,6623,2.118,6675,2.579,6860,3.527,7061,3.795,7066,2.651,7255,3.527,7415,3.034,7533,5.508,7534,3.167,7670,2.92,7697,3.795,7856,3.527,8076,3.327,8120,3.034,8396,3.527,8457,3.795,8787,3.795,8887,3.795,9591,3.527,9877,3.167,10192,5.572,10214,3.527,10328,3.167,10352,3.795,10763,3.527,10943,8.908,10944,4.203,10945,4.203,10946,4.203,10947,4.203,10948,4.203,10949,4.203,10950,4.203,10951,6.17,10952,4.203,10953,4.203,10954,4.203,10955,4.203,10956,4.203,10957,4.203,10958,4.203,10959,4.203,10960,4.203,10961,4.203,10962,4.203,10963,4.203,10964,4.203,10965,4.203,10966,4.203,10967,4.203,10968,4.203,10969,6.17,10970,7.31,10971,10.214,10972,7.31,10973,7.31,10974,7.31,10975,7.31,10976,6.17,10977,4.203,10978,4.203,10979,3.795,10980,4.203,10981,4.203,10982,4.203,10983,4.203,10984,4.203,10985,4.203,10986,4.203,10987,6.17,10988,6.17,10989,4.203,10990,6.17,10991,6.17,10992,6.17,10993,6.17,10994,6.17,10995,8.054,10996,6.17,10997,6.17,10998,6.17,10999,4.203,11000,7.31,11001,4.203,11002,6.17,11003,4.203,11004,4.203,11005,4.203,11006,4.203,11007,4.203,11008,4.203,11009,4.203,11010,4.203,11011,4.203,11012,4.203,11013,4.203,11014,4.203,11015,4.203]],["description//posts/pyscript-python-embedded-in-html/",[750,2.56,755,2.159,1611,0.754,10943,4.105]],["title//posts/nextjs-to-github-pages-ations/",[75,0.728,1489,1.651,3923,2.881,8693,2.567,11016,3.604]],["content//posts/nextjs-to-github-pages-ations/",[6,0.372,17,2.116,35,2.12,49,1.1,65,1.429,68,1.1,73,1.1,83,2.709,94,2.404,109,1.42,120,1.472,126,0.907,133,2.529,136,0.916,137,1.111,144,4.192,146,2.077,159,1.42,164,1.1,173,1.027,175,0.425,176,1.208,219,1.193,234,0.858,245,1.037,248,2.157,257,1.876,268,1.218,270,3.323,289,1.899,302,4.373,313,1.797,329,2.863,334,2.04,344,0.425,351,1.1,355,1.937,356,0.518,361,2.201,362,1.068,388,2.975,393,1.089,408,1.766,441,2.645,448,2.765,476,1.626,479,1.158,488,1.327,492,2.116,494,2.004,548,1.372,575,3.01,612,1.876,620,2.6,623,1.145,636,1.388,668,3.106,681,2.529,741,1.605,742,1.079,777,2.859,800,1.876,809,3.263,856,1.693,901,1.526,905,0.578,932,2.813,970,3.722,992,6.679,993,2.224,994,2.678,996,3.814,1010,2.678,1026,3.936,1046,2.611,1066,1.526,1079,1.584,1110,1.507,1181,1.876,1183,4.697,1211,3.315,1212,4.583,1237,1.693,1269,1.545,1277,3.263,1278,4.583,1280,3.387,1288,2.157,1341,3.507,1365,3.814,1386,2.726,1405,1.489,1424,1.489,1426,2.004,1435,3.398,1455,6.066,1463,2.975,1488,1.693,1489,3.634,1509,4.225,1530,2.404,1531,5.721,1608,3.263,1661,1.404,1735,3.106,1759,2.404,1768,2.529,1769,3.711,1818,3.19,1863,1.819,1876,2.6,1937,6.527,1982,3.459,2096,5.651,2098,1.906,2131,2.296,2165,3.459,2186,2.6,2247,2.678,2261,2.975,2280,3.106,2470,2.957,2678,2.6,2693,1.792,2765,2.077,2768,2.678,2820,1.876,2821,4.814,2837,3.464,2859,4.435,2904,2.116,3009,4.435,3028,5.217,3174,2.865,3175,2.404,3189,2.201,3370,2.348,3427,2.975,3446,3.263,3500,2.765,3544,4.814,3617,2.157,3658,2.859,3913,2.975,3914,3.722,4010,2.348,4380,3.263,4835,2.863,5022,4.081,5025,3.106,5026,4.865,5030,2.404,5045,6.066,5058,6.316,5143,2.404,5153,1.766,5182,4.532,5198,2.863,5294,2.765,5330,3.263,5377,5.021,5389,2.04,5581,3.106,5811,3.263,5923,5.104,6184,6.527,6311,3.106,6411,6.705,6419,4.472,6565,5.217,6623,2.077,7220,5.492,7224,5.492,7225,5.492,7226,3.722,7323,5.104,7326,3.123,7347,6.736,7755,3.459,7762,3.263,7763,3.459,7831,2.529,7882,3.106,8043,3.722,8194,3.263,8588,3.722,8654,2.975,8680,2.863,8693,6.328,8837,4.39,8872,3.459,9835,3.722,10233,3.722,10315,5.721,10316,6.066,10408,5.492,10580,6.066,11016,5.104,11017,4.122,11018,4.122,11019,4.122,11020,9.817,11021,6.082,11022,8.51,11023,4.122,11024,6.527,11025,4.122,11026,6.082,11027,4.122,11028,4.122,11029,4.122,11030,6.082,11031,4.122,11032,4.122,11033,7.228,11034,7.228,11035,7.228,11036,6.082,11037,6.082,11038,6.082,11039,4.122,11040,4.122,11041,6.082,11042,4.122,11043,6.082,11044,6.082,11045,7.228,11046,7.228,11047,4.122,11048,4.122,11049,4.122,11050,4.122,11051,4.122,11052,7.228,11053,4.122,11054,4.122,11055,4.122,11056,4.122,11057,4.122,11058,9.211,11059,4.122,11060,4.122,11061,4.122,11062,4.122,11063,4.122,11064,7.228,11065,3.722,11066,4.122,11067,4.122,11068,4.122,11069,7.206,11070,4.122,11071,4.122,11072,4.122,11073,4.122,11074,4.122,11075,7.228,11076,4.122,11077,4.122,11078,4.122,11079,4.122,11080,4.122,11081,4.122,11082,4.122,11083,6.082,11084,6.082,11085,6.082,11086,6.082,11087,6.082,11088,4.122,11089,4.122,11090,4.122,11091,4.122,11092,4.122,11093,4.122,11094,4.122,11095,4.122,11096,4.122,11097,4.122]],["description//posts/nextjs-to-github-pages-ations/",[38,0.381,126,0.566,344,0.265,593,0.423,1269,0.963,1489,1.617,3923,1.724,5377,1.401,8693,1.536,11016,2.156,11065,2.32]],["title//posts/markdown-syntax/",[289,0.988,2949,2.024,3931,3.61,6371,3.215]],["content//posts/markdown-syntax/",[1,2.637,2,2.658,6,0.375,18,1.401,26,0.598,32,1.174,38,1.257,53,2.882,57,1.227,65,1.331,67,1.354,68,1.09,73,1.086,74,1.289,80,1.351,96,1.64,102,2.42,107,1.064,112,1.119,114,0.729,172,1.881,175,0.621,176,1.196,188,1.795,202,1.108,206,1.075,212,1.418,221,1.023,229,1.648,234,1.761,246,0.862,261,1.544,289,0.838,337,1.354,342,1.694,344,0.74,356,0.511,362,1.054,376,1.743,377,1.584,380,2.825,381,2.829,393,1.075,394,2.936,422,0.764,433,2.088,444,3.695,446,3.22,461,1.418,468,1.671,479,0.554,490,1.472,530,1.851,532,2.936,536,0.736,564,2.317,582,2.431,593,1.182,635,3.276,643,2.643,675,1.761,702,1.912,733,2.129,745,2.812,750,3.152,762,5.678,832,3.614,856,1.671,903,2.285,911,2.643,916,7.451,938,1.592,955,3.512,1020,2.936,1024,0.778,1026,1.881,1036,1.324,1055,1.189,1079,3.253,1138,1.044,1177,4.538,1178,2.825,1180,2.785,1181,4.287,1187,1.912,1198,1.978,1202,2.431,1224,1.563,1271,2.202,1284,1.469,1315,1.604,1320,3.994,1341,2.028,1363,3.28,1424,1.469,1474,2.265,1484,1.694,1583,3.799,1590,5.677,1628,2.581,1646,1.912,1694,1.823,1741,3.93,1745,2.315,1774,2.265,1791,2.013,1792,1.604,1796,5.001,1849,2.643,1868,2.825,1873,3.413,1880,3.829,1881,4.386,1890,1.851,1940,3.413,1955,1.944,1964,3.913,1978,3.43,2001,2.217,2004,1.694,2016,2.729,2027,2.317,2080,3.22,2103,5.759,2121,4.538,2222,4.184,2225,2.05,2227,2.431,2269,3.413,2327,5.176,2364,2.471,2367,3.065,2382,2.971,2419,2.431,2467,3.428,2468,3.549,2645,2.372,2820,4.287,2870,2.265,2937,5.591,3099,4.184,3173,6.699,3339,3.065,3376,2.936,3387,3.22,3392,4.347,3400,3.22,3437,2.825,3505,3.413,3517,3.413,3531,5.439,3622,3.413,3649,3.673,3670,2.729,3889,3.065,3891,2.928,3931,4.538,3937,7.904,3966,5.439,4001,7.373,4078,3.413,4244,3.22,4274,2.372,4295,3.994,4990,3.673,5028,3.549,5159,4.767,5161,2.643,5173,3.682,5295,3.22,5309,2.265,5593,4.184,5794,2.643,5815,4.4,5835,5.054,6016,6.275,6165,3.673,6294,3.166,6371,5.678,6663,2.936,6674,3.413,6684,3.673,6692,3.413,6772,8.004,7159,3.673,7746,5.054,8122,5.054,8133,6.476,8557,3.673,8642,3.673,8810,3.673,9143,5.439,9153,3.673,9165,3.673,9245,3.673,9485,6.476,9591,6.653,10226,3.673,10315,3.22,10454,5.439,10483,3.673,10488,3.673,10501,5.439,10502,5.439,10525,5.439,10554,3.673,10558,4.864,10763,6.653,10872,3.673,11098,4.067,11099,4.067,11100,6.022,11101,6.022,11102,6.022,11103,6.022,11104,6.022,11105,6.022,11106,8.862,11107,4.067,11108,6.022,11109,6.022,11110,6.022,11111,6.022,11112,4.067,11113,4.067,11114,4.067,11115,4.067,11116,6.022,11117,4.067,11118,4.067,11119,4.067,11120,4.067,11121,4.067,11122,4.067,11123,4.067,11124,4.067,11125,4.067,11126,4.067,11127,4.067,11128,6.022,11129,4.067,11130,4.067,11131,4.067,11132,4.067,11133,4.067,11134,4.067,11135,4.067,11136,4.067,11137,4.067,11138,4.067,11139,4.067,11140,4.067,11141,4.067,11142,4.067,11143,4.067,11144,7.928,11145,6.022,11146,6.022,11147,7.928,11148,7.928,11149,4.067,11150,4.067,11151,7.928,11152,6.022,11153,4.067,11154,4.067,11155,4.067,11156,6.022,11157,4.067,11158,4.067,11159,4.067,11160,4.067,11161,4.067,11162,4.067,11163,4.067,11164,4.067,11165,4.067,11166,4.067,11167,4.067,11168,4.067,11169,4.067,11170,4.067,11171,4.067,11172,4.067,11173,4.067,11174,4.067,11175,4.067,11176,4.067,11177,4.067]],["description//posts/markdown-syntax/",[289,1.008,2949,2.066,3931,3.685,6371,3.281]],["title//posts/interactivebrokers-deposit/",[1777,2.205,11178,3.604,11179,3.604,11180,3.878,11181,3.878]],["content//posts/interactivebrokers-deposit/",[6,0.343,55,4.378,109,2.767,144,3.254,176,1.595,257,3.656,344,0.829,424,4.204,479,1.093,488,2.586,507,2.989,568,4.801,951,6.088,1269,3.01,1441,5.22,1536,3.493,1777,4.124,1840,4.575,2283,4.124,2434,6.358,3145,4.378,3495,2.767,3905,9.427,3944,5.067,4189,5.798,4361,5.389,4474,4.575,4902,6.741,5332,5.987,5936,7.254,6501,6.741,6806,7.254,9505,7.254,10412,8.571,11178,6.741,11182,8.032,11183,9.491,11184,9.491,11185,8.032,11186,9.491,11187,8.032,11188,8.032,11189,8.571,11190,8.032,11191,8.032]],["description//posts/interactivebrokers-deposit/",[1777,1.876,4189,2.637,11178,3.066,11179,3.066,11180,3.299,11181,3.299,11192,3.299]],["title//posts/integrate-hugo-react/",[222,1.497,334,2.125,10558,2.635,11193,3.1,11194,3.604]],["content//posts/integrate-hugo-react/",[5,3.021,6,0.374,34,1.293,65,0.95,70,1.822,73,2.03,75,0.959,83,2.85,114,1.014,173,1.41,175,0.584,176,1.824,206,1.495,221,1.424,222,3.515,234,1.177,246,1.2,247,4.117,248,5.166,254,5.103,289,2.079,334,4.252,342,2.356,344,0.785,351,1.51,356,0.711,362,1.466,369,2.66,397,1.41,421,4.451,472,3,479,0.77,492,2.905,507,1.782,540,2.356,583,4.546,593,0.932,595,3.844,604,3.021,623,2.113,626,1.69,750,2.961,757,2.751,778,1.51,819,2.961,823,2.851,849,1.156,864,2.851,875,3.93,888,4.084,907,1.612,909,1.69,931,1.972,938,1.495,992,3.796,1007,2.576,1211,3.084,1212,5.731,1240,2.232,1269,2.12,1273,3.084,1277,6.8,1278,5.731,1296,3.26,1300,3.629,1302,4.107,1386,2.536,1470,1.972,1487,2.8,1509,3.93,1545,4.479,1592,1.905,1646,2.66,1658,4.666,1741,4.23,1745,2.923,1763,3.796,1774,3.151,1865,6.02,1891,4.084,1920,2.926,1933,4.236,1954,2.201,2027,3.223,2099,2.751,2225,2.851,2659,3.299,2789,2.851,3145,5.225,3385,4.798,3434,2.425,3504,3.151,3630,4.479,3642,3.151,3685,4.479,3777,4.748,4525,2.961,5304,2.232,5309,3.151,5523,3.796,5552,4.942,5659,4.263,5686,4.263,6191,4.479,7798,3.93,8195,4.084,10022,5.11,10558,6.188,11193,7.823,11194,7.21,11195,5.658,11196,5.658,11197,5.658,11198,5.658,11199,5.658,11200,6.868,11201,5.658,11202,5.658,11203,6.868,11204,5.658,11205,7.605,11206,5.11,11207,5.658,11208,5.658,11209,5.658,11210,5.658,11211,5.11,11212,5.658,11213,5.11,11214,5.658,11215,5.658,11216,5.658,11217,9.186,11218,7.605,11219,7.605,11220,5.658,11221,5.658,11222,5.658,11223,5.658,11224,5.658,11225,5.658,11226,5.658,11227,5.658,11228,7.605,11229,5.658,11230,5.658,11231,5.658,11232,5.658,11233,5.658,11234,5.658,11235,5.658,11236,5.658,11237,5.658,11238,5.658,11239,7.605,11240,5.658,11241,5.658,11242,5.658,11243,5.658]],["description//posts/integrate-hugo-react/",[222,1.532,247,1.97,421,1.883,10558,2.696,11193,3.172]],["title//posts/hugo-add-image-zoomin/",[1472,3.61,3621,2.794,8680,3.328,10558,2.94]],["content//posts/hugo-add-image-zoomin/",[6,0.374,11,2.705,26,0.789,38,1.09,57,1.62,58,1.691,65,1.404,70,1.728,83,2.012,110,1.127,113,2.443,120,1.299,136,1.193,146,4.214,160,3.488,161,1.655,173,2.346,175,0.757,191,1.216,202,1.462,219,1.554,222,1.871,241,3.209,246,1.906,247,3.289,248,5.535,257,3.341,274,4.249,288,1.256,289,1.94,292,3.294,313,1.586,334,3.632,342,2.236,344,0.863,356,0.923,359,2.75,378,3.584,389,4.503,461,1.871,479,0.731,488,1.728,536,0.971,593,0.885,595,3.941,600,0.918,636,2.471,742,1.405,750,2.809,841,4.045,875,5.098,887,3.729,888,3.874,930,4.143,931,3.281,968,4.045,1026,3.868,1030,3.294,1066,1.987,1080,3.601,1088,1.251,1090,3.488,1151,2.483,1269,3.369,1278,5.53,1280,2.99,1293,2.99,1296,2.037,1300,2.267,1346,3.874,1472,4.045,1515,3.601,1528,2.334,1595,4.847,1597,2.483,1600,3.057,1632,1.405,1735,5.53,1759,3.13,1780,4.387,1858,2.037,1876,3.386,1886,3.294,1901,2.61,2016,3.601,2096,3.209,2137,3.488,2164,4.505,2287,5.515,2569,4.249,2699,2.61,2906,3.601,3114,4.045,3145,4.9,3432,3.209,3457,3.874,3495,1.849,3666,2.756,4816,4.087,5308,3.488,5315,3.294,5552,3.488,6282,4.505,6354,3.874,6371,5.61,6420,4.249,6860,4.505,6889,3.874,7400,8.118,7505,5.098,7831,3.294,8146,4.847,8680,3.729,8811,6.627,8831,4.847,9813,7.552,10127,9.671,10558,5.131,10583,7.552,11179,4.505,11200,4.847,11244,7.339,11245,5.368,11246,5.368,11247,5.368,11248,5.368,11249,8.362,11250,5.368,11251,5.368,11252,8.118,11253,8.362,11254,8.118,11255,7.339,11256,5.368,11257,7.339,11258,9.717,11259,7.339,11260,7.339,11261,5.368,11262,7.339,11263,5.368,11264,7.339,11265,5.368,11266,5.368,11267,5.368,11268,5.368,11269,7.339,11270,5.368,11271,5.368,11272,5.368,11273,5.368,11274,5.368,11275,5.368,11276,7.339,11277,7.339,11278,7.339,11279,5.368,11280,5.368,11281,7.339,11282,5.368,11283,5.368,11284,5.368,11285,5.368,11286,5.368,11287,5.368,11288,5.368,11289,5.368,11290,5.368,11291,5.368,11292,7.339,11293,7.339,11294,5.368,11295,5.368,11296,5.368,11297,5.368,11298,5.368]],["description//posts/hugo-add-image-zoomin/",[83,1.495,595,1.477,903,1.514,1472,3.006,1780,2.385,8680,2.772]],["title//posts/howto-rename-files-in-python/",[289,1.117,1611,0.836,8506,4.547]],["content//posts/howto-rename-files-in-python/",[6,0.363,34,1.742,67,2.537,68,1.379,270,3.831,289,2.26,331,2.427,352,2.929,527,4.341,593,1.256,606,2.72,623,2.118,755,3.364,1066,3.657,1301,2.897,1341,2.566,1364,3.131,1377,4.341,1670,6.396,1790,4.676,1793,5.113,1829,2.856,1917,4.445,1920,3.364,2190,4.069,2225,3.841,2693,3.314,2743,8.307,2749,6.883,4285,4.069,5315,4.676,5548,4.556,11299,9.198,11300,9.198,11301,10.259,11302,9.879,11303,7.621,11304,7.621,11305,7.621,11306,7.621,11307,7.621,11308,7.621,11309,9.879,11310,7.621,11311,7.621,11312,9.879,11313,7.621,11314,7.621,11315,7.621,11316,7.621,11317,7.621,11318,9.198,11319,6.883,11320,9.198,11321,7.621,11322,7.621]],["description//posts/howto-rename-files-in-python/",[206,1.161,289,0.906,397,1.095,1611,0.678,11323,4.394]],["title//posts/howto-redirect-to-url/",[126,1.055,251,2.33,1195,2.612,11324,4.327]],["content//posts/howto-redirect-to-url/",[6,0.366,27,2.592,34,2.072,58,2.343,63,4.446,68,1.346,89,3.333,113,2.476,114,1.333,120,1.8,124,1.868,147,1.89,190,2.153,201,3.055,206,1.966,221,1.871,234,1.548,248,5.116,251,4.753,265,2.822,289,1.533,311,3.748,313,2.198,319,3.722,344,0.767,362,1.927,381,3.575,426,4.054,431,2.368,593,1.611,628,2.153,636,2.504,750,5.116,778,1.985,910,2.268,1019,3.574,1100,3.616,1195,5.546,1470,2.592,1717,5.604,2690,5.166,2695,5.887,2872,6.08,3495,2.562,3661,3.616,3737,5.887,7505,5.166,7895,5.887,9090,6.716,9133,6.716,9608,8.539,11325,7.437,11326,7.437,11327,10.174,11328,7.437,11329,7.437,11330,7.437,11331,10.174,11332,9.062,11333,7.437,11334,7.437,11335,7.437,11336,9.062,11337,7.437,11338,7.437,11339,7.437,11340,7.437,11341,7.437,11342,7.437]],["description//posts/howto-redirect-to-url/",[126,1.077,251,2.378,1195,2.666,11324,4.417]],["title//posts/howto-install-ubuntu-desktop-on-arm/",[164,0.874,3658,1.54,5249,2.593,7764,1.714,7991,2.749,11343,2.749,11344,2.958,11345,2.958]],["content//posts/howto-install-ubuntu-desktop-on-arm/",[6,0.208,26,0.929,32,1.232,38,0.938,44,1.948,75,1.071,96,1.445,105,2.162,111,2.32,113,3.02,164,2.857,202,1.721,205,3.445,219,1.829,245,1.59,257,2.877,265,2.398,268,2.835,295,1.56,344,0.652,351,2.184,354,1.638,355,2.889,408,2.708,439,2.971,467,1.907,471,2.789,479,0.86,507,1.99,536,1.143,548,2.104,578,4.762,593,1.041,598,3.185,600,1.081,626,2.443,628,2.626,636,2.754,675,3.03,713,3.777,757,3.073,773,4.762,849,1.291,869,4.762,903,2.398,951,5.795,991,1.756,993,2.991,1026,2.923,1103,2.596,1249,3.986,1269,2.368,1293,5.052,1374,2.877,1377,3.6,1405,2.283,1426,4.95,1469,6.302,1470,2.851,1478,2.596,1484,2.632,1487,3.127,1503,5.002,1529,3.374,1618,2.128,1625,3.986,1626,3.194,1767,4.106,1863,2.789,1901,3.073,1930,2.706,1976,3.52,2052,3.978,2096,3.777,2211,3.685,2225,3.184,2277,3.488,2611,3.685,2929,4.437,3154,3.125,3189,3.374,3495,2.818,3656,4.561,3657,2.229,3658,5.067,3662,5.303,3699,2.748,3701,4.762,3750,3.52,4415,2.789,4791,4.561,5182,3.724,5249,7.594,5311,5.002,5385,7.388,5387,5.707,5411,4.762,5923,5.303,6186,5.161,6251,4.762,6675,5.887,6714,4.24,7339,4.24,7607,3.986,7749,3.685,7764,4.748,7769,5.303,7788,4.24,8200,4.39,8246,4.89,8640,7.388,9735,5.303,11343,5.303,11344,7.388,11345,7.388,11346,8.544,11347,6.319,11348,8.181,11349,8.181,11350,5.002,11351,8.181,11352,6.319,11353,6.319,11354,6.319,11355,7.388]],["description//posts/howto-install-ubuntu-desktop-on-arm/",[164,0.686,1484,1.07,1626,0.792,1639,0.775,2277,0.865,2611,1.498,3658,1.208,5249,2.034,7764,1.345,8604,2.156,11343,2.156,11346,2.156]],["title//posts/howto-install-rhel-9-free/",[164,1.279,1901,2.33,3657,1.69,11350,3.793]],["content//posts/howto-install-rhel-9-free/",[1,1.351,6,0.208,26,0.638,29,1.529,38,0.937,45,2.226,64,1.351,65,0.728,68,1.142,73,1.157,75,1.625,83,2.366,96,1.702,105,2.296,107,1.135,109,1.494,111,2.11,113,2.101,124,1.301,126,1.39,127,2.27,130,3.916,133,2.661,137,0.792,141,1.808,143,2.27,147,1.102,153,3.639,164,2.687,172,2.006,176,1.254,179,2.146,205,3.441,219,1.255,222,1.511,245,2.057,246,1.338,257,1.974,264,1.511,268,1.281,272,1.832,282,3.13,289,1.534,299,3.13,343,1.05,344,0.896,351,1.157,354,1.124,355,2.603,356,0.794,358,2.226,359,2.366,362,1.124,370,1.914,377,1.688,406,2.185,417,2.592,422,1.185,459,1.443,462,1.135,467,1.309,468,2.593,471,2.786,479,1.013,485,2.364,536,0.785,583,2.592,593,0.715,600,1.08,604,3.37,626,1.885,628,3.039,636,1.46,675,2.391,678,2.226,702,2.038,709,2.47,716,2.038,758,0.928,774,1.46,785,1.366,800,1.974,819,2.27,821,3.012,823,2.185,828,3.124,843,1.781,845,3.405,849,0.886,867,1.427,907,1.338,925,1.754,938,1.146,946,4.547,951,5.287,952,4.193,991,1.205,993,3.176,994,2.818,1007,2.873,1019,1.585,1024,0.83,1028,3.595,1041,3.916,1046,1.566,1055,1.268,1087,2.415,1088,1.01,1089,1.566,1138,1.113,1151,2.006,1152,3.916,1205,2.45,1206,2.146,1237,1.781,1255,1.646,1269,1.625,1293,2.415,1296,2.395,1297,2.364,1304,2.909,1315,1.711,1362,2.146,1374,1.974,1405,1.566,1424,1.566,1426,3.069,1443,2.415,1469,3.012,1470,1.511,1487,4.487,1516,1.511,1536,3.237,1610,2.308,1611,0.669,1626,2.678,1652,2.366,1656,1.494,1669,1.832,1690,2.873,1717,3.267,1718,3.267,1765,2.529,1869,1.946,1901,5.105,1920,1.477,1930,2.027,1950,2.529,1976,2.415,1987,2.789,2002,2.735,2016,2.909,2037,3.267,2046,2.49,2053,2.909,2101,2.661,2146,2.27,2270,2.661,2277,2.506,2364,2.175,2382,2.366,2611,2.529,2642,3.639,2659,2.529,2731,2.415,2778,3.012,2789,4.832,2859,2.661,2929,2.919,3008,3.974,3013,3.37,3154,2.816,3174,2.506,3179,2.873,3198,3.982,3311,2.529,3312,3.873,3316,3.267,3365,3.267,3457,3.13,3495,1.494,3619,2.364,3642,2.415,3656,3.13,3657,3.448,3659,4.553,3661,2.108,3662,5.298,3699,3.237,3701,3.267,3708,2.909,3891,2.108,4010,2.47,4071,2.818,4229,2.108,4230,3.267,4320,3.916,4424,2.705,4480,2.818,4525,3.895,4533,3.304,4802,2.185,5058,3.432,5260,4.556,5264,3.639,5287,2.818,5294,2.909,5295,3.432,5300,4.473,5304,1.711,5311,3.432,5313,2.146,5329,4.997,5332,2.735,5411,3.267,5484,3.012,5614,3.681,5703,2.909,5815,2.661,6310,3.267,6320,3.267,6404,2.529,6445,2.49,6675,3.873,6714,4.235,6716,2.818,6723,4.756,6777,3.13,6858,2.415,6866,3.13,6934,3.267,7066,2.735,7171,3.13,7221,3.432,7312,3.13,7355,3.639,7407,2.592,7514,8.981,7515,8.981,7749,2.529,7871,6.279,8030,3.639,8129,3.432,8200,3.012,8217,3.267,8240,5.298,8246,3.773,8508,3.916,8550,3.639,8604,5.298,8639,2.818,8695,3.432,9102,3.432,9137,3.267,9139,3.13,9212,3.916,9248,3.916,9259,5.7,9480,3.639,9641,3.916,9791,3.916,9845,5.7,10160,3.639,10425,3.916,10979,3.916,11189,3.916,11346,7.291,11350,8.357,11355,5.7,11356,4.336,11357,4.336,11358,4.336,11359,4.336,11360,4.336,11361,3.916,11362,4.336,11363,4.336,11364,4.336,11365,4.336,11366,4.336,11367,4.336,11368,4.336,11369,4.336,11370,4.336,11371,4.336,11372,4.336,11373,4.336,11374,4.336,11375,7.443,11376,4.336,11377,6.312,11378,4.336,11379,4.336,11380,4.336,11381,4.336,11382,4.336,11383,6.312,11384,4.336,11385,4.336,11386,4.336,11387,4.336,11388,4.336,11389,4.336,11390,4.336,11391,4.336,11392,4.336,11393,4.336,11394,4.336,11395,4.336,11396,4.336,11397,6.312,11398,4.336,11399,4.336]],["description//posts/howto-install-rhel-9-free/",[111,1.131,1293,2.222,1901,1.94,3657,1.407,3699,1.735,11350,3.158]],["title//posts/howto-create-react-electron-app-ts/",[75,0.728,479,0.584,3515,2.392,3997,3.236,11193,3.1]],["content//posts/howto-create-react-electron-app-ts/",[6,0.373,26,1.5,30,1.524,38,0.726,64,1.524,65,1.528,68,1.44,75,1.6,105,1.293,110,1.028,111,1.951,114,0.877,120,1.184,137,0.894,139,1.196,144,1.982,146,2.465,147,1.243,161,1.508,164,1.306,176,0.972,221,1.231,222,3.451,230,1.803,246,1.037,248,2.561,257,2.227,264,1.705,268,1.446,289,2.041,295,1.208,313,1.446,319,4.236,333,2.265,342,2.038,354,1.783,355,2.898,356,0.615,431,1.558,432,2.038,467,1.476,472,1.93,476,2.715,479,1.083,492,3.533,544,2.787,564,3.92,595,2.547,598,1.905,611,1.767,623,1.359,647,2.097,729,3.687,731,3.687,750,2.561,807,4.106,832,4.587,849,1.406,867,1.61,902,2.512,907,1.037,925,2.751,938,1.293,992,6.334,993,2.516,994,4.472,996,2.339,1007,2.227,1012,2.421,1024,0.936,1042,2.925,1043,4.92,1046,2.875,1088,1.14,1138,1.255,1178,3.399,1183,5.173,1195,3.751,1198,2.379,1211,4.962,1213,4.106,1227,3.399,1249,3.086,1277,6.301,1300,2.067,1302,2.339,1386,4.438,1437,2.612,1483,2.561,1632,1.28,1656,1.686,1694,3.084,1711,2.561,1724,2.512,1789,2.128,1818,1.956,1874,3.283,1919,3.873,1920,3.215,1930,1.332,1956,2.725,2146,2.561,2251,4.962,2261,3.532,2382,1.833,2459,5.185,2564,2.227,2659,2.853,2670,4.106,2692,2.925,2713,6.681,2949,2.067,3145,2.667,3146,4.341,3174,2.317,3179,3.133,3189,2.612,3311,2.853,3312,3.002,3402,4.106,3515,2.725,3997,8.247,5030,2.853,5182,3.932,5299,2.725,5351,5.447,5397,2.925,5548,4.114,5552,3.179,5571,3.687,5927,3.283,6411,3.399,6419,2.067,6445,2.715,6490,5.185,6709,3.179,7670,5.53,7725,4.418,7884,5.776,8103,4.106,8306,3.873,8346,3.532,8790,4.781,8837,5.746,9737,4.418,9980,4.418,11069,8.22,11193,7.779,11194,5.776,11203,7.189,11206,4.418,11211,4.418,11213,4.418,11400,4.892,11401,6.882,11402,6.882,11403,6.882,11404,6.882,11405,4.892,11406,4.892,11407,4.892,11408,6.882,11409,7.961,11410,6.882,11411,7.961,11412,4.892,11413,4.892,11414,4.892,11415,6.882,11416,4.892,11417,4.892,11418,4.892,11419,4.892,11420,4.892,11421,4.892,11422,4.892,11423,4.892,11424,4.892,11425,4.892,11426,6.882,11427,6.882,11428,6.882,11429,4.892,11430,4.892,11431,4.892,11432,4.892,11433,4.892,11434,4.892,11435,4.892,11436,4.892,11437,4.892,11438,4.892,11439,4.892,11440,4.892,11441,4.892,11442,4.892,11443,6.882,11444,6.882,11445,4.892,11446,6.882,11447,8.638,11448,4.892,11449,4.892]],["description//posts/howto-create-react-electron-app-ts/",[75,0.619,479,0.497,1664,2.637,3515,2.035,3997,2.753,7884,3.066,11193,2.637]],["title//posts/howto-create-deepclone-js/",[126,0.945,240,1.533,1195,2.341,2189,2.791,6885,3.1]],["content//posts/howto-create-deepclone-js/",[6,0.375,17,5.059,112,2.083,114,1.358,120,1.834,124,1.562,240,3.654,248,5.157,302,3.503,462,1.982,479,1.031,518,2.36,556,2.439,600,1.296,623,2.105,636,2.55,819,3.964,1175,5.262,1195,4.129,1289,4.417,1427,5.996,1490,6.357,1491,5.955,1561,4.922,1689,4.528,1768,5.623,1890,3.448,1923,6.84,2131,4.219,2183,6.357,2189,4.922,2221,4.922,2445,8.898,5315,4.648,5870,5.996,6072,4.648,6885,5.467,11450,7.574,11451,9.164,11452,7.574,11453,7.574,11454,7.574,11455,7.574,11456,7.574,11457,7.574,11458,7.574,11459,9.164,11460,7.574,11461,9.164,11462,9.164,11463,7.574,11464,7.574,11465,7.574,11466,7.574,11467,7.574,11468,7.574]],["description//posts/howto-create-deepclone-js/",[126,0.967,240,1.568,1195,2.395,2189,2.856,6885,3.172]],["title//posts/google-sheets-2-json/",[8,1.955,771,2.504,1880,2.293,2587,2.248,6952,2.567]],["content//posts/google-sheets-2-json/",[5,3.646,6,0.368,8,4.855,34,2.151,35,2.38,49,1.823,56,3.747,71,2.083,75,1.787,114,1.224,136,1.517,141,1.956,175,0.705,212,2.38,246,1.448,248,5.519,251,3.32,337,2.273,366,3.21,383,2.061,426,4.685,468,3.531,473,3.108,479,0.929,487,4.109,492,4.413,519,2.805,525,3.913,583,4.082,595,2.527,604,3.646,623,2.388,626,2.567,628,1.976,636,2.299,741,2.659,756,2.198,771,3.982,778,1.823,796,4.743,882,4.413,905,0.957,1067,4.19,1100,3.32,1211,5.128,1234,2.38,1246,3.441,1386,4.216,1424,2.466,1459,5.73,1531,5.405,1652,2.559,1661,2.927,1711,3.574,1880,5.272,2009,2.926,2132,3.889,2209,5.73,2284,4.082,2462,4.929,2587,5.167,2859,4.19,2952,6.166,3009,4.19,3036,5.623,3703,4.307,4010,3.889,4439,4.19,5553,6.166,6311,5.145,6634,4.437,6952,6.083,8319,6.166,9093,6.166,10580,5.73,11024,6.166,11469,6.828,11470,6.828,11471,6.828,11472,6.828,11473,6.828,11474,6.828,11475,6.828,11476,6.828,11477,6.828,11478,6.828,11479,6.828,11480,8.595,11481,6.828,11482,8.595,11483,6.828,11484,6.828,11485,6.828,11486,6.828,11487,6.828,11488,6.828,11489,6.828,11490,9.407]],["description//posts/google-sheets-2-json/",[8,1.663,344,0.377,1470,1.273,2587,1.912,4380,2.892,4439,2.241,6952,2.184]],["title//posts/gallery-example/",[2468,3.085,11491,5.63]],["content//posts/gallery-example/",[1026,4.096,2454,6.152,2468,4.383,11491,7.998]],["description//posts/gallery-example/",[]],["title//posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom",[1802,3.418,4065,4.083,11492,4.547]],["content//posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom",[6,0.229,15,1.818,31,1.713,32,0.969,33,2.655,37,4.8,38,0.738,46,2.418,53,2.37,57,1.5,60,4.16,73,1.327,96,1.137,109,2.398,126,1.094,137,1.589,160,5.218,165,2.972,197,1.601,216,1.192,246,1.054,263,1.987,333,1.637,337,1.655,342,2.899,344,0.513,353,3.051,356,1.01,372,2.94,375,1.618,383,1.5,395,2.602,396,2.71,397,1.239,419,2.899,422,1.72,459,2.673,462,1.301,470,1.693,482,2.299,518,1.549,525,2.263,530,2.263,536,1.657,541,2.602,548,2.317,555,1.911,556,2.241,637,2.014,645,2.655,649,3.589,675,1.454,745,1.485,756,1.601,779,1.936,783,3.454,856,2.859,859,2.1,917,1.263,918,1.202,935,1.637,938,2.122,1055,1.454,1087,2.769,1120,3.935,1205,1.637,1282,2.602,1283,2.552,1308,2.143,1309,2.131,1315,1.961,1447,1.674,1466,5.653,1482,1.863,1528,2.162,1539,4.574,1586,3.454,1587,2.832,1622,3.964,1624,4.835,1686,3.336,1691,3.935,1734,3.716,1740,2.832,1745,1.911,1777,4.123,1802,3.136,1854,3.051,1876,4.39,1904,3.219,1905,3.051,1930,1.354,1933,3.876,1955,4.158,1983,3.051,2004,2.071,2022,3.935,2023,3.746,2134,3.589,2237,3.935,2245,2.832,2570,2.505,2699,2.418,2820,2.263,2932,3.507,3008,4.645,3214,2.071,3221,4.669,3237,3.935,3305,2.505,3665,3.231,3811,2.337,3878,6.555,3880,5.699,3887,3.336,3891,2.418,4029,3.136,4063,6.65,4064,5.776,4065,7.491,4068,4.669,4079,3.643,4081,5.388,4099,3.746,4103,2.552,4105,4.835,4120,3.231,4131,3.336,4161,6.555,4184,3.746,4194,3.746,4232,3.935,4247,5.836,4269,4.835,4290,3.746,4315,3.746,4324,3.231,4330,3.589,4360,3.935,4363,3.231,4364,5.388,4421,3.589,4434,4.172,4439,4.27,4457,4.172,4475,4.845,4480,4.523,4533,3.643,4555,3.935,4574,4.172,4630,4.172,4632,4.172,4634,5.509,4794,8.269,4798,3.336,4807,5.509,4848,7.252,4851,4.49,4870,3.136,4885,4.49,4889,6.555,4890,6.285,4892,5.841,4901,6.285,4904,4.49,4905,4.49,4919,3.935,4924,7.685,4927,4.49,4943,4.49,4969,4.49,4979,6.285,4982,4.49,4989,3.272,4991,4.49,5391,3.454,5458,4.49,5496,3.935,5666,3.746,5701,4.172,5905,7.685,6016,3.935,6150,4.49,6292,5.024,6632,3.935,6857,3.746,7470,3.935,7927,3.935,8507,7.252,8524,4.49,8594,4.172,8699,3.935,8762,4.49,9494,6.285,10135,4.49,11492,8.76,11493,4.972,11494,6.285,11495,4.972,11496,8.699,11497,6.96,11498,6.96,11499,6.96,11500,8.269,11501,4.972,11502,4.972,11503,4.972,11504,8.03,11505,4.972,11506,4.972,11507,4.972,11508,4.972,11509,7.856,11510,4.972,11511,8.699,11512,4.972,11513,8.03,11514,8.03,11515,6.96,11516,4.972,11517,4.972,11518,4.972,11519,4.972,11520,4.972,11521,4.972,11522,4.972,11523,4.972,11524,4.972,11525,4.49,11526,4.972,11527,4.972,11528,4.972,11529,4.972,11530,4.972,11531,6.96,11532,4.972,11533,4.972,11534,4.972,11535,4.972,11536,6.96,11537,4.972,11538,4.972,11539,4.972,11540,4.972,11541,4.972,11542,6.96,11543,4.972,11544,4.972,11545,4.972,11546,4.972,11547,4.972,11548,4.972,11549,4.972,11550,4.972,11551,4.49,11552,4.972,11553,4.972,11554,4.972,11555,4.972,11556,4.972,11557,4.972,11558,4.972,11559,4.972,11560,4.972,11561,4.972]],["description//posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom",[1857,2.51,4065,4.154,11492,4.627]],["title//posts/economics/diff-forward-contracts-futures",[1802,3.023,4144,3.328,4376,3.793,4431,3.793]],["content//posts/economics/diff-forward-contracts-futures",[25,2.634,32,1.536,38,1.17,46,2.901,73,1.593,74,1.686,80,1.338,118,1.641,149,3.766,175,0.616,182,4.971,205,3.252,206,1.577,221,2.361,244,5.106,288,1.348,337,1.986,372,4.121,375,1.942,381,3.848,394,4.307,395,3.123,397,1.487,411,3.123,422,1.121,462,2.674,518,1.859,525,3.587,538,4.003,655,2.056,675,2.304,718,2.155,758,1.686,778,2.103,827,3.567,864,3.007,935,1.404,939,2.881,1033,3.323,1037,3.899,1087,3.323,1138,2.022,1143,2.451,1180,4.08,1207,6.154,1254,4.529,1315,3.108,1460,4.723,1593,5.937,1632,2.456,1639,1.801,1768,3.661,1829,2.953,1863,2.634,1891,6.368,1914,3.877,1933,3.323,2057,3.48,2364,2.056,2570,3.007,2662,2.418,2974,3.123,2982,5.474,3591,3.399,3621,3.48,3958,5.008,4079,5.349,4081,5.286,4088,3.661,4099,4.496,4114,4.307,4126,5.687,4141,7.377,4144,6.128,4149,8.089,4150,5.274,4156,5.008,4157,6.723,4219,6.128,4225,5.388,4226,7.404,4229,2.901,4248,4.307,4271,2.595,4307,5.008,4330,6.368,4360,4.723,4361,4.003,4363,5.12,4376,8.388,4379,7.07,4385,7.875,4386,8.474,4388,7.116,4407,7.116,4408,5.388,4410,4.307,4411,6.613,4413,6.983,4420,7.404,4422,8.706,4424,3.781,4425,4.723,4428,5.008,4431,8.388,4432,3.764,4433,7.404,4630,5.008,4757,3.48,4830,3.48,5772,3.186,6392,3.323,7083,5.388,7798,4.145,8074,6.983,8550,5.008,9258,4.496,11494,5.388,11562,5.967,11563,5.967,11564,5.967,11565,8.822,11566,5.967,11567,7.879,11568,5.967,11569,7.879,11570,5.967,11571,5.967,11572,5.967,11573,5.967,11574,5.967,11575,7.879,11576,5.967,11577,5.967]],["description//posts/economics/diff-forward-contracts-futures",[1857,2.226,4144,3.398,4376,3.871,4431,3.871]],["title//posts/docker-commands/",[849,1.107,3189,2.893,6904,1.889]],["content//posts/docker-commands/",[2,2.186,6,0.356,14,1.51,26,0.728,33,3.706,68,0.896,71,2.444,100,6.529,105,1.309,109,1.706,124,1.021,136,1.1,144,2.006,146,2.495,161,1.526,173,1.234,175,0.511,183,3.607,202,1.348,234,1.667,245,1.246,257,2.254,263,1.979,268,2.566,270,2.891,271,2.758,288,0.847,289,1.431,295,1.713,297,3.563,304,4.607,329,3.44,344,0.511,354,1.283,378,4.382,395,2.592,420,3.038,433,3.563,479,0.674,490,1.21,494,2.408,518,1.543,532,3.574,571,2.96,626,2.072,635,2.729,636,1.667,660,5.009,675,3.074,681,3.038,722,2.699,741,3.867,829,3.731,849,1.636,925,1.376,1002,1.479,1026,4.593,1036,1.612,1046,1.789,1066,1.833,1069,4.79,1109,2.367,1110,1.81,1151,4.016,1179,3.44,1191,4.148,1208,1.494,1234,1.726,1242,2.592,1271,3.96,1314,5.009,1341,1.667,1351,1.928,1375,3.124,1405,1.789,1424,1.789,1447,2.337,1487,2.45,1502,3.038,1509,3.44,1514,4.156,1515,4.656,1516,2.793,1534,3.44,1536,2.153,1550,3.322,1557,2.888,1558,4.472,1663,4.156,1677,2.592,1745,1.903,1750,2.29,1811,2.82,1871,4.656,2214,3.038,2245,3.953,2252,6.543,2452,4.156,2629,3.965,2649,3.92,2659,2.888,2662,2.006,2693,4.121,2710,3.44,2765,4.038,2915,2.758,3147,2.699,3179,2.254,3283,3.92,3370,5.398,3434,4.505,3537,5.784,3658,3.263,3661,2.408,3899,3.92,3980,2.699,4011,6.267,4164,5.009,4244,3.92,5021,4.156,5128,2.542,5146,3.124,5164,3.218,5182,4.162,5308,3.218,5309,3.865,5548,2.96,5557,3.574,6140,3.322,6399,3.92,6412,5.009,6419,4.003,6489,6.134,6494,6.267,6520,3.731,6572,3.218,6752,3.92,6904,3.925,6951,3.218,6952,2.96,6972,4.472,6991,3.44,7010,3.574,7270,3.731,7271,7.141,7297,3.574,7339,5.376,7388,6.343,7638,4.472,7706,4.472,7707,4.156,7943,7.333,8114,3.731,8195,3.574,8310,6.267,8410,3.731,8451,7.236,8556,3.731,8645,4.472,8751,4.472,8828,3.92,8837,3.574,8878,7.236,9170,4.472,9370,4.472,9450,4.472,9608,4.156,10026,4.472,10240,6.267,10387,4.472,11252,4.472,11254,7.236,11578,4.952,11579,4.952,11580,4.952,11581,6.94,11582,4.952,11583,8.012,11584,4.952,11585,4.952,11586,4.952,11587,4.952,11588,6.94,11589,4.952,11590,4.952,11591,4.952,11592,6.94,11593,4.952,11594,4.952,11595,4.952,11596,4.952,11597,4.952,11598,4.952,11599,6.94,11600,4.952,11601,4.952,11602,4.952,11603,4.952,11604,4.952,11605,4.952,11606,4.952,11607,4.952]],["description//posts/docker-commands/",[267,1.369,536,0.661,849,0.746,938,0.965,1088,0.851,6904,1.273,7171,2.637]],["title//posts/diploma/",[4150,3.727,4236,4.5]],["content//posts/diploma/",[1088,2.045,1721,6.097,2873,5.247,2982,6.097,4236,6.336,6896,5.889,11608,8.777,11609,8.777,11610,8.777]],["description//posts/diploma/",[1485,2.886,4236,3.98,4736,3.98]],["title//posts/cheat-sheet-command-tar/",[8307,4.289,9700,4.289,11611,4.893]],["content//posts/cheat-sheet-command-tar/",[6,0.327,14,2.354,114,1.383,120,1.868,161,2.857,176,1.533,289,1.591,479,1.352,593,1.527,716,3.628,832,4.67,931,3.23,1246,3.889,1647,3.819,1716,6.008,1749,3.406,2233,6.9,2236,8.336,2259,3.406,2768,5.015,3185,6.969,5339,6.477,8790,5.361,9174,6.969,9700,8.694,9822,6.969,11612,9.267,11613,9.267,11614,9.267,11615,10.302,11616,10.537,11617,7.717,11618,9.267,11619,7.717,11620,9.267,11621,9.267,11622,7.717,11623,7.717,11624,7.717,11625,7.717,11626,9.267,11627,7.717,11628,9.267,11629,7.717,11630,9.267,11631,7.717,11632,7.717]],["description//posts/cheat-sheet-command-tar/",[191,0.995,246,0.932,849,0.898,9700,3.479,11611,3.969]],["title//posts/archive/",[3009,3.825,9177,5.63]],["content//posts/archive/",[6,0.329,1855,5.128,3009,5.395,5426,9.033,5427,9.033]],["description//posts/archive/",[]],["title//photos/_index",[922,5.81]],["content//photos/_index",[]],["description//photos/_index",[]],["title//photos/midjourney/",[2247,3.521,11633,4.289,11634,4.893]],["content//photos/midjourney/",[]],["description//photos/midjourney/",[2247,3.583,11633,4.364,11634,4.979]],["title//photos/icons/",[1386,2.428,3424,3.325,5203,3.911]],["content//photos/icons/",[2468,4.399,5203,6.416]],["description//photos/icons/",[1386,2.471,3424,3.383,5203,3.98]],["title//photos/ai/",[2247,4.051,11633,4.935]],["content//photos/ai/",[]],["description//photos/ai/",[2247,4.106,11633,5.001]],["title//photos/22-07-02-israel-haifa-bahai-gardens/",[3886,3.114,9559,4.021,11635,4.327,11636,4.327]],["content//photos/22-07-02-israel-haifa-bahai-gardens/",[6,0.331,1102,6.404]],["description//photos/22-07-02-israel-haifa-bahai-gardens/",[3886,3.178,9559,4.105,11635,4.417,11636,4.417]],["title//p/репатриация",[3886,3.521,11637,5.418,11638,4.547]],["content//p/репатриация",[6,0.238,55,3.941,56,2.744,96,1.653,191,1.637,359,2.709,395,3.784,425,2.52,461,2.52,490,1.767,593,1.191,612,3.291,636,2.434,778,1.93,785,2.277,1053,2.38,1089,2.611,1330,4.118,1452,6.529,1531,5.723,1599,3.399,1678,3.456,1731,4.698,1777,3.712,1980,6.067,2035,4.855,2057,4.216,2158,4.216,2159,5.022,2283,3.712,2573,5.447,2982,5.022,3151,6.529,3343,4.561,3494,5.447,3495,3.068,3507,7.05,3886,7.007,4082,4.322,4118,3.578,4189,5.218,4194,5.447,4201,3.291,4295,4.026,4361,4.85,4551,5.723,4561,8.043,4634,5.723,4805,4.698,4870,4.561,4920,8.043,6027,4.698,6598,4.698,6649,4.118,6991,5.022,7157,4.436,7763,6.067,7972,6.067,8531,6.529,8903,5.723,11192,6.529,11509,6.529,11638,6.067,11639,7.229,11640,7.229,11641,7.229,11642,7.229,11643,7.229,11644,8.906,11645,7.229,11646,7.229,11647,7.229,11648,7.229,11649,7.229,11650,7.229,11651,7.229,11652,7.229,11653,7.229,11654,7.229,11655,7.229,11656,7.229,11657,7.229,11658,7.229,11659,7.229,11660,7.229,11661,7.229,11662,7.229,11663,7.229,11664,7.229,11665,7.229,11666,7.229,11667,7.229,11668,7.229,11669,7.229,11670,7.229,11671,7.229,11672,7.229,11673,7.229,11674,7.229,11675,7.229,11676,7.229,11677,7.229,11678,7.229,11679,8.906,11680,7.229,11681,7.229,11682,7.229,11683,7.229,11684,7.229,11685,7.229,11686,7.229,11687,7.229,11688,7.229,11689,7.229,11690,7.229]],["description//p/репатриация",[3886,4.106,11638,5.302]],["title//p/publications",[3923,4.183,4052,4.935]],["content//p/publications",[6,0.373,8,2.366,68,0.94,75,0.881,94,3.031,114,0.932,118,1.43,120,1.258,147,1.321,151,4.694,161,2.213,191,2.008,206,1.374,234,1.082,267,1.948,356,0.903,424,2.72,425,1.812,470,1.77,525,3.268,528,3.377,598,2.024,759,3.189,805,3.032,903,3.12,915,2.135,917,2.089,1018,1.692,1019,3.242,1066,1.924,1078,2.895,1205,1.711,1210,4.114,1296,1.972,1308,1.387,1375,3.279,1441,5.762,1451,2.833,1539,4.089,1623,6.982,1632,1.36,1636,3.487,1664,5.181,1674,3.617,1711,3.757,1724,3.685,1774,2.895,1789,2.26,1996,2.668,2002,3.279,2043,4.664,2158,3.031,2321,3.752,2330,4.114,2364,2.473,2382,1.948,2570,2.619,2859,3.189,3062,4.664,3143,2.572,3147,2.833,3154,2.473,3159,1.877,3514,4.114,3878,3.916,3880,3.998,3886,4.664,3899,7.019,3900,6.482,3910,7.366,3917,4.694,3918,4.694,3922,6.482,3923,3.487,3928,4.362,3937,4.362,3968,6.482,3970,6.024,3980,2.833,4036,4.362,4052,4.114,4055,6.482,4063,5.762,4067,2.72,4082,5.301,4087,3.752,4088,3.189,4090,6.509,4091,3.377,4111,3.916,4115,5.409,4118,3.552,4155,3.189,4200,3.916,4201,2.366,4207,3.752,4219,3.611,4228,4.114,4296,6.682,4301,6.482,4314,2.72,4359,6.684,4423,3.031,4439,3.189,4463,3.189,4506,4.694,4699,4.694,4767,6.901,4850,6.024,4876,6.024,4891,4.694,4897,6.024,4930,4.694,5270,5.762,5676,2.961,5778,4.528,6292,3.752,6690,6.901,6767,4.362,7075,4.986,7325,4.694,7933,5.682,7972,4.362,8220,4.694,8620,3.916,8690,4.694,9242,6.901,9432,6.482,9843,6.482,10353,4.694,11691,5.197,11692,7.81,11693,8.222,11694,5.197,11695,5.197,11696,5.197,11697,5.197,11698,5.197,11699,5.197,11700,5.197,11701,5.197,11702,5.197,11703,5.197,11704,8.222,11705,5.197,11706,5.197,11707,5.197,11708,5.197,11709,7.178,11710,5.197,11711,5.197,11712,5.197,11713,5.197,11714,5.197,11715,5.197,11716,5.197,11717,5.197,11718,5.197,11719,5.197,11720,5.197,11721,5.197,11722,5.197,11723,5.197,11724,7.178,11725,5.197,11726,5.197,11727,5.197,11728,5.197,11729,5.197,11730,5.197,11731,5.197,11732,5.197,11733,5.197,11734,5.197,11735,5.197,11736,5.197,11737,7.178,11738,5.197,11739,5.197,11740,5.197,11741,5.197,11742,5.197,11743,5.197,11744,5.197,11745,5.197,11746,5.197,11747,5.197,11748,8.867,11749,7.178,11750,5.197,11751,5.197,11752,5.197,11753,5.197,11754,5.197,11755,5.197,11756,5.197,11757,5.197,11758,8.222,11759,5.197,11760,5.197,11761,7.178,11762,7.178,11763,5.197,11764,5.197,11765,5.197,11766,5.197,11767,7.178,11768,6.482,11769,7.178,11770,7.178,11771,7.178,11772,7.178,11773,7.178,11774,5.197,11775,5.197,11776,5.197,11777,5.197,11778,5.197,11779,5.197,11780,5.197,11781,5.197,11782,5.197,11783,5.197,11784,5.197,11785,5.197,11786,5.197,11787,5.197,11788,5.197,11789,5.197,11790,5.197,11791,5.197,11792,5.197,11793,5.197,11794,5.197,11795,5.197,11796,5.197]],["description//p/publications",[6,0.161,3899,3.871,3980,2.666,4052,3.871]],["title//p/privacy_ru",[4067,3.263,7115,4.183]],["content//p/privacy_ru",[6,0.311,8,2.951,11,2.267,18,1.55,26,1.118,29,1.587,30,1.402,38,0.668,44,1.387,46,2.188,49,1.73,56,1.707,68,1.173,71,2.886,73,1.73,75,1.642,107,1.177,137,1.872,175,0.669,182,2.838,190,1.302,198,2.188,204,1.515,206,1.713,215,4.883,216,1.079,218,4.329,227,2.712,244,4.614,245,1.132,264,1.568,288,0.77,297,2.31,300,1.625,307,1.798,331,2.42,337,1.498,344,1.15,356,0.566,381,2.557,383,1.956,411,2.355,414,3.328,419,3.78,422,1.218,435,2.31,437,1.752,470,2.208,471,1.986,472,1.775,478,1.956,488,1.448,490,1.1,507,2.042,518,1.402,525,3.46,533,3.776,536,0.814,542,1.402,545,2.689,546,3.875,583,3.875,593,0.741,605,3.125,611,1.625,625,3.125,628,3.122,635,2.208,636,1.515,649,5.486,708,2.563,709,4.329,770,4.737,778,2.353,779,2.524,781,4.666,793,2.183,828,2.226,907,0.954,935,2.16,938,1.189,1018,1.464,1037,2.226,1066,1.665,1101,2.563,1138,1.95,1143,1.848,1205,2.134,1206,2.226,1234,1.568,1255,1.707,1269,2.429,1315,3.477,1371,2.838,1470,1.568,1484,1.874,1521,4.503,1666,3.39,1764,2.923,1775,3.247,1776,2.838,1829,2.848,1854,2.76,1858,2.884,1930,1.225,1934,2.923,1943,2.838,1987,1.686,2035,2.452,2046,1.775,2125,3.78,2222,3.125,2364,1.55,2570,2.267,2612,3.776,2643,3.727,2698,2.267,2718,5.441,2985,2.838,3103,3.125,3253,2.76,3787,3.561,3803,1.686,3934,4.063,3984,2.188,4033,3.776,4067,5.455,4118,2.226,4126,4.679,4140,3.776,4195,3.776,4340,6.378,4367,3.125,4445,4.063,4459,1.956,4494,3.39,4559,4.063,4721,2.689,4729,3.776,4738,4.679,4767,8.129,4798,3.018,4830,2.624,4883,3.776,4892,3.776,4937,3.39,4955,3.561,4971,6.378,5075,3.776,5345,3.561,5551,4.063,6146,5.132,6338,2.492,6342,3.39,6445,1.775,6551,4.063,6643,3.776,6691,3.776,6774,4.063,6858,5.271,7111,3.39,7115,7.12,7150,5.132,7156,2.923,7410,4.063,7418,4.063,7754,6.016,7856,3.776,8072,3.776,8074,5.132,8526,3.776,9242,8.129,9510,4.063,9550,4.063,9560,4.063,10681,4.063,10854,4.063,10893,4.063,11319,4.063,11361,4.063,11500,6.863,11525,7.51,11551,4.063,11768,5.854,11797,4.499,11798,11.123,11799,4.499,11800,7.6,11801,4.499,11802,4.499,11803,6.483,11804,4.499,11805,8.316,11806,4.499,11807,4.499,11808,4.499,11809,4.499,11810,4.499,11811,6.483,11812,4.499,11813,4.499,11814,4.499,11815,4.499,11816,4.499,11817,4.499,11818,4.499,11819,6.483,11820,4.499,11821,4.499,11822,4.499,11823,4.499,11824,4.499,11825,4.499,11826,4.499,11827,4.499,11828,4.499,11829,4.499,11830,4.499,11831,4.499,11832,4.499,11833,4.499,11834,4.499,11835,4.499,11836,4.499,11837,4.499,11838,6.483,11839,4.499,11840,4.499,11841,4.499,11842,4.499,11843,4.499,11844,4.499,11845,6.483,11846,4.499,11847,4.499,11848,6.483,11849,4.499,11850,4.499,11851,4.499,11852,4.499,11853,4.499,11854,4.499,11855,4.499,11856,4.499,11857,4.499,11858,4.499,11859,4.499,11860,4.499,11861,4.499,11862,4.499,11863,4.499,11864,4.499,11865,4.499,11866,4.499,11867,4.499]],["description//p/privacy_ru",[]],["title//homepage/pages",[3885,4.28]],["content//homepage/pages",[]],["description//homepage/pages",[]],["title//homepage/",[]],["content//homepage/",[]],["description//homepage/",[]],["title//homepage/experience",[5548,4.387]],["content//homepage/experience",[]],["description//homepage/experience",[]],["title//homepage/education",[3990,5.81]],["content//homepage/education",[]],["description//homepage/education",[]],["title//homepage/about",[4197,5.232,11692,5.232]],["content//homepage/about",[]],["description//homepage/about",[]],["title//authors/roman-kurnovskii/_index",[4197,5.232,11692,5.232]],["content//authors/roman-kurnovskii/_index",[]],["description//authors/roman-kurnovskii/_index",[]],["title//authors/michael-cade/_index",[10189,5.232,10190,5.63]],["content//authors/michael-cade/_index",[]],["description//authors/michael-cade/_index",[]],["title//apps/_index",[75,1.244]],["content//apps/_index",[256,6.173,270,3.957,424,4.211,532,5.807,695,7.52,842,4.211,992,5.398,1249,5.075,1278,6.062,1377,4.583,1405,3.431,1611,1.241,1612,6.857,1757,6.368,1958,3.551,2084,7.266,2214,4.936,2434,6.368,2767,6.368,3034,7.158,3143,3.981,3701,6.062,5008,4.071,5014,6.062,5036,3.092,5056,6.752,5122,3.351,5138,4.385,5140,7.52,5865,5.228,6258,6.752,6371,6.374,6716,5.228,6741,4.385,6889,5.807,7326,4.131,7919,7.266,8200,7.023,10432,7.266,10558,5.829,11868,8.045,11869,8.045,11870,8.579,11871,7.266,11872,8.045,11873,6.752,11874,7.266]],["description//apps/_index",[]],["title//apps/npm/hugo-lunr-ml/",[10558,3.325,11870,4.893,11871,4.893]],["content//apps/npm/hugo-lunr-ml/",[]],["description//apps/npm/hugo-lunr-ml/",[479,0.543,1019,1.459,1089,1.441,2006,1.94,10558,2.448,11875,3.99]],["title//apps/npm/cognito-token-observer/",[256,3.521,5140,4.289,6889,3.911]],["content//apps/npm/cognito-token-observer/",[]],["description//apps/npm/cognito-token-observer/",[271,1.351,378,1.039,602,1.245,1315,1.583,3915,1.159,5078,1.414,5140,1.92,8074,3.176,9947,2.19,11876,4.012]],["title//apps/cloud-exam-quizz/",[5014,4.083,5036,2.083,11874,4.893]],["content//apps/cloud-exam-quizz/",[513,7.365,730,4.421,840,3.906,989,4.336,1395,7.627,1889,6.557,2043,5.488,2287,5.182,2837,4.811,3795,5.488,5014,6.364,5015,9.315,5016,7.088,5033,3.785,5036,3.246,5061,7.088,5676,4.811,7221,6.686,7277,7.627,8972,7.627,9879,7.088,10349,7.627,10639,7.627,11877,8.446,11878,8.446,11879,8.446,11880,8.446]],["description//apps/cloud-exam-quizz/",[4010,2.786,4033,4.105,5008,2.096,11881,4.891]],["title//apps/brewmate/",[11873,6.16]],["content//apps/brewmate/",[144,3.192,270,3.908,678,4.045,722,4.294,840,4.634,888,5.686,993,3.792,1365,3.531,1386,4.749,1509,6.518,1557,4.594,1758,6.611,2836,6.611,3332,7.114,3655,5.35,3656,7.487,3701,7.816,4530,4.487,5022,5.285,5128,4.045,5157,5.114,5162,5.119,5180,6.723,5228,7.114,5384,6.611,5556,5.472,6346,5.285,6716,5.119,6949,5.119,7556,5.472,7788,5.285,7831,5.757,8200,5.472,8693,4.709,11873,8.705,11882,7.878,11883,9.382,11884,7.878,11885,7.878,11886,7.878,11887,7.878,11888,7.878,11889,7.878,11890,7.878,11891,7.878,11892,7.878]],["description//apps/brewmate/",[1386,2.192,5122,2.037,6716,3.178,8200,3.398]],["title//_home/vintage",[11893,7.339]],["content//_home/vintage",[]],["description//_home/vintage",[]],["title//_home/blank",[11894,7.339]],["content//_home/blank",[1561,6.54]],["description//_home/blank",[]]],"invertedIndex":[["",{"_index":6,"title":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/archive/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/posts/archive/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{},"/p/репатриация":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day05/":{},"/p/publications":{}}}],["0",{"_index":313,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["0,0000133334",{"_index":5250,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0,0000166667",{"_index":5244,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0,20",{"_index":5247,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0.0.0.0",{"_index":7035,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["0.0.0.0:8080",{"_index":8469,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["0.0.1",{"_index":1366,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day53":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["0.1.3",{"_index":10986,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["0.10.6",{"_index":6715,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["0.10.6.ex",{"_index":6719,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["0.12.26",{"_index":8042,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0.13.x",{"_index":8040,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0.14.9",{"_index":8033,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0.19",{"_index":1798,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["0.19.21",{"_index":7019,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["0.2.2",{"_index":7984,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["0.20",{"_index":11009,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["0.7.10",{"_index":1368,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["0.75.0",{"_index":6470,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["0.97",{"_index":1801,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["00",{"_index":5752,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["000",{"_index":6995,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["0000",{"_index":11786,"title":{},"content":{"/p/publications":{}},"description":{}}],["0002",{"_index":11787,"title":{},"content":{"/p/publications":{}},"description":{}}],["00:00:00",{"_index":2877,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["01",{"_index":1210,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day34":{},"/p/publications":{}},"description":{}}],["01.png",{"_index":5303,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["01/05/2021",{"_index":9274,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["01/deploymentparameters.json",{"_index":8940,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["01/deploymenttemplate.json",{"_index":8949,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["02",{"_index":1060,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["02.png",{"_index":5331,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["02d",{"_index":7988,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["02t15",{"_index":6553,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["02t15:04:05.999999999z07:00",{"_index":6552,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["03",{"_index":1531,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/p/репатриация":{}},"description":{}}],["03.png",{"_index":5333,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["03/js/main.j",{"_index":1537,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["04",{"_index":1281,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["04.png",{"_index":5334,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["05",{"_index":1455,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day88":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["05.png",{"_index":5336,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["05/js/main.j",{"_index":1457,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["06",{"_index":933,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["06.png",{"_index":5340,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["07",{"_index":9045,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["07.png",{"_index":5342,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["08",{"_index":8965,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["08.00.14",{"_index":4059,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["08.png",{"_index":5349,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["09.png",{"_index":5362,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["09a",{"_index":9091,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["0:3",{"_index":3632,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["0\\n",{"_index":9403,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["0b001",{"_index":3597,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["0b011",{"_index":3596,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["0b101",{"_index":3595,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["0cbb",{"_index":8068,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0x1e",{"_index":3542,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["0x7f45caf44048",{"_index":1788,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["1",{"_index":114,"title":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day01":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/cheat-sheet-command-tar/":{},"/p/publications":{}},"description":{}}],["1\":\"$2",{"_index":10268,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["1*2",{"_index":5846,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["1,1,1,1",{"_index":5844,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["1,2",{"_index":8934,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["1,2,3",{"_index":10734,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["1,2,3):[1,2,3",{"_index":10737,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["1,2,3,4,5",{"_index":5707,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/posts/python-snippets/":{}},"description":{}}],["1..num_worker_nodes).each",{"_index":8278,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["1.0",{"_index":5076,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-snippets/":{}},"description":{}}],["1.0.0.0",{"_index":8942,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["1.1",{"_index":11799,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["1.1.6",{"_index":8063,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["1.2",{"_index":11801,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["1.2.0",{"_index":1369,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["1.4",{"_index":9033,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["1.5k",{"_index":11619,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["1/2=1/4",{"_index":5000,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["10",{"_index":1750,"title":{"/tracks/90daysofdevops/day10":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["10,20,30],[40,50,60],[70,80,90",{"_index":2156,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["10.0",{"_index":10669,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["10.0.0.0/16",{"_index":5353,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.0.1",{"_index":7779,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["10.0.1.0/24",{"_index":5361,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.100.0/24(u",{"_index":5356,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.101.0/24",{"_index":5358,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.10.88.110",{"_index":9331,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.111",{"_index":9334,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.112",{"_index":9337,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.113",{"_index":9340,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.114",{"_index":9343,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.15",{"_index":11890,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["10.40.0.0/22",{"_index":9002,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.40.0.0/24",{"_index":9004,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.40.1.0/24",{"_index":9006,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.70.0.0/22",{"_index":9058,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.70.0.0/24",{"_index":9060,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.png",{"_index":5363,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["100",{"_index":1273,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{"/tracks/python-101/_index":{}}}],["1000",{"_index":3616,"title":{},"content":{"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["10000",{"_index":9115,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1000:1000",{"_index":7385,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["1004",{"_index":6013,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["1005",{"_index":9112,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1009",{"_index":8487,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["100daysofkubernet",{"_index":8165,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["101",{"_index":2651,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{}}}],["101/400_frameworks/403_fastapi.ru.md",{"_index":3101,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["1010",{"_index":9114,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1024",{"_index":815,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["1024x768",{"_index":813,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["104",{"_index":8932,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["1071",{"_index":6158,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["10шек",{"_index":11676,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["11",{"_index":1950,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day11":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["11,6",{"_index":10077,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["11.png",{"_index":5365,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["112",{"_index":6506,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["12",{"_index":1711,"title":{"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{}},"description":{}}],["12.26.28.png",{"_index":11471,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["12.png",{"_index":5370,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["120",{"_index":2338,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["121",{"_index":2139,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["123",{"_index":3409,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-snippets/":{}},"description":{}}],["123\".isalnum",{"_index":2602,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["1234",{"_index":6078,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["12345",{"_index":6077,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["1237",{"_index":8677,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["127.0.0.1",{"_index":1419,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["127.0.0.1:9090:9090",{"_index":7132,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["128",{"_index":9858,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["1280",{"_index":739,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["1280x720",{"_index":736,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["128mb",{"_index":9856,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["12–18",{"_index":4311,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["13",{"_index":1974,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["13.png",{"_index":5371,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["1321",{"_index":6510,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["1372",{"_index":5979,"title":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["139",{"_index":11694,"title":{},"content":{"/p/publications":{}},"description":{}}],["14",{"_index":1985,"title":{"/tracks/90daysofdevops/day14":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["14.png",{"_index":5375,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["14.x",{"_index":11082,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["141",{"_index":11695,"title":{},"content":{"/p/publications":{}},"description":{}}],["143",{"_index":11696,"title":{},"content":{"/p/publications":{}},"description":{}}],["144",{"_index":6515,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["1443",{"_index":9127,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1448",{"_index":5972,"title":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1448/":{}}}],["145",{"_index":11726,"title":{},"content":{"/p/publications":{}},"description":{}}],["14:42",{"_index":11621,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["15",{"_index":1996,"title":{"/tracks/90daysofdevops/day15":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/p/publications":{}},"description":{}}],["15.png",{"_index":5374,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["151",{"_index":5443,"title":{"/tracks/algorithms-101/leetcode/medium/151":{}},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["152",{"_index":11809,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["16",{"_index":2002,"title":{"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{}}],["16.06.2022",{"_index":6726,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["16.png",{"_index":5379,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["16.x",{"_index":5259,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["1605—1680",{"_index":4933,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["1657",{"_index":11784,"title":{},"content":{"/p/publications":{}},"description":{}}],["1679",{"_index":5965,"title":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["17",{"_index":2011,"title":{"/tracks/90daysofdevops/day17":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["17.png",{"_index":5381,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["1723—1790",{"_index":4948,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["1732",{"_index":6142,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["1768",{"_index":6127,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["1772",{"_index":4977,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["1776",{"_index":4944,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["18",{"_index":2016,"title":{"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/_index":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["18.0",{"_index":7522,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["18.04",{"_index":8482,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["1823",{"_index":4978,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["184",{"_index":4265,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["18:00:00",{"_index":2860,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["18:26",{"_index":6725,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["18:27",{"_index":6746,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["19",{"_index":2032,"title":{"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["19.35.50.png",{"_index":11063,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["19.50.08.png",{"_index":11025,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["19.52.04.png",{"_index":11028,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["192.168.169.115",{"_index":9332,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.125",{"_index":9341,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.130",{"_index":7715,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.131",{"_index":7718,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.131:8000",{"_index":7659,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["192.168.169.132",{"_index":7720,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.132:8000",{"_index":7660,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["192.168.169.133",{"_index":7752,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.134",{"_index":7722,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.140",{"_index":7751,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.178",{"_index":9335,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.193",{"_index":9338,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.197",{"_index":9344,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.49.2",{"_index":8152,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["1920",{"_index":11764,"title":{},"content":{"/p/publications":{}},"description":{}}],["1930",{"_index":11765,"title":{},"content":{"/p/publications":{}},"description":{}}],["19403",{"_index":239,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["1962",{"_index":4347,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["1970",{"_index":2876,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["1995",{"_index":4353,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["1999",{"_index":4321,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["19:50",{"_index":6362,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["1d",{"_index":5809,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["1st",{"_index":2425,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["1с",{"_index":11745,"title":{},"content":{"/p/publications":{}},"description":{}}],["1с:монитор",{"_index":11746,"title":{},"content":{"/p/publications":{}},"description":{}}],["2",{"_index":120,"title":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day02":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/cheat-sheet-command-tar/":{},"/p/publications":{}},"description":{}}],["2)(2",{"_index":10805,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2)(3",{"_index":10804,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2**3",{"_index":10670,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2*3",{"_index":5848,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["2*c",{"_index":5598,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["2*n",{"_index":6194,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["2,3,4,5",{"_index":5843,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["2.0",{"_index":5367,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["2.0.0",{"_index":7899,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["2.1",{"_index":5075,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/p/privacy_ru":{}},"description":{}}],["2.16.0",{"_index":7936,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["2.2",{"_index":11814,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["2.3",{"_index":11815,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["2.4",{"_index":11816,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["2.5",{"_index":3592,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["2.console.aws.amazon.com/lambda/home?region=u",{"_index":5253,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["2.x",{"_index":2220,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["2/2",{"_index":7387,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["2/3",{"_index":4998,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["20",{"_index":2043,"title":{"/tracks/90daysofdevops/day20":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/p/publications":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["20.04",{"_index":8420,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["200",{"_index":10608,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["2000",{"_index":4089,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["2006",{"_index":6551,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/p/privacy_ru":{}},"description":{}}],["2007",{"_index":8690,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/p/publications":{}},"description":{}}],["2008",{"_index":3970,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day40":{},"/p/publications":{}},"description":{}}],["2009",{"_index":10084,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["200мб",{"_index":8590,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["201",{"_index":3051,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["2010",{"_index":4090,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day06":{},"/p/publications":{}},"description":{}}],["2011",{"_index":10076,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["2012",{"_index":11754,"title":{},"content":{"/p/publications":{}},"description":{}}],["2013",{"_index":11751,"title":{},"content":{"/p/publications":{}},"description":{}}],["2014",{"_index":4506,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/p/publications":{}},"description":{}}],["2015",{"_index":11143,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["2017",{"_index":8475,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["2018",{"_index":132,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["2019",{"_index":153,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day34":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2020",{"_index":4236,"title":{"/posts/diploma/":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day81":{},"/posts/diploma/":{}},"description":{"/posts/diploma/":{}}}],["2020:2020",{"_index":7060,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["2021",{"_index":179,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2021]](https://www.upgrad.com/blog/devop",{"_index":10090,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["2022",{"_index":2859,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/articles-notes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{}},"description":{}}],["2022г",{"_index":11707,"title":{},"content":{"/p/publications":{}},"description":{}}],["2023",{"_index":1664,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-snippets/":{},"/p/publications":{}},"description":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["2023/01",{"_index":11781,"title":{},"content":{"/p/publications":{}},"description":{}}],["2023/02/17",{"_index":1667,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["2023/02/27",{"_index":1613,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["204",{"_index":3059,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["2048",{"_index":7747,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["2095",{"_index":5949,"title":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{}}}],["21",{"_index":2056,"title":{"/tracks/90daysofdevops/day21":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["21.10",{"_index":7714,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["210",{"_index":5922,"title":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["212530",{"_index":11261,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["2130",{"_index":5911,"title":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["215",{"_index":5901,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["21:41:24.871910",{"_index":10624,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["22",{"_index":1972,"title":{"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["22.04",{"_index":11347,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["22.10",{"_index":11343,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["2210",{"_index":7717,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["2211",{"_index":7719,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["2212",{"_index":7721,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["2213",{"_index":7723,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["23",{"_index":2121,"title":{"/tracks/90daysofdevops/day23":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["233",{"_index":6517,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["2352",{"_index":5878,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["236",{"_index":5860,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{}}}],["237",{"_index":5851,"title":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/237/":{}}}],["238",{"_index":5825,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["24",{"_index":2167,"title":{"/tracks/90daysofdevops/day24":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["240",{"_index":5810,"title":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/240/":{}}}],["2418",{"_index":11791,"title":{},"content":{"/p/publications":{}},"description":{}}],["243",{"_index":11752,"title":{},"content":{"/p/publications":{}},"description":{}}],["247",{"_index":11753,"title":{},"content":{"/p/publications":{}},"description":{}}],["25",{"_index":2137,"title":{"/tracks/90daysofdevops/day25":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["2500",{"_index":4041,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["251",{"_index":5790,"title":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["256",{"_index":10353,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/p/publications":{}},"description":{}}],["25px",{"_index":10584,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["26",{"_index":2204,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["260",{"_index":11755,"title":{},"content":{"/p/publications":{}},"description":{}}],["2666",{"_index":11785,"title":{},"content":{"/p/publications":{}},"description":{}}],["27",{"_index":2222,"title":{"/tracks/90daysofdevops/day27":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/p/privacy_ru":{}},"description":{}}],["277",{"_index":5765,"title":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["28",{"_index":2242,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day28":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["283",{"_index":6119,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["2844",{"_index":5749,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["287",{"_index":5729,"title":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/287/":{}}}],["29",{"_index":178,"title":{"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["2994",{"_index":11648,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["2a",{"_index":8024,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["2a)и",{"_index":5357,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2b",{"_index":5359,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2d",{"_index":5791,"title":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{}}}],["2dbc9a819cb8",{"_index":11094,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["2n",{"_index":6193,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["2nd",{"_index":2428,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["2rem",{"_index":10578,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["2тыс",{"_index":4047,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["3",{"_index":147,"title":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day03":{},"/posts/ruGPT-3-notes":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/ruGPT-3-notes":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{"/posts/ruGPT-3-notes":{}}}],["3.0",{"_index":3365,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.1",{"_index":11821,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["3.10",{"_index":3789,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["3.12",{"_index":2754,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["3.14",{"_index":3609,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["3.2",{"_index":11822,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["3.27",{"_index":8031,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["3.3",{"_index":11824,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["3.3333333333333335",{"_index":3615,"title":{},"content":{"/tracks/python-101/basis/numbers":{},"/posts/python-snippets/":{}},"description":{}}],["3.5",{"_index":10750,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.6",{"_index":3543,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{}},"description":{}}],["3.7",{"_index":3155,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/posts/python-snippets/":{}},"description":{}}],["3.8",{"_index":10953,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["3.9",{"_index":8508,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.x",{"_index":2219,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["3/4",{"_index":4999,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["30",{"_index":2158,"title":{"/tracks/90daysofdevops/day30":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["300",{"_index":4023,"title":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{}},"description":{"/tracks/algorithms-101/leetcode/medium/300/":{}}}],["3000",{"_index":6054,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day65":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["3002",{"_index":10347,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["30201",{"_index":7913,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["30201:80",{"_index":7917,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["31",{"_index":2271,"title":{"/tracks/90daysofdevops/day31":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["3104",{"_index":1778,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["32",{"_index":2280,"title":{"/tracks/90daysofdevops/day32":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["320px",{"_index":1274,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["321",{"_index":6073,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["328",{"_index":5673,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["33",{"_index":2291,"title":{"/tracks/90daysofdevops/day33":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["334",{"_index":5652,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["3389",{"_index":9083,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["34",{"_index":2296,"title":{"/tracks/90daysofdevops/day34":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["341",{"_index":5635,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{}}}],["345",{"_index":6107,"title":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["35",{"_index":2317,"title":{"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["358",{"_index":6508,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["36",{"_index":2321,"title":{"/tracks/90daysofdevops/day36":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/_index":{},"/p/publications":{}},"description":{}}],["365",{"_index":9243,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["3683",{"_index":11789,"title":{},"content":{"/p/publications":{}},"description":{}}],["37",{"_index":2330,"title":{"/tracks/90daysofdevops/day37":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/p/publications":{}},"description":{}}],["377",{"_index":6519,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["38",{"_index":2344,"title":{"/tracks/90daysofdevops/day38":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["384",{"_index":5621,"title":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/384/":{}}}],["387",{"_index":5610,"title":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/387/":{}}}],["39",{"_index":2348,"title":{"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["392",{"_index":6094,"title":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["394",{"_index":5584,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["3[a2[c",{"_index":5594,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["3a99af449ca2",{"_index":8459,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["3j",{"_index":3610,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["4",{"_index":161,"title":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day04":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/p/publications":{}},"description":{"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["4.0",{"_index":10213,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["4.1",{"_index":11825,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["4.2",{"_index":11827,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["4.3",{"_index":11833,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["4.4",{"_index":11837,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["40",{"_index":2159,"title":{"/tracks/90daysofdevops/day40":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/_index":{},"/p/репатриация":{}},"description":{}}],["400",{"_index":5396,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["4000",{"_index":9117,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["404",{"_index":3044,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["4048",{"_index":8271,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["4096",{"_index":11019,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["41",{"_index":2437,"title":{"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["42",{"_index":2457,"title":{"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day42":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["43",{"_index":2486,"title":{"/tracks/90daysofdevops/day43":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["437",{"_index":5547,"title":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{}}}],["44",{"_index":2488,"title":{"/tracks/90daysofdevops/day44":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["443",{"_index":5532,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day33":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["443(http",{"_index":9122,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["443:443",{"_index":8214,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["4443",{"_index":7559,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["445",{"_index":9181,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["45",{"_index":2491,"title":{"/tracks/90daysofdevops/day45":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["454",{"_index":5515,"title":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{}}}],["46",{"_index":2524,"title":{"/tracks/90daysofdevops/day46":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["47",{"_index":1481,"title":{"/tracks/90daysofdevops/day47":{}},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["48",{"_index":2569,"title":{"/tracks/90daysofdevops/day48":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["480",{"_index":811,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["49",{"_index":2138,"title":{"/tracks/90daysofdevops/day49":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["4sum",{"_index":5516,"title":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"content":{},"description":{}}],["5",{"_index":30,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["5,12",{"_index":6240,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["5,12,21",{"_index":6241,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["5,12,21,24",{"_index":6242,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["5.0",{"_index":3364,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["5.1",{"_index":11839,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["5.14",{"_index":11363,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.2",{"_index":11843,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["5.3",{"_index":11844,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["5.32",{"_index":11367,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.4",{"_index":11846,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["50",{"_index":1641,"title":{"/tracks/90daysofdevops/day50":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/_index":{},"/posts/trading-indicators/sma":{}},"description":{}}],["500",{"_index":1203,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["5000",{"_index":10336,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["500стр",{"_index":4263,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["51",{"_index":2590,"title":{"/tracks/90daysofdevops/day51":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["512",{"_index":7992,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["52",{"_index":2591,"title":{"/tracks/90daysofdevops/day52":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["520",{"_index":4502,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["53",{"_index":2595,"title":{"/tracks/90daysofdevops/day53":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["535",{"_index":4504,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["536",{"_index":9103,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["54",{"_index":2603,"title":{"/tracks/90daysofdevops/day54":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["55",{"_index":1665,"title":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["5500",{"_index":11610,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["5589",{"_index":6513,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["56",{"_index":8080,"title":{"/tracks/90daysofdevops/day56":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["5601:5601",{"_index":6969,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["57",{"_index":7878,"title":{"/tracks/90daysofdevops/day57":{}},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["58",{"_index":8006,"title":{"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["587",{"_index":2728,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["59",{"_index":7976,"title":{"/tracks/90daysofdevops/day59":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["5mb",{"_index":7043,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["6",{"_index":1789,"title":{"/tracks/90daysofdevops/day06":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{}}],["6*4",{"_index":5850,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["6.1",{"_index":10854,"title":{},"content":{"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["6.2",{"_index":10893,"title":{},"content":{"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["60",{"_index":2160,"title":{"/tracks/90daysofdevops/day60":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["600",{"_index":7725,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["6040",{"_index":11788,"title":{},"content":{"/p/publications":{}},"description":{}}],["605",{"_index":6079,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["61",{"_index":7892,"title":{"/tracks/90daysofdevops/day61":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["62",{"_index":7839,"title":{"/tracks/90daysofdevops/day62":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["63",{"_index":7792,"title":{"/tracks/90daysofdevops/day63":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["64",{"_index":7769,"title":{"/tracks/90daysofdevops/day64":{}},"content":{"/tracks/90daysofdevops/_index":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["640",{"_index":810,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["64000",{"_index":973,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["640x480",{"_index":808,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["6433",{"_index":8304,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["649",{"_index":5467,"title":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/649/":{}}}],["64b",{"_index":11624,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["64kb",{"_index":984,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["65",{"_index":7690,"title":{"/tracks/90daysofdevops/day65":{}},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["66",{"_index":7562,"title":{"/tracks/90daysofdevops/day66":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["67",{"_index":7645,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["670d",{"_index":8067,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["68",{"_index":7549,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["69",{"_index":7508,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["7",{"_index":1818,"title":{"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day22":{}}}],["7.0",{"_index":10667,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["7.0.108",{"_index":3971,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["7.0.5",{"_index":3969,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["7.1",{"_index":11851,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.1",{"_index":11852,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.2",{"_index":11853,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.3",{"_index":11855,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.4",{"_index":11857,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.2",{"_index":11860,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.2.1",{"_index":11863,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["70",{"_index":2161,"title":{"/tracks/90daysofdevops/day70":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["700",{"_index":8199,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["709a",{"_index":8921,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["71",{"_index":7402,"title":{"/tracks/90daysofdevops/day71":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["72",{"_index":7361,"title":{"/tracks/90daysofdevops/day72":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["720",{"_index":740,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["720/1000",{"_index":5049,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["73",{"_index":7293,"title":{"/tracks/90daysofdevops/day73":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["735",{"_index":5451,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["74",{"_index":7268,"title":{"/tracks/90daysofdevops/day74":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["7469bbb6d7",{"_index":8108,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["75",{"_index":5753,"title":{"/tracks/90daysofdevops/day75":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["75/100",{"_index":5054,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["750",{"_index":9828,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["76",{"_index":7173,"title":{"/tracks/90daysofdevops/day76":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["768",{"_index":816,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["77",{"_index":7147,"title":{"/tracks/90daysofdevops/day77":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["775",{"_index":9825,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["777",{"_index":9824,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["78",{"_index":7124,"title":{"/tracks/90daysofdevops/day78":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["79",{"_index":7086,"title":{"/tracks/90daysofdevops/day79":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["7:00",{"_index":11077,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["8",{"_index":1724,"title":{"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{}}],["8.0",{"_index":11368,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["8.1",{"_index":11865,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["8.2",{"_index":11866,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["8.8.8.8",{"_index":9548,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["80",{"_index":2162,"title":{"/tracks/90daysofdevops/day80":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["80/tcp",{"_index":8470,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["800",{"_index":11429,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["8000",{"_index":7557,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["8000:80",{"_index":8517,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["8080",{"_index":1429,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["8080:443",{"_index":7196,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["8080:80",{"_index":8467,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["8080:8000",{"_index":6394,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["8080:8080",{"_index":7393,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["8090:80",{"_index":8186,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["8096",{"_index":9853,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["80:80",{"_index":8213,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["81",{"_index":6981,"title":{"/tracks/90daysofdevops/day81":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["82",{"_index":6956,"title":{"/tracks/90daysofdevops/day82":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["826",{"_index":9535,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["83",{"_index":6886,"title":{"/tracks/90daysofdevops/day83":{}},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["830c94e3",{"_index":8034,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["84",{"_index":6844,"title":{"/tracks/90daysofdevops/day84":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["84cf7f59c",{"_index":6967,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["85",{"_index":6454,"title":{"/tracks/90daysofdevops/day85":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["86",{"_index":6655,"title":{"/tracks/90daysofdevops/day86":{}},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["867",{"_index":11080,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["87",{"_index":6602,"title":{"/tracks/90daysofdevops/day87":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["88",{"_index":6453,"title":{"/tracks/90daysofdevops/day88":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["89",{"_index":6315,"title":{"/tracks/90daysofdevops/day89":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["8kvl4",{"_index":7059,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["9",{"_index":1901,"title":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-install-rhel-9-free/":{}}}],["90",{"_index":2163,"title":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["900000000",{"_index":10928,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["9090",{"_index":6928,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["9090:80",{"_index":6629,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["9093",{"_index":6944,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["90day",{"_index":8952,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["90days.php",{"_index":9687,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["90daysofdevop",{"_index":6289,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["90daysofdevops.sh",{"_index":10237,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["90daysofdevops.txt",{"_index":9704,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["90daysofdevops:0.1",{"_index":8570,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["928",{"_index":11727,"title":{},"content":{"/p/publications":{}},"description":{}}],["931",{"_index":11728,"title":{},"content":{"/p/publications":{}},"description":{}}],["933",{"_index":6051,"title":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["9733333",{"_index":11649,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["99",{"_index":9193,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["99,99",{"_index":9191,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["9999999",{"_index":7334,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["99d",{"_index":7331,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["9mhxd",{"_index":8109,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["_",{"_index":2460,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["__",{"_index":2463,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["__,_|\\__",{"_index":10250,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["___",{"_index":10248,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["___/\\___/|_",{"_index":10251,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["____",{"_index":10249,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["__ansh",{"_index":1947,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["__private_method(self",{"_index":2477,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["_advance_to_next(self",{"_index":5807,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["_default",{"_index":11296,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_dir",{"_index":2792,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["_ediri",{"_index":10150,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["_file",{"_index":2794,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["_formatter_field_name_split",{"_index":3815,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["_formatter_pars",{"_index":3816,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["_markup",{"_index":11297,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_protected_method(self",{"_index":2475,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["_sara",{"_index":1941,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["_systemd_unit=kubelet.servic",{"_index":7048,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["_например",{"_index":5369,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["a&b\\\\c&d",{"_index":10440,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["a**pach",{"_index":9678,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["a+b",{"_index":3719,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["a+b+c",{"_index":10449,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["a.init(self",{"_index":2397,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["a.obj",{"_index":11467,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["a048",{"_index":8069,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["a2",{"_index":1973,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["a3b2a3",{"_index":5536,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["a74296e7",{"_index":8066,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["a81944423cbfeeb92be0784edebba1af799735ebc30ba8cbe5cc5f996094f30b",{"_index":8238,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["a:j",{"_index":11478,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["a=3",{"_index":10787,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["a=5",{"_index":3721,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["a=msid",{"_index":69,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["a[client",{"_index":10594,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["a[end",{"_index":6021,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["a[i",{"_index":5517,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["a[start",{"_index":6022,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["a[учеб",{"_index":10602,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["a_func(self",{"_index":2424,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["a_funct",{"_index":3709,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["a_nam",{"_index":2389,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["aa",{"_index":9308,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["aaabbaaa",{"_index":5535,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["aarch64",{"_index":11370,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abbr",{"_index":11160,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["abc",{"_index":2601,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/posts/python-snippets/":{}},"description":{}}],["abc123\".isalnum",{"_index":2599,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["abcd",{"_index":6097,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["abcddeef",{"_index":10810,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["abil",{"_index":11878,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["about:blank",{"_index":324,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["abov",{"_index":9444,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/posts/emoji-support":{}},"description":{}}],["absolut",{"_index":8160,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["ac",{"_index":6096,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/featured-image":{}},"description":{}}],["academia.edu",{"_index":11737,"title":{},"content":{"/p/publications":{}},"description":{}}],["acc",{"_index":5599,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["access",{"_index":271,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{},"/apps/npm/cognito-token-observer/":{}}}],["access/consum",{"_index":9903,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["access123",{"_index":9353,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["access_key",{"_index":6526,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["access_token",{"_index":9892,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["access_token_secret",{"_index":9893,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accesstoken",{"_index":9907,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accesstokensecret",{"_index":9908,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accordingli",{"_index":703,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["account",{"_index":6501,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day19/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["account:\\n%+v\\n",{"_index":9932,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accounts(nam",{"_index":6503,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["accumsan",{"_index":10550,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["accumul",{"_index":2962,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["acid",{"_index":6797,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["acm",{"_index":5139,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["aco",{"_index":2061,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["act",{"_index":10374,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["action",{"_index":5377,"title":{"/tracks/90daysofdevops/day75":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["action='store_const",{"_index":2966,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["action@4.1.1",{"_index":11087,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actions/checkout@v2",{"_index":7224,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actions/setup",{"_index":7225,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actions_deploy_key",{"_index":11026,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actionset",{"_index":6460,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["actionset'ов",{"_index":6580,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["activ",{"_index":8695,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["actual",{"_index":10195,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ad",{"_index":582,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["adapt",{"_index":1495,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["adapter.j",{"_index":1035,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["adc",{"_index":9506,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["add",{"_index":575,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["add(2",{"_index":3712,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["add(5",{"_index":3691,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/posts/python-snippets/":{}},"description":{}}],["add(a",{"_index":3711,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["add(self",{"_index":6269,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["add(x",{"_index":10773,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add(y=6",{"_index":10774,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10",{"_index":10801,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(3",{"_index":10803,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(i",{"_index":10809,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["adder",{"_index":10800,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["adder(i",{"_index":10799,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["addeventlistener('icecandid",{"_index":1092,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["addicecandid",{"_index":1122,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["addit",{"_index":8814,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["addon",{"_index":6423,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["addons=ingress",{"_index":7525,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["addr",{"_index":8471,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["address",{"_index":1354,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["addressprefix",{"_index":9001,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["addressspac",{"_index":9000,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["adhoc",{"_index":6724,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["adipis",{"_index":11111,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["adjust",{"_index":5167,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["admin",{"_index":3107,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["adminpassword",{"_index":8946,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["adminusernam",{"_index":8945,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["adopt",{"_index":10092,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["advanc",{"_index":6413,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["advis",{"_index":10959,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ae",{"_index":10363,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["aec",{"_index":6098,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["aenean",{"_index":10471,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ag",{"_index":1964,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["again",{"_index":10228,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["against",{"_index":9904,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["age(self",{"_index":10834,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.delet",{"_index":10836,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.sett",{"_index":10835,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age=25",{"_index":3731,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["age=30",{"_index":3773,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["agent",{"_index":7298,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["agent:v2.6.3",{"_index":8233,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["aggreg",{"_index":10025,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["agil",{"_index":10107,"title":{"/tracks/90daysofdevops/day04":{}},"content":{"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day04":{}}}],["agnost",{"_index":7879,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["ahv",{"_index":8012,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["ai",{"_index":11633,"title":{"/photos/midjourney/":{},"/photos/ai/":{}},"content":{},"description":{"/photos/midjourney/":{},"/photos/ai/":{}}}],["ain't",{"_index":8502,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["ak",{"_index":8291,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["al",{"_index":9826,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["alert('getusermedia",{"_index":949,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["alert('hello",{"_index":11210,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["alertmanag",{"_index":6940,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["algorithm",{"_index":6286,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["algorithmica",{"_index":6283,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["alia",{"_index":8431,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["alic",{"_index":3531,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/markdown-syntax/":{}},"description":{}}],["alice’",{"_index":1144,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["align",{"_index":10447,"title":{},"content":{"/posts/math-support":{},"/posts/emoji-support":{}},"description":{}}],["aliquam",{"_index":10483,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["aliquet",{"_index":10496,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["all_the_args(**kwarg",{"_index":10790,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(*arg",{"_index":10789,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(1",{"_index":10786,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(a=3",{"_index":10791,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(arg",{"_index":10784,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["allow",{"_index":269,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["allowapptodb",{"_index":9125,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["allowinternettoweb",{"_index":9121,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["allowj",{"_index":11416,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowsyntheticdefaultimport",{"_index":11419,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowwebtoapp",{"_index":9123,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["along",{"_index":5041,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["alpha",{"_index":10961,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["alpha.1",{"_index":7985,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["alreadi",{"_index":5783,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["altern",{"_index":6128,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["altitud",{"_index":6144,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{},"description":{}}],["alway",{"_index":836,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["amazon",{"_index":5078,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/aws-certified-developer-associate/ec2/":{},"/apps/npm/cognito-token-observer/":{}}}],["amazonec2readonlyaccess",{"_index":5306,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["amd",{"_index":9473,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["amend",{"_index":8865,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["american",{"_index":3986,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["amet",{"_index":10502,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["ami",{"_index":5412,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["amount",{"_index":10257,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["amp",{"_index":987,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["amplifi",{"_index":5108,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["anaconda",{"_index":3176,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["analit",{"_index":11838,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["analysi",{"_index":6141,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["analyt",{"_index":5077,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["anatomi",{"_index":10204,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ancestor",{"_index":5863,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"content":{},"description":{}}],["and/or",{"_index":10675,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["andaepu",{"_index":11131,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["android",{"_index":1604,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/posts/emoji-support":{}},"description":{}}],["angular",{"_index":8802,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["anim",{"_index":3845,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["annot",{"_index":6612,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["annotations\":{\"storageclass.kubernetes.io/i",{"_index":6618,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["anoth",{"_index":5159,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day46":{},"/posts/diagram-support":{},"/posts/markdown-syntax/":{}},"description":{}}],["another_tupl",{"_index":3371,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["anotherday",{"_index":9805,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["ansh",{"_index":1800,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ansibl",{"_index":7509,"title":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ansible.builtin.p",{"_index":7705,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["ansible.builtin.setup",{"_index":7702,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["ansible.com",{"_index":7517,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["ansible/terraform",{"_index":7793,"title":{"/tracks/90daysofdevops/day63":{}},"content":{},"description":{}}],["ansible_facts['nodenam",{"_index":7578,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["ansible_os_famili",{"_index":7699,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["answer",{"_index":513,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["answer.append(prefix[i",{"_index":5841,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["answer[i",{"_index":5826,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["ant",{"_index":7413,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/posts/featured-image":{}},"description":{}}],["antu%c3%b1a",{"_index":11097,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["any((x",{"_index":10649,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["any.whl",{"_index":10988,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ap",{"_index":8017,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["apa",{"_index":3985,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["apach",{"_index":7415,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day18":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["apache2",{"_index":7563,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["apache2_install.yml",{"_index":7682,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["api",{"_index":35,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day13":{}}}],["apiserv",{"_index":6425,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["apivers",{"_index":6532,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["aplic",{"_index":9758,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["apm",{"_index":6976,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["app",{"_index":1386,"title":{"/tracks/90daysofdevops/day74":{},"/photos/icons/":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/apps/brewmate/":{}},"description":{"/photos/icons/":{},"/apps/brewmate/":{}}}],["app.config['elastic_apm",{"_index":10418,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["app.config['sqlalchemy_database_uri",{"_index":3021,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["app.delete(\"/tasks/{task_id",{"_index":3095,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.get(\"/task",{"_index":3078,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.get(\"/tasks/{task_id",{"_index":3082,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.kubernetes.io/inst",{"_index":6543,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app.kubernetes.io/instance=flu",{"_index":7013,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.kubernetes.io/manag",{"_index":7014,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.kubernetes.io/name=flu",{"_index":7016,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.kubernetes.io/version=1.8.14",{"_index":7017,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.listen(8888",{"_index":3006,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["app.on('activ",{"_index":11441,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.on('window",{"_index":11438,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.post(\"/task",{"_index":3088,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.put(\"/tasks/{task_id",{"_index":3093,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.quit",{"_index":11440,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.route('/book",{"_index":3031,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["app.tsx",{"_index":11406,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.update.en",{"_index":327,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["app.whenready().then(createwindow",{"_index":11437,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app/mysql",{"_index":6582,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app/s3",{"_index":6583,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app=prometheus,component=serv",{"_index":7143,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["app_nam",{"_index":3112,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["app_name=mi",{"_index":6473,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app_ns=${app_nam",{"_index":6491,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["appconfig",{"_index":5124,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["append",{"_index":895,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["appendnumber(arr",{"_index":2292,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["appl",{"_index":3376,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day28":{},"/posts/emoji-support":{},"/posts/markdown-syntax/":{}},"description":{}}],["appli",{"_index":7191,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["applic",{"_index":840,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/cloud-exam-quizz/":{},"/apps/brewmate/":{}},"description":{}}],["applications,servic",{"_index":5416,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["applyconstraint",{"_index":824,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["approach",{"_index":5409,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["approv",{"_index":8051,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["approxim",{"_index":10974,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["apprtc",{"_index":1199,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["apps/v1",{"_index":8173,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["appserv",{"_index":9124,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["appservic",{"_index":9255,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["appsync",{"_index":5084,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["apt",{"_index":3660,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["arc",{"_index":9254,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["arch=amd64",{"_index":9730,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["architect",{"_index":5200,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["architectur",{"_index":5194,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["archiv",{"_index":9177,"title":{"/posts/archive/":{}},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["archive.tar",{"_index":11613,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["arcu",{"_index":10504,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["area",{"_index":2552,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["area(self",{"_index":2536,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arg",{"_index":2331,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/posts/python-snippets/":{}},"description":{}}],["arg1",{"_index":2111,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["arg1.capit",{"_index":2112,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arg2",{"_index":2110,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["arg2.capit",{"_index":2113,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arg3",{"_index":2343,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["argo",{"_index":7175,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["argocd",{"_index":7174,"title":{"/tracks/90daysofdevops/day76":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["argpars",{"_index":2951,"title":{"/tracks/python-101/standard_library/argparse":{}},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{}},"description":{}}],["argparse.argumentparser(description='process",{"_index":2956,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["argument",{"_index":1397,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{}},"description":{}}],["argv",{"_index":2336,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arista",{"_index":9453,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["arkad",{"_index":6620,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["arm",{"_index":5249,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["arm64",{"_index":8193,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["armv8/aarch64",{"_index":11349,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["around",{"_index":7463,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["arp",{"_index":9533,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["arr",{"_index":2294,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arr.append(4",{"_index":2293,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["array",{"_index":696,"title":{"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["array.array('i",{"_index":2025,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["array.from(clon",{"_index":11464,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.from(obj",{"_index":11465,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.isarray(obj",{"_index":11461,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.prototype.foreach",{"_index":11454,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.push.apply(array",{"_index":1396,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["array[i",{"_index":5663,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["array_obj",{"_index":2312,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arraybuff",{"_index":884,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["arraybufferview",{"_index":885,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["arraylist",{"_index":2302,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arraylist([1",{"_index":2313,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["artifacthub",{"_index":8204,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["artifactsin.mysqlclouddump.keyvalue.s3path",{"_index":6570,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["asd",{"_index":11657,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["asg",{"_index":9118,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["asgi",{"_index":3063,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["asjob",{"_index":9047,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["ask",{"_index":1345,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["aslink",{"_index":11336,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["assert",{"_index":3767,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["assertequ",{"_index":3212,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["assertionerror",{"_index":3770,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["asset",{"_index":11204,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["assetprefix",{"_index":11067,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["associ",{"_index":3988,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["asteroid",{"_index":5452,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["asteroidcollision(asteroid",{"_index":5463,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["async",{"_index":388,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["async/await",{"_index":621,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["async_iter",{"_index":2938,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asynchron",{"_index":443,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["asyncio",{"_index":2924,"title":{"/tracks/python-101/standard_library/asyncio":{}},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["asyncio.gath",{"_index":2940,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.gather(coroutine1",{"_index":2947,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.get_event_loop",{"_index":2934,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.sleep(1",{"_index":2943,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.sleep(2",{"_index":2946,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["athena",{"_index":5079,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["atlanti",{"_index":7877,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["atom",{"_index":6798,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["attach",{"_index":8429,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["attribut",{"_index":1939,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["attributeerror",{"_index":1949,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["audio",{"_index":286,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/posts/python-snippets/":{}},"description":{}}],["audioinput",{"_index":651,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["audiooutput",{"_index":652,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["audit",{"_index":5189,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["augu",{"_index":10486,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["aurora",{"_index":5102,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["aut",{"_index":11117,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["auth",{"_index":255,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["auth.tokenauth.enabled=tru",{"_index":6433,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["authent",{"_index":9241,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["author",{"_index":3030,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["author=request.json['author",{"_index":3048,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["author=request.post.get('author",{"_index":3127,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["authorid",{"_index":3920,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["auto",{"_index":8050,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["auto.tfvar",{"_index":8003,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["autoclose_load",{"_index":11007,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["autom",{"_index":7513,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["automat",{"_index":1514,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["autoplay",{"_index":752,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["autosuggest",{"_index":9636,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["autosuggestions.git",{"_index":9634,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["avail",{"_index":734,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["availability_zon",{"_index":8023,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["averag",{"_index":10606,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["avoid",{"_index":7303,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["aw",{"_index":5008,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/apps/cloud-exam-quizz/":{}}}],["await",{"_index":346,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["away",{"_index":6280,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["awesom",{"_index":3424,"title":{"/photos/icons/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{}},"description":{"/photos/icons/":{}}}],["awk",{"_index":9829,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["aws_inst",{"_index":8019,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["aws_security_group.allow_web.nam",{"_index":8026,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["awx",{"_index":7511,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["awx.ansible.com/v1beta1",{"_index":7530,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["ax",{"_index":10996,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ax.scatter(x",{"_index":10998,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["az",{"_index":8931,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["azaccount",{"_index":9145,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["azresourcegroup",{"_index":9023,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["azresourcegroupdeploy",{"_index":9017,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["azur",{"_index":7122,"title":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}}}],["azurechinacloud",{"_index":9277,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["azureusgovern",{"_index":9276,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["azvm",{"_index":9025,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["azvmextens",{"_index":9028,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["azwebapp",{"_index":9094,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["b",{"_index":17,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b(a",{"_index":2392,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["b(load",{"_index":10599,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["b.init(self",{"_index":2402,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["b.obj",{"_index":11468,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b2b",{"_index":9237,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["b8f8",{"_index":8920,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["b=10",{"_index":3727,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["b=2",{"_index":3718,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["b=4",{"_index":10788,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["b[2",{"_index":6248,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[5",{"_index":6239,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[j",{"_index":5518,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["b[l",{"_index":6247,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[load",{"_index":10595,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["b[r",{"_index":6245,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[учеб",{"_index":10603,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["b_func(self",{"_index":2427,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["b_name",{"_index":2393,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["back",{"_index":5214,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["backend",{"_index":6630,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["background",{"_index":11252,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["backup",{"_index":6343,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["backup.txt",{"_index":9421,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["balanc",{"_index":5133,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{},"/posts/diagram-support":{}},"description":{}}],["bamboo",{"_index":7412,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["banana",{"_index":3387,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/posts/markdown-syntax/":{}},"description":{}}],["band",{"_index":7844,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["bank",{"_index":3905,"title":{},"content":{"/tracks/disser/articles-notes":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["banner",{"_index":8816,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["bar",{"_index":1923,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["bare",{"_index":8343,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["bark",{"_index":3679,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["barrier",{"_index":4641,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["base",{"_index":1550,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/posts/docker-commands/":{}},"description":{}}],["base64",{"_index":6403,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["base_object",{"_index":2509,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["base_object.method",{"_index":2516,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["baseclass",{"_index":2498,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["baseclass.method",{"_index":2517,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["basemodel",{"_index":3071,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["baseof.html",{"_index":11292,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["basepath",{"_index":11066,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["bash",{"_index":6497,"title":{"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day19/":{}}}],["bash_profil",{"_index":9616,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["bashrc",{"_index":9615,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["basic",{"_index":5215,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["basicus",{"_index":8485,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["bat",{"_index":7222,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/python-snippets/":{}},"description":{}}],["bat.init(self",{"_index":10912,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bat.pi",{"_index":10895,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batch",{"_index":5347,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["batman",{"_index":10904,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batman(superhero",{"_index":10905,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bcdedit",{"_index":9481,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["be",{"_index":8039,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["beanstalk",{"_index":5094,"title":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}}}],["beat",{"_index":7068,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["becom",{"_index":7555,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["befor",{"_index":10349,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["beg",{"_index":10932,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["beg(target_funct",{"_index":10935,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["begin",{"_index":5264,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["beginn",{"_index":6837,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["beginner'",{"_index":9653,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["begin{align",{"_index":10448,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["begin{bmatrix",{"_index":10443,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["begin{pmatrix",{"_index":10439,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["begin{vmatrix",{"_index":10445,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["below",{"_index":10586,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["bento/ubuntu",{"_index":7713,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["best",{"_index":5201,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["beta",{"_index":171,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["bi",{"_index":4405,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["big",{"_index":6606,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["bin",{"_index":9734,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["bin/bash",{"_index":10240,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["bin/cat",{"_index":7390,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["bin/sh",{"_index":8563,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["binari",{"_index":5864,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["binary_nam",{"_index":9978,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name=90daysofdevop",{"_index":9972,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_darwin",{"_index":9963,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_darwin_arm64",{"_index":9970,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_linux",{"_index":9965,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_linux_arm64",{"_index":9969,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_window",{"_index":9967,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_darwin",{"_index":9973,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_darwin_arm64",{"_index":9977,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_linux",{"_index":9974,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_linux_arm64",{"_index":9976,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_window",{"_index":9975,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["bind",{"_index":7638,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/posts/docker-commands/":{}},"description":{}}],["bing",{"_index":9280,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["bisect",{"_index":5818,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["bisect_left",{"_index":5819,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["bisect_left(row",{"_index":5822,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["bit",{"_index":6251,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["bit.conf",{"_index":7027,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["bitbucket",{"_index":8685,"title":{"/tracks/90daysofdevops/day40":{}},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["bitmap",{"_index":11165,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bitnami",{"_index":6475,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["bitnami/mysql",{"_index":6477,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["bitwis",{"_index":10674,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bj",{"_index":1852,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["black",{"_index":3864,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["blandit",{"_index":10465,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["blank",{"_index":11894,"title":{"/_home/blank":{}},"content":{},"description":{}}],["blink",{"_index":108,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["blob",{"_index":883,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["block",{"_index":1900,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/emoji-support":{}},"description":{}}],["blockquot",{"_index":11125,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["blog",{"_index":5222,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["blue",{"_index":5325,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["blueprint",{"_index":6459,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["blueprint.yml",{"_index":6576,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["bluetooth",{"_index":672,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["blur(4px",{"_index":1257,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["boast(self",{"_index":10870,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bob",{"_index":11145,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bodi",{"_index":6860,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["bold",{"_index":11148,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["book",{"_index":3034,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/apps/_index":{}},"description":{}}],["book(db.model",{"_index":3025,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book(title=request.json['titl",{"_index":3047,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.author",{"_index":3039,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.delet",{"_index":3142,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.id",{"_index":3037,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.objects.al",{"_index":3122,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.published_d",{"_index":3138,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.query.al",{"_index":3035,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.query.get(book_id",{"_index":3042,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.sav",{"_index":3129,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.titl",{"_index":3038,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{}},"description":{}}],["book_id",{"_index":3133,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["bool",{"_index":1853,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["bool(0",{"_index":10676,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(4",{"_index":10677,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(int",{"_index":10673,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["boolean",{"_index":794,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["boot",{"_index":9735,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["bosch",{"_index":7440,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["bot",{"_index":9279,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["bottlerocket",{"_index":8293,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["bottom",{"_index":5255,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["bourn",{"_index":10227,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["box",{"_index":896,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["br",{"_index":9329,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["branch",{"_index":7347,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["break",{"_index":1975,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/posts/python-snippets/":{}},"description":{}}],["breed",{"_index":3850,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["brew",{"_index":3656,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["brewmat",{"_index":11873,"title":{"/apps/brewmate/":{}},"content":{"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["bridg",{"_index":7734,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["brief",{"_index":5170,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["broadcast",{"_index":1402,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["broker",{"_index":11180,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{}}}],["browser",{"_index":841,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["browser.cache.disk.capac",{"_index":312,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.cache.disk.en",{"_index":310,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.cache.disk.smart_size.en",{"_index":314,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.cache.disk.smart_size.first_run",{"_index":315,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.sessionstore.resume_from_crash",{"_index":316,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.shell.checkdefaultbrows",{"_index":330,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.startup.firstrunskipshomepag",{"_index":325,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.startup.homepag",{"_index":323,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.startup.pag",{"_index":317,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser=non",{"_index":11445,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow",{"_index":11426,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow.getallwindows().length",{"_index":11442,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["bst",{"_index":6363,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["bucket",{"_index":6524,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["buddi",{"_index":3866,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["bug",{"_index":7460,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["build",{"_index":5182,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["build/index.html",{"_index":11435,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["build_and_run",{"_index":9979,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["build_id",{"_index":7288,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["build_tre",{"_index":6238,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(a",{"_index":6206,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(array",{"_index":6200,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["buildbot",{"_index":7414,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["builder",{"_index":11409,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["buildid",{"_index":11056,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["built",{"_index":3497,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["builtins.str",{"_index":3498,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["busi",{"_index":5233,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["button",{"_index":875,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day38":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["button.addeventlistener('click",{"_index":11266,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["by=helm",{"_index":7015,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["byte",{"_index":970,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["byte(",{"_index":982,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["bzip2",{"_index":11628,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["c",{"_index":800,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/lists":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["c('child",{"_index":2407,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c(a",{"_index":2429,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c(b",{"_index":2398,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c01",{"_index":5011,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c02",{"_index":5012,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c5",{"_index":8464,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["c:\\program",{"_index":6738,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["c:\\users\\micha/.ssh",{"_index":9667,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevop",{"_index":6747,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevops\\days\\cloud\\01virtualnetworking\\mod04_90daysofdevop",{"_index":9020,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevops\\days\\cloud\\02trafficmanagement\\mod06_90daysofdevop",{"_index":9022,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevops\\days\\cloud\\03storage\\mod07_90daysofdevop",{"_index":9046,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["c:\\users\\username\\.kube\\config",{"_index":8287,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["c[k",{"_index":5519,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["c[server1",{"_index":10596,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["c[учеб",{"_index":10604,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["c_func(self",{"_index":2430,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c_name",{"_index":2401,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ca",{"_index":8236,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["caa",{"_index":9310,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["cach",{"_index":329,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["cade",{"_index":10190,"title":{"/authors/michael-cade/_index":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["caffein",{"_index":9642,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["calcul",{"_index":9879,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["calculate_sum(self",{"_index":6221,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["call",{"_index":1047,"title":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day51":{},"/posts/emoji-support":{}},"description":{}}],["callabl",{"_index":1885,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["callback",{"_index":657,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["callback(filt",{"_index":664,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["callbutton.dis",{"_index":1117,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["camera",{"_index":666,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["camera.deviceid",{"_index":692,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["camera.label",{"_index":690,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraid",{"_index":728,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraopt",{"_index":687,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraoption.label",{"_index":689,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraoption.valu",{"_index":691,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameras.length",{"_index":732,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameras.map(camera",{"_index":686,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["can_fli",{"_index":10899,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=fals",{"_index":10913,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=tru",{"_index":10897,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["canari",{"_index":123,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["candid",{"_index":567,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["candidate:\\n",{"_index":1134,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["canon",{"_index":7852,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["canplaceflowers(flowerb",{"_index":6091,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["cant",{"_index":2453,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["canva",{"_index":928,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["cap",{"_index":9197,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["capabl",{"_index":725,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["capit",{"_index":2107,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["captur",{"_index":287,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["case",{"_index":3503,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["casefold",{"_index":3456,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["cask",{"_index":3701,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["cassandra",{"_index":6775,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["cat",{"_index":3862,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["cat(\"luna",{"_index":3863,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["cat(anim",{"_index":3854,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["cat.speak",{"_index":3873,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["catalina",{"_index":11891,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["catch",{"_index":580,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["catch((error",{"_index":1131,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["catch(error",{"_index":617,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["catch(function(",{"_index":948,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["catch(handlelocalmediastreamerror",{"_index":1113,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["catch(setsessiondescriptionerror",{"_index":1158,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["cbc",{"_index":10370,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["cc",{"_index":10211,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["cc%20bi",{"_index":10223,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["cd",{"_index":5397,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["cd/stable/manifests/install.yaml",{"_index":7193,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["cdk",{"_index":5038,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cdn",{"_index":11200,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["ce",{"_index":9647,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["ceil",{"_index":10812,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["celebr",{"_index":5766,"title":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["center",{"_index":3457,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["cento",{"_index":9845,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["central",{"_index":10338,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["certain",{"_index":697,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["certif",{"_index":5138,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/apps/_index":{}},"description":{}}],["certifi",{"_index":5009,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["certificatesigningrequest",{"_index":8313,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["cf",{"_index":11612,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["challeng",{"_index":6290,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["challenge.\\nthi",{"_index":9870,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["challenge=\"90daysofdevop",{"_index":10245,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["challenge\\n",{"_index":9884,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["challengenam",{"_index":10255,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["challengename=#90daysofdevop",{"_index":10253,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["chan",{"_index":9397,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.recv(999999",{"_index":9407,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send('enable\\n",{"_index":9399,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send('sh",{"_index":9404,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send('term",{"_index":9402,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send(enable_password",{"_index":9400,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chang",{"_index":701,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["changem",{"_index":7079,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["channel",{"_index":445,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["char",{"_index":5534,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["char.isdigit",{"_index":5605,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["char_count",{"_index":5617,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["char_count.get(char",{"_index":5619,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["char_count[char",{"_index":5618,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["charact",{"_index":3502,"title":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{}},"description":{}}],["chars[write_ptr",{"_index":5546,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["chart",{"_index":7008,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["chart/graph/diagram",{"_index":10587,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["chart=jenkinsci/jenkin",{"_index":7378,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["chat",{"_index":1444,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["chatgpt/rugpt",{"_index":10429,"title":{"/posts/ruGPT-3-notes":{}},"content":{},"description":{}}],["cheat",{"_index":6951,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day17":{},"/posts/emoji-support":{},"/posts/docker-commands/":{}},"description":{}}],["cheatsheet",{"_index":8687,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["check",{"_index":7221,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-install-rhel-9-free/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["check_neighbors(n",{"_index":6092,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["checkout",{"_index":7234,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["checkov",{"_index":7862,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["checksum",{"_index":8237,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["chees",{"_index":11159,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["chef",{"_index":7810,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["chenhan/ubuntu",{"_index":9850,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["cherri",{"_index":3623,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{}},"description":{}}],["chicago",{"_index":3977,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["child",{"_index":2378,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(\"interviewbit",{"_index":2456,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(\"parentnam",{"_index":2446,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(par",{"_index":2441,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(parent1",{"_index":2420,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child_func(self",{"_index":2380,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["childclass",{"_index":2384,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["childclass(parentclass",{"_index":2379,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["chmod",{"_index":5395,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["chocolatey",{"_index":8201,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["choic",{"_index":10368,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["choos",{"_index":1508,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["chosen",{"_index":5154,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["choudhari",{"_index":9989,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["chown",{"_index":7384,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["chpasswd",{"_index":10267,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["chrome",{"_index":13,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["chrome://about",{"_index":1176,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["chrome://flag",{"_index":142,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["chrome://webrtc",{"_index":1172,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["chsh",{"_index":9624,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["chunk",{"_index":969,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/basis/file_io":{}},"description":{}}],["chunk_len",{"_index":972,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["ci",{"_index":285,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ci/cd",{"_index":7209,"title":{"/tracks/90daysofdevops/day70":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["cicd",{"_index":7204,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["cidr",{"_index":5352,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cio",{"_index":10101,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["cipher",{"_index":10364,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["cisco",{"_index":9433,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["cisco_io",{"_index":9352,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["cite",{"_index":11127,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["citi",{"_index":3367,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["city='london",{"_index":3774,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["city='new",{"_index":3732,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["civo",{"_index":8294,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["cjf",{"_index":11629,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["cl",{"_index":3254,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["class",{"_index":1958,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{},"/apps/_index":{}},"description":{}}],["class1",{"_index":2412,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["class2",{"_index":2416,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["class=tru",{"_index":6615,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["classmethod",{"_index":3252,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["clean",{"_index":1476,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["clear",{"_index":3780,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["cli",{"_index":5127,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["click",{"_index":888,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/brewmate/":{}},"description":{}}],["client",{"_index":454,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["client(",{"_index":1411,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["client.accounts.verifycredentials(verifyparam",{"_index":9929,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["client.statuses.update(\"a",{"_index":9944,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["client.statuses.update(messag",{"_index":9955,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["clientid",{"_index":1349,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["clientsinroom",{"_index":1406,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["clone",{"_index":1491,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["clone.length",{"_index":11463,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["clone/get",{"_index":7273,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["clone[key",{"_index":11457,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["close",{"_index":807,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["closebutton.dis",{"_index":1579,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["closur",{"_index":3322,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["closure(5",{"_index":3324,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["cloud",{"_index":5036,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["cloud9",{"_index":5109,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudacademi",{"_index":5155,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cloudacademylab",{"_index":5265,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cloudbe",{"_index":7438,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["cloudform",{"_index":5035,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["cloudfront",{"_index":5131,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudshel",{"_index":5110,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudtrail",{"_index":5125,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudwatch",{"_index":5086,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["cls.speci",{"_index":10831,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cluster",{"_index":6836,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["cluster:node_cpu:ratio",{"_index":6931,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["clusterip",{"_index":7203,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["cm",{"_index":8316,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["cmath",{"_index":2059,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["cmath.exp",{"_index":2066,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["cmd",{"_index":9150,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["cncf",{"_index":8368,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["co",{"_index":4529,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["code",{"_index":2382,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["code.txt",{"_index":8742,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["code\\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\\nenabled=1\\ngpgcheck=1\\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc",{"_index":11395,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["code]\\nname=visu",{"_index":11394,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["codeartifact",{"_index":5111,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codebuild",{"_index":5112,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codec",{"_index":10335,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["codecommit",{"_index":5113,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codedeploy",{"_index":5114,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codeforc",{"_index":6287,"title":{"/tracks/algorithms-101/codeforces/_index":{}},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{"/tracks/algorithms-101/codeforces/_index":{}}}],["codeguru",{"_index":5115,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codelab",{"_index":988,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["codepipelin",{"_index":5116,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codestar",{"_index":5117,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cognito",{"_index":5140,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["col",{"_index":5797,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["collect",{"_index":5503,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/python-snippets/":{}},"description":{}}],["collis",{"_index":5453,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{},"description":{}}],["colon",{"_index":8827,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["color",{"_index":3855,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/emoji-support":{}},"description":{}}],["column",{"_index":5880,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["combo_list",{"_index":3638,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["combo_list.extend(one_list",{"_index":3640,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["command",{"_index":1336,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["command+option+j",{"_index":1248,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["comment",{"_index":8972,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["commit",{"_index":8556,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/docker-commands/":{}},"description":{}}],["committe",{"_index":3909,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["commodi",{"_index":11118,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["commodo",{"_index":10514,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["common",{"_index":5862,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["common.sh",{"_index":8223,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["common_variables.yml",{"_index":7588,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["commun",{"_index":444,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day78":{},"/posts/markdown-syntax/":{}},"description":{}}],["community.github.io/helm",{"_index":7135,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["community.mysql.mysql_us",{"_index":7625,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["community/prometheu",{"_index":7139,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["compani",{"_index":5401,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["compat",{"_index":8043,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["competit",{"_index":6284,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["compil",{"_index":2288,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["compileropt",{"_index":11412,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["complet",{"_index":550,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["complex",{"_index":1851,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["complianc",{"_index":5137,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["compon",{"_index":10346,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["componentstatus",{"_index":8315,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["compos",{"_index":7076,"title":{"/tracks/90daysofdevops/day46":{}},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["compose.yml",{"_index":8497,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["comprehens",{"_index":2122,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["compress",{"_index":5533,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{},"description":{}}],["compress(char",{"_index":5543,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["comput",{"_index":5091,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["compute_pi(100000",{"_index":10973,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["compute_pi(n",{"_index":10970,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["computeapivers",{"_index":8963,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["computernam",{"_index":8976,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat('microsoft.network/virtualnetwork",{"_index":9009,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat(parameters('vmname'),copyindex",{"_index":8966,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat(variables('nic'),copyindex",{"_index":8974,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat(variables('subnetname'),copyindex",{"_index":9013,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concept",{"_index":5231,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["concurr",{"_index":11408,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["conda",{"_index":3177,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["condimentum",{"_index":10475,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["condit",{"_index":2649,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/operators":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/docker-commands/":{}},"description":{}}],["confer",{"_index":4523,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["config",{"_index":2904,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["config.client(oauth1.nocontext",{"_index":9919,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["config.get('databas",{"_index":2912,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.json",{"_index":7342,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["config.read('config.ini",{"_index":2905,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.set('databas",{"_index":2913,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.set('sect",{"_index":2907,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.vm.base_address",{"_index":7724,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["config.vm.box",{"_index":8261,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["config.vm.box_check_upd",{"_index":8262,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["config.vm.defin",{"_index":7727,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["config.vm.provid",{"_index":9851,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["config.vm.provis",{"_index":8258,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["config.write(f",{"_index":2909,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.yaml",{"_index":10592,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["config/enterpris",{"_index":10354,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["config/filebeat.yml",{"_index":10340,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["config/metricbeat.yml",{"_index":10327,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["config_path",{"_index":7900,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["configmap",{"_index":7011,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["configpars",{"_index":2901,"title":{"/tracks/python-101/standard_library/configparser":{}},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["configparser.configpars",{"_index":2903,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["configur",{"_index":494,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["confirm",{"_index":10424,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["congu",{"_index":10536,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["connect",{"_index":417,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["connecthandl",{"_index":9348,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["connecthandler(**devic",{"_index":9359,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["connecthandler(**sw2",{"_index":9373,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["connectionstatechang",{"_index":586,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["consectetur",{"_index":10525,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["consecut",{"_index":6014,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{},"description":{}}],["consequat",{"_index":10555,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["consequuntur",{"_index":11112,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["consist",{"_index":6799,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["consol",{"_index":1220,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["console.error('error",{"_index":618,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["console.error(‘error",{"_index":581,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["console.log('camera",{"_index":667,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["console.log('get",{"_index":945,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["console.log('got",{"_index":616,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["console.log('load",{"_index":5276,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log('messag",{"_index":1344,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["console.log('navigator.getusermedia",{"_index":1222,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["console.log('send",{"_index":980,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["console.log(json.stringify(ev",{"_index":5279,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log.apply(consol",{"_index":1359,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["consolid",{"_index":5044,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["const",{"_index":248,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["const=sum",{"_index":2967,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["constant",{"_index":10193,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["constraint",{"_index":613,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["constraintboolean",{"_index":790,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constraintdomstr",{"_index":792,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constraintdoubl",{"_index":791,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constraintlong",{"_index":789,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constructor",{"_index":2396,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["consult",{"_index":5208,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["consum",{"_index":9913,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumer_key",{"_index":9890,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumer_secret",{"_index":9891,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumerkey",{"_index":9905,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumersecret",{"_index":9906,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["contain",{"_index":3434,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{}},"description":{}}],["container('kaniko",{"_index":7352,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["container('maven",{"_index":7348,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["container('shel",{"_index":7311,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["container_cpu_usage_seconds_tot",{"_index":7146,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["container_port",{"_index":7909,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["containerd",{"_index":8282,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["containerd.io",{"_index":9646,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["containerport",{"_index":8175,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["containers/app",{"_index":8584,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["containertempl",{"_index":7304,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["content",{"_index":3737,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/emoji-support":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["content/tracks/python",{"_index":3100,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["content=\"0",{"_index":11341,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["contentservice.createtextoutput",{"_index":11486,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["contentvers",{"_index":8941,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["context",{"_index":3277,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["context.succe",{"_index":5289,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["context.succeed(\"us",{"_index":5284,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["contextlib",{"_index":3274,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["contextmanag",{"_index":3269,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["contin",{"_index":7441,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["continin",{"_index":7448,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["continu",{"_index":1976,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["contract",{"_index":11562,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["contribut",{"_index":5206,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["contributor",{"_index":9250,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["control",{"_index":760,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["controlplan",{"_index":8228,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["conval",{"_index":10503,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["conveni",{"_index":1395,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["convent",{"_index":7860,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["convert",{"_index":2084,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/apps/_index":{}},"description":{}}],["cook",{"_index":5288,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cook_sec",{"_index":5271,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cookbook",{"_index":7816,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["cooki",{"_index":9136,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["cool",{"_index":9175,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["copi",{"_index":2186,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day18":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["copilot",{"_index":5096,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["copy(list_1",{"_index":2196,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["core",{"_index":7153,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["core.editor",{"_index":8873,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["core.windows.net",{"_index":9152,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["core/ppa",{"_index":8890,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["core_sw_config",{"_index":9364,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["coredn",{"_index":8435,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["coroutine1",{"_index":2941,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["coroutine2",{"_index":2944,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["correct",{"_index":8819,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["correctli",{"_index":10589,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["cosmo",{"_index":9190,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["coturn",{"_index":223,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["count",{"_index":3385,"title":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day34":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["count(x",{"_index":3383,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["count.index",{"_index":7989,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["counter",{"_index":1781,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["cours",{"_index":5158,"title":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["course]](https://www.youtube.com/watch?v=7s_tz1z_5ba",{"_index":6841,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["coursera",{"_index":5193,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["coursera'",{"_index":5185,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["courses(fre",{"_index":5186,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cover",{"_index":5064,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["coverag",{"_index":5163,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cp",{"_index":9808,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["cpu",{"_index":7991,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["cpus=4",{"_index":7523,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["cpython",{"_index":2285,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["cr.kanister.io/v1alpha1",{"_index":6533,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["crash",{"_index":6834,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["creat",{"_index":1405,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["create(request",{"_index":3124,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["create.html",{"_index":3131,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["create_adder(10",{"_index":10802,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_adder(x",{"_index":10798,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_book",{"_index":3046,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["create_task(task",{"_index":3089,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["create_user.sh",{"_index":10263,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["createansw",{"_index":508,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createconnect",{"_index":1543,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["createdanswer(descript",{"_index":1164,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createdatachannel",{"_index":860,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["createdoffer(descript",{"_index":1153,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createoff",{"_index":483,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createopt",{"_index":8991,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["createroot",{"_index":11207,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["createroot(contain",{"_index":11215,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["createwindow",{"_index":11428,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["creation",{"_index":1152,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["creativ",{"_index":10215,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["creatur",{"_index":11177,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["cred",{"_index":9935,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["credenti",{"_index":243,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["credentialsneed",{"_index":5415,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["creds.accesstokensecret",{"_index":9917,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["creds.consumersecret",{"_index":9915,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["cri",{"_index":7041,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["criteria",{"_index":5047,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["criterion",{"_index":5051,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["critic",{"_index":2824,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["cron",{"_index":10408,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["cross",{"_index":11410,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["crud",{"_index":3017,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{}},"description":{}}],["crystal",{"_index":10122,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["cs",{"_index":8314,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["csi",{"_index":6327,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["csr",{"_index":8312,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["css",{"_index":1178,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["csv",{"_index":2588,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["ctime",{"_index":2879,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["ctrl",{"_index":1333,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["ctrl+alt+delet",{"_index":11170,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ctrl+shift+j",{"_index":1247,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["cur_max",{"_index":5978,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["curabitur",{"_index":10549,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["curat",{"_index":10405,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["curl",{"_index":7676,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["curr",{"_index":5915,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["curr.next",{"_index":5917,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["curr.val",{"_index":5920,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["curr_num",{"_index":5604,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["curr_str",{"_index":5603,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["current",{"_index":2767,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/apps/_index":{}},"description":{}}],["current_altitud",{"_index":6153,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["current_dir",{"_index":2777,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["current_sum",{"_index":5572,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["current_tim",{"_index":2849,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["cursor",{"_index":835,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["cursu",{"_index":10478,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["custom",{"_index":5287,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["custom_parsers.conf",{"_index":7021,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["cut",{"_index":6399,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["cycl",{"_index":5742,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["czf",{"_index":11625,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["d",{"_index":2629,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{}},"description":{}}],["d+e+f+g",{"_index":10450,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["d[l",{"_index":5520,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["d[server2",{"_index":10597,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["daeemon",{"_index":8597,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["daemon",{"_index":7028,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["daemonless",{"_index":8448,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["daemonset",{"_index":7006,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["daili",{"_index":11348,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["dairi",{"_index":11157,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["danda",{"_index":11132,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["darwin",{"_index":9980,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dasboard",{"_index":5364,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dash",{"_index":9643,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["dashboard",{"_index":6323,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["data",{"_index":882,"title":{"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["data.aws_ami.instance_id.id",{"_index":8020,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["data.pi",{"_index":11000,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["data/jenkin",{"_index":7386,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["data1",{"_index":3222,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data2",{"_index":3223,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data3",{"_index":3224,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data=payload",{"_index":3170,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["data[0",{"_index":3226,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data[start",{"_index":6229,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["databas",{"_index":2915,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/posts/docker-commands/":{}},"description":{}}],["databrick",{"_index":9278,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["datacent",{"_index":8989,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["datachannel",{"_index":861,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.addeventlistener('clos",{"_index":881,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.addeventlistener('messag",{"_index":898,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.addeventlistener('open",{"_index":876,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.send(len",{"_index":983,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["datachannel.send(messag",{"_index":891,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannelrec",{"_index":1596,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["datachannelsend.placehold",{"_index":1544,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["datachannelsend.valu",{"_index":1580,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["dataconstraint",{"_index":1547,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["datadisk",{"_index":8993,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["datadog",{"_index":7117,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["dataop",{"_index":6872,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["date",{"_index":2831,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["date().tolocaletimestr",{"_index":11276,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["date1",{"_index":10628,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["date1).total_second",{"_index":10634,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["date2",{"_index":10632,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["date_object",{"_index":2861,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["date_str",{"_index":2858,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetim",{"_index":2586,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["datetime.date.today",{"_index":2847,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime.datetime(2023",{"_index":10629,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["datetime.datetime.now",{"_index":2844,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["datetime.datetime.now().strftime(\"%i",{"_index":10627,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["datetime.datetime.strptime(date_str",{"_index":2862,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime.time(hour=12",{"_index":2850,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime.timedelta(days=1",{"_index":2866,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime/tim",{"_index":2826,"title":{"/tracks/python-101/standard_library/datetime_time":{}},"content":{},"description":{}}],["day",{"_index":2837,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["day13_example2",{"_index":9895,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["day15",{"_index":9795,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["day19",{"_index":10244,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["day38_git01",{"_index":8789,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["days.\\n",{"_index":9882,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["days\\n",{"_index":9871,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["dayscomplet",{"_index":9873,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["daystot",{"_index":9866,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["dazzling_darwin",{"_index":8430,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["db",{"_index":3023,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["db.column(db.integ",{"_index":3026,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.column(db.string(100",{"_index":3029,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.pop(task_id",{"_index":3097,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["db.session.add(book",{"_index":3049,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.session.commit",{"_index":3050,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.session.delete(book",{"_index":3058,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db01",{"_index":7600,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["db[task_id",{"_index":3087,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["db_data",{"_index":7948,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["db_data:/var/lib/mysql",{"_index":8509,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["db_name",{"_index":2911,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["db_name=my_db",{"_index":2916,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["db_pass",{"_index":7633,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["db_password=secret_password",{"_index":2918,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["db_user",{"_index":7632,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["db_user=user_nam",{"_index":2917,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["dba",{"_index":6856,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["dbserver",{"_index":9126,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["dc5zm",{"_index":6584,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["dd",{"_index":9717,"title":{},"content":{"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{}},"description":{}}],["ddi",{"_index":9508,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["dean",{"_index":7796,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["deb",{"_index":8421,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["debian",{"_index":7708,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["debiti",{"_index":11119,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["debug",{"_index":2822,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["debugg",{"_index":3317,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["declar",{"_index":7295,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["declart",{"_index":7294,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["decod",{"_index":3817,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["decodestring(",{"_index":5602,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["decompos",{"_index":5219,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["decor",{"_index":2083,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["decorator_nam",{"_index":2081,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["deep",{"_index":2199,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["deepclon",{"_index":11455,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(a",{"_index":11466,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(obj[key",{"_index":11460,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepcopi",{"_index":2193,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["deepcopy(list_1",{"_index":2201,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["def",{"_index":1751,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["default",{"_index":146,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["default=0",{"_index":3091,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["default=max",{"_index":2968,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["default_branch",{"_index":7236,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["defaultcontain",{"_index":7313,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["defaultdict",{"_index":5527,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["defaultdict(int",{"_index":5529,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["defaultdict(list",{"_index":5933,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["defaultpathmap",{"_index":11053,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["defaultvalu",{"_index":8950,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["defend",{"_index":9253,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["defin",{"_index":1763,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["definit",{"_index":1959,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/posts/diagram-support":{}},"description":{}}],["del",{"_index":10715,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["delattr",{"_index":3435,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["delet",{"_index":3000,"title":{"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["delete(request",{"_index":3141,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["delete(self",{"_index":2998,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["delete_book(book_id",{"_index":3057,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["delete_task(task_id",{"_index":3096,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["deletefromblobstor",{"_index":6574,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["deletemiddlenode(head",{"_index":5962,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["deletenode(nod",{"_index":5856,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["deliveri",{"_index":1553,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["demo",{"_index":7201,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["demo.yaml",{"_index":6625,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["demo.yml",{"_index":7528,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["demonstr",{"_index":10252,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["deni",{"_index":9116,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["denyallinbound",{"_index":9129,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["depend",{"_index":1367,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/posts/emoji-support":{}},"description":{}}],["depends_on",{"_index":8515,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["dependson",{"_index":8973,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["deploy",{"_index":5026,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["deploy_key",{"_index":11036,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["deployment/nginx",{"_index":8185,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["deposit",{"_index":11183,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["deprec",{"_index":7847,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["depth",{"_index":5555,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dequ",{"_index":5504,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["deque([i",{"_index":5940,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["deriv",{"_index":2426,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object1",{"_index":2510,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object1.method",{"_index":2518,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object2",{"_index":2512,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object2.new_method",{"_index":2520,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object3",{"_index":2514,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object3.method",{"_index":2522,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass",{"_index":2579,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass(baseclass",{"_index":2576,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass1",{"_index":2511,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass1(baseclass",{"_index":2501,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass1.method",{"_index":2519,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass2",{"_index":2513,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass2(baseclass",{"_index":2503,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass2.new_method",{"_index":2521,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass3",{"_index":2515,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass3(baseclass",{"_index":2506,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass3.method",{"_index":2523,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["describ",{"_index":6588,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["descript",{"_index":1140,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["design",{"_index":5228,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/brewmate/":{}},"description":{}}],["desktop",{"_index":7764,"title":{"/tracks/90daysofdevops/day44":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["dest",{"_index":7672,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["dest='accumul",{"_index":2965,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["dest=/etc/apache2/ports.conf",{"_index":7669,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["dest=/etc/mysql/conf.d/mysql.cnf",{"_index":7621,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["destin",{"_index":7355,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day33":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["destinationaddressprefix",{"_index":9086,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["destinationportrang",{"_index":9082,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["destroy",{"_index":8000,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["detach",{"_index":11254,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["detail",{"_index":6140,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["detail=\"task",{"_index":3086,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["details.address",{"_index":1418,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["details.famili",{"_index":1416,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["detect",{"_index":5743,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["dev",{"_index":1183,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dev.to",{"_index":11795,"title":{},"content":{"/p/publications":{}},"description":{}}],["dev/sdb",{"_index":9779,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["develop",{"_index":4525,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["deviantony/dock",{"_index":7077,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["devic",{"_index":619,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["device.kind",{"_index":662,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["device.storage.en",{"_index":321,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["device_typ",{"_index":9351,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["devicechang",{"_index":677,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["deviceid",{"_index":717,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["devices.filter(devic",{"_index":661,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["devop",{"_index":5305,"title":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}}}],["devops90",{"_index":7623,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["devopscube.com",{"_index":7320,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["df",{"_index":5557,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["dfs(node",{"_index":5570,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dfs(node.left",{"_index":5579,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dfs(node.right",{"_index":5580,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dfs(root",{"_index":5583,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dhcp",{"_index":9328,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["diagram",{"_index":5196,"title":{"/posts/diagram-support":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/diagram-support":{}},"description":{}}],["diam",{"_index":10535,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["dict",{"_index":1865,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/dict":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["dict(name='mari",{"_index":3772,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["dict[int",{"_index":3077,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["dict_keys(['on",{"_index":10766,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dictionari",{"_index":88,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/basis/types":{},"/posts/python-snippets/":{}},"description":{}}],["dictum",{"_index":10524,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["diff",{"_index":8741,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["diff.tool",{"_index":8748,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["differ",{"_index":3554,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["difference_in_second",{"_index":10633,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["difference_set",{"_index":3574,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["difference_upd",{"_index":3558,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["difftool",{"_index":8747,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["digit",{"_index":5544,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["dignissim",{"_index":10538,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["dimens",{"_index":2554,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["dimensions(self",{"_index":2547,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["dimensions.sett",{"_index":2548,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["dir",{"_index":2261,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dir(math",{"_index":10818,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dir(my_str",{"_index":3431,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["dir(x",{"_index":3813,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["dir_archive.tar",{"_index":11616,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["dir_archive.tar.bz2",{"_index":11630,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["dir_archive.tar.gz",{"_index":11626,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["dir_exist",{"_index":2785,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["dire",{"_index":5473,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["dire.append(d",{"_index":5514,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["dire.append(i",{"_index":5508,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["dire.popleft",{"_index":5512,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["direct",{"_index":5983,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["directli",{"_index":10560,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["directori",{"_index":2768,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["disabl",{"_index":274,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["disast",{"_index":6313,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["discard",{"_index":3550,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["discount",{"_index":11186,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["discov",{"_index":6971,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["disk",{"_index":9170,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/docker-commands/":{}},"description":{}}],["display",{"_index":829,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day51":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/docker-commands/":{}},"description":{}}],["display(self",{"_index":2443,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["display_names(self",{"_index":2403,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["displaysurfac",{"_index":839,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["dist",{"_index":9958,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["distdir",{"_index":11055,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["distort",{"_index":4650,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["dit",{"_index":8428,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["div",{"_index":11217,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["divisor",{"_index":6160,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["divrender=\"react_count_exampl",{"_index":11243,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["django",{"_index":3102,"title":{"/tracks/python-101/frameworks/django":{}},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["django.http",{"_index":3116,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["django.shortcut",{"_index":3113,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["django.url",{"_index":3118,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["dmg",{"_index":11883,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["dmyimportantdata",{"_index":6487,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["dn",{"_index":5327,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["dnf",{"_index":11397,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["do",{"_index":9954,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["doc",{"_index":1855,"title":{"/tracks/archive/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/archive/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/archive/":{}},"description":{}}],["dock",{"_index":9644,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["docker",{"_index":6904,"title":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/posts/docker-commands/":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day42":{},"/posts/docker-commands/":{}}}],["docker.html",{"_index":10332,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["docker.io/bitnami/mysql:latest",{"_index":6496,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["docker/get",{"_index":8583,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["docker=podman",{"_index":8432,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["docker_contain",{"_index":7940,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_imag",{"_index":7937,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_image.nginx.latest",{"_index":7941,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_network",{"_index":7949,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_no_tim",{"_index":7022,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["docker_volum",{"_index":7947,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["dockercon",{"_index":8476,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["dockerconfigjson",{"_index":7341,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["dockercr",{"_index":7318,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["dockerd",{"_index":8598,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["dockerfil",{"_index":7271,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/posts/docker-commands/":{}},"description":{}}],["dockerhub",{"_index":7272,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["dockerignor",{"_index":8566,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["docs.docker.com",{"_index":11605,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["docstr",{"_index":1997,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["documen",{"_index":8603,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["document",{"_index":5173,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["document.createelement(‘opt",{"_index":688,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["document.getelementbyid(\"my_react_app",{"_index":11242,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["document.getelementbyid('my_render_block",{"_index":11214,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["document.getelementbyid('photo",{"_index":957,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["document.getelementbyid('root",{"_index":11213,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["document.getelementbyid('video",{"_index":943,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["document.queryselector('#button",{"_index":11265,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('#histori",{"_index":11273,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('#incomingmessag",{"_index":894,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["document.queryselector('#messagebox",{"_index":871,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["document.queryselector('#remotevideo",{"_index":386,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["document.queryselector('#sendbutton",{"_index":873,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["document.queryselector('video",{"_index":1216,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["document.queryselector('video#localvideo",{"_index":748,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["document.queryselector(‘select#availablecamera",{"_index":684,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["documentdb",{"_index":5425,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["dog",{"_index":3683,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["dog(\"buddi",{"_index":3859,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["dog(anim",{"_index":3849,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["dog.bark",{"_index":3684,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["dog.pi",{"_index":3678,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["dog.speak",{"_index":3868,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["doget",{"_index":11485,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["doget(",{"_index":11472,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["dolor",{"_index":11110,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dom",{"_index":11203,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dom.iter",{"_index":11414,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dom/client",{"_index":11208,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["domain",{"_index":5025,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["don't",{"_index":5161,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{}},"description":{}}],["done",{"_index":2642,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["donec",{"_index":10537,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["dopost(",{"_index":11473,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["dot1q",{"_index":9369,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["dota2",{"_index":5468,"title":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/649/":{}}}],["dotfil",{"_index":9612,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["doubl",{"_index":3332,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/apps/brewmate/":{}},"description":{}}],["double_numbers(iter",{"_index":10925,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["double_numbers(range(1",{"_index":10927,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["doublerang",{"_index":798,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["down",{"_index":7707,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day46":{},"/posts/docker-commands/":{}},"description":{}}],["download",{"_index":5180,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/apps/brewmate/":{}},"description":{}}],["dp",{"_index":5717,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["dp[i",{"_index":5721,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["dp[j",{"_index":5723,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["dr",{"_index":6444,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["dracula",{"_index":9649,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["draft",{"_index":21,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["drag",{"_index":11885,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["dream",{"_index":6843,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["dri",{"_index":7876,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["driven",{"_index":10123,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["driver",{"_index":2381,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["driver'",{"_index":2423,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["drop",{"_index":6499,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["drwxr",{"_index":11622,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["ds",{"_index":8317,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["dsl",{"_index":7823,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["dsбор",{"_index":5251,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["dt",{"_index":8457,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["dt%h:%m:%s.%l",{"_index":7026,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["dt.date.today().strftime('%a",{"_index":10982,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["dt_string",{"_index":9377,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["dump.sql.gz",{"_index":6554,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["dumptoobjectstor",{"_index":6540,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["duplic",{"_index":5730,"title":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"content":{},"description":{}}],["durabl",{"_index":6801,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["durat",{"_index":9419,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["dure",{"_index":446,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["dva",{"_index":5010,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["dx=uv",{"_index":10437,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["dynam",{"_index":7577,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["dynamodb",{"_index":5103,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["e",{"_index":583,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/p/privacy_ru":{}},"description":{}}],["e.g",{"_index":10565,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["e.nam",{"_index":950,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["e=mc^2",{"_index":10435,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["each",{"_index":5061,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["earli",{"_index":5286,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["easi",{"_index":6346,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day01":{},"/apps/brewmate/":{}},"description":{}}],["easier",{"_index":8041,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["easili",{"_index":5417,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["eb",{"_index":5147,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ec",{"_index":5099,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ec2",{"_index":5092,"title":{"/tracks/aws-certified-developer-associate/ec2/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day58":{}},"description":{"/tracks/aws-certified-developer-associate/ec2/":{}}}],["echo",{"_index":6404,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["echo1",{"_index":7399,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["echocancel",{"_index":727,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["eclips",{"_index":3313,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["econom",{"_index":4528,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["ecr",{"_index":5098,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ed25519",{"_index":9665,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["edg",{"_index":9111,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["edit",{"_index":5343,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["editor",{"_index":10197,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ef",{"_index":5148,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["effect",{"_index":10202,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["efficitur",{"_index":10543,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["efk",{"_index":6902,"title":{"/tracks/90daysofdevops/day82":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["egesta",{"_index":10497,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["eget",{"_index":10480,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["eiu",{"_index":11113,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["eject",{"_index":11443,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ek",{"_index":5101,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["ekonomicheski",{"_index":11701,"title":{},"content":{"/p/publications":{}},"description":{}}],["ekosistemi",{"_index":11734,"title":{},"content":{"/p/publications":{}},"description":{}}],["eksporta",{"_index":11712,"title":{},"content":{"/p/publications":{}},"description":{}}],["elast",{"_index":5093,"title":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}}}],["elasticach",{"_index":5104,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["elasticapm",{"_index":10416,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["elasticapm.contrib.flask",{"_index":10417,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["elasticsearch",{"_index":5081,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["elasticsearch'",{"_index":10371,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["elasticsearch/config/elasticsearch.yml",{"_index":10372,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["elb",{"_index":5168,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["electr",{"_index":3996,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["electron",{"_index":3997,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day38":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["electron/main.t",{"_index":11403,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:build",{"_index":11448,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dev",{"_index":11444,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dist",{"_index":11449,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["element",{"_index":680,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-snippets/":{}},"description":{}}],["element(virtualbox_vm.node.*.network_adapter.0.ipv4_address",{"_index":7998,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["elibrari",{"_index":3943,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["elif",{"_index":3792,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["elimin",{"_index":5420,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["elit",{"_index":10454,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["elk",{"_index":6901,"title":{"/tracks/90daysofdevops/day80":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["email",{"_index":2714,"title":{"/tracks/python-101/standard_library/smtplib":{}},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["email@example.com",{"_index":8892,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["emoji",{"_index":10557,"title":{"/posts/emoji-support":{}},"content":{"/posts/emoji-support":{}},"description":{"/posts/emoji-support":{}}}],["emojifi",{"_index":10559,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["emojisymbol",{"_index":10577,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["emp_1",{"_index":2353,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["emp_1.introduc",{"_index":2360,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["emp_nam",{"_index":2350,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["employe",{"_index":2349,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["employee(\"mr",{"_index":2354,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["empti",{"_index":10356,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["empty_dict",{"_index":10729,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["empty_funct",{"_index":3716,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["empty_set",{"_index":10751,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["en",{"_index":5426,"title":{},"content":{"/tracks/archive/":{},"/posts/archive/":{}},"description":{}}],["enabl",{"_index":103,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{}},"description":{}}],["enable_password",{"_index":9384,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["enabled/dir.conf",{"_index":9685,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["enableemoji",{"_index":10562,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["enc",{"_index":10369,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["encapsul",{"_index":9368,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["encod",{"_index":3458,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["encoded_str",{"_index":5588,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["encourag",{"_index":10964,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["encrypt",{"_index":10348,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["end",{"_index":2027,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["end_tim",{"_index":3292,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["endfor",{"_index":7582,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["endpoint",{"_index":8319,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["endswith",{"_index":3459,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["end{align",{"_index":10451,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["end{bmatrix",{"_index":10444,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["end{pmatrix",{"_index":10441,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["end{vmatrix",{"_index":10446,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["enforc",{"_index":7859,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["engin",{"_index":3779,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["english",{"_index":11578,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["enhanc",{"_index":1727,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["enrol",{"_index":5187,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ensur",{"_index":7610,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["ent_search.auth.sourc",{"_index":10388,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["ent_search_default_password",{"_index":10384,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["enter",{"_index":3670,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["enterpris",{"_index":7871,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["enterprise_search",{"_index":10383,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["enterprisesearch",{"_index":10390,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["enterprisesearch.host",{"_index":10377,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["entranc",{"_index":5747,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["entrypoint",{"_index":5071,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["enum",{"_index":85,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["enumerate(",{"_index":5620,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["enumerate(sen",{"_index":5506,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["enumeratedevic",{"_index":642,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["env",{"_index":6490,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day60":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["environ",{"_index":5029,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["eof",{"_index":8029,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["ep",{"_index":8318,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["episod",{"_index":7538,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["eq",{"_index":3436,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["equal",{"_index":5879,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["equalpairs(self",{"_index":5894,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["equat",{"_index":10434,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["erat",{"_index":10482,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["erlang",{"_index":7812,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["ero",{"_index":10458,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["erp",{"_index":11747,"title":{},"content":{"/p/publications":{}},"description":{}}],["err",{"_index":9928,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["errexit",{"_index":6547,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["error",{"_index":620,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["es",{"_index":5166,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["es2023",{"_index":11413,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["esc",{"_index":9711,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["escap",{"_index":9707,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["eslint",{"_index":8831,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["esmoduleinterop",{"_index":11418,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["esnext",{"_index":11415,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["est",{"_index":10551,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["establish",{"_index":418,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["esx",{"_index":8247,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["et",{"_index":10512,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["etc",{"_index":8828,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["etc/ans",{"_index":7596,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["etc/ansible/host",{"_index":7604,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["etc/apache2/mod",{"_index":9684,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["etc/apache2/ports.conf",{"_index":7761,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list",{"_index":8423,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["etc/fstab",{"_index":9784,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["etc/host",{"_index":7750,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["etc/kubernetes:/etc/kubernet",{"_index":8231,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["etc/o",{"_index":7787,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["etc/passwd",{"_index":9831,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["etc/ssh/sshd_config",{"_index":9670,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["etc/sudo",{"_index":11383,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["etc/yum.repos.d/vscode.repo",{"_index":11396,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["etcd",{"_index":8227,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["ethernet",{"_index":7736,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["etiam",{"_index":10494,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["etsi",{"_index":10081,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["eu",{"_index":6528,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/posts/featured-image":{}},"description":{}}],["ev",{"_index":8320,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["evalu",{"_index":10954,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["even",{"_index":5675,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even,`odd",{"_index":5685,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even.next",{"_index":5687,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even_head",{"_index":5683,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even_head.next",{"_index":5697,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even_numb",{"_index":3245,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["event",{"_index":389,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["event.candid",{"_index":573,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["event.candidate.candid",{"_index":1135,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["event.channel",{"_index":866,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["event.data",{"_index":899,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["event.stream",{"_index":391,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["event.target",{"_index":1124,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["event.target.alt",{"_index":11278,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["eventbridg",{"_index":5085,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["everyon",{"_index":8295,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["everyth",{"_index":8447,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["evgschegolkova",{"_index":6727,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["ex",{"_index":10495,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["exact",{"_index":802,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["exam",{"_index":5014,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["examin",{"_index":5218,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["exampl",{"_index":2468,"title":{"/posts/gallery-example/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/markdown-syntax/":{},"/posts/gallery-example/":{},"/photos/icons/":{}},"description":{}}],["example.__private_method",{"_index":2485,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["example._protected_method",{"_index":2482,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["example.log",{"_index":2819,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["example.public_method",{"_index":2480,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["example.txt",{"_index":3735,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["example2@yandex.ru",{"_index":2734,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["example@yandex.ru",{"_index":2730,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["example_1.pi",{"_index":3704,"title":{},"content":{"/tracks/python-101/basis/ide":{}},"description":{}}],["exampleappserverinst",{"_index":8035,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["excel",{"_index":9424,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["except",{"_index":2316,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["exchang",{"_index":1006,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["exclud",{"_index":8846,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["exclus",{"_index":6274,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["exec",{"_index":7388,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day47":{},"/posts/docker-commands/":{}},"description":{}}],["exectut",{"_index":9820,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["execut",{"_index":2095,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["exercis",{"_index":9991,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["exist",{"_index":5263,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["exit",{"_index":6520,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["exp",{"_index":2062,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["expand",{"_index":5211,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["expandtab",{"_index":3460,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["expect",{"_index":1898,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["experi",{"_index":10375,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["expert",{"_index":5204,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["explain",{"_index":5217,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["explan",{"_index":5435,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["explor",{"_index":8787,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["export",{"_index":6411,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["exportpathmap",{"_index":11044,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["exports.handl",{"_index":5277,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["expos",{"_index":8565,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["ext",{"_index":11305,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["ext4",{"_index":9778,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["extend",{"_index":3637,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["extens",{"_index":3703,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["extensions.update.en",{"_index":326,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["extensions/apm",{"_index":10409,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["extensions/curator/cur",{"_index":10407,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["extensions/enterpris",{"_index":10380,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["extensions/filebeat/filebeat",{"_index":10339,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["extensions/logspout/logspout",{"_index":10334,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["extensions/metricbeat/metricbeat",{"_index":10326,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["extern",{"_index":7942,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["extra",{"_index":5062,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{}},"description":{}}],["extrem",{"_index":10121,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["eще",{"_index":10894,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f",{"_index":2693,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{}}],["f\"rectangle({self.width",{"_index":2550,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["f\"{f.stem}_new{f.suffix",{"_index":11315,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f\"{name",{"_index":10685,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f\"{name}_new{ext",{"_index":11310,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f\"он",{"_index":10684,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f(i",{"_index":6253,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["f.read",{"_index":3738,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["f.read(100",{"_index":3744,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["f.rename(new_nam",{"_index":11316,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f.write(\"hello",{"_index":3747,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["f0",{"_index":9387,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f0.close",{"_index":9415,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f0.readlin",{"_index":9389,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f1",{"_index":9410,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["f1.close",{"_index":9413,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f1.write(output.decode(\"utf",{"_index":9412,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f332696ca850",{"_index":8070,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["f=\"name=\"exampl",{"_index":11597,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["faa",{"_index":9311,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["fabric",{"_index":9215,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["facilisi",{"_index":10553,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["fact",{"_index":7572,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["facts.json",{"_index":7573,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["fail",{"_index":5069,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["fake",{"_index":279,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["faktori",{"_index":11729,"title":{},"content":{"/p/publications":{}},"description":{}}],["fals",{"_index":311,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["famili",{"_index":10573,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["faq",{"_index":11889,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["fargat",{"_index":5169,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["farm/virtualbox",{"_index":7983,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["fastapi",{"_index":3061,"title":{"/tracks/python-101/frameworks/fastapi":{}},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["fault",{"_index":5118,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["fauna",{"_index":6828,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["faunadb",{"_index":6842,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["favorit",{"_index":7891,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["fd",{"_index":8767,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["fdisk",{"_index":9755,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["feat",{"_index":8808,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["featur",{"_index":8773,"title":{"/posts/featured-image":{}},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day04":{}},"description":{"/posts/featured-image":{}}}],["features=rtcunifiedplan",{"_index":125,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["features=rtcunifiedplanbydefault",{"_index":104,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["feb",{"_index":5073,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["februari",{"_index":5019,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["feder",{"_index":9226,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["federico",{"_index":11096,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["feedback",{"_index":7461,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["feli",{"_index":10548,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["fenwick",{"_index":6265,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["fermentum",{"_index":10462,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["fetch",{"_index":695,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/apps/_index":{}},"description":{}}],["feugiat",{"_index":10547,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["few",{"_index":10382,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["fi",{"_index":9562,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["fib(10",{"_index":2256,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fib(n",{"_index":2250,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fibonacci",{"_index":2248,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fibonacci(n",{"_index":3286,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["fig",{"_index":10995,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["figlet",{"_index":7654,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["file",{"_index":270,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["file.txt",{"_index":2782,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file1.txt",{"_index":2769,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file2.txt",{"_index":2770,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file://${path.join(__dirnam",{"_index":11434,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["file://url",{"_index":273,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["file=\"90daysofdevops.txt",{"_index":10261,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["file=c:\\users\\micha\\appdata\\roaming\\kopia\\repository.config",{"_index":6740,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["file_exist",{"_index":2783,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file_handl",{"_index":3751,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["filebeat",{"_index":10337,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["filenam",{"_index":2680,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["filename_prefix",{"_index":9391,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["files\\kopiaui\\resources\\server\\kopia.ex",{"_index":6739,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["fileserv",{"_index":1384,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["fileserver.serve(req",{"_index":1389,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["filesystem",{"_index":10196,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["filezilla",{"_index":9436,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["filled_dict",{"_index":10731,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"four",{"_index":10746,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"on",{"_index":10745,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.setdefault(\"f",{"_index":10747,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.update({\"four\":4",{"_index":10749,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"f",{"_index":10748,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"four",{"_index":10744,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"on",{"_index":10738,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set",{"_index":10754,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set.add(5",{"_index":10759,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filter",{"_index":660,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day81":{},"/posts/docker-commands/":{}},"description":{}}],["filter(text",{"_index":11288,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["final",{"_index":3761,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["finansovoi",{"_index":11733,"title":{},"content":{"/p/publications":{}},"description":{}}],["find",{"_index":1086,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day62":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["findcelebrity(n",{"_index":5774,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["findcelebrity(self",{"_index":5785,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["findduplicate(num",{"_index":5739,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["findkthlargest(num",{"_index":5909,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{}}],["findmediansortedarrays(nums1",{"_index":6046,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["findorder(numcours",{"_index":5931,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["finish",{"_index":10194,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["finop",{"_index":10151,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["firefox",{"_index":138,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["firewal",{"_index":9610,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["first",{"_index":733,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["firstuniqchar(",{"_index":5616,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["fix",{"_index":8117,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["flask",{"_index":3012,"title":{"/tracks/python-101/frameworks/flask":{}},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["flask(nam",{"_index":3020,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["flask_sqlalchemi",{"_index":3016,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["flatten",{"_index":2157,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["flatten(self",{"_index":5645,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["flavour",{"_index":7709,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["float",{"_index":1836,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["float('inf",{"_index":5672,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["float=\"right",{"_index":5709,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["floor",{"_index":10813,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["flow",{"_index":10161,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["flowchart",{"_index":10601,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["flower",{"_index":6080,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{},"description":{}}],["flowerbed[i",{"_index":6093,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["floyd'",{"_index":5741,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["fluent",{"_index":7003,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["fluent/fluent",{"_index":7009,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["fluentbit",{"_index":6959,"title":{"/tracks/90daysofdevops/day81":{}},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["fluentd",{"_index":6954,"title":{"/tracks/90daysofdevops/day81":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["flush",{"_index":7029,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["fmt",{"_index":7850,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["fmt.printf(\"%v",{"_index":10000,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"challeng",{"_index":10028,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.printf(\"thank",{"_index":9881,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"thi",{"_index":9998,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"welcom",{"_index":9869,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"you",{"_index":9883,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"ent",{"_index":9874,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"go",{"_index":9933,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["fmt.println(\"good",{"_index":9885,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"great",{"_index":10001,"title":{},"content":{"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.println(\"hello",{"_index":10040,"title":{},"content":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["fmt.println(\"how",{"_index":9876,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"thi",{"_index":10020,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.println(\"welcom",{"_index":10017,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.println(&challeng",{"_index":10009,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(challeng",{"_index":10008,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.scan(&twitternam",{"_index":10006,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.scanln(&dayscomplet",{"_index":9878,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.scanln(&twitternam",{"_index":9875,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.sprintf(\"hey",{"_index":9953,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["fname",{"_index":1962,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["focu",{"_index":5027,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["focus",{"_index":10209,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["folder",{"_index":1509,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day10":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["follow",{"_index":5164,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/docker-commands/":{}},"description":{}}],["font",{"_index":10572,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["foo",{"_index":1427,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["foot",{"_index":10781,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["footer",{"_index":8810,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/markdown-syntax/":{}},"description":{}}],["forc",{"_index":8878,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/posts/docker-commands/":{}},"description":{}}],["forceconsistentcasinginfilenam",{"_index":11420,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["foreach",{"_index":9027,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["foreach(cameraopt",{"_index":693,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["forg",{"_index":3178,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["fork",{"_index":8721,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["form",{"_index":5256,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["format",{"_index":3437,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["format(\"nod",{"_index":7987,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["format(ag",{"_index":3540,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["format(msg",{"_index":10938,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["format(sw2",{"_index":9372,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["format_map",{"_index":3461,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["formatt",{"_index":2802,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["formatted_d",{"_index":2854,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["formatted_gm_tim",{"_index":2898,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["formatted_tim",{"_index":2890,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["formula",{"_index":10432,"title":{},"content":{"/posts/math-support":{},"/apps/_index":{}},"description":{}}],["fortun",{"_index":10068,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["forward",{"_index":6392,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["forwarded_port",{"_index":7739,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["found",{"_index":668,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/loops":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["foundat",{"_index":8367,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["four",{"_index":3363,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["foursumcount(a",{"_index":5528,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["frac{du}{dx}v\\,dx",{"_index":10438,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["frac{dv}{dx",{"_index":10436,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["frac{n}{2",{"_index":6196,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{4",{"_index":6197,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{8",{"_index":6198,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["framework",{"_index":6599,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["free",{"_index":5157,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/brewmate/":{}},"description":{}}],["freecodecamp",{"_index":5156,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["fringilla",{"_index":10521,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["from_addr",{"_index":2732,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["fromimag",{"_index":8992,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["fromkey",{"_index":3781,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["front",{"_index":8138,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["frozenset",{"_index":1870,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fruit",{"_index":3622,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/posts/markdown-syntax/":{}},"description":{}}],["fruits.append('orang",{"_index":3648,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.insert(1",{"_index":3650,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.pop",{"_index":3652,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.remove('banana",{"_index":3653,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.sort",{"_index":3654,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fssl",{"_index":8196,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["fstab",{"_index":9785,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ftp",{"_index":9536,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["full",{"_index":1351,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/docker-commands/":{}},"description":{}}],["full_path",{"_index":2780,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["fun",{"_index":9810,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["func",{"_index":2075,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["func(arg",{"_index":3291,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["func.low",{"_index":2089,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["func.nam",{"_index":3294,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["func.split",{"_index":2093,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["function",{"_index":492,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day13":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["function(arg1",{"_index":2115,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["function(array",{"_index":1358,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(ev",{"_index":5278,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["function(ipaddr",{"_index":1353,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(messag",{"_index":1399,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(room",{"_index":1348,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(socket",{"_index":1394,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["functool",{"_index":3284,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["fundament",{"_index":6839,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["futur",{"_index":9945,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["g",{"_index":7227,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["ga",{"_index":11357,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gain",{"_index":6148,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["gain[i",{"_index":6149,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["galaxi",{"_index":7544,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["galleri",{"_index":11491,"title":{"/posts/gallery-example/":{}},"content":{"/posts/gallery-example/":{}},"description":{}}],["gateway",{"_index":5130,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["gather",{"_index":549,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["gaza",{"_index":3906,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["gb",{"_index":10345,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["gc",{"_index":6745,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["gcc",{"_index":11365,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gcdofstrings(remaind",{"_index":6179,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcdofstrings(str1",{"_index":6171,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcloud",{"_index":6736,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["gcr.io/kaniko",{"_index":7332,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["gd",{"_index":9693,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["ge",{"_index":3438,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["geeksforgeek",{"_index":10007,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["geerl",{"_index":7543,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["gen_to_list",{"_index":10929,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gener",{"_index":2247,"title":{"/photos/midjourney/":{},"/photos/ai/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/photos/midjourney/":{},"/photos/ai/":{}}}],["get",{"_index":7457,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["get(self",{"_index":2992,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["get_all_book",{"_index":3033,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["get_book(book_id",{"_index":3041,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["get_external_data",{"_index":3220,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["get_helm.sh",{"_index":8197,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["get_object_or_404",{"_index":3115,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["get_object_or_404(book",{"_index":3134,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["get_species(cl",{"_index":10830,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["get_task",{"_index":3080,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["get_task(task_id",{"_index":3083,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["getattr",{"_index":10879,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["getattribut",{"_index":3439,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["getboolean",{"_index":2921,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["getclient",{"_index":9909,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["getclient(&cr",{"_index":9940,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["getclient(cr",{"_index":9911,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["getconnecteddevices('videoinput",{"_index":665,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getconnecteddevices(typ",{"_index":656,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getconnecteddevices(‘video",{"_index":706,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getconnecteddevices(‘videoinput",{"_index":699,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getdata",{"_index":11480,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["getdisplaymedia",{"_index":830,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["getfloat",{"_index":2923,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["getint",{"_index":2922,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["getitem",{"_index":3440,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["getnewarg",{"_index":3441,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["getotherpeer(peerconnect",{"_index":1128,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["getpass",{"_index":9349,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["getslic",{"_index":3814,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["getter",{"_index":2527,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["gettng",{"_index":8446,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["getusermedia",{"_index":338,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["getusermedia({vid",{"_index":347,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["gh",{"_index":11020,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["ghcr.io/kanisterio/mysql",{"_index":6545,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["gi0/0",{"_index":9327,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["giant",{"_index":10104,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["gif",{"_index":11164,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["gig0/1",{"_index":9365,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["gil",{"_index":2605,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["git",{"_index":1488,"title":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}}}],["gitconfig",{"_index":8894,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["github",{"_index":1489,"title":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day40":{},"/posts/nextjs-to-github-pages-ations/":{}},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["github.com/dghubble/go",{"_index":9900,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["github.com/dghubble/oauth1",{"_index":9902,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["github.com/michaelcade/go",{"_index":9887,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["github.com/webrtc/sampl",{"_index":1453,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["github/sup",{"_index":7231,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["github/workflows/sup",{"_index":7252,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["github/workflows/workflow_nam",{"_index":7250,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["github_token",{"_index":7237,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["gitignor",{"_index":8061,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["gitlab",{"_index":7467,"title":{"/tracks/90daysofdevops/day40":{}},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["gitop",{"_index":7177,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["given",{"_index":5430,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["gke",{"_index":8292,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["glacier",{"_index":5150,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["global",{"_index":1555,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/posts/emoji-support":{},"/posts/python-snippets/":{}},"description":{}}],["glyph",{"_index":10571,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["gm_time",{"_index":2895,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["gmt",{"_index":2878,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["gmtime",{"_index":2883,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["gnome",{"_index":9641,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gns3",{"_index":9458,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["gnu",{"_index":8884,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["go",{"_index":5065,"title":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}}}],["go.dev/learn",{"_index":9994,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["go.dev/tour/list",{"_index":9993,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["go.mod",{"_index":9888,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goal",{"_index":7277,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["goarch",{"_index":9960,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goarch=amd64",{"_index":9961,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goarch=arm64",{"_index":9968,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["gobyexampl",{"_index":9992,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["gochronicl",{"_index":10034,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["golang",{"_index":8300,"title":{"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{}},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/90daysofdevops/day09":{}}}],["golden",{"_index":3860,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["goo",{"_index":9959,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["good",{"_index":5973,"title":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{},"description":{}}],["goodnodes(root",{"_index":5977,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["googl",{"_index":8,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["google.com",{"_index":9547,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["goos=darwin",{"_index":9962,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goos=linux",{"_index":9964,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goos=window",{"_index":9966,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["gopath",{"_index":10032,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["gopherfest",{"_index":11141,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["gotdescription1",{"_index":1576,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["gotlocalmediastream(mediastream",{"_index":1114,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["govern",{"_index":5123,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["gpg",{"_index":8424,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["grabwebcamvideo",{"_index":944,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["gradl",{"_index":8436,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["grafana",{"_index":6887,"title":{"/tracks/90daysofdevops/day83":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["grant",{"_index":9692,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["grape",{"_index":3651,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["graph",{"_index":5932,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day30":{},"/posts/diagram-support":{}},"description":{}}],["graph[prereq",{"_index":5945,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["graph[prereq].append(cours",{"_index":5938,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["graphit",{"_index":6899,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["graphql",{"_index":6829,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["gravida",{"_index":10492,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["great",{"_index":9990,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["greater",{"_index":5070,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["greatest",{"_index":6159,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["greem",{"_index":8760,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["green",{"_index":5326,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["gremlin",{"_index":9196,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["grep",{"_index":7010,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["grid",{"_index":5882,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["group",{"_index":5302,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["group_var",{"_index":7586,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["group_vars/all/common_variables.yml",{"_index":7636,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["groupadd",{"_index":8484,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["groups['webserv",{"_index":7580,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["grunt",{"_index":10832,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gt",{"_index":3442,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["guest",{"_index":7740,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["gui",{"_index":6716,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/apps/brewmate/":{}}}],["guid",{"_index":5043,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/posts/emoji-support":{}}}],["guidanc",{"_index":5205,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["gump",{"_index":7416,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["gunzip",{"_index":6573,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["guru99",{"_index":7073,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["gzip",{"_index":6563,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["gzr",{"_index":9162,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["h",{"_index":3520,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["h1",{"_index":11100,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h2",{"_index":11101,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h2o",{"_index":11166,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h3",{"_index":11102,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h4",{"_index":11103,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h5",{"_index":11104,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h6",{"_index":11105,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h:%m:%",{"_index":2863,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["habr",{"_index":2950,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["hacker",{"_index":9655,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["had_0",{"_index":5759,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["had_5",{"_index":5758,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["hand",{"_index":5227,"title":{"/tracks/90daysofdevops/day78":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["handl",{"_index":1218,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["handle.clos",{"_index":3742,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["handleconnect",{"_index":1096,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnection(ev",{"_index":1123,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnectionchang",{"_index":1099,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnectionfailure(peerconnect",{"_index":1132,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnectionsuccess(peerconnect",{"_index":1130,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handlelocalmediastreamerror(error",{"_index":1221,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["handler",{"_index":2800,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["handler.setformatter(formatt",{"_index":2812,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["handler.setlevel(logging.info",{"_index":2807,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["hang",{"_index":1048,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["happen",{"_index":1894,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["hard",{"_index":8340,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["hardcod",{"_index":5421,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["hardwareprofil",{"_index":8981,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["hare",{"_index":5733,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["hash",{"_index":3443,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["hashicorp",{"_index":7540,"title":{"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["hashicorp/aw",{"_index":8016,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["hashicorp/kubernet",{"_index":7898,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["hasnext",{"_index":5638,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["hasnext(self",{"_index":5650,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["hat",{"_index":7515,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["have",{"_index":11268,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["haystack",{"_index":5432,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["haystack.find(needl",{"_index":5439,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["haystack[start:end",{"_index":5442,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["hcl",{"_index":7883,"title":{"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["hdconstraint",{"_index":1235,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["hdd",{"_index":9172,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["head",{"_index":5686,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day37":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["head.html",{"_index":11219,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["head.next",{"_index":5696,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["header",{"_index":8821,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["headless",{"_index":294,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["head~1",{"_index":8753,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["health_check",{"_index":7037,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["hear_no_evil",{"_index":10567,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["heavi",{"_index":10962,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["heavili",{"_index":7838,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["height",{"_index":731,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["height(self",{"_index":2543,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["height.sett",{"_index":2545,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["height=\"555px",{"_index":5708,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["height[i",{"_index":6040,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["height[left",{"_index":6012,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["height[right",{"_index":6010,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["hello",{"_index":2098,"title":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}}}],["hello.html",{"_index":10967,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["hello_world",{"_index":8046,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["helloworld",{"_index":7246,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["helm",{"_index":6430,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["helm.sh/chart=flu",{"_index":7018,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["help",{"_index":2260,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["help(my_string.capit",{"_index":3496,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["help='an",{"_index":2961,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["help='sum",{"_index":2969,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["helper",{"_index":9910,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["hendrerit",{"_index":10459,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["here",{"_index":2454,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/diagram-support":{},"/posts/gallery-example/":{}},"description":{}}],["hero",{"_index":5220,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["hertz",{"_index":10094,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["hex(ag",{"_index":3541,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["high",{"_index":6650,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["highest",{"_index":6143,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{},"description":{}}],["highli",{"_index":10385,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["highlight",{"_index":9638,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["highlighting.git",{"_index":9637,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["histfilesize=10000000",{"_index":9816,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["histori",{"_index":9813,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["history.innerhtml",{"_index":11277,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["histsize=100000",{"_index":9815,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["histtimeformat=\"%d",{"_index":9814,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["hitesh",{"_index":9988,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["hlq",{"_index":11790,"title":{},"content":{"/p/publications":{}},"description":{}}],["hoc",{"_index":3907,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["home",{"_index":5393,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["home/.kube/config",{"_index":8289,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["home/michael/projects/go",{"_index":10033,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["home/usernam",{"_index":10265,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["home_dir",{"_index":2773,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["homebrew",{"_index":8200,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/apps/brewmate/":{}}}],["horizont",{"_index":8813,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["horizontalpodautoscal",{"_index":8322,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["host",{"_index":7046,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["host=127.0.0.1",{"_index":2919,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["host_interfac",{"_index":7996,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["host_var",{"_index":7594,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["hostnam",{"_index":236,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["hostonli",{"_index":7995,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["hostpath",{"_index":6328,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["hostvarshost['nodenam",{"_index":7581,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["hour",{"_index":2838,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["hours]](https://www.youtube.com/watch?v=x48vudvv0do",{"_index":8159,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["hpa",{"_index":8321,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["htaccess",{"_index":11326,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["html",{"_index":750,"title":{"/posts/pyscript-python-embedded-in-html/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day68":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/pyscript-python-embedded-in-html/":{}}}],["html5",{"_index":9485,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/posts/markdown-syntax/":{}},"description":{}}],["html_welcome_msg",{"_index":7560,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["http",{"_index":426,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["http.createserver(function(req",{"_index":1387,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["http://127.0.0.1:3000",{"_index":11446,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://127.0.0.1:8080/k10",{"_index":6395,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["http://172.25.218.154:8080",{"_index":8472,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["http://192.168.169.135",{"_index":9681,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["http://192.168.169.135/90days.php",{"_index":9688,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["http://apm",{"_index":10422,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["http://creativecommons.org/licenses/bi",{"_index":10218,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["http://enterpris",{"_index":10378,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["http://localhost:3000",{"_index":11433,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://localhost:8000",{"_index":8525,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["http://localhost:8200",{"_index":10420,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["http://webserv",{"_index":7584,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["http_listen",{"_index":7034,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["http_port",{"_index":7036,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["http_server",{"_index":7033,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["httpclient",{"_index":9918,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["httpd",{"_index":7777,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["httpexcept",{"_index":3069,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["httpexception(status_code=404",{"_index":3085,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["httpresponseredirect",{"_index":3117,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["httpresponseredirect(reverse('index",{"_index":3130,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["https://10",{"_index":8234,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["https://app.vagrantup.com/ubuntu/boxes/bionic64/versions/20180903.0.0/providers/virtualbox.box",{"_index":7990,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["https://apt.releases.hashicorp.com",{"_index":9731,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["https://apt.releases.hashicorp.com/gpg",{"_index":9729,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["https://aws.amazon.com/lambda",{"_index":5236,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://cdn.jsdelivr.net/pyodide/v0.20.0/full/pyodide.j",{"_index":11008,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["https://charts.bitnami.com/bitnami",{"_index":6476,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["https://charts.jenkins.io",{"_index":7372,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["https://charts.kasten.io",{"_index":6619,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["https://code.visualstudio.com/docs/setup/linux",{"_index":11390,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://codelabs.developers.google.com/codelabs/webrtc",{"_index":921,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["https://developers.redhat.com/products/rhel/get",{"_index":11398,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://docs.aws.amazon.com/lambda/?id=docs_gateway",{"_index":5235,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://download.opensuse.org/repositories/devel:/kub",{"_index":8425,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xubuntu_20.04",{"_index":8422,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["https://fluent.github.io/helm",{"_index":7007,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["https://forms.gle/nfb2jxs1fhrcjn5q7",{"_index":11683,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://github.com/arnaudj/mooc",{"_index":5176,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/itsmostafa/certifi",{"_index":5175,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/michaelcade/awx",{"_index":7526,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["https://github.com/prometheu",{"_index":6912,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["https://github.com/romankurnovskii/not",{"_index":11022,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://github.com/scriptcamp/kubernet",{"_index":7345,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["https://github.com/zsh",{"_index":9632,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["https://gregrickaby.blog/article/nextj",{"_index":11091,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://img.shields.io/badge/licens",{"_index":10222,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["https://licensebuttons.net/l/bi",{"_index":10220,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["https://localhost",{"_index":8216,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["https://medium.com/@anotherplanet/git",{"_index":11092,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://nextjs.org/docs/api",{"_index":11050,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://nextjs.org/docs/messages/export",{"_index":11049,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://olehadash.com",{"_index":11665,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://packages.microsoft.com/keys/microsoft.asc",{"_index":11393,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://prometheu",{"_index":7134,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["https://raw.githubusercontent.com/argoproj/argo",{"_index":7192,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["https://raw.githubusercontent.com/helm/helm/master/scripts/get",{"_index":8198,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh",{"_index":9629,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["https://schema.management.azure.com/schemas/2015",{"_index":8939,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["https://sourabhbajaj.com/mac",{"_index":11606,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["https://t.me/brootto",{"_index":11667,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/forum_israel",{"_index":11652,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/izrail_rabota",{"_index":11687,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/joinchat/dlamlxn_",{"_index":11684,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/olehadash_com_chat",{"_index":11651,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/olimhadashim",{"_index":11650,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/rabotadlyadruzei",{"_index":11689,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/rabotaisra",{"_index":11690,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/rus_work_israel",{"_index":11686,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/sidejobisrael",{"_index":11688,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://u",{"_index":5252,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://wallis.dev/blog/deploy",{"_index":11090,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://webrtc.org/get",{"_index":919,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["https://wordpress.org/latest.tar.gz",{"_index":9699,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["https://www.elastic.co/guide/en/apm/guide/current/components.html",{"_index":10427,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["https://www.elastic.co/guide/en/apm/guide/current/run",{"_index":10428,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/filebeat/current/filebeat",{"_index":10341,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/filebeat/current/index.html",{"_index":10343,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/filebeat/current/run",{"_index":10342,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/metricbeat/current/index.html",{"_index":10333,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat",{"_index":10329,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/metricbeat/current/run",{"_index":10331,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/elasticsearch/reference/current/secur",{"_index":10402,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["https://www.elastic.co/guide/en/enterpris",{"_index":10391,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["https://www.elastic.co/guide/en/workplac",{"_index":10394,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["https://www.facebook.com/groups/1511311149184796",{"_index":11662,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/1524467887858435",{"_index":11661,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/1601685156757272",{"_index":11664,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/asdisraelru",{"_index":11659,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/nyani.uchitelya.shkoli.israel",{"_index":11656,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.google.com",{"_index":11332,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["https://www.jewishagency.org/ru",{"_index":11645,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.linkedin.com/pulse/deploy",{"_index":11095,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://www.redhat.com/sysadmin/instal",{"_index":11399,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https_port",{"_index":7558,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["http‑запрос",{"_index":5239,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["hub",{"_index":7316,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["hue",{"_index":1260,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["hugo",{"_index":10558,"title":{"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/npm/hugo-lunr-ml/":{}},"content":{"/posts/emoji-support":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/emoji-support":{},"/posts/integrate-hugo-react/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["human",{"_index":9776,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["human(\"пётр",{"_index":10840,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human(name=\"ива",{"_index":10837,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.pi",{"_index":10857,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.speci",{"_index":10844,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["hunt",{"_index":11173,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["hybrid",{"_index":9099,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["hyper",{"_index":8010,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["hyperkit",{"_index":8297,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["hyperloglog",{"_index":6763,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["hypervisor",{"_index":9467,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["hypervisorlaunchtyp",{"_index":9482,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["i'm",{"_index":3838,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["i.ag",{"_index":10850,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.grunt",{"_index":10848,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(\"привет",{"_index":10838,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.ag",{"_index":10851,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.get_speci",{"_index":10843,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i/o",{"_index":10004,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["i219",{"_index":7737,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["i=1",{"_index":5845,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["i=2",{"_index":5847,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["i=3",{"_index":5849,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["iaa",{"_index":8607,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["iac",{"_index":7794,"title":{"/tracks/90daysofdevops/day56":{}},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["iaculi",{"_index":10487,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["iam",{"_index":5141,"title":{"/tracks/aws-certified-developer-associate/iam/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["ib",{"_index":11182,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["ibm",{"_index":10160,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ic",{"_index":407,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["icecallback1",{"_index":1565,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["icecallback2",{"_index":1572,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["icecandid",{"_index":565,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["iceconfigur",{"_index":249,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["iceconnectionstatechang",{"_index":1098,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["icegatheringstatechang",{"_index":547,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["iceserv",{"_index":250,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["icmp",{"_index":7703,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["icon",{"_index":5203,"title":{"/photos/icons/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{},"/photos/icons/":{}},"description":{"/photos/icons/":{}}}],["id",{"_index":378,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/featured-image":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["id=\"zoom",{"_index":11298,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["idea",{"_index":7890,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["ideal",{"_index":801,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["ident",{"_index":5136,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day55":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["identifi",{"_index":5786,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["idx",{"_index":6222,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["ieee",{"_index":3998,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["ietf",{"_index":22,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["if(self.po",{"_index":2308,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["if/elif/els",{"_index":3788,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["ifac",{"_index":1413,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ifaces[dev].foreach(function(detail",{"_index":1415,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ifconfig,swapon",{"_index":9756,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ii",{"_index":2978,"title":{"/tracks/python-101/standard_library/_index":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{},"description":{}}],["iii",{"_index":3341,"title":{"/tracks/python-101/enhance_python/_index":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["ikt",{"_index":11711,"title":{},"content":{"/p/publications":{}},"description":{}}],["ilb",{"_index":9113,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["imag",{"_index":1026,"title":{"/posts/featured-image":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/gallery-example/":{},"/posts/docker-commands/":{}},"description":{"/posts/featured-image":{}}}],["image.html",{"_index":11295,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image.tag=0.75.0",{"_index":6472,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["image/index.j",{"_index":11256,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image/placeholders.j",{"_index":11280,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["imagerefer",{"_index":8984,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["images/day38_git1.ru.png",{"_index":8793,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["imf",{"_index":3901,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["img",{"_index":974,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["img.data.bytelength",{"_index":979,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["immedi",{"_index":11591,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["immut",{"_index":7833,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/posts/python-snippets/":{}},"description":{}}],["imper",{"_index":8804,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["implement",{"_index":5406,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["import",{"_index":1920,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["import_task",{"_index":7618,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["importantdata",{"_index":6595,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["improv",{"_index":7462,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["inbound",{"_index":9084,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["inc",{"_index":6783,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["includ",{"_index":5030,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/diagram-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["includeemail",{"_index":9926,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["inclus",{"_index":6273,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["incom",{"_index":897,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["incomingmessag",{"_index":893,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["incomingmessages.textcont",{"_index":900,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["increas",{"_index":5653,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{}},"content":{},"description":{}}],["increasingtriplet(num",{"_index":5670,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["increment",{"_index":1783,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["indegre",{"_index":5934,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["indegree[cours",{"_index":5939,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["indegree[i",{"_index":5942,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["indent",{"_index":1899,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["indentationerror",{"_index":1897,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["index",{"_index":3143,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/p/publications":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["index(request",{"_index":3121,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["index(x",{"_index":3384,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["index.html",{"_index":1042,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["index.html.j2",{"_index":7758,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["index.j",{"_index":997,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["index.php",{"_index":9683,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["index.tsx",{"_index":11407,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["indexerror",{"_index":10705,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["indic",{"_index":10406,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["individu",{"_index":7310,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["infin",{"_index":7306,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["infinit",{"_index":9095,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["info",{"_index":2821,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day52":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["inform",{"_index":5023,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["information_sourc",{"_index":10361,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["infrastructur",{"_index":7188,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ing",{"_index":8323,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["ingress",{"_index":6452,"title":{"/tracks/90daysofdevops/day55":{}},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ingress.yaml",{"_index":8148,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["ini",{"_index":2983,"title":{},"content":{"/tracks/python-101/standard_library/_index":{}},"description":{}}],["init",{"_index":1956,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["init(self",{"_index":1961,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-snippets/":{}},"description":{}}],["init(self,c_nam",{"_index":2399,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["init_subclass",{"_index":3444,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["initi",{"_index":698,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["inject",{"_index":5119,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["injectkanistersidecar.enabled=tru",{"_index":6434,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["injectkanistersidecar.namespaceselector.matchlabels.k10/injectkanistersidecar=tru",{"_index":6435,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["inlin",{"_index":7299,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/posts/math-support":{},"/posts/emoji-support":{}},"description":{}}],["inner_func",{"_index":3321,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["inner_func(i",{"_index":3320,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["inp",{"_index":2688,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/inputs":{},"/posts/python-snippets/":{}},"description":{}}],["input",{"_index":880,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["input(\"ent",{"_index":9382,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["input(\"what",{"_index":2685,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["input(\"введ",{"_index":3667,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/posts/python-snippets/":{}},"description":{}}],["input_string_var",{"_index":10690,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inputartifactnam",{"_index":6568,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["inputbox",{"_index":11013,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["insect",{"_index":11174,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["insert",{"_index":3643,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["insert(self",{"_index":6261,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["insid",{"_index":7297,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{}}],["insight",{"_index":8718,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["insomnia",{"_index":9648,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["inspect",{"_index":8451,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/posts/docker-commands/":{}},"description":{}}],["instal",{"_index":993,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/brewmate/":{}},"description":{}}],["install_mysql.yml",{"_index":7608,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["install_tools.yml",{"_index":7652,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["instanc",{"_index":3499,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-snippets/":{}},"description":{}}],["instance_typ",{"_index":8021,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["institut",{"_index":3995,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["instl",{"_index":10949,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["instruct",{"_index":10412,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["int",{"_index":1843,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/posts/math-support":{},"/posts/python-snippets/":{}},"description":{}}],["int(curr_num",{"_index":5607,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["int(input(\"введ",{"_index":3756,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["int(input(\"скольк",{"_index":3672,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["int_max",{"_index":5668,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["integ",{"_index":1834,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/90daysofdevops/day88":{},"/posts/featured-image":{}},"description":{}}],["integr",{"_index":5083,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{}},"description":{}}],["integracii",{"_index":11702,"title":{},"content":{"/p/publications":{}},"description":{}}],["integration/contin",{"_index":7442,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["intel",{"_index":9470,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["intel(r",{"_index":7735,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["intend",{"_index":10269,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["interact",{"_index":11179,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["interconnect",{"_index":9577,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["interfac",{"_index":5126,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["interfaces.html",{"_index":10401,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["intermedi",{"_index":2391,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["intern",{"_index":1173,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["internet",{"_index":416,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["interplanetari",{"_index":10098,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["interpret",{"_index":2606,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["intersect",{"_index":3552,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["intersection_set",{"_index":3571,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["intersection_upd",{"_index":3559,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["interviewbitemploye",{"_index":2361,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["interviewbitemployee(\"mr",{"_index":2362,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["intl",{"_index":9697,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["intro",{"_index":6838,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["introduc",{"_index":2359,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["introduce(self",{"_index":2357,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["introduct",{"_index":6281,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["invalid_dict",{"_index":10733,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["invalid_set",{"_index":10756,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inventori",{"_index":10207,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["invert(1",{"_index":1258,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["invok",{"_index":2395,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["io",{"_index":1391,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["io.connect",{"_index":1343,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.adapter.rooms[room",{"_index":1407,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.in(room).emit('join",{"_index":1412,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.in(room).emit('readi",{"_index":1326,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.on('connect",{"_index":1393,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io|grep",{"_index":6398,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["ip",{"_index":1109,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/posts/docker-commands/":{}},"description":{}}],["ip,now.year,now.month,now.day,now.hour,now.minute,now.second",{"_index":9409,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ip.strip",{"_index":9390,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ip_nw",{"_index":8266,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_nw$((ip_start+1",{"_index":8259,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_nw$((ip_start+2",{"_index":8260,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_nw=\"10.0.0",{"_index":8256,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_start",{"_index":8267,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_start=10",{"_index":8257,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ipaddr",{"_index":1355,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day59":{}},"description":{}}],["ipaddr_2",{"_index":7999,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["ipaddress",{"_index":11602,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ipam",{"_index":9509,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["ipconfig1",{"_index":9011,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["ipconfigur",{"_index":9010,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["ipsam",{"_index":11120,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ipsum",{"_index":11109,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["iptabl",{"_index":9753,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["iputil",{"_index":8461,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["ipv4",{"_index":1417,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["ipv6",{"_index":9106,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["is_odd",{"_index":5694,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["isalnum",{"_index":2598,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isalpha",{"_index":3462,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isascii",{"_index":3463,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isdecim",{"_index":3464,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isdev",{"_index":11427,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["isdigit",{"_index":3465,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isdisjoint",{"_index":3560,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["isidentifi",{"_index":3466,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isiniti",{"_index":1338,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["isinst",{"_index":1824,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["isinstance(sup",{"_index":10874,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["islow",{"_index":3467,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isnumer",{"_index":3468,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["iso",{"_index":9461,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["isol",{"_index":6800,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["isolatedmodul",{"_index":11424,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ispalindrome(x",{"_index":6074,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["isprint",{"_index":3469,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isspac",{"_index":3470,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["issu",{"_index":7255,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day40":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["issubclass",{"_index":2571,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["issubclass(baseclass",{"_index":2582,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["issubclass(derivedclass",{"_index":2581,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["issubsequence(",{"_index":6100,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["issubset",{"_index":3561,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["issuperset",{"_index":3562,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["istitl",{"_index":3471,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isupp",{"_index":3472,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["it'",{"_index":7459,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["ital",{"_index":11147,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["item",{"_index":2937,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day38":{},"/posts/markdown-syntax/":{}},"description":{}}],["item.isinteg",{"_index":5646,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["itemhandl",{"_index":3005,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["itemhandler(tornado.web.requesthandl",{"_index":2994,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["iter",{"_index":2150,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{}},"description":{}}],["iter(array_obj",{"_index":2314,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["iter(our_iter",{"_index":10769,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["iter(self",{"_index":2305,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["iv",{"_index":3188,"title":{"/tracks/python-101/external_packages/_index":{}},"content":{},"description":{}}],["izrailya.pdf",{"_index":11703,"title":{},"content":{"/p/publications":{}},"description":{}}],["j",{"_index":1335,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{}},"description":{}}],["j.say(\"привет",{"_index":10841,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.ag",{"_index":10852,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.get_speci",{"_index":10846,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["jake",{"_index":9983,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["jamesives/github",{"_index":11086,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["java",{"_index":594,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["javascript",{"_index":1195,"title":{"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day07":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}}}],["javaskript",{"_index":1486,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{}},"description":{}}],["javasсript",{"_index":1609,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["jdk",{"_index":7330,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["jeff",{"_index":7542,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["jenkin",{"_index":7207,"title":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["jenkins.io",{"_index":7208,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["jenkins.jenkin",{"_index":7245,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["jenkinsci",{"_index":7371,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["jenkinsfil",{"_index":7269,"title":{"/tracks/90daysofdevops/day74":{}},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["jira",{"_index":8856,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["jit",{"_index":2286,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["job",{"_index":7220,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["john",{"_index":2568,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["join",{"_index":1346,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["join(result",{"_index":6139,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["join(s_list",{"_index":6118,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["join(string_list",{"_index":2329,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["join(word",{"_index":5449,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["jpl",{"_index":10100,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["js",{"_index":1212,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day07":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["js.build",{"_index":11225,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["js/main.j",{"_index":1337,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["jsep",{"_index":24,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["json",{"_index":2587,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/posts/google-sheets-2-json/":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["json.parse(event.records[0].sns.messag",{"_index":5280,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["json.stringifi",{"_index":11487,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["jsonifi",{"_index":3018,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["jsonify(result",{"_index":3040,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["jsonify({'error",{"_index":3043,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["jsonpath=\"{.data.mysql",{"_index":6481,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["jsonpath=\"{.data.password",{"_index":7197,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["jsonpath=\"{.data.token",{"_index":6402,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["jsonpath=\"{.items[0].metadata.nam",{"_index":7144,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["jsx",{"_index":11194,"title":{"/posts/integrate-hugo-react/":{}},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["jun",{"_index":11620,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["junior",{"_index":1668,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["junior/middl",{"_index":2346,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["junip",{"_index":9452,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["justo",{"_index":10510,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["k",{"_index":3519,"title":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day17":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["k10",{"_index":6322,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["k10.kasten.io/i",{"_index":6614,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["k3",{"_index":8218,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["k8",{"_index":6927,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["k[encoded_str",{"_index":5587,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["kafka",{"_index":7001,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["kaiser",{"_index":10095,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["kak",{"_index":11713,"title":{},"content":{"/p/publications":{}},"description":{}}],["kanban",{"_index":10120,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["kanctl",{"_index":6521,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kando",{"_index":6522,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kaniko",{"_index":7317,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kaniko.git",{"_index":7346,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kaniko/.dock",{"_index":7337,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kaniko/executor",{"_index":7354,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kanist",{"_index":6389,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["kanister/kanist",{"_index":6471,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kanisterio:mast",{"_index":8656,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["kasten",{"_index":6321,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["kasten/k10",{"_index":6431,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["katex",{"_index":10433,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["kbd",{"_index":11162,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["kbn",{"_index":10404,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["kdbd9dff738996cfe7bcf99b45314e193",{"_index":6753,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["kdiff3",{"_index":8744,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["keep",{"_index":5021,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["keep_loc",{"_index":7939,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["keep_log",{"_index":7052,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["kernel",{"_index":9745,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["key",{"_index":2131,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["key1",{"_index":3165,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["key2",{"_index":3167,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["key=list.count",{"_index":10645,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyerror",{"_index":10743,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keygen",{"_index":7755,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["keys.html",{"_index":10393,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["keyvalu",{"_index":6537,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["keyvault",{"_index":9256,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["keyword",{"_index":1896,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["keyword_args(**kwarg",{"_index":10778,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyword_args(big=\"foot",{"_index":10779,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyword_funct",{"_index":3723,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["keyword_function(a=1",{"_index":3717,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["keyword_function(b=4",{"_index":3720,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["kibana",{"_index":6888,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["kibana/config/kibana.yml",{"_index":10376,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["kill",{"_index":11581,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["kind",{"_index":650,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/posts/math-support":{}},"description":{}}],["kinesi",{"_index":5082,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["kinet",{"_index":11344,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["kit",{"_index":5037,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["km",{"_index":5142,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["knew",{"_index":10137,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["know",{"_index":5034,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["knowledg",{"_index":5184,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["known",{"_index":6266,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["knows(a",{"_index":5776,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["knows(candid",{"_index":5782,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["knows(i",{"_index":5789,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["kodekloud",{"_index":7889,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["kopia",{"_index":6604,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["kopia.ex",{"_index":6754,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["kopiaui",{"_index":6718,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["kreuzwerker/dock",{"_index":7935,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["kth",{"_index":5902,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{},"description":{}}],["kube",{"_index":6915,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kube/config",{"_index":7901,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubeadm",{"_index":8224,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["kubeapp",{"_index":8206,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["kubeconfig",{"_index":7896,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["kubectl",{"_index":6316,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kubeexec",{"_index":6466,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kubelet",{"_index":8283,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kubernet",{"_index":5100,"title":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["kubernetes.io",{"_index":8362,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["kubernetes.tf",{"_index":7894,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_deploy",{"_index":7903,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_deployment.test.spec.0.template.0.metadata.0.labels.app",{"_index":7911,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_namespac",{"_index":7902,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_namespace.test.metadata.0.nam",{"_index":7904,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_servic",{"_index":7910,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubetask",{"_index":6467,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kudu",{"_index":11345,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["kunal",{"_index":8161,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kushwaha",{"_index":8162,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kvm",{"_index":8298,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["kwarg",{"_index":2332,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/functions":{},"/posts/python-snippets/":{}},"description":{}}],["kwargs.item",{"_index":2340,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["l",{"_index":2703,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["l**inux",{"_index":9677,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["l2",{"_index":9438,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["la",{"_index":9623,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["lab",{"_index":5178,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["label",{"_index":7012,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["labor",{"_index":11114,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["lacinia",{"_index":10476,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["lacu",{"_index":10485,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["lambda",{"_index":2174,"title":{"/tracks/aws-certified-developer-associate/lambda/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{}}}],["lambdaexecutionrol",{"_index":5266,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["lamp",{"_index":9676,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["lang",{"_index":11010,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["languag",{"_index":3993,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["largest",{"_index":5903,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{},"description":{}}],["largestaltitude(gain",{"_index":6156,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["last",{"_index":1758,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/apps/brewmate/":{}},"description":{}}],["last_digit",{"_index":6076,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["lastrow",{"_index":11482,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["later",{"_index":10636,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["latest",{"_index":5022,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day34":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/brewmate/":{}},"description":{}}],["latest.tar.gz",{"_index":9702,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["launch",{"_index":5384,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/brewmate/":{}},"description":{}}],["layer",{"_index":9132,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["layer2",{"_index":9588,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["layer3",{"_index":9587,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["layout",{"_index":8811,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["layouts/partials/footer.html",{"_index":11228,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["layouts/partials/head.html",{"_index":11226,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["lbm",{"_index":10097,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["lca",{"_index":5867,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["ldot",{"_index":6199,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["le",{"_index":3445,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["leader",{"_index":9101,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["lean",{"_index":8493,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["learn",{"_index":5153,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["lectu",{"_index":10469,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["leetcod",{"_index":5428,"title":{"/tracks/algorithms-101/leetcode/_index":{}},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["leeto",{"_index":5437,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["left",{"_index":5567,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["left=non",{"_index":5562,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["legaci",{"_index":5403,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["len",{"_index":978,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["len(",{"_index":6103,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["len(\"эт",{"_index":10682,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(a",{"_index":6205,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(grid",{"_index":5898,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["len(haystack",{"_index":5441,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["len(height",{"_index":6006,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["len(li",{"_index":10722,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(merg",{"_index":6049,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["len(nam",{"_index":10686,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(needl",{"_index":5440,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["len(num",{"_index":5725,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["len(ord",{"_index":5947,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["len(row",{"_index":5823,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["len(self",{"_index":6226,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(self.numb",{"_index":2309,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["len(self.queu",{"_index":6066,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["len(self.stack",{"_index":5651,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["len(self.vec",{"_index":5806,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["len(self.vec[self.row",{"_index":5808,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["len(sen",{"_index":5509,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["len(str1",{"_index":6174,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(str2",{"_index":6175,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(sys.argv",{"_index":2675,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["len(t",{"_index":6104,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["len(tup",{"_index":10726,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(word1",{"_index":6135,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["len(word2",{"_index":6136,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["length",{"_index":971,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["lengthoflis(num",{"_index":5724,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["leo",{"_index":10523,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["less",{"_index":10259,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["lesson",{"_index":10093,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["let",{"_index":7853,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["let'",{"_index":10192,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["letter",{"_index":2628,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["level",{"_index":6601,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["levelname)",{"_index":2810,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["li",{"_index":3513,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/posts/python-snippets/":{}},"description":{}}],["li.append(1",{"_index":10698,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(2",{"_index":10699,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(3",{"_index":10701,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(4",{"_index":10700,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.extend(other_li",{"_index":10721,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(2",{"_index":10718,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(4",{"_index":10719,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.insert(1",{"_index":10717,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.pop",{"_index":10702,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.remove(2",{"_index":10716,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li2",{"_index":10714,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[0",{"_index":10703,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[1:3",{"_index":10706,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[2",{"_index":10707,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[4",{"_index":10704,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[:3",{"_index":10708,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[::2",{"_index":10709,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[начало:конец:шаг",{"_index":10712,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["liaison",{"_index":3908,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["lib",{"_index":9737,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["libapache2",{"_index":9682,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["libcontainers:/stable/xubuntu_20.04/release.key",{"_index":8426,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["libmysqlcli",{"_index":7614,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["librari",{"_index":5221,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["licens",{"_index":6786,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["life",{"_index":10089,"title":{},"content":{"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["lifecycl",{"_index":5419,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["lighten",{"_index":6683,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["lightgrey.svg",{"_index":10225,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["lightweight",{"_index":10318,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["ligula",{"_index":10493,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["limit",{"_index":8324,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["limitrang",{"_index":8325,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["line",{"_index":1759,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["lineag",{"_index":8065,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["link",{"_index":5676,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["lint",{"_index":7233,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["linter",{"_index":7232,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["linter.yml",{"_index":7253,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["linter@v3",{"_index":7235,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["linux",{"_index":3657,"title":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}}}],["linux)instal",{"_index":8575,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["linux/mac",{"_index":10282,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["list",{"_index":702,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["list(",{"_index":6113,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["list(filled_dict.valu",{"_index":10741,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(filter(lambda",{"_index":3246,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/posts/python-snippets/":{}},"description":{}}],["list(map(add_10",{"_index":10806,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(map(max",{"_index":10807,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(my_set",{"_index":3583,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["list(our_iter",{"_index":10772,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(valu",{"_index":10930,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list.txt",{"_index":9834,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["list[int",{"_index":5671,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["list[list[int",{"_index":5800,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["list_1",{"_index":2194,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_2",{"_index":2195,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_2[2].append(6",{"_index":2198,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_2[3",{"_index":2197,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_3",{"_index":2200,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_3[2].append(7",{"_index":2203,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_3[3",{"_index":2202,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["listel",{"_index":683,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["listelement.add(cameraopt",{"_index":694,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["listelement.innerhtml",{"_index":685,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["listen",{"_index":570,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["listen(8080",{"_index":1390,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["listnod",{"_index":5710,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["listnode(0",{"_index":5693,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["live",{"_index":11351,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["ljust",{"_index":3473,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["ll",{"_index":11617,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["lname",{"_index":1963,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["load",{"_index":5132,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["loadbalanc",{"_index":7202,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["loader",{"_index":11046,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["local",{"_index":571,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/posts/docker-commands/":{}},"description":{}}],["localconnect",{"_index":1554,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localconnection.createdatachannel('senddatachannel",{"_index":1563,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localconnection.createoffer().then",{"_index":1575,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localconnection.onicecandid",{"_index":1564,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localhost",{"_index":1428,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["localhost:8080",{"_index":1421,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["localhost:8080/foo",{"_index":1442,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["localpeerconnecionpc1.localdescript",{"_index":1186,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnect",{"_index":1093,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.addeventlisten",{"_index":1097,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.addeventlistener('icecandid",{"_index":1095,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.addstream(localstream",{"_index":1118,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.createoffer(offeropt",{"_index":1146,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.setlocaldescription(descript",{"_index":1156,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.setremotedescription(descript",{"_index":1169,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection:\\n${description.sdp",{"_index":1155,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localstream",{"_index":345,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localstream.gettracks().foreach(track",{"_index":349,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["localstream.getvideotrack",{"_index":1250,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localstream.getvideotracks()[0].stop",{"_index":1251,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localtim",{"_index":2887,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["localvideo",{"_index":1215,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localvideo.srcobject",{"_index":1115,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["locat",{"_index":6564,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["loch",{"_index":10782,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["loch=\"",{"_index":10780,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lock",{"_index":2607,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{}},"description":{}}],["log",{"_index":1151,"title":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day79":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["log('client",{"_index":1400,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log('got",{"_index":1318,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log('receiv",{"_index":1403,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log('room",{"_index":1409,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log.printf(\"%+v\\n",{"_index":9946,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log.printf(\"user'",{"_index":9931,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log.println(\"error",{"_index":9941,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log.println(err",{"_index":9942,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log10",{"_index":2060,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["log_level",{"_index":7030,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logdna",{"_index":7119,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["logger",{"_index":2799,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.addhandler(handl",{"_index":2813,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.critical('crit",{"_index":2818,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.debug('debug",{"_index":2814,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.error('error",{"_index":2817,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.info('info",{"_index":2815,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.setlevel(logging.info",{"_index":2805,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.warning('warn",{"_index":2816,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.exclud",{"_index":7054,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logging.filehandler('example.log",{"_index":2806,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.formatter('%(asctime)",{"_index":2808,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.getlogger('exampl",{"_index":2804,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.pars",{"_index":7053,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logic",{"_index":9222,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["login",{"_index":2729,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["login_password",{"_index":7630,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["login_unix_socket",{"_index":7626,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["login_us",{"_index":7628,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["logspout",{"_index":8440,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["logstash",{"_index":6957,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["logstash_format",{"_index":7056,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logstash_prefix",{"_index":7058,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["long_period",{"_index":10610,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["longer",{"_index":6176,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["longer[len(short",{"_index":6178,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["longest",{"_index":5714,"title":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{},"description":{}}],["longestones(a",{"_index":6019,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["longestzigzag(root",{"_index":5987,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["longrang",{"_index":797,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["look",{"_index":9894,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["look_for_keys=fals",{"_index":9396,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["loop",{"_index":2255,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day34":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["loop.run_until_complete(main",{"_index":2948,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["loop.run_until_complete(my_coroutin",{"_index":2936,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["lorem",{"_index":11108,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["lot",{"_index":5017,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["lower",{"_index":3429,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["lowercas",{"_index":2085,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["lowercase_decor",{"_index":2097,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["lowercase_decorator(funct",{"_index":2086,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["lowest",{"_index":5861,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"content":{},"description":{}}],["lowestcommonancestor(root",{"_index":5872,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["lowestcommonancestor(root.left",{"_index":5876,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["lowestcommonancestor(root.right",{"_index":5877,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["lqvkgdt16bf1q6cx",{"_index":5018,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["lr",{"_index":9158,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/diagram-support":{}},"description":{}}],["lru",{"_index":3282,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["lru_cach",{"_index":3280,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["lru_cache(maxsize=128",{"_index":3285,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["ls",{"_index":2710,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["lsb_releas",{"_index":9732,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["lsblk",{"_index":9771,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["lstrip",{"_index":3474,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["lt",{"_index":3446,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["lucen",{"_index":6819,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["luck",{"_index":9886,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["luna",{"_index":3871,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["lunr",{"_index":11870,"title":{"/apps/npm/hugo-lunr-ml/":{}},"content":{"/apps/_index":{}},"description":{}}],["lunr.j",{"_index":11875,"title":{},"content":{},"description":{"/apps/npm/hugo-lunr-ml/":{}}}],["lvl",{"_index":6600,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["lxc",{"_index":8433,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["m",{"_index":2856,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["m**ysql",{"_index":9679,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["m.sqrt(16",{"_index":10817,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["m1",{"_index":8604,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["m65",{"_index":119,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m69",{"_index":129,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m71",{"_index":106,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m72",{"_index":150,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m93",{"_index":168,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m96",{"_index":170,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["mac",{"_index":1249,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{}}],["macbook",{"_index":11369,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["macd",{"_index":10622,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["machin",{"_index":5411,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day34":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["machine[:box",{"_index":7730,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["machine[:hostnam",{"_index":7728,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["machine[:ip",{"_index":7738,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["machine[:ssh_port",{"_index":7741,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["maco",{"_index":3655,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/apps/brewmate/":{}},"description":{}}],["made",{"_index":6345,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["maecena",{"_index":10452,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mail",{"_index":2718,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["main",{"_index":1769,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["main.ex",{"_index":10281,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["main.go",{"_index":9889,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["main.j",{"_index":1050,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["main.pi",{"_index":3682,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["main.t",{"_index":11405,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["main.tf",{"_index":8015,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["main.yml",{"_index":7606,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["mainhandl",{"_index":3003,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["mainhandler(tornado.web.requesthandl",{"_index":2991,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["make",{"_index":1557,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/posts/diagram-support":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["make_app",{"_index":3001,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["make_x_and_i",{"_index":11003,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["make_x_and_y(n",{"_index":11001,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["make_x_and_y(n=1000",{"_index":11004,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["makecal",{"_index":493,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["makefil",{"_index":9971,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["maketran",{"_index":3475,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["malesuada",{"_index":10516,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["man",{"_index":6303,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["manag",{"_index":5122,"title":{"/tracks/90daysofdevops/day79":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{},"/apps/brewmate/":{}}}],["manage.pi",{"_index":3110,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["management(cloud0",{"_index":9326,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["mani",{"_index":9877,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day19/":{},"/posts/math-support":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["manifest",{"_index":6917,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["manifests/setup",{"_index":6916,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["manual",{"_index":3973,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["map",{"_index":2165,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["map(text",{"_index":11290,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["march",{"_index":10630,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["margin",{"_index":10583,"title":{},"content":{"/posts/emoji-support":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["margo",{"_index":11503,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["mariadb",{"_index":9189,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["mark",{"_index":11163,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["markdown",{"_index":6371,"title":{"/posts/markdown-syntax/":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day41":{},"/posts/diagram-support":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/markdown-syntax/":{}}}],["marketplac",{"_index":8221,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["markup",{"_index":8503,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["markup.goldmark.renderer.unsaf",{"_index":10591,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["mask",{"_index":9552,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["massa",{"_index":10540,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["master",{"_index":7055,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.sh",{"_index":8284,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.hostnam",{"_index":8263,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.network",{"_index":8264,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.provid",{"_index":8268,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.provis",{"_index":8275,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["match",{"_index":7050,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["match/cas",{"_index":3790,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["match_label",{"_index":7907,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["matchlabel",{"_index":8174,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["materi",{"_index":5213,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["math",{"_index":2058,"title":{"/posts/math-support":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/posts/python-snippets/":{}},"description":{}}],["math.exp",{"_index":2065,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["math.pi",{"_index":3686,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/posts/python-snippets/":{}},"description":{}}],["math.sqrt(16",{"_index":10816,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mathemat",{"_index":10431,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["matplotlib",{"_index":3194,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["matplotlib.pyplot",{"_index":10991,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["matrix",{"_index":5811,"title":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/posts/math-support":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["matrix.nod",{"_index":11083,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["matti",{"_index":10481,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mauri",{"_index":10474,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["maven",{"_index":7328,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{}},"description":{}}],["maven:3.8.1",{"_index":7329,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["max",{"_index":814,"title":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/argparse":{},"/posts/emoji-support":{}},"description":{}}],["max(db.key",{"_index":3090,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["max(dp",{"_index":5728,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["max(dp[i",{"_index":5722,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["max(height[:i",{"_index":6036,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max(height[i",{"_index":6038,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max(max_altitud",{"_index":6157,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max(max_area",{"_index":6011,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max(max_length",{"_index":6023,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max(max_twin_sum",{"_index":5921,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["max(max_zigzag",{"_index":5984,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["max(set(list",{"_index":10644,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["max_altitud",{"_index":6154,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max_area",{"_index":6007,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max_left",{"_index":6035,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max_length",{"_index":6017,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max_right",{"_index":6037,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max_twin_sum",{"_index":5918,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["max_valu",{"_index":3604,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["max_zigzag",{"_index":5982,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["maxarea(height",{"_index":6005,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["maxim",{"_index":11379,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["maximu",{"_index":10453,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["maximum",{"_index":5912,"title":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["maxoperations(num",{"_index":5971,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["mbstring",{"_index":9694,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["mc",{"_index":8136,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["mcdonald'",{"_index":4427,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["md",{"_index":8564,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["mdor",{"_index":9151,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["mdprompt",{"_index":9794,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["meanwhil",{"_index":10411,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["measur",{"_index":4656,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["media",{"_index":281,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day16":{},"/posts/emoji-support":{}},"description":{}}],["media.gstreamer.en",{"_index":322,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["media.navigator.permission.dis",{"_index":320,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["media.navigator.streams.fak",{"_index":318,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["mediadevic",{"_index":599,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["mediadevicesinfo",{"_index":644,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["median",{"_index":6041,"title":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{},"description":{}}],["mediarecord",{"_index":1029,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["mediastream",{"_index":371,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["mediastream.gettrack",{"_index":850,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mediastream.id",{"_index":373,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["mediastreamconstraint",{"_index":609,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["mediastreamtrack",{"_index":384,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mediastreamtrack.getset",{"_index":820,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mediatrackconstraint",{"_index":788,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["mediatrackset",{"_index":822,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["medium",{"_index":6282,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day81":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["medium.com",{"_index":11794,"title":{},"content":{"/p/publications":{}},"description":{}}],["mediumzoom('#zoom",{"_index":11258,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["meet",{"_index":5410,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mehyedes/nodej",{"_index":7398,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["mem_buf_limit",{"_index":7042,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["memori",{"_index":7746,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/posts/markdown-syntax/":{}},"description":{}}],["memory=6g",{"_index":7524,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["memorydb",{"_index":5105,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["mendeley",{"_index":3938,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["mentor",{"_index":8807,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["meow",{"_index":3874,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["merg",{"_index":6047,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["merge_log",{"_index":7051,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["mergealternately(word1",{"_index":6134,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["merged.sort",{"_index":6048,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["merged[middl",{"_index":6050,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["mermaid",{"_index":10585,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["messag",{"_index":452,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["message)",{"_index":2811,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["message.answ",{"_index":497,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["message.cook_sec",{"_index":5281,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message.icecandid",{"_index":577,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["message.off",{"_index":510,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["message.pr",{"_index":5283,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message.req_sec",{"_index":5282,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message=msg",{"_index":10826,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["messagebox",{"_index":870,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["messagebox.dis",{"_index":877,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["messagebox.focu",{"_index":878,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["messagebox.textcont",{"_index":890,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["message}\".format(name=self.nam",{"_index":10825,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["meta.helm.sh/releas",{"_index":7020,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["metadata",{"_index":6534,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["metal",{"_index":8344,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["metallb",{"_index":8184,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["metavar='n",{"_index":2958,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["method",{"_index":2434,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/posts/interactivebrokers-deposit/":{},"/apps/_index":{}},"description":{}}],["method(self",{"_index":2499,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["methods=['delet",{"_index":3056,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["methods=['get",{"_index":3032,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["methods=['post",{"_index":3045,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["methods=['put",{"_index":3052,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["metric",{"_index":6930,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["metricbeat",{"_index":10317,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["metricfir",{"_index":7085,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["metu",{"_index":10479,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mgmt",{"_index":7837,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["mi",{"_index":10499,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mib",{"_index":7993,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["michael",{"_index":10189,"title":{"/authors/michael-cade/_index":{}},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["michaelcade/dotfil",{"_index":9619,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["michaelcade1",{"_index":9999,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["michaelcade1/helloworld:latest",{"_index":7356,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["michaelcade1\\90daysofdevop",{"_index":7286,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["microservic",{"_index":6948,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["microsoft",{"_index":3700,"title":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}}}],["microsoft.azure.networkwatch",{"_index":9030,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.compute/virtualmachin",{"_index":8969,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/networkinterfac",{"_index":9008,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/networksecuritygroup",{"_index":9076,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/publicipaddress",{"_index":9074,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/virtualnetwork",{"_index":8997,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoftwindowsserv",{"_index":8986,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["middl",{"_index":2030,"title":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/posts/emoji-support":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["midjourney",{"_index":11634,"title":{"/photos/midjourney/":{}},"content":{},"description":{"/photos/midjourney/":{}}}],["midnight",{"_index":10631,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["migrat",{"_index":5402,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["milk",{"_index":11158,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["min",{"_index":730,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["min(height[left",{"_index":6009,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["min(max_left",{"_index":6039,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["min1",{"_index":5661,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["min2",{"_index":5662,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["min_height",{"_index":6008,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["minheight",{"_index":724,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["minikub",{"_index":6319,"title":{"/tracks/90daysofdevops/day51":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["minim",{"_index":11380,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["minimum",{"_index":5052,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day58":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["minimumoperations(num",{"_index":5757,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["mint",{"_index":11130,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["minut",{"_index":2839,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["minute=30",{"_index":2851,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["minwidth",{"_index":723,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["miss",{"_index":8825,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["mkdir",{"_index":8790,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["mkf",{"_index":9777,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ml",{"_index":11871,"title":{"/apps/npm/hugo-lunr-ml/":{}},"content":{"/apps/_index":{}},"description":{}}],["mla",{"_index":3991,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["mlocat",{"_index":9804,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["mm",{"_index":10626,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mnt",{"_index":9741,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["mobil",{"_index":6353,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["mock",{"_index":3219,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock.patch",{"_index":3236,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock.patch('main.get_external_data",{"_index":3228,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock_get_external_data",{"_index":3230,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock_get_external_data.return_valu",{"_index":3231,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mod",{"_index":3447,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["mod04_90daysofdevop",{"_index":8936,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["mod07_90daysofdevop",{"_index":9048,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["mode",{"_index":9370,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/posts/docker-commands/":{}},"description":{}}],["model",{"_index":3120,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["models.pi",{"_index":3144,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["modern",{"_index":3992,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["modifi",{"_index":1814,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["modifyvm",{"_index":7745,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["modul",{"_index":1874,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["module.export",{"_index":11052,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["module4_90daysofdevops.ps1",{"_index":9015,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["moduleresolut",{"_index":11422,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["modules/librari",{"_index":2268,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["molecul",{"_index":7545,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["molli",{"_index":10477,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mongo",{"_index":8110,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["mongodb",{"_index":6304,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["monitor",{"_index":842,"title":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/apps/_index":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["month",{"_index":2836,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/_index":{},"/apps/brewmate/":{}},"description":{}}],["mood",{"_index":8805,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["more",{"_index":3500,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["mosh",{"_index":8445,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["most_freq(list",{"_index":10643,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["motion",{"_index":837,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mount",{"_index":6752,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["mountpath",{"_index":7336,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["move",{"_index":6120,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/90daysofdevops/day38":{},"/posts/trading-indicators/sma":{}},"description":{}}],["movezeroes(num",{"_index":6125,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["movi",{"_index":10862,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["movie=fals",{"_index":10863,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["movie=tru",{"_index":10910,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mpq8cbjjwrj88z4xmf7blqxcfmwdsmq92bmwjpphdkklfckk5hfwc2",{"_index":8235,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["mr",{"_index":2356,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["mro",{"_index":10878,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["msdn",{"_index":9282,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["msg",{"_index":7698,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/python-snippets/":{}},"description":{}}],["msid",{"_index":62,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["msp",{"_index":8348,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["mssql",{"_index":9128,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["mul",{"_index":2173,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["mulfiv",{"_index":2178,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["multibranch",{"_index":7300,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["multicloud",{"_index":9100,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["multiline.pars",{"_index":7040,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["multilingu",{"_index":11872,"title":{},"content":{"/apps/_index":{}},"description":{}}],["multinod",{"_index":10205,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["multipl",{"_index":10206,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["multipli",{"_index":3331,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiplier(n",{"_index":3330,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply(a",{"_index":2335,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["multiply_bi",{"_index":3338,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply_by(2",{"_index":3333,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply_by(3",{"_index":3335,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply_by(num",{"_index":3329,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["mutabl",{"_index":7832,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["mute",{"_index":298,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["mv",{"_index":5398,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["my.cnf",{"_index":7619,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["my.cnf.j2",{"_index":7637,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["my_attribut",{"_index":3818,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_class_method(cl",{"_index":3255,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_context",{"_index":3275,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_coroutin",{"_index":2933,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["my_dict",{"_index":3366,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["my_dict.get('nam",{"_index":3776,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict.item",{"_index":3786,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict.key",{"_index":3784,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict.valu",{"_index":3785,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict['nam",{"_index":3775,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict['occup",{"_index":3778,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict_2",{"_index":3771,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dir",{"_index":11615,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["my_first_encryption_key",{"_index":10359,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["my_fodl",{"_index":8791,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["my_fold",{"_index":8792,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["my_func",{"_index":1760,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/scope":{}},"description":{}}],["my_func(1",{"_index":1755,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_func(a",{"_index":1752,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_list",{"_index":1809,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{}},"description":{}}],["my_list2",{"_index":3635,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["my_list[0",{"_index":1817,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_method",{"_index":3820,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_method(self",{"_index":3819,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_nested_list",{"_index":3634,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["my_numb",{"_index":3408,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_obj",{"_index":3266,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_object",{"_index":2565,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["my_other_method",{"_index":3826,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_other_method(self",{"_index":3824,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_program.pi",{"_index":2666,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["my_react_app",{"_index":11239,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["my_second_encryption_key",{"_index":10360,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["my_set",{"_index":3369,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["my_set.add(4",{"_index":3565,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.difference(other_set",{"_index":3575,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.intersection(other_set",{"_index":3572,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.remove(2",{"_index":3566,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.symmetric_difference(other_set",{"_index":3578,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.union(other_set",{"_index":3569,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_static_method(arg1",{"_index":3259,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_str",{"_index":3410,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0",{"_index":3529,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:12",{"_index":3525,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:13",{"_index":3527,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:14",{"_index":3528,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:4",{"_index":3512,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[2",{"_index":3530,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[:1",{"_index":3524,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_tag",{"_index":11585,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["my_tupl",{"_index":1808,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{}},"description":{}}],["my_tuple[0",{"_index":1813,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_valu",{"_index":2776,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["myclass",{"_index":2490,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["myclass(\"john",{"_index":2566,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myclass(10",{"_index":3267,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["myclass.my_class_method('a",{"_index":3257,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["myclass.my_static_method('a",{"_index":3261,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["mycountbutton",{"_index":11234,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["mycustomfunc",{"_index":5257,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["myemptyfunc",{"_index":1892,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myfunc",{"_index":3728,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["myfunc(*arg",{"_index":3724,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["myfunc(a",{"_index":3726,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["myimportantdata",{"_index":6498,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mykey",{"_index":5392,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mykey.pem",{"_index":5399,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mymod",{"_index":1878,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["mymod.myobj",{"_index":1877,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myobj",{"_index":1879,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myscript.pi",{"_index":3309,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["mysite.j2",{"_index":7576,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql",{"_index":5404,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["mysql.us",{"_index":7643,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql:5.7",{"_index":7951,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql=mi",{"_index":6585,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_databas",{"_index":8512,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_database=wordpress",{"_index":7956,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_db",{"_index":7635,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql_exec",{"_index":6502,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_exec=\"${mysql_exec",{"_index":6492,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_exec=\"mysql",{"_index":6484,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_host",{"_index":6485,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_host=${mysql_host",{"_index":6493,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_host=mysql",{"_index":6482,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_password",{"_index":8514,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_password=wordpress",{"_index":7954,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_root_password",{"_index":8510,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_root_password=$(kubectl",{"_index":6480,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_root_password=${mysql_root_password",{"_index":6488,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_root_password=wordpress",{"_index":7953,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_us",{"_index":8513,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_user=wordpress",{"_index":7955,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_user_nam",{"_index":7629,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql_user_password",{"_index":7631,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysqlclouddump",{"_index":6536,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysqldb",{"_index":7613,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysqldump",{"_index":6558,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysqlsecret",{"_index":6541,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mytestapp",{"_index":7908,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["mywrapper(5",{"_index":2179,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["mywrapper(n",{"_index":2177,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["n",{"_index":901,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day11":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["n+1",{"_index":6268,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["n.b",{"_index":10569,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["na",{"_index":6605,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["nagio",{"_index":6900,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{}},"description":{}}],["nam",{"_index":10515,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["name",{"_index":1341,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{}}],["name)",{"_index":2809,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["name1",{"_index":2119,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["name2",{"_index":2118,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["name:tag",{"_index":11584,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["name=apache2",{"_index":7666,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["name=httpd",{"_index":7775,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["name=mysql",{"_index":7615,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["nameerror",{"_index":1761,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["names_decor",{"_index":2116,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["names_decorator(funct",{"_index":2108,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["namespac",{"_index":6391,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["namespace.nam",{"_index":6575,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["namespace.yml",{"_index":7370,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["namespace=${app_nam",{"_index":6479,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["namespace=awx",{"_index":7532,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["namespace=kasten",{"_index":6432,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["name}!\\n",{"_index":2687,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["nana",{"_index":8158,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["nano",{"_index":9639,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["nano/vim",{"_index":9703,"title":{"/tracks/90daysofdevops/day17":{}},"content":{},"description":{}}],["narg",{"_index":2960,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["nasa",{"_index":10099,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["nat",{"_index":211,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["natdnshostresolver1",{"_index":8274,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["nation",{"_index":4522,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["nativ",{"_index":6852,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["navig",{"_index":8815,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["navigator.mediadevic",{"_index":596,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["navigator.mediadevices.addeventlistener(‘devicechang",{"_index":704,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["navigator.mediadevices.enumeratedevic",{"_index":658,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["navigator.mediadevices.getdisplaymedia",{"_index":913,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["navigator.mediadevices.getusermedia",{"_index":912,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["navigator.mediadevices.getusermedia(constraint",{"_index":614,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["navigator.mediadevices.getusermedia(mediastreamconstraint",{"_index":1111,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["nc",{"_index":10212,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ne",{"_index":3448,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["near",{"_index":806,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["nec",{"_index":10484,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["necessari",{"_index":9426,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["need",{"_index":5033,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["needl",{"_index":5431,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["neg",{"_index":3796,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["neo4j",{"_index":6812,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["neofetch",{"_index":7653,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["nequ",{"_index":10530,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ness",{"_index":10783,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nest",{"_index":2151,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["nestediter",{"_index":5639,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["nestedlist",{"_index":5640,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["net",{"_index":7885,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["net=host",{"_index":8230,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["net_connect",{"_index":9358,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["net_connect.disconnect",{"_index":9362,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["net_connect.en",{"_index":9374,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["net_connect.send_config_set(core_sw_config",{"_index":9375,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["netaddr",{"_index":9423,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["netapp",{"_index":9183,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["netdevop",{"_index":9600,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["netflix",{"_index":10067,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["netmiko",{"_index":9347,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["network",{"_index":5129,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["network.http.us",{"_index":328,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["network_adapt",{"_index":7994,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["network_mod",{"_index":7952,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["networkapivers",{"_index":8964,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkchuck",{"_index":7546,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["networkinterfac",{"_index":8995,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkprofil",{"_index":8994,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networksecuritygroup",{"_index":9072,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkwatcherag",{"_index":9029,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkwatcheragentwindow",{"_index":9031,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["netyc",{"_index":9532,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["never",{"_index":838,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["new",{"_index":257,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["new(nodestatic.serv",{"_index":1385,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["new_db_nam",{"_index":2914,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["new_dict",{"_index":2130,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["new_file.txt",{"_index":8842,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["new_image_name:v1",{"_index":11603,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["new_method(self",{"_index":2504,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["new_nam",{"_index":11309,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["new_sourc",{"_index":11301,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["newcameralist",{"_index":705,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["newdisk",{"_index":9781,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["newer",{"_index":11892,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["newfile.txt",{"_index":8756,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["newfilenam",{"_index":11320,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["newicecandid",{"_index":1125,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["newurl",{"_index":11331,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["newus",{"_index":9818,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["next",{"_index":2096,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day26":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["next(our_iter",{"_index":10770,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["next(self",{"_index":2307,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["next.config.j",{"_index":11045,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["next.j",{"_index":11016,"title":{"/posts/nextjs-to-github-pages-ations/":{}},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["next/imag",{"_index":11048,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["next=non",{"_index":5711,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["nextj",{"_index":11058,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["nf",{"_index":6722,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["ng",{"_index":9323,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["nginx",{"_index":7000,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["nginx:latest",{"_index":7938,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["nibh",{"_index":10498,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nic",{"_index":8956,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nic0",{"_index":9051,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["niccopi",{"_index":9007,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nicnam",{"_index":9050,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nigel",{"_index":9985,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["nil",{"_index":9930,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["nisi",{"_index":10457,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nisl",{"_index":10460,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nn",{"_index":1496,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["nobi",{"_index":11121,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nocturn",{"_index":11172,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["node",{"_index":996,"title":{"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day07":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["node(pod_label",{"_index":7343,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["node(s[idx",{"_index":6263,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["node.j",{"_index":994,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["node.left",{"_index":5985,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["node.next",{"_index":5858,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["node.next.next",{"_index":5859,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["node.next.v",{"_index":5857,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["node.right",{"_index":5986,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["node.v",{"_index":5574,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["node.vm.box",{"_index":7729,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["node.vm.hostnam",{"_index":7731,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["node.vm.network",{"_index":7732,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["node.vm.provid",{"_index":7742,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["node.vm.provis",{"_index":8280,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node0#{i",{"_index":8279,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node01",{"_index":8252,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node02",{"_index":8253,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node@v2",{"_index":7226,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["node@v3",{"_index":11040,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["node_port",{"_index":7912,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["nodeintegr",{"_index":11431,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nodej",{"_index":6307,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["nodeport",{"_index":7529,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["nodestat",{"_index":1379,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["noemit",{"_index":11425,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nofallthroughcasesinswitch",{"_index":11421,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nojekyl",{"_index":11084,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["nomad",{"_index":8359,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["non",{"_index":4639,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day19/":{},"/posts/featured-image":{}},"description":{}}],["noncommerci",{"_index":10216,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["none",{"_index":1827,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["nonetyp",{"_index":1832,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["nonloc",{"_index":1772,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["nopasswd",{"_index":11385,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["normal",{"_index":9708,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["nornir",{"_index":9529,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["nosql",{"_index":6773,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["nostion",{"_index":11133,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["note",{"_index":2452,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/docker-commands/":{}},"description":{}}],["notfounderror",{"_index":634,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["noth",{"_index":1893,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["notic",{"_index":9443,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["notif",{"_index":5087,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["notifi",{"_index":7622,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["notion",{"_index":11065,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["notocoloremoji",{"_index":10575,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["novel",{"_index":10163,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["novemb",{"_index":11142,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["now",{"_index":1410,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["now.strftime(\"%d",{"_index":2855,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["now.strftime(\"%d/%m/%i",{"_index":9378,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["nowrap",{"_index":10582,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["np",{"_index":10993,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["np.random.randn(1000",{"_index":10994,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["np.random.randn(n",{"_index":11002,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["npm",{"_index":992,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{}}],["ns",{"_index":6317,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["nsg",{"_index":9077,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["nsg0",{"_index":9056,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nsgname",{"_index":9055,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nso",{"_index":9531,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["ntp",{"_index":7590,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["null",{"_index":1545,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["nulla",{"_index":10463,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nullam",{"_index":10467,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["num",{"_index":1782,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/python-snippets/":{}},"description":{}}],["num[i",{"_index":5761,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["num_worker_nodes=2",{"_index":8255,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["number",{"_index":1840,"title":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/posts/emoji-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/interactivebrokers-deposit/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["number_list",{"_index":2303,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["numclient",{"_index":1321,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["numcours",{"_index":5935,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["numer",{"_index":10026,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/posts/docker-commands/":{}},"description":{}}],["numpi",{"_index":3191,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["nums.sort",{"_index":5910,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["nums1",{"_index":6042,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["nums2",{"_index":6043,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["nums[0",{"_index":5744,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nums[har",{"_index":5748,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nums[i",{"_index":5718,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["nums[j",{"_index":5720,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["nums[nums[har",{"_index":5746,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nums[p1",{"_index":5968,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["nums[p2",{"_index":5969,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["nums[po",{"_index":6126,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["nums[tortois",{"_index":5745,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nunc",{"_index":10500,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nutanix",{"_index":8011,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["n×n",{"_index":5883,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["o",{"_index":2213,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["o(n",{"_index":5828,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["oauth",{"_index":8376,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["oauth1.newconfig(creds.consumerkey",{"_index":9914,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["oauth1.newtoken(creds.accesstoken",{"_index":9916,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["oauth2",{"_index":9228,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["obj",{"_index":2445,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj.display",{"_index":2447,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj.length",{"_index":11462,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj1",{"_index":2383,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.a_func",{"_index":2432,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.b_func",{"_index":2433,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.child_func",{"_index":2386,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.display_nam",{"_index":2409,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.par_func",{"_index":2385,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj2",{"_index":2431,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj2.a_func",{"_index":2435,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj2.c_func",{"_index":2436,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj[key",{"_index":11459,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object",{"_index":1561,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/vps-docker-subdomains-setup/project/projects/3/":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{},"/_home/blank":{}},"description":{}}],["object.assign",{"_index":11451,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.config",{"_index":6744,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["object.key",{"_index":11453,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.keys(clientsinroom.sockets).length",{"_index":1408,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["object.keys(clone).foreach",{"_index":11456,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.metadata.label",{"_index":6542,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["observ",{"_index":6889,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{}}],["observedzoom",{"_index":11272,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["observedzooms.foreach(zoom",{"_index":11274,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["obstacl",{"_index":4648,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["occur",{"_index":5436,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["occurr",{"_index":5429,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["oci",{"_index":8417,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["odd",{"_index":5674,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["odd.next",{"_index":5695,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["odd_head",{"_index":5684,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["odd_head.next",{"_index":5698,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oddevenlist(head",{"_index":5713,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oddevenlist(self",{"_index":5691,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oecd",{"_index":4531,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["offer",{"_index":501,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["offic",{"_index":8576,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["offici",{"_index":5172,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["oh",{"_index":9627,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["ohmyzsh",{"_index":9626,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["ok",{"_index":7323,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["old.\".format(self.nam",{"_index":3839,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["old_dict.item",{"_index":2133,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["old_fil",{"_index":8839,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["old_file.txt",{"_index":8838,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["old_sourc",{"_index":11299,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["on",{"_index":3795,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["on_click",{"_index":11015,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["on_focu",{"_index":11014,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["onc",{"_index":6420,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["onclick",{"_index":11237,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["oncreatesessiondescriptionerror",{"_index":1577,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["one_day",{"_index":2865,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["one_list",{"_index":3639,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["onedr",{"_index":9298,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["onelin",{"_index":8750,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["onicecandid",{"_index":1091,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["online/offlin",{"_index":10367,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["onsendchannelstatechang",{"_index":1567,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["opacity(0.5",{"_index":1259,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["open",{"_index":722,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["open(\"example.txt",{"_index":3736,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["open(\"test.txt",{"_index":3740,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["open('backup.txt",{"_index":9388,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["open('clcoding.pdf",{"_index":10652,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["open('config.ini",{"_index":2908,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["open('output.txt",{"_index":2691,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["open(filenam",{"_index":9411,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["opencamera(cameraid",{"_index":726,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["opencamera(cameras[0].deviceid",{"_index":738,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["openid",{"_index":9227,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["openmediadevic",{"_index":622,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["openmediadevices({'video':true,'audio':tru",{"_index":624,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["opensearch",{"_index":5080,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["openshift",{"_index":6422,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["openssh",{"_index":8886,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["openssl",{"_index":10365,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["oper",{"_index":4530,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day05/":{}}}],["opera",{"_index":1602,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["operator.git",{"_index":7527,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["operator/kub",{"_index":6913,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["opex",{"_index":9314,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["opredeljajushhi",{"_index":11731,"title":{},"content":{"/p/publications":{}},"description":{}}],["opscod",{"_index":7811,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["opt",{"_index":9743,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["optim",{"_index":5045,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["option",{"_index":254,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["optional[listnod",{"_index":5692,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oracl",{"_index":7486,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["orang",{"_index":3649,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/posts/markdown-syntax/":{}},"description":{}}],["orchestr",{"_index":7830,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["orci",{"_index":10552,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["orcid",{"_index":3917,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["order",{"_index":1552,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/diagram-support":{}},"description":{}}],["order.append(prereq",{"_index":5944,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["org/mi",{"_index":11587,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["org:mi",{"_index":11589,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["origin",{"_index":5338,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["orm",{"_index":3153,"title":{},"content":{"/tracks/python-101/frameworks/_index":{}},"description":{}}],["ornar",{"_index":10455,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["os",{"_index":1377,"title":{"/tracks/python-101/standard_library/os":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/apps/_index":{}},"description":{}}],["os.chdir('/path/to/new/dir",{"_index":2779,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.chdir(path",{"_index":2757,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.environ",{"_index":2755,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.environ['hom",{"_index":2774,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.environ['my_var",{"_index":2775,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.getcwd",{"_index":2756,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.getenv",{"_index":2746,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.getenv(\"access_token",{"_index":9936,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.getenv(\"access_token_secret",{"_index":9937,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.getenv(\"consumer_key",{"_index":9938,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.getenv(\"consumer_secret",{"_index":9939,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.listdir",{"_index":2743,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.makedirs('/path/to/new/dir",{"_index":2787,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.makedirs(nam",{"_index":10641,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["os.makedirs(path",{"_index":2763,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.mkdir",{"_index":2744,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.networkinterfac",{"_index":1414,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["os.path.exists('/path/to/file.txt",{"_index":2784,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.exists(nam",{"_index":10640,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["os.path.exists(path",{"_index":2760,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.isdir('/path/to/dir",{"_index":2786,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.isdir(path",{"_index":2762,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.isfile(path",{"_index":2761,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.join('/path/to",{"_index":2781,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.join(path1",{"_index":2758,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.splitext",{"_index":11304,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.path.splitext(fil",{"_index":11306,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.putenv",{"_index":2747,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.remov",{"_index":2748,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.remove(\"changedfile.csv",{"_index":2319,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["os.remove(\"file.txt",{"_index":2771,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.remove(file_nam",{"_index":2318,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["os.renam",{"_index":2749,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(\"old_sourc",{"_index":11303,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(fil",{"_index":11311,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rmdir('/path/to/dir",{"_index":2788,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.rmdir(path",{"_index":2764,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.startfil",{"_index":2750,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.system",{"_index":2745,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.system(\"l",{"_index":2772,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.walk",{"_index":2751,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.walk(path",{"_index":2790,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["osdisk",{"_index":8990,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["osi",{"_index":9539,"title":{"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day22":{}}}],["osobennosti",{"_index":11698,"title":{},"content":{"/p/publications":{}},"description":{}}],["osprofil",{"_index":8975,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["other_li",{"_index":10697,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["other_set",{"_index":3567,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/posts/python-snippets/":{}},"description":{}}],["otherp",{"_index":1127,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["otherpeer.addicecandidate(newicecandid",{"_index":1129,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["otherwis",{"_index":11593,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["our_iter",{"_index":10767,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["our_iterable[1",{"_index":10768,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["out",{"_index":5058,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["out/.nojekyl",{"_index":11085,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["outdir",{"_index":11054,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["outer_func",{"_index":3326,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["outer_func(10",{"_index":3323,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["outer_func(x",{"_index":3319,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["output",{"_index":1811,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/posts/docker-commands/":{}},"description":{}}],["output.txt",{"_index":2696,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["outputartifact",{"_index":6535,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["overconstrainederror",{"_index":1238,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["overrid",{"_index":2494,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["overview",{"_index":5171,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ovf",{"_index":9462,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["owner",{"_index":9249,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["p",{"_index":2251,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["p**hp",{"_index":9680,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["p.val",{"_index":5874,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["p/deploy",{"_index":11060,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["p/hello",{"_index":11057,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["p/learn",{"_index":11059,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["p1",{"_index":5957,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["p1.next",{"_index":5961,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["p2",{"_index":5958,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["p2.next",{"_index":5963,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["p2.next.next",{"_index":5964,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["p2p",{"_index":400,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["p4merg",{"_index":8745,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["pa55w.rd1234",{"_index":8947,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["paa",{"_index":8013,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["pac",{"_index":6302,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{}},"description":{}}],["pace",{"_index":8338,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["packag",{"_index":3175,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["package.json",{"_index":1277,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["package_nam",{"_index":3180,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["package_name==version_numb",{"_index":3181,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["packer",{"_index":8438,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["pacman",{"_index":6318,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["page",{"_index":8693,"title":{"/search/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/brewmate/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["pages.pub",{"_index":11021,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pages@v3",{"_index":11035,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pair",{"_index":5881,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{},"description":{}}],["palindrom",{"_index":6067,"title":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{},"description":{}}],["panda",{"_index":3193,"title":{},"content":{"/tracks/python-101/external_packages/_index":{}},"description":{}}],["panel",{"_index":6929,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["par_func(self",{"_index":2376,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["paradigm",{"_index":6349,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["paragraph",{"_index":11281,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.innerhtml",{"_index":11286,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.textcont",{"_index":11287,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraphs.foreach(paragraph",{"_index":11283,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["parallel",{"_index":2149,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["param",{"_index":11284,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paramet",{"_index":5413,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('adminpassword",{"_index":8978,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('adminusernam",{"_index":8977,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('virtualnetworknam",{"_index":8957,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('vmcount",{"_index":8968,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('vms",{"_index":8982,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters.json",{"_index":8937,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["paramiko",{"_index":9376,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["paramiko.sshcli",{"_index":9393,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["parent",{"_index":2374,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent(object",{"_index":2439,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent.nam",{"_index":2442,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent1",{"_index":2413,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent1_func(self",{"_index":2414,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent2",{"_index":2417,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent2_func(self",{"_index":2418,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parentclass",{"_index":2375,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pars",{"_index":9897,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["parseint(sheet.getlastrow",{"_index":11483,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["parser",{"_index":2955,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["parser.add_argu",{"_index":2963,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["parser.add_argument('integ",{"_index":2957,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["parser.parse_arg",{"_index":2970,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["parsers.conf",{"_index":7032,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["parsers_fil",{"_index":7031,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["part",{"_index":5405,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["parti",{"_index":10316,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["partial",{"_index":87,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["partit",{"_index":3476,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["partner",{"_index":5209,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["partnership",{"_index":5192,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["pass",{"_index":1889,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["passwd",{"_index":9817,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["password",{"_index":2731,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["password=${mysql_root_password",{"_index":6486,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["password=${root_password",{"_index":6560,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["passwordauthent",{"_index":9671,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["paswd",{"_index":9383,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["patch",{"_index":6616,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["path",{"_index":5548,"title":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/homepage/experience":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["path(fil",{"_index":11314,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path.rename(new_nam",{"_index":11313,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path/to/package.whl",{"_index":3182,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["path2",{"_index":2759,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["pathlib",{"_index":11312,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["pathlib.path.walk",{"_index":2753,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["pathsum(root",{"_index":5582,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["pattern",{"_index":5202,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["payload",{"_index":3164,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["pbs.twimg.com",{"_index":11062,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pc1",{"_index":1074,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["pc2",{"_index":1075,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["pcconstraint",{"_index":1546,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["pdb",{"_index":3302,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pdb.set_trac",{"_index":3307,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["pdf",{"_index":1612,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/_index":{},"/posts/python-snippets/":{},"/apps/_index":{}},"description":{}}],["pdf]](/articles/2022",{"_index":11709,"title":{},"content":{"/p/publications":{}},"description":{}}],["pdf]](/articles/2023",{"_index":11697,"title":{},"content":{"/p/publications":{}},"description":{}}],["pdffileread",{"_index":10654,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pdfreader",{"_index":10655,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pdfreader.getpage(pages).extracttext",{"_index":10660,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["peaceiris/act",{"_index":11034,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["peer",{"_index":447,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["peerconnect",{"_index":41,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["peerconnection.addeventlistener('datachannel",{"_index":865,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["peerconnection.addeventlistener('track",{"_index":387,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["peerconnection.addeventlistener(‘icecandid",{"_index":572,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.addicecandidate(message.icecandid",{"_index":579,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.addtrack(track",{"_index":350,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["peerconnection.createansw",{"_index":514,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.createdatachannel",{"_index":862,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["peerconnection.createoff",{"_index":502,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setlocaldescription(answ",{"_index":515,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setlocaldescription(off",{"_index":503,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setremotedescription(new",{"_index":511,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setremotedescription(remotedesc",{"_index":500,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["pellentesqu",{"_index":10546,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["peopl",{"_index":10965,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pep",{"_index":1723,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["perimet",{"_index":2553,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["perimeter(self",{"_index":2537,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["period",{"_index":10320,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["perl",{"_index":11366,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["permanent",{"_index":10096,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["permiss",{"_index":5261,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["permissiondeniederror",{"_index":633,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["persist",{"_index":10387,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{}}],["persistentvolum",{"_index":8327,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["persistentvolumeclaim",{"_index":8326,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["person",{"_index":3836,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["person(\"alic",{"_index":3841,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["person1",{"_index":3840,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["person1.introduc",{"_index":3842,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["perspiciati",{"_index":11122,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pexpect",{"_index":9488,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["pharetra",{"_index":10542,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["phase",{"_index":5740,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["phasellu",{"_index":10529,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["phases.dumptoobjectstore.output.s3path",{"_index":6539,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["phases.dumptoobjectstore.secrets.mysqlsecret.data",{"_index":6556,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["phases.restorefromblobstore.secrets.mysqlsecret.data",{"_index":6571,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["phoenix",{"_index":10162,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["photo",{"_index":956,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photo.getcontext('2d",{"_index":959,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photo.height",{"_index":963,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photo.width",{"_index":962,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontext",{"_index":958,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontext.drawimage(video",{"_index":961,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontext.getimagedata(0",{"_index":975,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontexth",{"_index":977,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontextw",{"_index":976,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["php",{"_index":1717,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["physic",{"_index":8818,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["pi",{"_index":10971,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pi:.3f",{"_index":10975,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pickl",{"_index":2223,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pickle.dump",{"_index":2235,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pickle.load",{"_index":2241,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pictur",{"_index":6607,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["pid",{"_index":9746,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["pike",{"_index":11138,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ping",{"_index":6053,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["ping(self",{"_index":6062,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["ping(t",{"_index":6060,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["pinta",{"_index":8551,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["pip",{"_index":2987,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["pip0",{"_index":9054,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["pip3",{"_index":7641,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["pipefail",{"_index":6548,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["pipelin",{"_index":7205,"title":{"/tracks/90daysofdevops/day74":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["pixel",{"_index":737,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["pk=book_id",{"_index":3135,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["pkg",{"_index":8203,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["place",{"_index":1214,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["placehold",{"_index":1595,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["plaintext",{"_index":5423,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["plan",{"_index":16,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day05/":{}}}],["plane",{"_index":8305,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["platform",{"_index":5335,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/_index":{},"/posts/emoji-support":{}},"description":{}}],["play",{"_index":7697,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["playback",{"_index":764,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["playbook",{"_index":7565,"title":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["playbook.yml",{"_index":7597,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["playbook1.yml",{"_index":7683,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["playbook2.yml",{"_index":7674,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["playbook3.yaml",{"_index":7648,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["playbook3.yml",{"_index":7684,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["playbook4.yml",{"_index":7655,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["playbook5.yml",{"_index":7566,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["playbook6.yml",{"_index":7593,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["playbook7.yml",{"_index":7639,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["player",{"_index":9465,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["playground",{"_index":8290,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["playlist",{"_index":8686,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["playsinlin",{"_index":753,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["playvideofromcamera",{"_index":746,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["pleas",{"_index":10328,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plot",{"_index":10990,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plow",{"_index":11356,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["plt",{"_index":10992,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plt.subplot",{"_index":10997,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plu",{"_index":5046,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["plugin",{"_index":7395,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["plugins=(git",{"_index":9640,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["pluralsight",{"_index":9987,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["po",{"_index":5821,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pod",{"_index":6437,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["pod.yaml",{"_index":7302,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["pod_nam",{"_index":7145,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["pod_name=$(kubectl",{"_index":7142,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["podcast",{"_index":5225,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["podderzhka",{"_index":11710,"title":{},"content":{"/p/publications":{}},"description":{}}],["poddisruptionbudget",{"_index":8328,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["podman",{"_index":8299,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["podsecuritypolici",{"_index":8330,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["podspec",{"_index":8389,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["podtemplate(yaml",{"_index":7327,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["point",{"_index":1837,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["pointer",{"_index":5992,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["pointer_",{"_index":6101,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["pointer_t",{"_index":6102,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["pokrytiya",{"_index":11715,"title":{},"content":{"/p/publications":{}},"description":{}}],["polici",{"_index":6408,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["politiki",{"_index":11700,"title":{},"content":{"/p/publications":{}},"description":{}}],["poll",{"_index":2711,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["pong",{"_index":7704,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["pop",{"_index":3563,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/posts/python-snippets/":{}},"description":{}}],["popen",{"_index":2700,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["popitem",{"_index":3782,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["popul",{"_index":10357,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["popular",{"_index":10088,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["port",{"_index":2727,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["port=22",{"_index":9386,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["port=6443",{"_index":6426,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["port=8080",{"_index":2920,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["portabl",{"_index":6352,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["portain",{"_index":8444,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["portal",{"_index":9259,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ports.conf",{"_index":7667,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["ports.conf.j2",{"_index":7759,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["porttitor",{"_index":10456,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["posit",{"_index":2542,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/posts/python-snippets/":{}},"description":{}}],["possibl",{"_index":809,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["post",{"_index":3009,"title":{"/posts/archive/":{}},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/archive/":{},"/tracks/90daysofdevops/day24":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/posts/archive/":{}},"description":{"/posts/featured-image":{}}}],["post(self",{"_index":2995,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["postgresql",{"_index":6840,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["postman",{"_index":9530,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["posuer",{"_index":10534,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["potenti",{"_index":10508,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["potrebnostei",{"_index":11717,"title":{},"content":{"/p/publications":{}},"description":{}}],["poulton",{"_index":9986,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["power",{"_index":9445,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["powershel",{"_index":5241,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["pow}'!\".format(pow=pow",{"_index":10871,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ppa:ansible/ans",{"_index":7774,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["ppa:git",{"_index":8889,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["ppp",{"_index":4368,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["pr",{"_index":6374,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["practic",{"_index":5060,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["praesent",{"_index":10539,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["predicat",{"_index":8116,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["predictpartyvictory(sen",{"_index":5505,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["pref",{"_index":309,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["prefix",{"_index":5830,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["prefix[i",{"_index":5832,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["prefix_sum",{"_index":5573,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["prefix_sum(k",{"_index":6255,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["prefix_sum(self",{"_index":6277,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["prefix_sums.get(current_sum",{"_index":5575,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["prefix_sums[current_sum",{"_index":5577,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["premium",{"_index":9166,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["prepar",{"_index":5056,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["prereq",{"_index":5937,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["prerequisit",{"_index":5925,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["prerequisites[i",{"_index":5926,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["presen",{"_index":8651,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["present",{"_index":5224,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["presentation/resourc",{"_index":8676,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["preset",{"_index":5285,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["press",{"_index":11169,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pretti",{"_index":10199,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["prettier",{"_index":8832,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["prev",{"_index":5955,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["prev.next",{"_index":5960,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["prev_str",{"_index":5608,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["prevent",{"_index":10351,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["preview",{"_index":7854,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["primari",{"_index":6835,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["primary.persistence.size=1gi,volumepermissions.enabled=tru",{"_index":6478,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["primary_key=tru",{"_index":3027,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["print",{"_index":2214,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["print(",{"_index":10976,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["print(\"'x",{"_index":3797,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["print(\"3",{"_index":3582,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/loops":{}},"description":{}}],["print(\"a",{"_index":2404,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"at",{"_index":3794,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["print(\"b",{"_index":2405,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"baseclass.method",{"_index":2500,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"both",{"_index":3793,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["print(\"c",{"_index":2406,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"congratul",{"_index":9417,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(\"coroutine1",{"_index":2942,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["print(\"coroutine2",{"_index":2945,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["print(\"date1",{"_index":10638,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"date2",{"_index":10635,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"derivedclass1.method",{"_index":2502,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"derivedclass2.new_method",{"_index":2505,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"derivedclass3.method",{"_index":2508,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"don",{"_index":2637,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print(\"fil",{"_index":2320,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"found",{"_index":3629,"title":{},"content":{"/tracks/python-101/basis/loops":{}},"description":{}}],["print(\"hello",{"_index":2358,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"hi",{"_index":2415,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"i",{"_index":2377,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"let'",{"_index":10969,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["print(\"meow",{"_index":3858,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"mi",{"_index":3837,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"priv",{"_index":2478,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"protect",{"_index":2476,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"publ",{"_index":2474,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"some_var",{"_index":10765,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"woof",{"_index":3853,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"x",{"_index":3791,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/posts/python-snippets/":{}},"description":{}}],["print(\"you",{"_index":3710,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["print(\"your",{"_index":9379,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(\"в",{"_index":3673,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["print(\"делен",{"_index":3758,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(\"значен",{"_index":3586,"title":{},"content":{"/tracks/python-101/basis/scope":{}},"description":{}}],["print(\"конец",{"_index":3762,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(\"мен",{"_index":3532,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(\"мне",{"_index":3538,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(\"неверн",{"_index":3766,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(\"нов",{"_index":11322,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["print(\"привет",{"_index":3668,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/posts/python-snippets/":{}},"description":{}}],["print(\"я",{"_index":10689,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('arg1",{"_index":3260,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('class",{"_index":3256,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('ent",{"_index":3276,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('exit",{"_index":3278,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('hello",{"_index":2694,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day25":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["print('insid",{"_index":3279,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('pass",{"_index":10647,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('pleas",{"_index":2676,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["print('гав",{"_index":3680,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["print('достоин",{"_index":10890,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('мог",{"_index":10921,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('я",{"_index":10875,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(2",{"_index":3599,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["print(4",{"_index":3600,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["print(_dir",{"_index":2793,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(_fil",{"_index":2795,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(a",{"_index":3614,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(add(2",{"_index":3241,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["print(arg",{"_index":3725,"title":{},"content":{"/tracks/python-101/basis/functions":{},"/posts/python-snippets/":{}},"description":{}}],["print(args.accumulate(args.integ",{"_index":2971,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["print(arr",{"_index":2295,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(b.fli",{"_index":10902,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(b.say('привет",{"_index":10901,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(batman.mro",{"_index":10918,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(c",{"_index":1787,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(cat.color",{"_index":3872,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(cat.nam",{"_index":3870,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(ceil(3.7",{"_index":10814,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(chunk",{"_index":3745,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["print(collections.counter(x).most_common(1)0",{"_index":10642,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(cont",{"_index":3739,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["print(current_tim",{"_index":2853,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(date_object",{"_index":2864,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(difference_set",{"_index":3576,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(dog.bre",{"_index":3867,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(dog.nam",{"_index":3865,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(double(5",{"_index":3336,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["print(emp_1.emp_nam",{"_index":2355,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(even_numb",{"_index":3247,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["print(example.__private_vari",{"_index":2484,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(example._protected_vari",{"_index":2481,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(example.public_vari",{"_index":2479,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(f\"fil",{"_index":2766,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(f\"funct",{"_index":3293,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print(f\"your",{"_index":9418,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(f\"мен",{"_index":3545,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(f\"результат",{"_index":3760,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(fibonacci(30",{"_index":3287,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print(floor(3.7",{"_index":10815,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(formatted_d",{"_index":2857,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(formatted_gm_tim",{"_index":2900,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(formatted_tim",{"_index":2892,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(gen_to_list",{"_index":10931,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(gm_tim",{"_index":2897,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(human.grunt",{"_index":10847,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(i",{"_index":2026,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/loops":{},"/posts/python-snippets/":{}},"description":{}}],["print(i.grunt",{"_index":10849,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(intersection_set",{"_index":3573,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(issubclass(baseclass",{"_index":2578,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(issubclass(derivedclass",{"_index":2577,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(item",{"_index":2939,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["print(key",{"_index":2341,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["print(kwarg",{"_index":10785,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(lett",{"_index":2630,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print(lin",{"_index":3741,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["print(math.sqrt(16",{"_index":10811,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(max_valu",{"_index":3605,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["print(most_freq(test",{"_index":10646,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(mul(2",{"_index":2175,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(mulfive(2",{"_index":2180,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(multiply(1",{"_index":2337,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(my_dict",{"_index":3809,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["print(my_list",{"_index":3584,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(my_list[0",{"_index":1812,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{}},"description":{}}],["print(my_list[0:3",{"_index":3633,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["print(my_obj.x",{"_index":3268,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print(my_object.my_attribut",{"_index":3822,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(my_object.nam",{"_index":2567,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(my_set",{"_index":3547,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["print(my_tuple[0",{"_index":1810,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(myclass.my_attribut",{"_index":3821,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(nam",{"_index":2683,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["print(net_connect.find_prompt",{"_index":9360,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(net_connect.send_command(command",{"_index":9361,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(next(it",{"_index":2315,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(now",{"_index":2845,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(numbers[1",{"_index":2010,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(obj1.a_nam",{"_index":2408,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(parent.nam",{"_index":2444,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.area",{"_index":2562,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.height",{"_index":2561,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.perimet",{"_index":2563,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.width",{"_index":2560,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(response.json",{"_index":3171,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["print(response.status_cod",{"_index":3162,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["print(response.text",{"_index":3163,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["print(result",{"_index":3325,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["print(root",{"_index":2791,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(say",{"_index":10941,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(say(say_please=tru",{"_index":10942,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(self.my_attribut",{"_index":3823,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(self.nam",{"_index":2455,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(squar",{"_index":3807,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["print(stdout.decod",{"_index":2709,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["print(string3",{"_index":3417,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string5",{"_index":3420,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string6[7",{"_index":3422,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string7[0:6",{"_index":3425,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string_list",{"_index":2328,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(sup.ag",{"_index":10889,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.get_speci",{"_index":10881,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.s",{"_index":10882,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.sonar",{"_index":10920,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(superhero.mro",{"_index":10880,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(symmetric_difference_set",{"_index":3579,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(sys.argv",{"_index":2667,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["print(t",{"_index":3377,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t.count(\"appl",{"_index":3388,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t.index(\"banana",{"_index":3390,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[0",{"_index":3373,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[1",{"_index":3374,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[1:3",{"_index":3381,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[2",{"_index":3375,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(temp",{"_index":2076,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(today",{"_index":2848,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(triple(5",{"_index":3337,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["print(type(a",{"_index":3611,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(type(b",{"_index":3612,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(type(c",{"_index":3613,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(union_set",{"_index":3570,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(x",{"_index":1753,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/posts/python-snippets/":{}},"description":{}}],["print(yesterday",{"_index":2868,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(z",{"_index":1754,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print_lett",{"_index":2627,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print_numb",{"_index":2623,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print_valu",{"_index":3733,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["print_values(**kwarg",{"_index":3729,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["print_values(name='john",{"_index":3730,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["printf",{"_index":10022,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["println",{"_index":10021,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["prioriti",{"_index":9080,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["priv",{"_index":7634,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["privat",{"_index":1945,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["private_network",{"_index":8265,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["privateipallocationmethod",{"_index":9014,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["privileg",{"_index":7624,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["pro",{"_index":7817,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["problem",{"_index":5234,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["proc",{"_index":9744,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["procedur",{"_index":7834,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["process",{"_index":2701,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["process.commun",{"_index":2708,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["process.env.baseurl",{"_index":11223,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["process.env.node_env",{"_index":11222,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["process.platform",{"_index":11439,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["process_data",{"_index":3225,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["prod",{"_index":11042,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["product",{"_index":5031,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["productexceptself(num",{"_index":5840,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["profession",{"_index":5207,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["profil",{"_index":6458,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["profile='mc",{"_index":8147,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["profile=mc",{"_index":8151,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["profiles.cr.kanister.io",{"_index":6578,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["program",{"_index":6285,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["progress",{"_index":5016,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["proin",{"_index":10509,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["project",{"_index":7326,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/_index":{}},"description":{}}],["project/blob/main/.github/workflows/main.yml",{"_index":11078,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/blob/main/next.config.j",{"_index":11068,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/executor:debug",{"_index":7333,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["project/new/main?filename=.github%2fworkflows%2fmain.yml&workflow_template=blank",{"_index":11032,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/settings/key",{"_index":11023,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/settings/secrets/actions/new",{"_index":11027,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project_nam",{"_index":3109,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["prom/prometheu",{"_index":7133,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["prometheu",{"_index":6897,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["prometheus.git",{"_index":6914,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["prompt(\"ent",{"_index":1340,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["promql",{"_index":6950,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["prop",{"_index":11047,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["properli",{"_index":10426,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["properti",{"_index":2525,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["property_name.delet",{"_index":2532,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["property_name.sett",{"_index":2531,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["propos",{"_index":1728,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["protect",{"_index":1938,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["protocol",{"_index":1141,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["provid",{"_index":681,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["provis",{"_index":7835,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["provision",{"_index":7966,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["provisionvmag",{"_index":8980,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["proxi",{"_index":7564,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["proxy,web",{"_index":7571,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["proxy_pass",{"_index":7583,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["prune",{"_index":11599,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ps",{"_index":7943,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/posts/docker-commands/":{}},"description":{}}],["pseudo",{"_index":11592,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["psp",{"_index":8329,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["pswd",{"_index":9385,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["psycholog",{"_index":3987,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["pub/sub",{"_index":6768,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["public",{"_index":2459,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["public/index.html",{"_index":11404,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["public_method(self",{"_index":2473,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["public_network",{"_index":7733,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["publicipaddress",{"_index":9070,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publicipaddressnam",{"_index":9053,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publicipallocationmethod",{"_index":9075,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publish",{"_index":8985,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publish_dir",{"_index":11038,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["published_date=request.post.get('published_d",{"_index":3128,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["pull",{"_index":6572,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/posts/docker-commands/":{}},"description":{}}],["pulumi",{"_index":7880,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["pulvinar",{"_index":10531,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["puppet",{"_index":7822,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["puru",{"_index":10511,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["push",{"_index":6565,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pushgateway",{"_index":7129,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["put",{"_index":3010,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["put(self",{"_index":2997,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["putti",{"_index":9345,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["pv",{"_index":8128,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pvc",{"_index":8131,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pwd",{"_index":7350,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["py",{"_index":1918,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["py3",{"_index":10987,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pyc",{"_index":2272,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pycharm",{"_index":3310,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["pycodestyl",{"_index":2617,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pycon",{"_index":10945,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pydant",{"_index":3070,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["pyflak",{"_index":2616,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pylint",{"_index":2615,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pymysql",{"_index":7616,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["pyodid",{"_index":10951,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pypdf2",{"_index":10650,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pypdf2.pdffilereader(path",{"_index":10656,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pypi",{"_index":2290,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["pyscript",{"_index":10943,"title":{"/posts/pyscript-python-embedded-in-html/":{}},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/posts/pyscript-python-embedded-in-html/":{}}}],["pyscript.net",{"_index":10966,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pyscript.write('mi",{"_index":10983,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pyscript.write('today",{"_index":10981,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pytho",{"_index":3526,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["python",{"_index":1611,"title":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{}},"description":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}}}],["python.ex",{"_index":2672,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["python.org",{"_index":2977,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["python3",{"_index":3308,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["python_execut",{"_index":2671,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["python_flask_test_app",{"_index":10419,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["pythonpath",{"_index":2257,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{}},"description":{}}],["pytre",{"_index":11868,"title":{},"content":{"/apps/_index":{}},"description":{}}],["pyttsx3",{"_index":10651,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pyttsx3.init",{"_index":10658,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pезультат",{"_index":10764,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["q",{"_index":2252,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["q.val",{"_index":5875,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["qa",{"_index":10117,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["qcow2",{"_index":9437,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["qpnqv",{"_index":6589,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["quad",{"_index":10442,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["quae",{"_index":11136,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["queri",{"_index":6184,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["query(self",{"_index":6228,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(0",{"_index":6207,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(1",{"_index":6209,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(4",{"_index":6211,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(l",{"_index":6204,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["question",{"_index":5015,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["queue",{"_index":5089,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["queue.append(cours",{"_index":5946,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["queue.popleft",{"_index":5943,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["qui",{"_index":10470,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["quick",{"_index":8211,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["quickstart",{"_index":8496,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["quidem",{"_index":11115,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["quiet",{"_index":11598,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["quizz",{"_index":11874,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/apps/_index":{}},"description":{}}],["quota",{"_index":8334,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["r",{"_index":1716,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["r'/item/(\\d",{"_index":3004,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["r1",{"_index":9350,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["radiant",{"_index":5472,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["radiant.append(i",{"_index":5507,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["radiant.append(r",{"_index":5513,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["radiant.popleft",{"_index":5511,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["rain",{"_index":6026,"title":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"content":{},"description":{}}],["rais",{"_index":2311,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["ram",{"_index":8372,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["ramp",{"_index":5179,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["rancher",{"_index":8208,"title":{"/tracks/90daysofdevops/day53":{}},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["rancher/ranch",{"_index":8215,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["random",{"_index":2585,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["random.randint(1",{"_index":2594,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["random.shuffl",{"_index":5628,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["random.shuffle(shuffl",{"_index":5633,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["rang",{"_index":812,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["range(1",{"_index":5787,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["range(1,n",{"_index":10972,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["range(10",{"_index":2624,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["range(5",{"_index":3808,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["range(i",{"_index":5727,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["range(len(a",{"_index":6020,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["range(len(num",{"_index":5726,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["range(n",{"_index":5760,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["range(numcours",{"_index":5941,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["range(pdfreader.numpag",{"_index":10659,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["range(self.n",{"_index":6216,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["range(start",{"_index":5838,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["range_sum(self",{"_index":6272,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["raspberrypi",{"_index":8192,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["raw_input",{"_index":10691,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ray",{"_index":5121,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["rb",{"_index":10653,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["rbac",{"_index":9038,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["rc",{"_index":8332,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["rd",{"_index":5107,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["rdd",{"_index":5488,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["rdp",{"_index":9079,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["re",{"_index":1388,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["react",{"_index":11193,"title":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["react.createel",{"_index":11233,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["react.createelement(app",{"_index":11212,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["react.usestate(100",{"_index":11236,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["reactdom",{"_index":11206,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["reactdom.rend",{"_index":11211,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["reactdom.render(react.createelement(mycountbutton",{"_index":11241,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["read",{"_index":2678,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["read_from_tail",{"_index":7049,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["read_ptr",{"_index":5538,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["readabl",{"_index":10260,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["reader",{"_index":9251,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["readi",{"_index":11877,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["readm",{"_index":8834,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["readme.md",{"_index":8705,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["readme.mdf",{"_index":8648,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["readme.mdfil",{"_index":8650,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["readme.mdin",{"_index":8731,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["real",{"_index":1401,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["realtim",{"_index":985,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["reason",{"_index":10386,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["reassign",{"_index":11285,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rebas",{"_index":8772,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["reboot",{"_index":9754,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["receiv",{"_index":455,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["receivechannelcallback",{"_index":1574,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["recent",{"_index":1757,"title":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/apps/_index":{}},"description":{}}],["recentcount",{"_index":6052,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["recommend",{"_index":10352,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["record",{"_index":5269,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["recoveri",{"_index":6314,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["rect",{"_index":2558,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["rectangl",{"_index":2533,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["rectangle(3",{"_index":2559,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["red",{"_index":7514,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["redhat",{"_index":7770,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["redi",{"_index":5106,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["redirect",{"_index":11335,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["redirect('https://google.com",{"_index":11338,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["redshift",{"_index":5424,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["reduc",{"_index":3244,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["reduce_ex",{"_index":3449,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["redund",{"_index":9154,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["refactor",{"_index":5040,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["refer",{"_index":5195,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/emoji-support":{}},"description":{}}],["referenc",{"_index":10325,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["reference/next.config.js/exportpathmap",{"_index":11051,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["reflog",{"_index":8866,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["refresh",{"_index":11869,"title":{},"content":{"/apps/_index":{}},"description":{}}],["region",{"_index":4358,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["regionalnoi",{"_index":11699,"title":{},"content":{"/p/publications":{}},"description":{}}],["regist",{"_index":10425,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["registri",{"_index":5097,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["rel",{"_index":8867,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["relat",{"_index":5165,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["relaunch",{"_index":5414,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["relay",{"_index":210,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["relayout",{"_index":8820,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["releas",{"_index":7788,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/apps/brewmate/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["reliabl",{"_index":1551,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["reload",{"_index":1475,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["remain",{"_index":9880,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["remaind",{"_index":6170,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["remainingday",{"_index":9867,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["remmina",{"_index":9652,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["remot",{"_index":453,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["remoteconnect",{"_index":1569,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["remoteconnection.ondatachannel",{"_index":1573,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["remoteconnection.onicecandid",{"_index":1571,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["remotedesc",{"_index":498,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["remotepeerconnect",{"_index":1185,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection.createansw",{"_index":1162,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection.setlocaldescription(descript",{"_index":1167,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection.setremotedescription(descript",{"_index":1160,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection:\\n${description.sdp",{"_index":1166,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotestream",{"_index":390,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["remotevideo",{"_index":385,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["remotevideo.srcobject",{"_index":392,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["remov",{"_index":1871,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["removeprefix",{"_index":3477,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["removesuffix",{"_index":3478,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["render",{"_index":3114,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["render(request",{"_index":3123,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["repeat",{"_index":5067,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["repl",{"_index":11005,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["repl(read–eval–print",{"_index":11006,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["replac",{"_index":3479,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["replic",{"_index":8119,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["replica",{"_index":7905,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["replicas=10",{"_index":8145,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["replicaset",{"_index":8178,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["replicationcontrol",{"_index":8333,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["replicationset",{"_index":8404,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["repo",{"_index":6474,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["reponam",{"_index":11064,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["report",{"_index":3902,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["repositori",{"_index":6741,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/_index":{}},"description":{}}],["repr",{"_index":3450,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["repr(self",{"_index":6236,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["reproduc",{"_index":1217,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["req_sec",{"_index":5274,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["request",{"_index":1404,"title":{"/tracks/python-101/external_packages/requests":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["request.json['author",{"_index":3055,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["request.json['titl",{"_index":3054,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["request.method",{"_index":3125,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["request.post.get('author",{"_index":3137,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["request.post.get('published_d",{"_index":3139,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["request.post.get('titl",{"_index":3136,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["requests.get(\"https://www.example.com",{"_index":3161,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["requests.post(\"https://site.org/post",{"_index":3169,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["requir",{"_index":2029,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["require('http",{"_index":1381,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["require('nod",{"_index":1380,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["require('o",{"_index":1378,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["require('socket.io",{"_index":1383,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["required_provid",{"_index":7897,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["required_vers",{"_index":8032,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["res_left",{"_index":6233,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["res_right",{"_index":6234,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["researcherid",{"_index":3918,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["researchg",{"_index":3900,"title":{},"content":{"/tracks/disser/articles-notes":{},"/p/publications":{}},"description":{}}],["reset",{"_index":5626,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["reset(self",{"_index":5630,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["resolut",{"_index":735,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["resolvejsonmodul",{"_index":11423,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["resourc",{"_index":2975,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["resourcegroup().loc",{"_index":8971,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourcegroupnam",{"_index":9018,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/networkinterfac",{"_index":8996,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/networksecuritygroup",{"_index":9073,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/publicipaddress",{"_index":9071,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/virtualnetworks/subnet",{"_index":9012,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourcequota",{"_index":8335,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["resources.get",{"_index":11221,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["resp",{"_index":9943,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["respons",{"_index":3160,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["response_model=tasklist",{"_index":3079,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["rest",{"_index":428,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["restart",{"_index":7607,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["restart='nev",{"_index":6495,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["restart=unless",{"_index":8212,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["restartpolici",{"_index":7338,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["restor",{"_index":6344,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["restorefromblobstor",{"_index":6569,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["restraint",{"_index":4646,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["result",{"_index":3036,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["result.append(word1[i",{"_index":6137,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["result.append(word2[j",{"_index":6138,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["result.push(values[i",{"_index":11484,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["ret",{"_index":6270,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["retail",{"_index":10103,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["retain",{"_index":8118,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["retriev",{"_index":3861,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["retry_limit",{"_index":7057,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["return",{"_index":623,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["revers",{"_index":3119,"title":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day39":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["reversed_num",{"_index":6075,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["reversewords(",{"_index":5446,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["revert",{"_index":8863,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["rewrit",{"_index":7851,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["rf",{"_index":8568,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["rfc",{"_index":9534,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["rfind",{"_index":3480,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rgba(25",{"_index":11263,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rgname",{"_index":9016,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["rgname).loc",{"_index":9024,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["rgname).nam",{"_index":9026,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["rhel",{"_index":11350,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["rhoncu",{"_index":10506,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["right",{"_index":5569,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["right=non",{"_index":5563,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["rinc",{"_index":10308,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["rindex",{"_index":3481,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rins",{"_index":7464,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["risu",{"_index":10545,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["rjust",{"_index":3482,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rm",{"_index":6489,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/posts/docker-commands/":{}},"description":{}}],["rmdir",{"_index":9797,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["rmi",{"_index":11583,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["rmod",{"_index":3451,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rmul",{"_index":3452,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["roadmap",{"_index":0,"title":{"/tracks/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["rob",{"_index":11137,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["role",{"_index":5262,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["roles/apache2",{"_index":7680,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["roles/apache2/templates/index.html.j2",{"_index":7592,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["roles/common",{"_index":7688,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["roles/mysql",{"_index":7603,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["roles/nginx",{"_index":7689,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["roll",{"_index":5344,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["romankurnovskii/cask",{"_index":11888,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["romankurnovskii/cask/brewm",{"_index":11886,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["room",{"_index":986,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["root",{"_index":2789,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["root.rend",{"_index":11216,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["root.val",{"_index":5873,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["root_password",{"_index":6555,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["rootless",{"_index":8418,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["rot",{"_index":7841,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["rotat",{"_index":5408,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["rotate(180deg",{"_index":1261,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["rout",{"_index":5134,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["router",{"_index":9330,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["row",{"_index":5796,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["row[po",{"_index":5824,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["rows.get(col",{"_index":5900,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows.get(row",{"_index":5897,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows[row",{"_index":5896,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rpartit",{"_index":3483,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rpc",{"_index":430,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rpm",{"_index":11392,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rrddd",{"_index":5479,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["rs",{"_index":8331,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["rsa",{"_index":11018,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["rsi",{"_index":10621,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["rsplit",{"_index":3484,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rstrip",{"_index":3485,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rtcconfigur",{"_index":84,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtcdatachannel",{"_index":403,"title":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["rtcdatachannelev",{"_index":863,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["rtcicecandidate(icecandid",{"_index":1126,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcpeerconncet",{"_index":1189,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcpeerconnect",{"_index":81,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["rtcpeerconnection(configur",{"_index":496,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{}},"description":{}}],["rtcpeerconnection(iceconfig",{"_index":348,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["rtcpeerconnection(iceconfigur",{"_index":258,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["rtcpeerconnection(serv",{"_index":1094,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["rtcpeerconnectioncreateoff",{"_index":1142,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcpeerconnectioniceev",{"_index":566,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtcsessiondescript",{"_index":484,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcsessiondescription(message.answ",{"_index":499,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtcsessiondescription(message.off",{"_index":512,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtctrackev",{"_index":368,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["rtcweb",{"_index":23,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["rto",{"_index":6380,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["ru",{"_index":5427,"title":{},"content":{"/tracks/archive/":{},"/posts/archive/":{}},"description":{}}],["rubi",{"_index":1718,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day63":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rudn.ru",{"_index":3927,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["rugpt",{"_index":10430,"title":{},"content":{"/posts/ruGPT-3-notes":{}},"description":{"/posts/ruGPT-3-notes":{}}}],["rule",{"_index":8783,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["run",{"_index":6419,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["run/secrets/chart",{"_index":7391,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["run\\n",{"_index":9405,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["runner",{"_index":7223,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["runtim",{"_index":5258,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["runtime=containerd",{"_index":6427,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["rust",{"_index":9220,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["rutrum",{"_index":10532,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["rw",{"_index":9822,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["rwx",{"_index":9823,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["rynka.pdf",{"_index":11718,"title":{},"content":{"/p/publications":{}},"description":{}}],["rтак",{"_index":5489,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["s",{"_index":3504,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["s.split",{"_index":5447,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["s/day/90daysofdevop",{"_index":9712,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["s1",{"_index":11476,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["s3",{"_index":5149,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["s3_path",{"_index":6567,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s3_path=\"/mysql",{"_index":6549,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s3compliant",{"_index":6525,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s3path",{"_index":6538,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s[pointer_",{"_index":6105,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["s_%.2i%.2i%i_%.2i%.2i%.2i",{"_index":9408,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["s_list",{"_index":6112,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[left",{"_index":6116,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[left].low",{"_index":6114,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[right",{"_index":6117,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[right].low",{"_index":6115,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["sa",{"_index":8336,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["sa%204.0",{"_index":10224,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["sa.yml",{"_index":7377,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["sa/4.0",{"_index":10219,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["sa/4.0/88x31.png",{"_index":10221,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["saa",{"_index":9269,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["sad",{"_index":5434,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["sadbutsad",{"_index":5433,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["salamand",{"_index":11171,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["salesforc",{"_index":9299,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["salt",{"_index":9848,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["saltstack",{"_index":7827,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["sam",{"_index":5039,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["same",{"_index":10639,"title":{},"content":{"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["saml",{"_index":9224,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["sampl",{"_index":5174,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["samplecode.ps1",{"_index":8919,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["sap",{"_index":9300,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["sapien",{"_index":10528,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["sara",{"_index":1797,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["saturate(200",{"_index":1262,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["save",{"_index":5351,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["say(say_please=fals",{"_index":10939,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say(self",{"_index":10824,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say_hello",{"_index":3828,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["say_hello('sara",{"_index":2120,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["say_hello(name1",{"_index":2117,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["say_hello(self",{"_index":3827,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["say_pleas",{"_index":10934,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sayhello",{"_index":11209,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["sbin",{"_index":9749,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sbin/shutdown",{"_index":7710,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["sc",{"_index":6329,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["scale",{"_index":8144,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["scenario",{"_index":10201,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["scenario2",{"_index":7675,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["scenario3",{"_index":7687,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["scenario4",{"_index":7657,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["scenario5",{"_index":7553,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["scenario6",{"_index":7585,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["scenario7",{"_index":7602,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["schedul",{"_index":5923,"title":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["schema",{"_index":8938,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["scholar",{"_index":11792,"title":{},"content":{"/p/publications":{}},"description":{}}],["scienc",{"_index":3922,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["sciencedirect",{"_index":3940,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["scm",{"_index":7279,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["scm.com/doc",{"_index":8849,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["scope",{"_index":1556,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{}},"description":{}}],["scopu",{"_index":3919,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["score",{"_index":5048,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["scp",{"_index":7784,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["scratch",{"_index":5254,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["screen",{"_index":10580,"title":{},"content":{"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["script",{"_index":1211,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["script.jsx",{"_index":11205,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["script.pi",{"_index":2954,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["scripts/common.sh",{"_index":8276,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["scripts/master.sh",{"_index":8277,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["scripts/node.sh",{"_index":8281,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["scrolloffset",{"_index":11253,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["scrum",{"_index":10119,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["sctp",{"_index":1549,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sda",{"_index":9736,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sda1",{"_index":9773,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sda2",{"_index":9774,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sda3",{"_index":9775,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sdb",{"_index":9780,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sdk",{"_index":6735,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["sdlc",{"_index":7455,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["sdn",{"_index":9454,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["sdp",{"_index":3,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["sdpsemant",{"_index":86,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["search",{"_index":5556,"title":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/search/_index":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/brewmate/":{}},"description":{}}],["search.yml",{"_index":10355,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/configuration.html",{"_index":10397,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/docker.html",{"_index":10398,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/encrypt",{"_index":10392,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/index.html",{"_index":10399,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/us",{"_index":10400,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/workplac",{"_index":10395,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/enterpris",{"_index":10381,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search:3002",{"_index":10379,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["searchmatrix(matrix",{"_index":5820,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["secatur",{"_index":11134,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["second",{"_index":2419,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["second=0",{"_index":2852,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["seconds2",{"_index":10637,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["secret",{"_index":5143,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["secret_key",{"_index":6527,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["secret_management.encryption_key",{"_index":10358,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["secretnam",{"_index":7340,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["secrets.actions_deploy_key",{"_index":11037,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["secrets.github_token",{"_index":7238,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["section",{"_index":1965,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["secur",{"_index":5074,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["securestr",{"_index":8954,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["security.html",{"_index":10396,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["security_group",{"_index":8025,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["securityrul",{"_index":9078,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["sed",{"_index":10461,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["see",{"_index":5162,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/brewmate/":{}},"description":{}}],["see_no_evil",{"_index":10566,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["segment",{"_index":6182,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["segmenttre",{"_index":6212,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["segmenttree({0})\".format(self.data",{"_index":6237,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sego",{"_index":10574,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["select",{"_index":679,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["selector",{"_index":7906,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["selenium",{"_index":7431,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["self",{"_index":1951,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["self).init(arg",{"_index":10907,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self).init(nam",{"_index":2451,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.__private_vari",{"_index":2472,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._advance_to_next",{"_index":5804,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self._ag",{"_index":10823,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self._default",{"_index":6232,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._func(res_left",{"_index":6235,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._func(self.data[2",{"_index":6224,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._height",{"_index":2544,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._len",{"_index":6227,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._protected_vari",{"_index":2471,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._siz",{"_index":6230,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._width",{"_index":2539,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._x",{"_index":3264,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["self.a_nam",{"_index":2390,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.ag",{"_index":1968,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["self.assertequal(result",{"_index":3235,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(squar",{"_index":3206,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(square(2",{"_index":3202,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(square(3",{"_index":3203,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(square(4",{"_index":3204,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.b_nam",{"_index":2394,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.bit",{"_index":6267,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.bit[idx",{"_index":6271,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.bit[z",{"_index":6278,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.bre",{"_index":3852,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.c_nam",{"_index":2400,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.children",{"_index":6260,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.children.get(s[idx]).insert(",{"_index":6264,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.children.setdefault(s[idx",{"_index":6262,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.col",{"_index":5803,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.color",{"_index":3857,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.data[2",{"_index":6225,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.data[idx",{"_index":6223,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.emp_nam",{"_index":2351,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.fict",{"_index":10866,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.firstnam",{"_index":1966,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.flatten(item.getlist",{"_index":5648,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.flatten(nestedlist",{"_index":5642,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.fli",{"_index":10898,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.get_argument('nam",{"_index":2996,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["self.height",{"_index":2535,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.lastnam",{"_index":1967,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.left",{"_index":5566,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["self.movi",{"_index":10867,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.my_method",{"_index":3825,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.n",{"_index":6214,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.nam",{"_index":2440,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["self.next",{"_index":5712,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["self.numb",{"_index":2304,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.numbers[self.po",{"_index":2310,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.origin",{"_index":5629,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["self.original.copi",{"_index":5632,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["self.parent1_func",{"_index":2421,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.parent2_func",{"_index":2422,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.po",{"_index":2306,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.prefix_sum(l",{"_index":6276,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.prefix_sum(r",{"_index":6275,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.private_ip",{"_index":7969,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["self.public_vari",{"_index":2469,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.queu",{"_index":6061,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.queue.append(t",{"_index":6063,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.queue.popleft",{"_index":6065,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.queue[0",{"_index":6064,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.right",{"_index":5568,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["self.row",{"_index":5802,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.sect",{"_index":1969,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.speci",{"_index":3847,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.stack",{"_index":5641,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.stack.append(item.getinteg",{"_index":5647,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.stack.pop",{"_index":5649,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.stack.revers",{"_index":5643,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.superpow",{"_index":10868,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.tre",{"_index":6215,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i",{"_index":6219,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i+1",{"_index":6220,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[i",{"_index":6218,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[self.n",{"_index":6217,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.val",{"_index":5564,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["self.valu",{"_index":6259,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.vec",{"_index":5801,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.vecself.row",{"_index":5805,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.width",{"_index":2534,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.write('item",{"_index":2999,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["self.write(tornado.escape.json_encode(item",{"_index":2993,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["semant",{"_index":145,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["semaphor",{"_index":2650,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["semi",{"_index":8826,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["semper",{"_index":10513,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["senat",{"_index":5469,"title":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/649/":{}}}],["send",{"_index":456,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["sendbtn",{"_index":965,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["sendbutton",{"_index":872,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["sendbutton.addeventlistener('click",{"_index":889,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["sendbutton.dis",{"_index":879,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["sendchannel",{"_index":1562,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendchannel.onclos",{"_index":1568,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendchannel.onopen",{"_index":1566,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendchannel.send(data",{"_index":1581,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["senddata",{"_index":1542,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendmail",{"_index":2742,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["sendphoto",{"_index":967,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["senior",{"_index":2031,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["sensit",{"_index":5422,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day59":{}},"description":{}}],["sentinel",{"_index":7870,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["separ",{"_index":10588,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["septemb",{"_index":3903,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["sequenc",{"_index":10570,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["sequi",{"_index":11116,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sequo",{"_index":11135,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["seri",{"_index":5216,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["serial",{"_index":8064,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["server",{"_index":408,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["server'",{"_index":7968,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["server(lamp",{"_index":10198,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["server.login(login",{"_index":2737,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["server.mycompany.com",{"_index":237,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["server.mycompany.com:19403",{"_index":253,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["server.sendmail(from_addr",{"_index":2738,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["server.starttl",{"_index":2736,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["server/apm",{"_index":10410,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["server:8200",{"_index":10423,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["server=https://index.docker.io/v1",{"_index":7319,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["server_url",{"_index":10421,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["serverless",{"_index":5095,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["servers.each",{"_index":7726,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["servic",{"_index":1005,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["service/gateway",{"_index":6393,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["service_nam",{"_index":10414,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["service_typ",{"_index":7531,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["service_url",{"_index":10415,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["serviceaccount",{"_index":8337,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["session",{"_index":532,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day22":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["set",{"_index":441,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/sets":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["set(\"aeiouaeiou",{"_index":6111,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["set([1",{"_index":3548,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["set(my_list",{"_index":3581,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["set_global_x(6",{"_index":10797,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_global_x(num",{"_index":10795,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(43",{"_index":10796,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(num",{"_index":10794,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["setattr",{"_index":3453,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["setcount",{"_index":11235,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["setcount(count",{"_index":11238,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["setdefault",{"_index":3783,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/posts/python-snippets/":{}},"description":{}}],["setlocaldescript",{"_index":92,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setlocaldescriptionsuccess(localpeerconnect",{"_index":1157,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setlocaldescriptionsuccess(remotepeerconnect",{"_index":1168,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setmimetype(contentservice.mimetype.json",{"_index":11488,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["setremotedescript",{"_index":93,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setremotedescriptionsuccess(localpeerconnect",{"_index":1170,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setremotedescriptionsuccess(remotepeerconnect",{"_index":1161,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setter",{"_index":2529,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["settings.html#api",{"_index":10403,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["setup",{"_index":448,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["setup.pi",{"_index":3186,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["setup/dock",{"_index":11607,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["setup_mysql.yml",{"_index":7609,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["sftp",{"_index":7783,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sh",{"_index":7312,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["shallow",{"_index":2187,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["share",{"_index":8122,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["sharealik",{"_index":10217,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["shawn",{"_index":10138,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["sheet",{"_index":6952,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day17":{},"/posts/emoji-support":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["sheet.getrange(sheetrange).getvalu",{"_index":11481,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["sheetnam",{"_index":11475,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["sheetrang",{"_index":11477,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["shell",{"_index":7305,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["shield",{"_index":10210,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["shift",{"_index":1334,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ship",{"_index":10322,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["shipper",{"_index":10319,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["short",{"_index":8311,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["short_period",{"_index":10609,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["shortcod",{"_index":10561,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["shorter",{"_index":6177,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["shorthand",{"_index":10564,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["shot",{"_index":11024,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["show",{"_index":1515,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day27":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["show(photo",{"_index":964,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["shuffl",{"_index":5622,"title":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["shuffle(self",{"_index":5631,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["shut",{"_index":7706,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/docker-commands/":{}},"description":{}}],["shutil",{"_index":11318,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.mov",{"_index":11317,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.move(old_sourc",{"_index":11321,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["side",{"_index":6785,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["sidecar:0.75.0",{"_index":6546,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["sign",{"_index":9240,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["signal",{"_index":1004,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["signalingchannel",{"_index":449,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel(remoteclientid",{"_index":450,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.addeventlistener('messag",{"_index":451,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.addeventlistener(‘messag",{"_index":576,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send('hello",{"_index":457,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send({'answ",{"_index":516,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send({'off",{"_index":504,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send({‘new",{"_index":574,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signatur",{"_index":9164,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["similar",{"_index":10755,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["simpl",{"_index":886,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day23":{},"/posts/trading-indicators/sma":{}},"description":{}}],["simple_play",{"_index":7700,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["simple_play.yml",{"_index":7701,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["simplest",{"_index":8045,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["simpli",{"_index":6955,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["simplifi",{"_index":8163,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["simul",{"_index":5120,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["sing",{"_index":10856,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sing(self",{"_index":10827,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["singl",{"_index":6561,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["sint",{"_index":11123,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sit",{"_index":10501,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["site",{"_index":7919,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/apps/_index":{}},"description":{}}],["site'",{"_index":10563,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["site.baseurl",{"_index":11224,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["site24x7",{"_index":6953,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["size",{"_index":5348,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/posts/emoji-support":{}},"description":{}}],["sizeof",{"_index":3454,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["skill",{"_index":5183,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["skip",{"_index":2217,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["skip_long_lin",{"_index":7044,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["skiplibcheck",{"_index":11417,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["skipstatu",{"_index":9924,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["sku",{"_index":8988,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["sla",{"_index":9192,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["slack",{"_index":6941,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["slave",{"_index":7435,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["sleep",{"_index":2622,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["sleep(1",{"_index":2625,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["slice",{"_index":3378,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{}},"description":{}}],["slice.call(document.queryselectorall('p.placehold",{"_index":11282,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["slide",{"_index":5223,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["sloc",{"_index":11079,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["sma",{"_index":10605,"title":{"/posts/trading-indicators/sma":{}},"content":{"/posts/trading-indicators/sma":{}},"description":{"/posts/trading-indicators/sma":{}}}],["sma(short_period",{"_index":10611,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["small",{"_index":11176,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["smb",{"_index":6721,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["smb.config",{"_index":6743,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["smb2.1",{"_index":9179,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["smb3",{"_index":9180,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["smtp",{"_index":2720,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["smtp.yandex.ru",{"_index":2726,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["smtp_server",{"_index":2725,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["smtplib",{"_index":2715,"title":{"/tracks/python-101/standard_library/smtplib":{}},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["smtplib.smtp(smtp_serv",{"_index":2735,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["sn",{"_index":5088,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["snap",{"_index":953,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["snap&send",{"_index":1016,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["snapclass",{"_index":6613,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["snapphoto",{"_index":960,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["snapshot",{"_index":6410,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["snyk",{"_index":7868,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["soap",{"_index":9696,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["social",{"_index":8817,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["socket",{"_index":1342,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["socket.broadcast.emit('messag",{"_index":1319,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('cr",{"_index":1323,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('ful",{"_index":1328,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('ipaddr",{"_index":1420,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('join",{"_index":1325,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('log",{"_index":1398,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.id",{"_index":1324,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.io",{"_index":999,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["socket.io/socket.io.j",{"_index":1373,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.join(room",{"_index":1322,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('cr",{"_index":1347,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('ful",{"_index":1350,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('ipaddr",{"_index":1352,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('join",{"_index":1356,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('log",{"_index":1357,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('messag",{"_index":1317,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socketio",{"_index":1382,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socketio.listen(app",{"_index":1392,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["softwar",{"_index":7773,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["sollicitudin",{"_index":10489,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["solut",{"_index":5198,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["solv",{"_index":5232,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["some_set",{"_index":10758,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_set.copi",{"_index":10762,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_unknown_var",{"_index":10695,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_var",{"_index":10693,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["someth",{"_index":8005,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["somewordpress",{"_index":8511,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["sonar(self",{"_index":10900,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sort",{"_index":3644,"title":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["sourc",{"_index":5337,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["source=head~1",{"_index":8771,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["sourceaddressprefix",{"_index":9081,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["sourceforge.net",{"_index":11884,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["sourceportrang",{"_index":9085,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["southeast",{"_index":8018,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["sovereign",{"_index":9275,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["sovremennyh",{"_index":11735,"title":{},"content":{"/p/publications":{}},"description":{}}],["space",{"_index":8824,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["speak",{"_index":3875,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["speak(self",{"_index":3848,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["speak.runandwait",{"_index":10662,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["speak.say(text",{"_index":10661,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["speak.stop",{"_index":10663,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["speak_no_evil",{"_index":10568,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["spec",{"_index":7308,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["speci",{"_index":3846,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["special",{"_index":5191,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["species=\"cani",{"_index":3851,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["species=\"f",{"_index":3856,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["specif",{"_index":3501,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["specifi",{"_index":2677,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["speech",{"_index":9281,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["spend",{"_index":11879,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["spin",{"_index":11782,"title":{},"content":{"/p/publications":{}},"description":{}}],["split",{"_index":968,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["splitlin",{"_index":3486,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["splitter_decor",{"_index":2094,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["splitter_decorator(funct",{"_index":2091,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["splunk",{"_index":7121,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["sposob",{"_index":11714,"title":{},"content":{"/p/publications":{}},"description":{}}],["spreadsheetapp.getactive().getsheetbyname(sheetnam",{"_index":11479,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["sq",{"_index":5090,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["sql",{"_index":6787,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["sqlalchemi",{"_index":3019,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["sqlalchemy(app",{"_index":3024,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["sqlite",{"_index":3695,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["sqlite:///example.db",{"_index":3022,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["squar",{"_index":3687,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["square(5",{"_index":3690,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["square(x",{"_index":3199,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["squared_dict",{"_index":2140,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["squared_list",{"_index":2135,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["squid",{"_index":9767,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["src",{"_index":7670,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/app.tsx",{"_index":11401,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/index.tsx",{"_index":11402,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src=templates/my.cnf.j2",{"_index":7620,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["src=templates/ports.conf.j2",{"_index":7668,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["srcobject",{"_index":1233,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["ssd",{"_index":9171,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["ssh",{"_index":5389,"title":{"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day18":{}}}],["ssh.close",{"_index":9414,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh.connect(ip,port",{"_index":9395,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh.invoke_shel",{"_index":9398,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh.set_missing_host_key_policy(paramiko.autoaddpolici",{"_index":9394,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh_port",{"_index":7716,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["sshd",{"_index":9674,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["ssl",{"_index":9135,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["ssl/tl",{"_index":9538,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["ssrn",{"_index":11704,"title":{},"content":{"/p/publications":{}},"description":{}}],["st",{"_index":5144,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["staa",{"_index":9309,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["stabl",{"_index":7138,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["stack",{"_index":5464,"title":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{}},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{}},"description":{}}],["stack.append((curr_str",{"_index":5606,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["stack.append(asteroid",{"_index":5465,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["stack.pop",{"_index":5466,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["stack.yaml",{"_index":6961,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["stackoverflow",{"_index":9981,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["staff",{"_index":11618,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["stage",{"_index":7274,"title":{"/tracks/90daysofdevops/day38":{}},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day38":{}}}],["stage('build",{"_index":7351,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["stage('deploy",{"_index":7353,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["stage('get",{"_index":7344,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["stage('main",{"_index":7314,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["stage('test",{"_index":7349,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["stagig",{"_index":8737,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["staging/stag",{"_index":8794,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["standard",{"_index":6330,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{}},"description":{}}],["standard_d2s_v3",{"_index":8944,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["standbi",{"_index":6428,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["stanovlenija",{"_index":11732,"title":{},"content":{"/p/publications":{}},"description":{}}],["star",{"_index":8725,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["start",{"_index":1046,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["start.telebank.co.il",{"_index":11188,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["start==stop",{"_index":6231,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["start_tim",{"_index":3290,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["start_time:.4f",{"_index":3295,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["startapp",{"_index":3111,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["startbutton.dis",{"_index":1578,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["started/overview",{"_index":920,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["startproject",{"_index":3108,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["startswith",{"_index":3487,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["starttl",{"_index":2740,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["startup",{"_index":10350,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["state",{"_index":6622,"title":{"/tracks/90daysofdevops/day55":{}},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["state=latest",{"_index":7611,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["state=start",{"_index":7776,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["statefulset",{"_index":6581,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["statefulset.namespac",{"_index":6544,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["stateless",{"_index":8104,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["static",{"_index":1278,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{}}],["static/js/my_react_component.j",{"_index":11231,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["static/js/zoom",{"_index":11255,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["static/wheels/mi",{"_index":10989,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["static/wheels/travertino",{"_index":10985,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["staticmethod",{"_index":3258,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["statist",{"_index":10321,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["statistics=0",{"_index":6559,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["statu",{"_index":6742,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["stderr",{"_index":2707,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["stderr=subprocess.pip",{"_index":2705,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["stdin",{"_index":8310,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/posts/docker-commands/":{}},"description":{}}],["stdout",{"_index":2706,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["stdout=subprocess.pip",{"_index":2704,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["step",{"_index":932,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["step=1",{"_index":5839,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["stick",{"_index":10200,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["stop",{"_index":1534,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/posts/docker-commands/":{}},"description":{}}],["stopiter",{"_index":2300,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["storag",{"_index":5146,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/_index":{},"/posts/docker-commands/":{}},"description":{}}],["storageclass",{"_index":6617,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["storageprofil",{"_index":8983,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["store",{"_index":1502,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{}}],["store.${app_name}.svc.cluster.loc",{"_index":6483,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["stori",{"_index":10091,"title":{},"content":{"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["str",{"_index":1860,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["str(count",{"_index":5545,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["str(my_numb",{"_index":3411,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["str(self",{"_index":2549,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["str(sup.fli",{"_index":10923,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str(sup.movi",{"_index":10892,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str1",{"_index":6161,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str1.startswith(str2",{"_index":6172,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str2",{"_index":6162,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str2.startswith(str1",{"_index":6173,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["strategi",{"_index":11081,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["stream",{"_index":282,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["stretch",{"_index":7276,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["strftime",{"_index":2833,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["strict",{"_index":1213,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["string",{"_index":795,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["string.split",{"_index":2326,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string1",{"_index":3414,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string2",{"_index":3415,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string3",{"_index":3416,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string4",{"_index":3418,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string5",{"_index":3419,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string6",{"_index":3421,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string7",{"_index":3423,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string_hello",{"_index":2114,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string_list",{"_index":2325,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string_lowercas",{"_index":2088,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string_split",{"_index":2092,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["strip",{"_index":3430,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["strong",{"_index":10362,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["strptime",{"_index":2834,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["strstr(self",{"_index":5438,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["struct",{"_index":9896,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["structur",{"_index":6258,"title":{"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/apps/_index":{}},"description":{}}],["structure.ru.png",{"_index":6187,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["stu1",{"_index":1970,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["student",{"_index":1960,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["student(\"sara",{"_index":1971,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["studi",{"_index":5057,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["studio",{"_index":3312,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["stun",{"_index":409,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["stun:stun.l.google.com:19302",{"_index":495,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["style",{"_index":3974,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day62":{},"/posts/emoji-support":{}},"description":{}}],["su",{"_index":9791,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sub",{"_index":11161,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["subclasshook",{"_index":3455,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["subnet",{"_index":5354,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["subnet0",{"_index":8960,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnet0nam",{"_index":8959,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnet1",{"_index":8962,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnet1nam",{"_index":8961,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnetipprefix",{"_index":9059,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnetnam",{"_index":8958,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnetref",{"_index":9061,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subprocess",{"_index":2669,"title":{"/tracks/python-101/standard_library/subprocess":{}},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["subprocess.call([python_execut",{"_index":2673,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["subprocess.popen(['l",{"_index":2702,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["subscript",{"_index":9248,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["subsequ",{"_index":5655,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["subvers",{"_index":8895,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["success",{"_index":1219,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["successfulli",{"_index":9927,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["such",{"_index":10323,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["sudo",{"_index":3659,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["suffix",{"_index":5831,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["suffix[i",{"_index":5833,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["suggest",{"_index":7617,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["suit",{"_index":10344,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["sum",{"_index":2964,"title":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["sum([1",{"_index":6208,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum([3",{"_index":6210,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum.ru.png",{"_index":6192,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sums[i",{"_index":5530,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["sup",{"_index":10872,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["sup.ag",{"_index":10888,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.boast",{"_index":10886,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('ложк",{"_index":10883,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('я",{"_index":10919,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super",{"_index":2448,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day75":{},"/posts/python-snippets/":{}},"description":{}}],["super().init(nam",{"_index":2449,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["super().method",{"_index":2507,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["super(batman",{"_index":10906,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super(child",{"_index":2450,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["superhero",{"_index":10855,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(human",{"_index":10859,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(name=\"тик",{"_index":10873,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.init(self",{"_index":10909,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.pi",{"_index":10903,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpow",{"_index":10861,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=[\"сверхс",{"_index":10864,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=['богат",{"_index":10911,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["suppli",{"_index":9952,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["support",{"_index":7831,"title":{"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{}},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/math-support":{},"/posts/diagram-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/brewmate/":{}},"description":{}}],["sure",{"_index":10590,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["survey",{"_index":9982,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["surveymonkey",{"_index":10128,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["suscipit",{"_index":10554,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["suspendiss",{"_index":10507,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["svc",{"_index":6921,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["svc/alertmanag",{"_index":6943,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["svc/argocd",{"_index":7195,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["svc/grafana",{"_index":6922,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["svc/jenkin",{"_index":7389,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["svc/nginx",{"_index":7916,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["svc/pacman",{"_index":6628,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["svc/prometheu",{"_index":6926,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["svc/servicenam",{"_index":8309,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["svg",{"_index":1209,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["sw1",{"_index":9354,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sw2",{"_index":9355,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sw3",{"_index":9356,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sw4",{"_index":9357,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["swap",{"_index":5378,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["swap(x",{"_index":10792,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swap(x,i",{"_index":10793,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swapcas",{"_index":3488,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["swarm",{"_index":8358,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["swipe",{"_index":8812,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["switch",{"_index":8925,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["switch1",{"_index":9333,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switch2",{"_index":9336,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switch3",{"_index":9339,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switch4",{"_index":9342,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switchport",{"_index":9366,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["sy",{"_index":2584,"title":{"/tracks/python-101/standard_library/sys":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["symbol",{"_index":10576,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["symmetric_differ",{"_index":3556,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["symmetric_difference_set",{"_index":3577,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["symmetric_difference_upd",{"_index":3564,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["synchronis",{"_index":8121,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["syntax",{"_index":7296,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["synthesi",{"_index":10657,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sys.argv",{"_index":2654,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.argv[1",{"_index":2681,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.execut",{"_index":2655,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.exit",{"_index":2674,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.exit(1",{"_index":2679,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.exit([arg",{"_index":2656,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.modul",{"_index":2657,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.modules.item",{"_index":2682,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.path",{"_index":2658,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.platform",{"_index":2661,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stderr",{"_index":2665,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdin",{"_index":2663,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdout",{"_index":2664,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdout.writ",{"_index":2689,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdout.write(f\"hello",{"_index":2686,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["system",{"_index":5128,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["systemctl",{"_index":9661,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["systemd",{"_index":7045,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["systemd_filt",{"_index":7047,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["t",{"_index":3370,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["t1",{"_index":2631,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t1.join",{"_index":2638,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t1.start",{"_index":2635,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t2",{"_index":2633,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t2.join",{"_index":2639,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t2.micro",{"_index":8022,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["t2.start",{"_index":2636,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t=100",{"_index":6056,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["t[pointer_t",{"_index":6106,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["t\\n",{"_index":10029,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["tabl",{"_index":6500,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["tag",{"_index":5308,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/_index":{},"/posts/diagram-support":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["tail",{"_index":7038,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["take",{"_index":5020,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["taken",{"_index":9273,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["talk",{"_index":6684,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/posts/markdown-syntax/":{}},"description":{}}],["tap",{"_index":11887,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["tar",{"_index":9700,"title":{"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/90daysofdevops/day18":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["target",{"_index":5571,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["target_function(arg",{"_index":10937,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["target_port",{"_index":7914,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["targetport",{"_index":8177,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["tariff",{"_index":4640,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["task",{"_index":3076,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["task(basemodel",{"_index":3074,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["task_id",{"_index":3084,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["tasklist(basemodel",{"_index":3075,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["tasklist(tasks=db",{"_index":3081,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["tasks/main.yml",{"_index":7681,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["tcp",{"_index":8176,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["tcp_123",{"_index":10598,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["tcp_456",{"_index":10600,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["td",{"_index":10593,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["teach",{"_index":5229,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["team",{"_index":5226,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["technic",{"_index":5212,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["techniqu",{"_index":5230,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["techworld",{"_index":8157,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["tee",{"_index":8028,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["tellarguments(**kwarg",{"_index":2339,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["tellarguments(arg1",{"_index":2342,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["tellu",{"_index":10466,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["telnet",{"_index":9320,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["telnetlib",{"_index":9487,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["temp",{"_index":2068,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["templat",{"_index":3146,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/posts/emoji-support":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["template.json",{"_index":8948,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["templatefil",{"_index":9019,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["templateparameterfil",{"_index":9021,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["templates/index.html.j2",{"_index":7671,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["templates/ports.conf.j2",{"_index":7760,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["templates\\mysite.j2",{"_index":7658,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["tempor",{"_index":10468,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tempu",{"_index":10517,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tenant.onmicrosoft.com",{"_index":9230,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["tens",{"_index":8803,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["termin",{"_index":5380,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["terra",{"_index":7982,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["terraform",{"_index":7795,"title":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{}},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["terraform.io",{"_index":8075,"title":{},"content":{"/tracks/90daysofdevops/day57":{}},"description":{}}],["terraform.tfvar",{"_index":8002,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["terraform.workspac",{"_index":7923,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["terraform_vers",{"_index":8062,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["terragrunt",{"_index":7875,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["terrascan",{"_index":7865,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["terratest",{"_index":7872,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["test",{"_index":5028,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["test.webrtc.org",{"_index":1464,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["test_data1",{"_index":3232,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_data2",{"_index":3233,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_data3",{"_index":3234,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_neg",{"_index":3211,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_negative(self",{"_index":3205,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_posit",{"_index":3210,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_positive(self",{"_index":3201,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_process_data(self",{"_index":3229,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_square.pi",{"_index":3215,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_us",{"_index":10272,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["testcas",{"_index":3218,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["testprocessdata(testcas",{"_index":3227,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["testsquar",{"_index":3208,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["testsquare(unittest.testcas",{"_index":3200,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["text",{"_index":887,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text.length",{"_index":11289,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text1",{"_index":3401,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["text2",{"_index":3403,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["text3",{"_index":3405,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["textarea",{"_index":874,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["tf",{"_index":7928,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["tf_k8deploy",{"_index":7893,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["tf_var_nam",{"_index":8001,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["tflint",{"_index":7855,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["tfsec",{"_index":7863,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["tfstate",{"_index":8060,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["that'",{"_index":10309,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["theme",{"_index":9645,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/posts/math-support":{},"/posts/diagram-support":{}},"description":{}}],["then(createdansw",{"_index":1163,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["then(createdoffer).catch(setsessiondescriptionerror",{"_index":1147,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["then(devic",{"_index":659,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["then(gotlocalmediastream",{"_index":1112,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["then(gotlocalmediastream).catch(handlelocalmediastreamerror",{"_index":1223,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["then(gotstream",{"_index":947,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["then(stream",{"_index":615,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["theori",{"_index":5063,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["thing",{"_index":8120,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["think",{"_index":10087,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["third",{"_index":10315,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{}}],["those",{"_index":9898,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["thread",{"_index":2618,"title":{"/tracks/python-101/standard_library/threading":{}},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["threading.thread(target=print_lett",{"_index":2634,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["threading.thread(target=print_numb",{"_index":2632,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["three",{"_index":10732,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["threshold",{"_index":5053,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["through",{"_index":5066,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["throughout",{"_index":5418,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["throw",{"_index":1816,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["tiam",{"_index":11129,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["tic",{"_index":9380,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["tic:0.4f",{"_index":9420,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["tier",{"_index":9176,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["time",{"_index":2287,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day27":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["time.ctime(current_tim",{"_index":2891,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.gmtime(current_tim",{"_index":2896,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.perf_count",{"_index":9381,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(1",{"_index":9401,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(2",{"_index":3297,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(20",{"_index":9406,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(5",{"_index":2894,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.strftime('%i",{"_index":2899,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.tim",{"_index":2889,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["time_format",{"_index":7025,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["time_keep",{"_index":7023,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["time_key",{"_index":7024,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["timedelta",{"_index":2840,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["timer",{"_index":3296,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["timer(func",{"_index":3288,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["timestamp",{"_index":6972,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/posts/docker-commands/":{}},"description":{}}],["tip",{"_index":11093,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["titl",{"_index":3028,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["title=request.post.get('titl",{"_index":3126,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["titlebar",{"_index":11378,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["tl",{"_index":9542,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["tl;dr",{"_index":5013,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["tldr",{"_index":8086,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["tmp",{"_index":9757,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["tmp/dockerfil",{"_index":11588,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmp/exec_work",{"_index":11595,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmpf",{"_index":9748,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["to_addr",{"_index":2733,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["toc",{"_index":9416,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["todat",{"_index":6550,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["today",{"_index":2846,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["today.strftime(\"%i",{"_index":2871,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["togeth",{"_index":7458,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["tojson",{"_index":6566,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["token",{"_index":256,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day13":{},"/apps/_index":{}},"description":{}}],["token=$(kubectl",{"_index":6400,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["token_nam",{"_index":6401,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["token_name=$(kubectl",{"_index":6397,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["took",{"_index":10102,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["tool",{"_index":1184,"title":{"/tracks/90daysofdevops/day78":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["toolset",{"_index":8691,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["top",{"_index":6949,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/brewmate/":{}},"description":{}}],["topic",{"_index":5059,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["tornado",{"_index":2986,"title":{"/tracks/python-101/frameworks/tornado":{}},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["tornado.escap",{"_index":2990,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.ioloop",{"_index":2988,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.ioloop.ioloop.current().start",{"_index":3007,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.web",{"_index":2989,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.web.appl",{"_index":3002,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado_app.pi",{"_index":3011,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tortois",{"_index":5732,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["tortor",{"_index":10533,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tostr",{"_index":6557,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["total",{"_index":981,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["total_wat",{"_index":6034,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["totaldays=90",{"_index":10254,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["touch",{"_index":8837,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["tower",{"_index":7510,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["trace",{"_index":10413,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["trace(${getpeername(peerconnect",{"_index":1133,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('ad",{"_index":1119,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('cr",{"_index":1560,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["trace('localpeerconnect",{"_index":1145,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('receiv",{"_index":1116,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('remotepeerconnect",{"_index":1159,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('s",{"_index":1582,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["trace('us",{"_index":1548,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["trace(answ",{"_index":1165,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace(off",{"_index":1154,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["traceback",{"_index":1756,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["track",{"_index":367,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["trade",{"_index":4524,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["traffic",{"_index":5390,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["trail",{"_index":6279,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["train",{"_index":5151,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["transact",{"_index":6562,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["transfer",{"_index":2719,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["transform",{"_index":6331,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["translat",{"_index":275,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["transport",{"_index":9543,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["trap",{"_index":6025,"title":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"content":{},"description":{}}],["trap(height",{"_index":6033,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["travers",{"_index":209,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["travi",{"_index":8666,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["travisci",{"_index":7411,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["tree",{"_index":5865,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day39":{},"/apps/_index":{}},"description":{}}],["tree[i",{"_index":6256,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["treenod",{"_index":5560,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["trello",{"_index":10126,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["tri",{"_index":578,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day80":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["trickl",{"_index":543,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["trigger",{"_index":7400,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["tripl",{"_index":3334,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["triplet",{"_index":5654,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{},"description":{}}],["tristiqu",{"_index":10505,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["troubleshoot",{"_index":5042,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["true",{"_index":319,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["true/fals",{"_index":3360,"title":{},"content":{"/tracks/python-101/basis/types":{}},"description":{}}],["trunk",{"_index":9367,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["truthi",{"_index":10648,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["try/except",{"_index":3754,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["tsc",{"_index":11447,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tsconfig.json",{"_index":11411,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tti",{"_index":6494,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/posts/docker-commands/":{}},"description":{}}],["tunnel",{"_index":8150,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["tup",{"_index":10723,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[0",{"_index":10724,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[:2",{"_index":10727,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tupl",{"_index":1815,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{}},"description":{}}],["tuple([4",{"_index":3372,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["tuple(gridr",{"_index":5899,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["tuple(row",{"_index":5895,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["turn",{"_index":189,"title":{"/tracks/webrtc/turn-server":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["turn:mi",{"_index":252,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["turpi",{"_index":10522,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tutori",{"_index":2976,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["tvf",{"_index":11632,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["tweak",{"_index":11377,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["tweet",{"_index":9899,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["twenti",{"_index":8528,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["twin",{"_index":5913,"title":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["twin_sum",{"_index":5919,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["twitter",{"_index":7397,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{"/tracks/90daysofdevops/day13":{}}}],["twitter.accountverifyparam",{"_index":9923,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter.bool(tru",{"_index":9925,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter.cli",{"_index":9912,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter.newclient(httpcli",{"_index":9920,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter/twitt",{"_index":9901,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitterhandl",{"_index":10027,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["twitternam",{"_index":9872,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["two",{"_index":1327,"title":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["txt",{"_index":11308,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["type",{"_index":663,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/_index":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/python-snippets/":{}},"description":{}}],["type((1",{"_index":10725,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type(my_str",{"_index":3509,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["type(sup",{"_index":10876,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type=int",{"_index":2959,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["typeahead",{"_index":6822,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["typeerror",{"_index":2028,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["typehandlervers",{"_index":9032,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["typeof",{"_index":11458,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["typescript",{"_index":7884,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["tэтот",{"_index":7661,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["u",{"_index":6110,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{},"/posts/math-support":{}},"description":{}}],["ubuntu",{"_index":3658,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/docker-commands/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["ubuntu/debian",{"_index":8202,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["ubuntu:18.04",{"_index":8483,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["ubuntu:latest",{"_index":11590,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["udp",{"_index":9593,"title":{},"content":{"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["ufw",{"_index":9662,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["ui",{"_index":280,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{}},"description":{}}],["uint",{"_index":9868,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["ullamcorp",{"_index":10526,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ultra",{"_index":9169,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["ultric",{"_index":10519,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ultrici",{"_index":10556,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["umount",{"_index":9782,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["unappli",{"_index":7849,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["unboundlocalerror",{"_index":1785,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["und",{"_index":11124,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["under",{"_index":10214,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["understand",{"_index":5152,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["undo",{"_index":8770,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["unhash",{"_index":10735,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unicod",{"_index":1862,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/emoji-support":{}},"description":{}}],["unifi",{"_index":20,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["unimu",{"_index":9459,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["uninstal",{"_index":11882,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["unint",{"_index":10030,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["union",{"_index":3551,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["union_set",{"_index":3568,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["uniqu",{"_index":5611,"title":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{},"description":{}}],["unit",{"_index":4521,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["unittest",{"_index":3197,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unittest.main",{"_index":3207,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unittest.mock.mock",{"_index":3217,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unittest.testcas",{"_index":3209,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unix",{"_index":2014,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["unless",{"_index":5055,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["unoffici",{"_index":8308,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["unpickl",{"_index":2224,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["unpin",{"_index":7846,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["unrestrict",{"_index":7322,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["unspecifi",{"_index":5050,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["unstag",{"_index":8755,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["until",{"_index":5068,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["untrack",{"_index":8847,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["unus",{"_index":7857,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["up",{"_index":442,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["updat",{"_index":678,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["update(request",{"_index":3132,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["update.html",{"_index":3140,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["update_book(book_id",{"_index":3053,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["update_task(task_id",{"_index":3094,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["updatecameralist(camera",{"_index":682,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["updatecameralist(newcameralist",{"_index":707,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["updatecameralist(videocamera",{"_index":700,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["updatedb",{"_index":9802,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["upgrad",{"_index":6347,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["upload",{"_index":5368,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["upper",{"_index":3489,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["upstream",{"_index":7579,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["upto",{"_index":2249,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["uri",{"_index":9097,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["url",{"_index":251,"title":{"/posts/howto-redirect-to-url/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{"/posts/howto-redirect-to-url/":{}}}],["url(",{"_index":1511,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["urllib",{"_index":2589,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["urna",{"_index":10464,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["us",{"_index":144,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["usabl",{"_index":10963,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["usag",{"_index":10324,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{"/posts/emoji-support":{}}}],["usb",{"_index":671,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["usd",{"_index":5245,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["user",{"_index":946,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["user'@'localhost",{"_index":9691,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["user.email",{"_index":8872,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["user.nam",{"_index":8859,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["user@52.24.109.78",{"_index":5400,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["user_data",{"_index":8027,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["useradd",{"_index":8486,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["userdel",{"_index":10271,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["usermod",{"_index":9819,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["usernam",{"_index":242,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["username:$password",{"_index":10270,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["username}}/{{imagename}}:{{vers",{"_index":8574,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["users/r/desktop/new_source.txt",{"_index":11302,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/r/desktop/old_source.txt",{"_index":11300,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/shambhu/docu",{"_index":9392,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["users/zsh",{"_index":9633,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["uslovijah.pdf",{"_index":11736,"title":{},"content":{"/p/publications":{}},"description":{}}],["usloviya",{"_index":11730,"title":{},"content":{"/p/publications":{}},"description":{}}],["usr",{"_index":9751,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["usr/bin",{"_index":9759,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["usr/bin/apt",{"_index":11388,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/bash",{"_index":10238,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["usr/bin/dnf",{"_index":11389,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/env",{"_index":2015,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["usr/bin/mysql",{"_index":7642,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["usr/bin/softwar",{"_index":11387,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/sbin/synapt",{"_index":11386,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ut",{"_index":10490,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["utc",{"_index":2884,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["util",{"_index":10366,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["utm",{"_index":11346,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["uvicorn",{"_index":3068,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["v",{"_index":3147,"title":{"/tracks/python-101/frameworks/_index":{}},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{}}],["v.cpu",{"_index":9854,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["v.custom",{"_index":7744,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["v.memori",{"_index":9852,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["v/rvi",{"_index":9474,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["v0.01",{"_index":9934,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["v1",{"_index":7307,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["v2",{"_index":7491,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["v2l8v",{"_index":6968,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["v\\n",{"_index":9997,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["vagant",{"_index":9724,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["vagrant",{"_index":7599,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["vagrant.configure(\"2",{"_index":7712,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["vagrant/vagr",{"_index":8251,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vagrant@192.168.169.135",{"_index":9668,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["vagrantfil",{"_index":7601,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["val",{"_index":5565,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["val=0",{"_index":5561,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["valid",{"_index":5788,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["valid_dict",{"_index":10736,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["valid_set",{"_index":10757,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["vals.append(curr.v",{"_index":5916,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["valu",{"_index":2132,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["value1",{"_index":3166,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["value2",{"_index":3168,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["value_if_fals",{"_index":3603,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["value_if_tru",{"_index":3602,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["valueerror",{"_index":3765,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/posts/python-snippets/":{}},"description":{}}],["valueerror(\"height",{"_index":2546,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["valueerror(\"width",{"_index":2541,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["valueerror(\"числ",{"_index":3768,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["values('albert",{"_index":6505,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('alfr",{"_index":6507,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('bartholomew",{"_index":6511,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('beatric",{"_index":6509,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('edward",{"_index":6512,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('edwin",{"_index":6514,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('edwina",{"_index":6516,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('nick",{"_index":6504,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('rastapopoulo",{"_index":6518,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values.yml",{"_index":7379,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["vancouv",{"_index":3981,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["var",{"_index":942,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["var.wordpress_port",{"_index":7963,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["var/lib/apt/list",{"_index":8569,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["var/lib/mysql",{"_index":7957,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["var/log",{"_index":9763,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/log/apach",{"_index":9764,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/log/containers/*.log",{"_index":7039,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["var/log/squid",{"_index":9765,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/run",{"_index":9747,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/run/mysqld/mysqld.sock",{"_index":7627,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["var/run:/var/run",{"_index":8232,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["var/www",{"_index":9698,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["var/www/html/90days.php",{"_index":9686,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["var/www/html/index.html",{"_index":7673,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["varargs(*arg",{"_index":10776,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["varargs(1",{"_index":10777,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["vargant",{"_index":9862,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["variabl",{"_index":2074,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["variables('computeapivers",{"_index":8970,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('networkapivers",{"_index":8999,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('nicnam",{"_index":9064,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('nsgnam",{"_index":9068,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('publicipaddressnam",{"_index":9067,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnet0nam",{"_index":9003,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnet1nam",{"_index":9005,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnetipprefix",{"_index":9066,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnetnam",{"_index":9062,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnetref",{"_index":9069,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('virtualnetworknam",{"_index":8998,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('vmnam",{"_index":9063,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('vnetipprefix",{"_index":9065,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["varieti",{"_index":5181,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["variou",{"_index":5190,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["variu",{"_index":10473,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vault",{"_index":7512,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["vb",{"_index":8269,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vb.cpu",{"_index":8272,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vb.custom",{"_index":8273,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vb.memori",{"_index":8270,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vboxnet1",{"_index":7997,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["vc.ru",{"_index":11796,"title":{},"content":{"/p/publications":{}},"description":{}}],["vec",{"_index":5799,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["vector",{"_index":5792,"title":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["vector2d",{"_index":5798,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["veeam",{"_index":6351,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["vehicula",{"_index":10472,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vel",{"_index":10491,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["velero",{"_index":6348,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["velit",{"_index":10541,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vendor",{"_index":7974,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["venenati",{"_index":10544,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vercel",{"_index":11041,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["veri",{"_index":10960,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["verifi",{"_index":9921,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["verifyparam",{"_index":9922,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["version",{"_index":1365,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/brewmate/":{}},"description":{}}],["version=1.21.2",{"_index":6429,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["vertic",{"_index":10579,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["vestibulum",{"_index":10518,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vet",{"_index":5197,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["vexpert",{"_index":9464,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["vi",{"_index":11384,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["via",{"_index":5188,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["video",{"_index":292,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day26":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["videocamera",{"_index":669,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["videoel",{"_index":747,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["videoelement.srcobject",{"_index":749,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["videoinput",{"_index":653,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["view",{"_index":10203,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["vim",{"_index":9654,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["vintag",{"_index":11893,"title":{"/_home/vintage":{}},"content":{},"description":{}}],["vio",{"_index":9435,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["virl",{"_index":9434,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["virtual",{"_index":8246,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["virtualbox",{"_index":7743,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["virtualbox.tf",{"_index":7981,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["virtualbox_vm",{"_index":7986,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["virtualis",{"_index":9469,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["virtualnetworknam",{"_index":8955,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["visibl",{"_index":1558,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/docker-commands/":{}},"description":{}}],["visual",{"_index":3311,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["visualis",{"_index":10208,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["vita",{"_index":10488,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["viverra",{"_index":10520,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vlan",{"_index":9371,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["vm",{"_index":7836,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["vm0",{"_index":9049,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmcopi",{"_index":8967,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmcount",{"_index":8953,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmname",{"_index":8951,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmsize",{"_index":8943,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmss",{"_index":9211,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["vmware",{"_index":8009,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["vnet0",{"_index":9052,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vnetipprefix",{"_index":9057,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vnutrennih",{"_index":11716,"title":{},"content":{"/p/publications":{}},"description":{}}],["volum",{"_index":7339,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/docker-commands/":{}},"description":{}}],["volume.yml",{"_index":7376,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["volumemount",{"_index":7335,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["volumesnapshot",{"_index":6609,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["volumesnapshotclass",{"_index":6611,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["volumesnapshots,csi",{"_index":6424,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["volutpat",{"_index":10527,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vowel",{"_index":6108,"title":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["vpc",{"_index":5135,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["vram",{"_index":9855,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["vs",{"_index":5024,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["vscode",{"_index":3708,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["vsphere",{"_index":8225,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["vt",{"_index":9471,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["vzilla",{"_index":8703,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["w",{"_index":2692,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["waf",{"_index":5145,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["wait",{"_index":2713,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day36":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["walkthrough",{"_index":6416,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["want",{"_index":10059,"title":{},"content":{"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["warn",{"_index":2823,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["watch",{"_index":8724,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["watcher",{"_index":9037,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["water",{"_index":5989,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["waterfal",{"_index":10146,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["way",{"_index":5407,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day01":{},"/posts/emoji-support":{}},"description":{}}],["web",{"_index":424,"title":{"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/interactivebrokers-deposit/":{},"/p/publications":{},"/apps/_index":{}},"description":{"/tracks/90daysofdevops/day18":{}}}],["web/tablet/mobil",{"_index":11880,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["web01",{"_index":7649,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["web01.yml",{"_index":7595,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["web01:8000",{"_index":7677,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["web02",{"_index":7650,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["web1",{"_index":8466,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["webapp",{"_index":9093,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["webapp.defaulthostnam",{"_index":9098,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["webapp1",{"_index":9120,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["webassembl",{"_index":10952,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["webhook",{"_index":7285,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["webprefer",{"_index":11430,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["webrequest",{"_index":9096,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["webrtc",{"_index":12,"title":{"/tracks/webrtc/testing":{},"/tracks/webrtc/_index":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}}}],["webrtc.org",{"_index":1194,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["webserv",{"_index":7554,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["websit",{"_index":5072,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["website::tag::1",{"_index":8044,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["websocket",{"_index":1438,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["welcom",{"_index":7561,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["well",{"_index":5199,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["west",{"_index":3904,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["wget",{"_index":9628,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["what'",{"_index":6350,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["wherei",{"_index":10239,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["whether",{"_index":5784,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["while(p",{"_index":2253,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["white",{"_index":8823,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["whitepap",{"_index":5210,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["whl",{"_index":10984,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["whoami",{"_index":9787,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["whole",{"_index":10310,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["wi",{"_index":9561,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["width",{"_index":729,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["width(self",{"_index":2538,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["width.sett",{"_index":2540,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["width:650px",{"_index":10581,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["wiki",{"_index":6257,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["win",{"_index":2670,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.loadurl",{"_index":11432,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.webcontents.opendevtool",{"_index":11436,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["window",{"_index":843,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["window.localconnect",{"_index":1559,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["window.location.assign(newurl",{"_index":11334,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.href",{"_index":11327,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.replac",{"_index":11328,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.replace(newurl",{"_index":11333,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.replace(url",{"_index":11337,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.remoteconnect",{"_index":1570,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["window.room",{"_index":1339,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["windowsconfigur",{"_index":8979,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["windowsserv",{"_index":8987,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["winget",{"_index":8881,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["winmerg",{"_index":8746,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["winop",{"_index":9836,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["wire",{"_index":11184,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["wireshark",{"_index":9428,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["wish",{"_index":10136,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["with_item",{"_index":7612,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["withbundleanalyz",{"_index":11061,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["without",{"_index":1895,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["wm1",{"_index":11601,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["woof",{"_index":3869,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["word",{"_index":2090,"title":{"/tracks/algorithms-101/leetcode/medium/151":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["word1",{"_index":6129,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word2",{"_index":6130,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["wordpress",{"_index":7944,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["wordpress.tf",{"_index":7945,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress:latest",{"_index":7958,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_data",{"_index":8522,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_data:/var/www/html",{"_index":8516,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_host",{"_index":8518,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_host=db:3306",{"_index":7959,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_db_nam",{"_index":8521,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_name=wordpress",{"_index":7961,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_db_password",{"_index":8520,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_password=wordpress",{"_index":7962,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_db_us",{"_index":8519,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_user=wordpress",{"_index":7960,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_net",{"_index":7950,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_port",{"_index":7946,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpressdb",{"_index":9690,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["words.revers",{"_index":5448,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["work",{"_index":989,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["work/index.html",{"_index":1525,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["workdir",{"_index":8561,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["worker",{"_index":8229,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["worker.thread",{"_index":10389,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["workflow",{"_index":7219,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["workflow_dispatch",{"_index":11039,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["workflow_nam",{"_index":7251,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["workshop",{"_index":5160,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["workspac",{"_index":7922,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["workstat",{"_index":9427,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["world",{"_index":2099,"title":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}}}],["worm",{"_index":11175,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["worri",{"_index":9656,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["wq",{"_index":9709,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["wrap",{"_index":7309,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/posts/python-snippets/":{}},"description":{}}],["wrapper",{"_index":2087,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["wrapper(arg",{"_index":3289,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["wrapper(arg1",{"_index":2109,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["wraps(target_funct",{"_index":10936,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wright",{"_index":9984,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["write",{"_index":2906,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day15":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["write_ptr",{"_index":5539,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["wrong",{"_index":10256,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["ws",{"_index":9225,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["wsl",{"_index":8153,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["wsl2",{"_index":6960,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["www.90daysofdevops.com",{"_index":8465,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["wx",{"_index":9821,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["x",{"_index":1749,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/math-support":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["x%2",{"_index":2144,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x(self",{"_index":3265,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["x**2",{"_index":2136,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["x*x",{"_index":3804,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["x,i",{"_index":2147,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x.next",{"_index":2254,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x/ept",{"_index":9472,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["x100",{"_index":9261,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["x86",{"_index":5243,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["x:x**2",{"_index":2141,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x=5",{"_index":10775,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["xarg",{"_index":9830,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["xcxgj8mqxslg",{"_index":11685,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["xf",{"_index":11614,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xi",{"_index":7154,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["xii",{"_index":11706,"title":{},"content":{"/p/publications":{}},"description":{}}],["xix",{"_index":4982,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["xjf",{"_index":11631,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xlrd",{"_index":9425,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["xm",{"_index":6166,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["xml",{"_index":8501,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["xmlrpc",{"_index":9695,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["xn",{"_index":6165,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/markdown-syntax/":{}},"description":{}}],["xpack.security.authc.api_key.en",{"_index":10373,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["xr",{"_index":11623,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xrang",{"_index":2205,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["xrange(1",{"_index":2216,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["xrange(1,10",{"_index":2215,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["xrange(10",{"_index":2212,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["xv",{"_index":4888,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["xvf",{"_index":9701,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["xvi",{"_index":4890,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["xvii",{"_index":4904,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["xzf",{"_index":11627,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["y",{"_index":2146,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["yaml",{"_index":6623,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day07":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["yamlfil",{"_index":7301,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["yarn",{"_index":11069,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ye",{"_index":7556,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day18":{},"/apps/brewmate/":{}},"description":{}}],["year",{"_index":2835,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["yesterday",{"_index":2867,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["yield",{"_index":2208,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["yml.html",{"_index":10330,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["yn",{"_index":11167,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["york",{"_index":3368,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["youtub",{"_index":5177,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["you’ll",{"_index":5032,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["yum",{"_index":8030,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["yy",{"_index":9714,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["yyyi",{"_index":10625,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["z",{"_index":1762,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{}},"description":{}}],["zabbix",{"_index":7151,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["zero",{"_index":6121,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["zerodivisionerror",{"_index":3757,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["zfill",{"_index":3490,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["zigzag",{"_index":5980,"title":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["zip",{"_index":1492,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["zip(a,b",{"_index":2148,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["zn",{"_index":11168,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["zoom",{"_index":10127,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoom.on('detach",{"_index":11279,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoom.on('open",{"_index":11275,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoombackground",{"_index":11260,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomdefault",{"_index":11257,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomin",{"_index":11249,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoommargin",{"_index":11259,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomscrolloffset",{"_index":11262,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach",{"_index":11269,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.detach",{"_index":11271,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.on('clos",{"_index":11270,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigg",{"_index":11264,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigger.open",{"_index":11267,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zotero",{"_index":3941,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["zsh",{"_index":9621,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["zsh_custom/plugins/zsh",{"_index":9635,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["zshrc",{"_index":9617,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["а",{"_index":356,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["а.смит",{"_index":4968,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["аббревиатур",{"_index":531,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["абзац",{"_index":11107,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["абсолютн",{"_index":4071,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day37":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["абстрагир",{"_index":8351,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["абстрагирова",{"_index":1032,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["абстрагирует",{"_index":9185,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["абстрактн",{"_index":5700,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["абстракц",{"_index":3014,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["авар",{"_index":9163,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["аварийн",{"_index":6296,"title":{"/tracks/90daysofdevops/day89":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["август",{"_index":131,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["австрийск",{"_index":11537,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["автобус",{"_index":10063,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["автозаполнен",{"_index":9796,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["автозапуска",{"_index":8625,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["автоматизац",{"_index":6338,"title":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day19/":{}}}],["автоматизир",{"_index":7494,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["автоматизирова",{"_index":6339,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["автоматизиру",{"_index":7445,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["автоматическ",{"_index":261,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["автомобилестроен",{"_index":4831,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["автономн",{"_index":296,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["автоперезагрузк",{"_index":8627,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["автор",{"_index":3916,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["авторизац",{"_index":9088,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["авторизова",{"_index":2741,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["авторск",{"_index":4763,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["авторств",{"_index":11128,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["агент",{"_index":7069,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["агентств",{"_index":11642,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["агностическ",{"_index":8354,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["агрегац",{"_index":7090,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["ад",{"_index":4069,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["адам",{"_index":4947,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["адаптац",{"_index":10173,"title":{},"content":{"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["адаптер",{"_index":7778,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["адаптирова",{"_index":48,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["адвалорн",{"_index":4563,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["аддон",{"_index":6608,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["административн",{"_index":3103,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day47":{},"/p/privacy_ru":{}},"description":{}}],["администратор",{"_index":6858,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["администрац",{"_index":11849,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["администрирова",{"_index":9837,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["администрирован",{"_index":8345,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["адрес",{"_index":1110,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day12":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["адресац",{"_index":9585,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["адресн",{"_index":1013,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["аз",{"_index":4209,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["аккаунт",{"_index":5260,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["аккурат",{"_index":7230,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["аккуратн",{"_index":7646,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["акт",{"_index":3958,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["актив",{"_index":4141,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day39":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["активирова",{"_index":9210,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["активн",{"_index":4480,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day07":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["актуальн",{"_index":818,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["акц",{"_index":11568,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["акцент",{"_index":8507,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ал",{"_index":11647,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["алгоритм",{"_index":3281,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["алис",{"_index":1082,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["алфавитн",{"_index":3949,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["альтернат",{"_index":1064,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["альтернатив",{"_index":1312,"title":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["альтернативн",{"_index":1434,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["амбициозн",{"_index":8589,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["америк",{"_index":4487,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["американск",{"_index":4188,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["амортизац",{"_index":7686,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["ан­ти­дем­пин­го­в",{"_index":4695,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["анализ",{"_index":60,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["анализатор",{"_index":7866,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["анализир",{"_index":7071,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["анализирова",{"_index":6999,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["аналитик",{"_index":6876,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["аналитическ",{"_index":7061,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["аналог",{"_index":8188,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["аналогичн",{"_index":831,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["анатольевн",{"_index":4215,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["анатом",{"_index":8535,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["англ",{"_index":4927,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["английск",{"_index":9574,"title":{},"content":{"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["андроид",{"_index":1603,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["андронов",{"_index":4223,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["аннотац",{"_index":3889,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/posts/markdown-syntax/":{}},"description":{}}],["аннотирова",{"_index":6610,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["анонимн",{"_index":2169,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["анонсирова",{"_index":10944,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["анотац",{"_index":3895,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["антидемпингов",{"_index":4628,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["аппаратн",{"_index":8353,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["аргумент",{"_index":1100,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["аренд",{"_index":11674,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["арендатор",{"_index":9229,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["арифметическ",{"_index":2841,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/posts/trading-indicators/sma":{}},"description":{}}],["армен",{"_index":4780,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["арт",{"_index":10243,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["артефакт",{"_index":6334,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["арх",{"_index":5339,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day37":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["архив",{"_index":9174,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["архиватор",{"_index":11611,"title":{"/posts/cheat-sheet-command-tar/":{}},"content":{},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["архивн",{"_index":9178,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["архитектор/инженер",{"_index":10157,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["архитектур",{"_index":1451,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/p/publications":{}},"description":{}}],["асеа",{"_index":4210,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["асинхрон",{"_index":436,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["аск",{"_index":10242,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["аспект",{"_index":3305,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["аспирант",{"_index":4055,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/p/publications":{}},"description":{}}],["ассоциативн",{"_index":10728,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ассоциир",{"_index":4864,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["астероид",{"_index":5455,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["атак",{"_index":6666,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["атрибут",{"_index":63,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["ауд",{"_index":78,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["аудиодорожек",{"_index":39,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["аутентификац",{"_index":2723,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["аутентифицир",{"_index":9537,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["аутентифицирова",{"_index":6737,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["африк",{"_index":4211,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["аффлек",{"_index":10916,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["б",{"_index":163,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ба",{"_index":4310,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["баз",{"_index":425,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/install":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["базов",{"_index":1484,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/privacy_ru":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["байт",{"_index":966,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["байткод",{"_index":2273,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["баланс",{"_index":4232,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["балансир",{"_index":8107,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["балансировк",{"_index":5322,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["балансировщик",{"_index":5360,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["балл",{"_index":6631,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["бам",{"_index":10869,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["бан",{"_index":5476,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["банк",{"_index":4189,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/posts/interactivebrokers-deposit/":{},"/p/репатриация":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["банковск",{"_index":6806,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["баннер",{"_index":9726,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["барь­е­р",{"_index":4705,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["барьер",{"_index":4117,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["бахайск",{"_index":11636,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["бд",{"_index":7072,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["бегун",{"_index":7214,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["бегунк",{"_index":7213,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["бегунок",{"_index":7215,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["бедн",{"_index":4326,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["бедност",{"_index":4249,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["бедств",{"_index":4352,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["беж",{"_index":9660,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["беззнаков",{"_index":10031,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["безопас",{"_index":1607,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["безопасн",{"_index":1610,"title":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{}},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day30":{}}}],["безотказн",{"_index":10086,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["безработиц",{"_index":11543,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["безымя",{"_index":3239,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["бел",{"_index":7100,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["беларус",{"_index":4778,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["бен",{"_index":10915,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["бер",{"_index":5597,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["берет",{"_index":466,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["берут",{"_index":10085,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["бесед",{"_index":4053,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["бесконечн",{"_index":7423,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["бесплатн",{"_index":3699,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["беспоко",{"_index":8637,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["бесполезн",{"_index":8902,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["беспрепятствен",{"_index":7450,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["беспроигрышн",{"_index":4934,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["бессерверн",{"_index":5237,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["бет",{"_index":130,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["библиограф",{"_index":4026,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["библиографическ",{"_index":3935,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["библиотек",{"_index":1302,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["бизнес",{"_index":4423,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/publications":{}},"description":{}}],["билд",{"_index":11075,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["бинарн",{"_index":5549,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day16":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["бинарник",{"_index":8301,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["биос",{"_index":7575,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["бирж",{"_index":4386,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["бит",{"_index":7074,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["бит.наук",{"_index":3930,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["битов",{"_index":6181,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["бла­го­при­ят­н",{"_index":4603,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["благодар",{"_index":1310,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["благодарн",{"_index":10012,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["благоразумн",{"_index":4951,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["благосостоян",{"_index":4900,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ближ",{"_index":5004,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["ближайш",{"_index":6464,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["близ­к",{"_index":4643,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["близк",{"_index":804,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["близнец",{"_index":5914,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["близок",{"_index":9202,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["блог",{"_index":8156,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["блок",{"_index":1741,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["блокир",{"_index":2621,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["блокирован",{"_index":11819,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["блокировк",{"_index":2608,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["блочн",{"_index":9165,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["бо­л",{"_index":4602,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["боб",{"_index":1083,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["богат",{"_index":4854,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["богатств",{"_index":4924,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["боков",{"_index":6647,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["бокс",{"_index":8250,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["бол",{"_index":7768,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["болев",{"_index":8616,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["болееширок",{"_index":4282,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["болезнен",{"_index":10082,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["больничан",{"_index":11677,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["больш",{"_index":909,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["большимчисл",{"_index":4306,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["большинств",{"_index":192,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["бонус",{"_index":9801,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["бонусн",{"_index":1022,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["борьб",{"_index":4783,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["бот",{"_index":9865,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["бразил",{"_index":4491,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["брандмауэр",{"_index":1105,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["брат",{"_index":8531,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/p/репатриация":{}},"description":{}}],["браузер",{"_index":265,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["брейкпоинт",{"_index":3303,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["брем",{"_index":9307,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["бренд",{"_index":9262,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["бреттон",{"_index":4162,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["британск",{"_index":4393,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["бриф",{"_index":6312,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["брокер",{"_index":4570,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["брокерск",{"_index":4401,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["броса",{"_index":10062,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["бросьт",{"_index":162,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["будуч",{"_index":1673,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["будущ",{"_index":1207,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["будьт",{"_index":8058,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["букв",{"_index":5593,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["буквальн",{"_index":3835,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["буквен",{"_index":2596,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["буклет",{"_index":4261,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["булев",{"_index":1830,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["бумаг",{"_index":4381,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["бункер",{"_index":10083,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["бутылк",{"_index":4995,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["буферизац",{"_index":6984,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["бы­л",{"_index":4671,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["быва",{"_index":8700,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["быстр",{"_index":1639,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["быстродейств",{"_index":3066,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["быстрот",{"_index":3104,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["быч",{"_index":10615,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["бэк",{"_index":7099,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["бэкграунд",{"_index":8384,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["бэкенд",{"_index":6825,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["бэтм",{"_index":10917,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["бюджет",{"_index":4297,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["бюрократ",{"_index":4517,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["в1945",{"_index":4277,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["важ",{"_index":1725,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["важн",{"_index":1592,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["важност",{"_index":7452,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вак",{"_index":11691,"title":{},"content":{"/p/publications":{}},"description":{}}],["валерьевн",{"_index":4108,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["валидац",{"_index":3098,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["валидн",{"_index":7472,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["валют",{"_index":4149,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["валютн",{"_index":4144,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/economics/diff-forward-contracts-futures":{}}}],["ванильн",{"_index":6993,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["вараинт",{"_index":10276,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вариант",{"_index":217,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["варк",{"_index":5272,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ваш",{"_index":230,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["вв",{"_index":4882,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["введ",{"_index":1245,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["введен",{"_index":3666,"title":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{}},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["введет",{"_index":7383,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["ввел",{"_index":10024,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["вверх",{"_index":3707,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["ввест",{"_index":1423,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["ввод",{"_index":1536,"title":{"/tracks/python-101/basis/inputs":{}},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["ввода/вывод",{"_index":2653,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["вводн",{"_index":10226,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{"/tracks/90daysofdevops/_index":{}}}],["ввоз",{"_index":4622,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ввп",{"_index":4817,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["вдав",{"_index":9198,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["вдава",{"_index":8933,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["веб",{"_index":431,"title":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["вед",{"_index":8591,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["веден",{"_index":4751,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["ведет",{"_index":2265,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ведр",{"_index":6386,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["ведут",{"_index":10304,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ведущ",{"_index":7436,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["век",{"_index":4891,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["вектор",{"_index":5793,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["велик",{"_index":8606,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["великобритан",{"_index":4469,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["великородн",{"_index":11708,"title":{},"content":{"/p/publications":{}},"description":{}}],["величин",{"_index":5905,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["велосипед",{"_index":6938,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{}},"description":{}}],["велосипедист",{"_index":6145,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["вентилятор",{"_index":9769,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["вер",{"_index":8735,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["верн",{"_index":5524,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["вернет",{"_index":2600,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/posts/python-snippets/":{}},"description":{}}],["вернувш",{"_index":5350,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вернул",{"_index":3238,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["вернут",{"_index":158,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["вернём",{"_index":8658,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["вернёт",{"_index":5775,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["вероятн",{"_index":1912,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["верс",{"_index":105,"title":{"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}}}],["версиониру",{"_index":7482,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вертикал",{"_index":10069,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["верх",{"_index":8547,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["верхн",{"_index":1362,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["вершин",{"_index":5930,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["весел",{"_index":3351,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["веск",{"_index":7005,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["вест",{"_index":2981,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["весьм",{"_index":8762,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ветв",{"_index":8775,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["ветвлен",{"_index":8909,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["ветк",{"_index":7476,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["веток",{"_index":8743,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["ветроэнергетик",{"_index":4843,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["вечеринк",{"_index":8143,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["вечн",{"_index":7456,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вещ",{"_index":3394,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["веществен",{"_index":3608,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["вжит",{"_index":8614,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["взаимн",{"_index":4992,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["взаимодейств",{"_index":1057,"title":{"/tracks/90daysofdevops/day47":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["взаимодействова",{"_index":1121,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["взаимодействует",{"_index":10053,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["взаимодейтв",{"_index":10166,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["взаимозависим",{"_index":1911,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["взаимозаменя",{"_index":8408,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["взаимозаменяем",{"_index":8106,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["взаимосвяз",{"_index":1276,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["взвешен",{"_index":4302,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["взгляд",{"_index":9219,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["взглян",{"_index":7217,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["взглянув",{"_index":7290,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["взглянут",{"_index":6974,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["взима",{"_index":4569,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["взлет",{"_index":8619,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["взлом",{"_index":7254,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["взяв",{"_index":6587,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["взял",{"_index":6598,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/p/репатриация":{}},"description":{}}],["взят",{"_index":2004,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["вид",{"_index":219,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["виде",{"_index":293,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["видел",{"_index":1361,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["видениус",{"_index":6796,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["видеоаппаратур",{"_index":9839,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["видеодорожек",{"_index":40,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["видеодорожк",{"_index":79,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["видеокадр",{"_index":954,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["видеоматериал",{"_index":1137,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["видеопамя",{"_index":9857,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["видеопоток",{"_index":941,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["видеоролик",{"_index":7199,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["видеоформат",{"_index":7548,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["видеочат",{"_index":1084,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["видеоэлемент",{"_index":1044,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["видет",{"_index":1266,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["виджет",{"_index":6925,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["видим",{"_index":1244,"title":{"/tracks/python-101/basis/scope":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["видн",{"_index":6405,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["виж",{"_index":7004,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["визуализац",{"_index":3196,"title":{"/tracks/90daysofdevops/day83":{}},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["визуализирова",{"_index":6894,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["визуальн",{"_index":7533,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["вик",{"_index":4576,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["википед",{"_index":4575,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вин",{"_index":4986,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["виновник",{"_index":6849,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["винтик",{"_index":6853,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["виртуализац",{"_index":7977,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["виртуальн",{"_index":2277,"title":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day26":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["вирутальн",{"_index":11355,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["витальевн",{"_index":4224,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вклад",{"_index":1736,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["вкладк",{"_index":1015,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["вкладок",{"_index":1433,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["вкладыва",{"_index":10280,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["включ",{"_index":264,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["включа",{"_index":29,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["включен",{"_index":5388,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["включительн",{"_index":5975,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["вкратц",{"_index":8306,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["владелец",{"_index":9252,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["владельц",{"_index":7469,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["владен",{"_index":3342,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["владимирович",{"_index":4198,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["влев",{"_index":1520,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["влекут",{"_index":11195,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["влия",{"_index":4158,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["влиян",{"_index":4207,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day06":{},"/p/publications":{}},"description":{}}],["влож",{"_index":10299,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["вложен",{"_index":2103,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{}}}],["вм",{"_index":7756,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["вмест",{"_index":756,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["вместим",{"_index":5993,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["вмешательств",{"_index":4886,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["вмешива",{"_index":4969,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["вне",{"_index":1764,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/p/privacy_ru":{}},"description":{}}],["внедр",{"_index":10070,"title":{},"content":{"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["внедрен",{"_index":115,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["внедря",{"_index":8209,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["внезапн",{"_index":4338,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["внеполосн",{"_index":7843,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["внес",{"_index":5291,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["внесен",{"_index":7798,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day17":{},"/posts/integrate-hugo-react/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["внесетев",{"_index":6731,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["внесл",{"_index":7183,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["внест",{"_index":6639,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["внесён",{"_index":8777,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["внеш­н",{"_index":4585,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["внешн",{"_index":530,"title":{"/tracks/python-101/external_packages/_index":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["внешнеторгов",{"_index":4066,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["внешнеэкономическ",{"_index":4237,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вник",{"_index":8605,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["вниман",{"_index":377,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["внимательн",{"_index":7166,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["внов",{"_index":557,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["внос",{"_index":4830,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["вносим",{"_index":8549,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["внутр",{"_index":1745,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["внутрен",{"_index":1774,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/p/publications":{}},"description":{}}],["вовлеч",{"_index":10286,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["воврем",{"_index":3914,"title":{},"content":{"/tracks/disser/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["вод",{"_index":5991,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["водопад",{"_index":10145,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["воедин",{"_index":8912,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["воен",{"_index":4356,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["воз",{"_index":8458,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["воз­дей­ст­во­ва",{"_index":4591,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["возбужда",{"_index":3549,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["возведен",{"_index":3590,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/posts/python-snippets/":{}},"description":{}}],["возвод",{"_index":3688,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["возвра",{"_index":6686,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["возврат",{"_index":2244,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{}},"description":{}}],["возвращ",{"_index":7093,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["возвраща",{"_index":606,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["возвращен",{"_index":834,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["возвышен",{"_index":8855,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["воздейств",{"_index":4708,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["воздержа",{"_index":1944,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["воздух",{"_index":7980,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["возлож",{"_index":8379,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["возможн",{"_index":288,"title":{"/tracks/python-101/enhance_python/_index":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["возможностьполучен",{"_index":4316,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["возника",{"_index":3636,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["возникл",{"_index":1465,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["возникнет",{"_index":2483,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["возникновен",{"_index":166,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["возникнут",{"_index":1822,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["возобновлен",{"_index":2930,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["возраст",{"_index":3674,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["возраста",{"_index":5658,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{}}}],["возрастан",{"_index":3646,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["возрожден",{"_index":9313,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["возрождён",{"_index":10229,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["возьм",{"_index":6072,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["возьмет",{"_index":8115,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["войд",{"_index":8217,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["войдет",{"_index":9439,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["войн",{"_index":4936,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["войт",{"_index":5314,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["волатильн",{"_index":4454,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["волгин",{"_index":4214,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["волн",{"_index":6529,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["волшебн",{"_index":8182,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["волшебств",{"_index":7468,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["воображен",{"_index":10167,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["вообщ",{"_index":3722,"title":{},"content":{"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["вообще»1",{"_index":11523,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["вопрос",{"_index":1287,"title":{"/tracks/python-101/top-questions/":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{}}}],["воспользова",{"_index":819,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["воспользу",{"_index":5315,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["воспоминан",{"_index":10078,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["воспринима",{"_index":6805,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["восприят",{"_index":11535,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["воспроизведен",{"_index":743,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["воспроизвод",{"_index":853,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["воссоздан",{"_index":2239,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["восстанавлива",{"_index":4510,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["восстанов",{"_index":6333,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["восстановл",{"_index":6447,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["восстановлен",{"_index":3272,"title":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{}},"description":{"/tracks/90daysofdevops/day39":{}}}],["восточн",{"_index":9040,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["востребова",{"_index":10057,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["восхищен",{"_index":6874,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["восходя",{"_index":8366,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/posts/trading-indicators/sma":{}},"description":{}}],["восьмеричн",{"_index":1847,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["вошел",{"_index":6734,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["впаст",{"_index":6702,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["вперв",{"_index":1232,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["вперед",{"_index":5704,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["впита",{"_index":10235,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["вплет",{"_index":7504,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вполн",{"_index":9247,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{}},"description":{}}],["впоследств",{"_index":2228,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["вправ",{"_index":1521,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/p/privacy_ru":{}},"description":{}}],["врем",{"_index":6058,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["времен",{"_index":33,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["врод",{"_index":6649,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{}},"description":{}}],["вруч",{"_index":9283,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["вручн",{"_index":7101,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["вряд",{"_index":4958,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["все",{"_index":1776,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["все­мир­н",{"_index":4680,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["всевозможн",{"_index":7574,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["всемирн",{"_index":2886,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["всемирныйбанк",{"_index":4283,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["всеобъемлющ",{"_index":9599,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["всероссийск",{"_index":11770,"title":{},"content":{"/p/publications":{}},"description":{}}],["вскор",{"_index":6728,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["вслед",{"_index":9201,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["вследств",{"_index":4337,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вслух",{"_index":4044,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["всплеск",{"_index":9206,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["всплыва",{"_index":277,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вспомн",{"_index":8087,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["вспомогательн",{"_index":7873,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["встав",{"_index":3306,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["вставк",{"_index":6674,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/posts/markdown-syntax/":{}},"description":{}}],["вставл",{"_index":3715,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["вставля",{"_index":3544,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day35":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["вставьт",{"_index":9716,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["встал",{"_index":9297,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["встраива",{"_index":8396,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["встрет",{"_index":5657,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["встреч",{"_index":5737,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["встреча",{"_index":3391,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/posts/python-snippets/":{}},"description":{}}],["встро",{"_index":6693,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["встроен",{"_index":755,"title":{"/posts/pyscript-python-embedded-in-html/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/posts/pyscript-python-embedded-in-html/":{}}}],["вступа",{"_index":9550,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["вступительн",{"_index":7447,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вступлен",{"_index":4124,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["всяк",{"_index":8903,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/p/репатриация":{}},"description":{}}],["втк",{"_index":4821,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["вто",{"_index":4119,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["втор",{"_index":1320,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["вторичк",{"_index":11666,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["ву",{"_index":4700,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вудск",{"_index":4163,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вход",{"_index":2929,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/trading-indicators/sma":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["входн",{"_index":3156,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{}},"description":{}}],["входя",{"_index":506,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["вхожден",{"_index":3389,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/python-snippets/":{}},"description":{}}],["вчер",{"_index":7932,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["вчерашн",{"_index":6415,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["вшэ",{"_index":4060,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["въезд",{"_index":4771,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вы­де­ле­н",{"_index":4663,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вы­ра­зи­л",{"_index":4677,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["выбер",{"_index":1430,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["выберет",{"_index":6407,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["выбир",{"_index":10710,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["выбира",{"_index":1426,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["выбор",{"_index":1240,"title":{"/tracks/90daysofdevops/day50":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["выборк",{"_index":5907,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{}}],["выборочн",{"_index":4045,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["выбра",{"_index":648,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/frameworks/flask":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["выбрас",{"_index":10853,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["выбрасыва",{"_index":8094,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/posts/python-snippets/":{}},"description":{}}],["выброс",{"_index":8541,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{}},"description":{}}],["вывед",{"_index":3630,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["выведет",{"_index":1710,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["вывел",{"_index":2580,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["вывест",{"_index":3537,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["вывод",{"_index":1447,"title":{"/tracks/webrtc/practice/practice-results":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["выводя",{"_index":10978,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["вывоз",{"_index":4787,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["выгляд",{"_index":1187,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["выглядел",{"_index":6442,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["выглядет",{"_index":1059,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["выглядя",{"_index":10002,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["выгод",{"_index":4549,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["выгодн",{"_index":4984,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["выгрзук",{"_index":10109,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["выгруат",{"_index":10290,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выгруж",{"_index":2231,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выгрузк",{"_index":7242,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["выда",{"_index":1948,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["выдава",{"_index":11470,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["выдаст",{"_index":9948,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["выдач",{"_index":2209,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["выдел",{"_index":7091,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["выделен",{"_index":1524,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["выделя",{"_index":2034,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["выезд",{"_index":4772,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["выж",{"_index":8124,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["выз",{"_index":50,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/posts/python-snippets/":{}},"description":{}}],["вызва",{"_index":848,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/posts/python-snippets/":{}},"description":{}}],["вызов",{"_index":1078,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/p/publications":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["вызовет",{"_index":185,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["вызовут",{"_index":10152,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["вызыв",{"_index":3314,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day42":{},"/posts/python-snippets/":{}},"description":{}}],["вызыва",{"_index":477,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{}},"description":{}}],["выигра",{"_index":4996,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["выигрыва",{"_index":4940,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["выйдет",{"_index":6694,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["выйдут",{"_index":7164,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["выйт",{"_index":3624,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["выкладыва",{"_index":7497,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["выключ",{"_index":854,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["выключа",{"_index":8180,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["выключен",{"_index":8499,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["выкуп",{"_index":6661,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["выкупн",{"_index":6668,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["вылож",{"_index":7315,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["вынес",{"_index":11230,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["выносим",{"_index":4062,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вынужден",{"_index":11017,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["выпада",{"_index":6325,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["выполн",{"_index":354,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["выполнен",{"_index":1036,"title":{"/tracks/90daysofdevops/day31":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day31":{}}}],["выполнено/н",{"_index":6469,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["выполня",{"_index":58,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["выпуск",{"_index":6848,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выпуска",{"_index":7289,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["выпуст",{"_index":7433,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["выпущ",{"_index":8914,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["выравнива",{"_index":11012,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["выравниван",{"_index":4078,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/markdown-syntax/":{}},"description":{}}],["выражен",{"_index":1085,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["выраз",{"_index":10011,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["выреза",{"_index":5853,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["вырезан",{"_index":9833,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["выслуша",{"_index":10058,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["высок",{"_index":4271,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["высокодоступн",{"_index":8391,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["высококачествен",{"_index":4865,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["высокопроизводительн",{"_index":3157,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["высокоразвит",{"_index":4855,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["высокоуровнев",{"_index":1670,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["высот",{"_index":721,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day59":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["выставлен",{"_index":9268,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["выставля",{"_index":7116,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["выстраива",{"_index":8634,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["выступа",{"_index":4776,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["высш",{"_index":3243,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/posts/python-snippets/":{}},"description":{}}],["выталкива",{"_index":6468,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["вытаскива",{"_index":5601,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["вытащ",{"_index":7078,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["вытека",{"_index":10124,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["выуч",{"_index":10049,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["выход",{"_index":2101,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["выходн",{"_index":6989,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["выходц",{"_index":8360,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["вычест",{"_index":6244,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["вычисл",{"_index":2973,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["вычислен",{"_index":2555,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["вычислительн",{"_index":5238,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["вычисля",{"_index":10607,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["вычита",{"_index":6246,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["вычитан",{"_index":2843,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{}},"description":{}}],["выш",{"_index":107,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["вышедш",{"_index":8374,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["вышеизложен",{"_index":8600,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вышел",{"_index":1992,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["вышеназва",{"_index":10711,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["вышеописа",{"_index":6748,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["вышеперечислен",{"_index":7067,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["вышеприведен",{"_index":7136,"title":{},"content":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["вышесказа",{"_index":6701,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["вышеуказа",{"_index":4034,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["вышеупомянут",{"_index":7373,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["вышл",{"_index":10753,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["выявлен",{"_index":2612,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/p/privacy_ru":{}},"description":{}}],["выясн",{"_index":404,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выясня",{"_index":10283,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["гав",{"_index":3681,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["газ",{"_index":4509,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["газетн",{"_index":4049,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["гайд",{"_index":440,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["гайдлайн",{"_index":8799,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["галере",{"_index":9246,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["галк",{"_index":11374,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["галочк",{"_index":7266,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["гарантир",{"_index":2044,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["гарантирова",{"_index":2646,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["гарнитур",{"_index":673,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["гатт",{"_index":4761,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["гатт(генеральн",{"_index":4740,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["гб",{"_index":6708,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["гг",{"_index":11766,"title":{},"content":{"/p/publications":{}},"description":{}}],["гггг",{"_index":2827,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["гедонизм",{"_index":11510,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["генеральн",{"_index":4739,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["генератор",{"_index":1888,"title":{"/tracks/python-101/basis/comprehensions":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["генерац",{"_index":2593,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["генерир",{"_index":2206,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["генерирова",{"_index":2592,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["генерируем",{"_index":1859,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["генетическ",{"_index":11775,"title":{},"content":{"/p/publications":{}},"description":{}}],["географ",{"_index":4102,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["географическ",{"_index":4094,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["геозон",{"_index":9159,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["геоизбыточн",{"_index":9156,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["геополитическ",{"_index":4442,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["геопространствен",{"_index":7062,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["георепликац",{"_index":9161,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["герман",{"_index":4470,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["гетероген",{"_index":7813,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["геттер",{"_index":2526,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["гибк",{"_index":1621,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["гибкост",{"_index":8639,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["гигабайт",{"_index":5246,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["гигант",{"_index":7264,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["гигантск",{"_index":9555,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["гипервизор",{"_index":8245,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["гипермасштаб",{"_index":9317,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["гипермасштабер",{"_index":9303,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["гипермасштабир",{"_index":8347,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["гиперскейлер",{"_index":9304,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["гипертекст",{"_index":9541,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["гирлинг",{"_index":7537,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["гитхаб",{"_index":11030,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["глав",{"_index":2980,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["главенствова",{"_index":4908,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["главн",{"_index":3008,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["глагольн",{"_index":6671,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["гладк",{"_index":8419,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["глаз",{"_index":7167,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["гласн",{"_index":6109,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["глобализац",{"_index":4403,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["глобальн",{"_index":1243,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/posts/python-snippets/":{}},"description":{}}],["глосар",{"_index":4027,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["глубж",{"_index":6356,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["глубин",{"_index":5868,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["глубок",{"_index":2189,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["гниен",{"_index":7842,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["го",{"_index":3514,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day56":{},"/p/publications":{}},"description":{}}],["го­су­дар­ст­вен­ны­м",{"_index":4578,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["говор",{"_index":6364,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["год",{"_index":4091,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["года",{"_index":4322,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["годов",{"_index":4264,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["годудл",{"_index":4348,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["гол",{"_index":7693,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["голанг",{"_index":10038,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["голов",{"_index":3523,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["головн",{"_index":5699,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["головоломк",{"_index":7114,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["голос",{"_index":4304,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["голосова",{"_index":5475,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["голосован",{"_index":5510,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["гомосапиенс",{"_index":10819,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["гонк",{"_index":8897,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["гор",{"_index":7180,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["горазд",{"_index":554,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["горизонтальн",{"_index":6759,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["городск",{"_index":11774,"title":{},"content":{"/p/publications":{}},"description":{}}],["гост",{"_index":3967,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["гостев",{"_index":9207,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["государств",{"_index":4194,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["государствен",{"_index":4296,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["государствчлен",{"_index":4257,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["гот",{"_index":8757,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["готов",{"_index":519,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["готовн",{"_index":6962,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["гражданин",{"_index":11777,"title":{},"content":{"/p/publications":{}},"description":{}}],["гражданск",{"_index":11806,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["грамматическ",{"_index":6370,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["границ",{"_index":1908,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/posts/python-snippets/":{}},"description":{}}],["грант",{"_index":4333,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["гранулирова",{"_index":9233,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["граф",{"_index":5929,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["график",{"_index":3195,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["графическ",{"_index":6186,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["графов",{"_index":6808,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["громоздк",{"_index":6908,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["груз",{"_index":4725,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["групп",{"_index":4229,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["группировк",{"_index":7757,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["грустн",{"_index":10914,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["груш",{"_index":8611,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["грядк",{"_index":6081,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["грядут",{"_index":9625,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["грязн",{"_index":8904,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["гугл",{"_index":3898,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["гуманитарн",{"_index":3994,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["гущ",{"_index":8166,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["д",{"_index":3273,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{}},"description":{}}],["д.в",{"_index":11725,"title":{},"content":{"/p/publications":{}},"description":{}}],["д.э.н",{"_index":11721,"title":{},"content":{"/p/publications":{}},"description":{}}],["да",{"_index":10015,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["дава",{"_index":1786,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["давид",{"_index":4072,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["дад",{"_index":5394,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["дадут",{"_index":8369,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["дает",{"_index":272,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дайт",{"_index":2604,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["дал",{"_index":507,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/django":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/privacy_ru":{}},"description":{}}],["далек",{"_index":8474,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["дальн",{"_index":2926,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["дам",{"_index":9430,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["дан",{"_index":344,"title":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}}}],["даст",{"_index":3546,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["дат",{"_index":149,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["дают",{"_index":3964,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дающ",{"_index":8694,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["даёт",{"_index":8751,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/posts/docker-commands/":{}},"description":{}}],["дважд",{"_index":7766,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["две(",{"_index":11450,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["двер",{"_index":7260,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["двиг",{"_index":5738,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["двига",{"_index":5554,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["движ",{"_index":8249,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["движен",{"_index":4131,"title":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["движет",{"_index":5462,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["движк",{"_index":6815,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["движок",{"_index":8416,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["движут",{"_index":5456,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["движущ",{"_index":5458,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["двин",{"_index":10264,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["двоеточ",{"_index":3240,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["двоичн",{"_index":402,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["двойн",{"_index":1946,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/posts/python-snippets/":{}},"description":{}}],["двум",{"_index":864,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["двумерн",{"_index":5812,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["двунаправлен",{"_index":10955,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["двусмыслен",{"_index":2063,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["двухпроходн",{"_index":5779,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["дд",{"_index":2829,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["де",{"_index":4894,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["дебетован",{"_index":6807,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["дедуктивн",{"_index":11532,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["дедупирова",{"_index":6712,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["дедушк",{"_index":2388,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["дежурн",{"_index":7110,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["деинсталляц",{"_index":8626,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["действ",{"_index":1315,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["действен",{"_index":10188,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["действительн",{"_index":4373,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["действова",{"_index":8339,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["декабр",{"_index":151,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/p/publications":{}},"description":{}}],["декларативн",{"_index":7176,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["декларирова",{"_index":7967,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["декодирова",{"_index":5586,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["декодирован",{"_index":5609,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["декоратор",{"_index":2078,"title":{"/tracks/python-101/enhance_python/decorators":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/_index":{},"/posts/python-snippets/":{}},"description":{}}],["декорац",{"_index":7696,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["декорирова",{"_index":3263,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["дел",{"_index":1053,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/p/репатриация":{}},"description":{}}],["дела",{"_index":141,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["делегирова",{"_index":9107,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["делен",{"_index":3588,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/python-snippets/":{}},"description":{}}],["делител",{"_index":6163,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["делов",{"_index":9510,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/p/privacy_ru":{}},"description":{}}],["дем",{"_index":1030,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["демограф",{"_index":4847,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["демон",{"_index":6966,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["демонстрац",{"_index":6388,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day10":{},"/posts/ruGPT-3-notes":{}},"description":{}}],["демонстрацион",{"_index":6409,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["демонстрир",{"_index":1077,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["демонстрирова",{"_index":8057,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["денег",{"_index":8296,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["денежн",{"_index":4360,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["денежнокредитн",{"_index":4299,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["день15",{"_index":9811,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["деньг",{"_index":4902,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day24":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["депенанс",{"_index":8555,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["депл",{"_index":10296,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дерев",{"_index":5550,"title":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day39":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}}}],["дериватив",{"_index":4430,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["дерьм",{"_index":9713,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["десериализ",{"_index":2238,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["десериализова",{"_index":2229,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["дескриптор",{"_index":3743,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["дестабилизир",{"_index":4339,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["десят",{"_index":7095,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["десятилет",{"_index":4485,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["десятичн",{"_index":1848,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["десятк",{"_index":6988,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["дет",{"_index":11658,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["дета",{"_index":8452,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["детал",{"_index":7965,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["детализирова",{"_index":6336,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["детальн",{"_index":59,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["дефакт",{"_index":8169,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["дешев",{"_index":4634,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["дешевл",{"_index":4909,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{}},"description":{}}],["деятел",{"_index":4929,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["деятельн",{"_index":4222,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day76":{}},"description":{}}],["джефф",{"_index":7536,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["джон",{"_index":11545,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["диа",{"_index":4147,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["диагностик",{"_index":2797,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["диагностирова",{"_index":7096,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["диаграмм",{"_index":6909,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["диалогов",{"_index":1507,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["диапазон",{"_index":796,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["дизайн",{"_index":1306,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["дик",{"_index":9266,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["дин",{"_index":7803,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["динамик",{"_index":674,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["динамическ",{"_index":1696,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["директор",{"_index":2659,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day10":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["диск",{"_index":6675,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дисков",{"_index":7163,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["дисконт",{"_index":11192,"title":{},"content":{"/p/репатриация":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["дискриминацион",{"_index":4631,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["дискриминир",{"_index":4724,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["дискуссион",{"_index":8714,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["диспетчер",{"_index":1372,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["диспле",{"_index":833,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["диссернет",{"_index":3888,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["диссертац",{"_index":3911,"title":{"/tracks/disser/_index":{}},"content":{},"description":{"/tracks/disser/_index":{}}}],["дистрибут",{"_index":3183,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["дистрибутив",{"_index":3702,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["дисциплин",{"_index":3356,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["диф­фе­рен­циа­ц",{"_index":4610,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["дифференциальн",{"_index":11505,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["длин",{"_index":2333,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["длинаисходногомассив",{"_index":6203,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["длит",{"_index":10019,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["длительн",{"_index":2925,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["дне",{"_index":4039,"title":{"/tracks/90daysofdevops/_index":{}},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["дневн",{"_index":10177,"title":{},"content":{"/tracks/90daysofdevops/day01":{},"/posts/trading-indicators/sma":{}},"description":{}}],["днем",{"_index":9996,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["дни",{"_index":6658,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["дня",{"_index":7404,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дням",{"_index":9318,"title":{},"content":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["до­ку­мен­т",{"_index":4679,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["доб",{"_index":1660,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["добав",{"_index":173,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["добавл",{"_index":361,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["добавлен",{"_index":359,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{}}],["добавля",{"_index":83,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["добавочн",{"_index":9515,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["добавьт",{"_index":564,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["добр",{"_index":9597,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["добра",{"_index":9525,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["добыч",{"_index":4476,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["довер",{"_index":4341,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["доверен",{"_index":9663,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["доверя",{"_index":8491,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["довол",{"_index":8653,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["довольн",{"_index":8077,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["догада",{"_index":7507,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["договарива",{"_index":4741,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["договор",{"_index":4408,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["договорен",{"_index":4307,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["дожд",{"_index":6030,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["дожда",{"_index":552,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/standard_library/threading":{}},"description":{}}],["дойд",{"_index":9217,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["докаж",{"_index":8769,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["доказыва",{"_index":6932,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["докер",{"_index":7270,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["доклад",{"_index":4526,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["документ",{"_index":1731,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/p/репатриация":{}},"description":{}}],["документальн",{"_index":4754,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["документац",{"_index":741,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{}}],["документацией/readm",{"_index":8833,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["документирова",{"_index":1732,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["документирован",{"_index":1999,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["дол",{"_index":4479,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["долг",{"_index":4193,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["долгов",{"_index":4185,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["долговечн",{"_index":6761,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["долговремен",{"_index":4327,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["долгоживущ",{"_index":8100,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["долгосрочн",{"_index":4284,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["долж",{"_index":472,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["должн",{"_index":74,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["должност",{"_index":10155,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["доллар",{"_index":4169,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["дом",{"_index":4954,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["домашн",{"_index":6923,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["домен",{"_index":9231,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["доминирова",{"_index":9316,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["донест",{"_index":7840,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["дополнен",{"_index":7066,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day20":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дополнительн",{"_index":1234,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["допуска",{"_index":1706,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["допуст",{"_index":3677,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["допустим",{"_index":2269,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day49":{},"/posts/markdown-syntax/":{}},"description":{}}],["допущ",{"_index":6646,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["дорабатыва",{"_index":7499,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["дорог",{"_index":4288,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["дорогостоя",{"_index":7282,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["дорож",{"_index":4911,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["дорожек",{"_index":360,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["дорожк",{"_index":98,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["дорожн",{"_index":8716,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["дос­тиг­ну­т",{"_index":4687,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["доск",{"_index":6810,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["дословн",{"_index":4005,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["доста",{"_index":847,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["доставк",{"_index":1591,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["доставка/непрерывн",{"_index":10312,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["доставля",{"_index":7451,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["достаточн",{"_index":1529,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day11":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["достиг",{"_index":6089,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["достига",{"_index":2410,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["достигл",{"_index":3746,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["достигнет",{"_index":4743,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["достигнут",{"_index":4538,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day50":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["достижен",{"_index":2299,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["достич",{"_index":6381,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["достоверн",{"_index":6803,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["достоинств",{"_index":11554,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["доступ",{"_index":245,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["доступн",{"_index":118,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["дотац",{"_index":4719,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["доход",{"_index":4554,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["доходн",{"_index":4452,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["доцент",{"_index":11744,"title":{},"content":{"/p/publications":{}},"description":{}}],["дочер",{"_index":6793,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["дочерн",{"_index":2367,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["дочита",{"_index":9651,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["дошл",{"_index":8007,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["др",{"_index":4384,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["драгоцен",{"_index":4884,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["драйвер",{"_index":8137,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["дракул",{"_index":9631,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["дробн",{"_index":3607,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["друг",{"_index":362,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дубл",{"_index":7256,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["дубликат",{"_index":3580,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["дублир",{"_index":2192,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day42":{}},"description":{"/tracks/algorithms-101/leetcode/medium/287/":{}}}],["дублирова",{"_index":5731,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["дублирован",{"_index":7925,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["дум",{"_index":9843,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/p/publications":{}},"description":{}}],["дума",{"_index":77,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дух",{"_index":9289,"title":{},"content":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["дюжев",{"_index":4106,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["еаэс",{"_index":4130,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["евент",{"_index":5296,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["евр",{"_index":4170,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["евразийск",{"_index":4777,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["еврейск",{"_index":11641,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["евровалют",{"_index":4175,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["евровалютн",{"_index":4174,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["еврозон",{"_index":4172,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["еврооблигац",{"_index":4178,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["европ",{"_index":4086,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["европейск",{"_index":4171,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["евросоюз",{"_index":4766,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["егоработ",{"_index":4266,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ед",{"_index":4985,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["един",{"_index":4782,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["единиц",{"_index":4029,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["единообразн",{"_index":8642,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/posts/markdown-syntax/":{}},"description":{}}],["единствен",{"_index":7082,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["ежегодн",{"_index":4478,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["ежедневн",{"_index":8688,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["еженедельн",{"_index":10147,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["емкост",{"_index":9188,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["ен",{"_index":4028,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["енд",{"_index":6627,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["ендпоинт",{"_index":9131,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["естествен",{"_index":1253,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["ждат",{"_index":357,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["ждем",{"_index":505,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["жела",{"_index":3883,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["желан",{"_index":9143,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/posts/markdown-syntax/":{}},"description":{}}],["желез",{"_index":9463,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["жестк",{"_index":6987,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["живет",{"_index":6463,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["животн",{"_index":4626,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["живут",{"_index":8405,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["жидкост",{"_index":6865,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["жизн",{"_index":4937,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/p/privacy_ru":{}},"description":{}}],["жизнен",{"_index":2054,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["жизни/производствен",{"_index":6451,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["жил",{"_index":9451,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["жирн",{"_index":7244,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["жит",{"_index":7964,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["жмем",{"_index":11189,"title":{},"content":{"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["журна",{"_index":1375,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day37":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{}}],["журнал",{"_index":3980,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{"/p/publications":{}}}],["з",{"_index":4015,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["за­щит­н",{"_index":4694,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заархивирова",{"_index":9832,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["забан",{"_index":5481,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["забанен",{"_index":5477,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["забеган",{"_index":8096,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["заблокирова",{"_index":9772,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["заблуд",{"_index":8928,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["забот",{"_index":6705,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["заботя",{"_index":61,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["забуд",{"_index":9605,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["забудет",{"_index":8537,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["забудьт",{"_index":1000,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["забыва",{"_index":1265,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["завед",{"_index":4013,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["заверш",{"_index":553,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/threading":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["заверша",{"_index":1978,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/posts/markdown-syntax/":{}},"description":{}}],["завершен",{"_index":358,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["завис",{"_index":2055,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["зависет",{"_index":76,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["зависим",{"_index":476,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["завися",{"_index":135,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["завтр",{"_index":8728,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["завтрашн",{"_index":8722,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["завышен",{"_index":4731,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заглавн",{"_index":3505,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заглушк",{"_index":3713,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["заглян",{"_index":1003,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["заголовк",{"_index":3173,"title":{},"content":{"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day22":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заголовок",{"_index":9591,"title":{},"content":{"/tracks/90daysofdevops/day22":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заготовк",{"_index":11400,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["загруж",{"_index":8195,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{}},"description":{}}],["загружа",{"_index":2240,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{}},"description":{}}],["загружен",{"_index":1493,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["загруженных/созда",{"_index":11596,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["загруз",{"_index":3661,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["загрузк",{"_index":1487,"title":{"/tracks/webrtc/practice/practice-get-code":{}},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["загрузка/build",{"_index":11202,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["загрузок",{"_index":3190,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["загрязнен",{"_index":8778,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["зад",{"_index":8916,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["зада",{"_index":474,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day11":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["задава",{"_index":1633,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/strings":{}},"description":{}}],["задан",{"_index":1023,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["заданий/экспортер",{"_index":7130,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["задач",{"_index":905,"title":{"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}}}],["задействова",{"_index":7765,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["задержк",{"_index":563,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["задокументир",{"_index":7369,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["задокументирова",{"_index":8857,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["задолжен",{"_index":4182,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["задолженность.(федякин",{"_index":4181,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["задума",{"_index":6863,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["заем",{"_index":4466,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["заемн",{"_index":4467,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["заемщик",{"_index":4227,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["заинтересова",{"_index":8698,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["зайд",{"_index":6320,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["займет",{"_index":6436,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["зайт",{"_index":7113,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["зайц",{"_index":5734,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["заказ",{"_index":4722,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заканчив",{"_index":3806,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["заканчива",{"_index":1376,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["закладок",{"_index":1505,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["заключ",{"_index":4433,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["заключа",{"_index":939,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["заключен",{"_index":4025,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["заключительн",{"_index":6291,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["закодирова",{"_index":5585,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["закомментирова",{"_index":9672,"title":{},"content":{"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{}},"description":{}}],["закомментирует",{"_index":8901,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["закоммит",{"_index":11029,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["закон",{"_index":11525,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["законодательн",{"_index":4515,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["законодательств",{"_index":11800,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["закономерн",{"_index":11517,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["законотворческ",{"_index":11773,"title":{},"content":{"/p/publications":{}},"description":{}}],["законч",{"_index":3750,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["закр",{"_index":6710,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{}},"description":{}}],["закреп",{"_index":3522,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["закрепл",{"_index":4899,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["закроет",{"_index":3749,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["закрыва",{"_index":869,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["закрыт",{"_index":2462,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day18":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["закупк",{"_index":4429,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["закуплен",{"_index":4997,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["залог",{"_index":11574,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["зам",{"_index":3237,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["замедля",{"_index":4750,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["замен",{"_index":1043,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["заменя",{"_index":2496,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{}},"description":{}}],["замет",{"_index":2069,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["заметк",{"_index":3885,"title":{"/tracks/disser/israel-notes":{},"/posts/_index":{},"/homepage/pages":{}},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{}},"description":{"/tracks/disser/israel-notes":{},"/tracks/disser/articles-notes":{}}}],["заметн",{"_index":4735,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заметок",{"_index":9200,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["заметьт",{"_index":7971,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["замеча",{"_index":8530,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["замечан",{"_index":10739,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["замечательн",{"_index":3404,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["замешательств",{"_index":8533,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["замкнут",{"_index":9491,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{}},"description":{}}],["замыкан",{"_index":3318,"title":{"/tracks/python-101/enhance_python/closure":{}},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["занима",{"_index":395,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/репатриация":{}},"description":{}}],["занов",{"_index":9835,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["заня",{"_index":4765,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["занят",{"_index":4272,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["зап",{"_index":828,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["западн",{"_index":4857,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["западноафриканск",{"_index":4212,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["запатентова",{"_index":4869,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["запис",{"_index":845,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["записа",{"_index":2697,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{}},"description":{}}],["записыва",{"_index":767,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["запиш",{"_index":6191,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day43":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["запишет",{"_index":8861,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["запланирова",{"_index":7281,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["заплат",{"_index":8092,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["заполн",{"_index":5614,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["заполнен",{"_index":1666,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["заполнител",{"_index":10980,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["заполня",{"_index":5936,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["запомина",{"_index":2297,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["запомн",{"_index":9549,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["запрашива",{"_index":1231,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["запрет",{"_index":4713,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["запрещ",{"_index":11840,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["запреща",{"_index":4745,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["запрограммирова",{"_index":10003,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["запрос",{"_index":56,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/google-sheets-2-json/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["запрос/ответ",{"_index":475,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["запрош",{"_index":3892,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["запрошен",{"_index":491,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["запуск",{"_index":268,"title":{"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}}}],["запуска",{"_index":626,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{}}],["запуст",{"_index":295,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["запут",{"_index":3664,"title":{},"content":{"/tracks/python-101/basis/install":{}},"description":{}}],["запущ",{"_index":995,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["запущен",{"_index":304,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["запят",{"_index":1868,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заработа",{"_index":11196,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["заработн",{"_index":11552,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["заран",{"_index":4413,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day39":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["зарегистрирова",{"_index":3921,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["зарплат",{"_index":4920,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/репатриация":{}},"description":{}}],["зарубежн",{"_index":3972,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["зарузк",{"_index":10295,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["засаж",{"_index":6082,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["заслужива",{"_index":4003,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["застав",{"_index":6862,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["заставля",{"_index":9840,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["застрахова",{"_index":8477,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["затрагив",{"_index":8413,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["затрагива",{"_index":9270,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["затрат",{"_index":1686,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["затрач",{"_index":11608,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["затронул",{"_index":6851,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["затронут",{"_index":36,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["затрудн",{"_index":9572,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["затрудня",{"_index":4518,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["затянувш",{"_index":10185,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["зафиксирова",{"_index":4432,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["зафиксиру",{"_index":8768,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["захват",{"_index":290,"title":{"/tracks/webrtc/media-capture-and-constraints":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["захватывающ",{"_index":8629,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["заход",{"_index":5332,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["захот",{"_index":639,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["захотел",{"_index":6335,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["захотет",{"_index":6446,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["зачаст",{"_index":4938,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["зашел",{"_index":10168,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["зашифрова",{"_index":9321,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["зашл",{"_index":9861,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["защ",{"_index":6342,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/p/privacy_ru":{}},"description":{}}],["защит",{"_index":244,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["защитн",{"_index":4716,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["защищ",{"_index":4541,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["защища",{"_index":6577,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["защищен",{"_index":1936,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["заяв",{"_index":9669,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["заявк",{"_index":9505,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["заявл",{"_index":8130,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["заявлен",{"_index":4012,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["заявля",{"_index":8134,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["зван",{"_index":10154,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["звезд",{"_index":7808,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["звездочк",{"_index":3692,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["звен",{"_index":10165,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["звонк",{"_index":1201,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["звонок",{"_index":561,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["звук",{"_index":291,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["звуков",{"_index":97,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["звуч",{"_index":8628,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["здан",{"_index":6688,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["здесьpacman",{"_index":6624,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["здоров",{"_index":4616,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["здравств",{"_index":1614,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["зелен",{"_index":7181,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["злоумышленник",{"_index":9573,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["злоупотребля",{"_index":10679,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["зна",{"_index":3800,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["знает",{"_index":5772,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["знаеш",{"_index":9497,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["знайт",{"_index":6717,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["знак",{"_index":1849,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["знаком",{"_index":906,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["знакомств",{"_index":8684,"title":{"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{}},"description":{"/tracks/90daysofdevops/day37":{}}}],["знал",{"_index":3358,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["знаменит",{"_index":5769,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day76":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["знан",{"_index":1485,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{"/posts/diploma/":{}}}],["знат",{"_index":489,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["знач",{"_index":7656,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["значен",{"_index":112,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["значим",{"_index":3965,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["значителел",{"_index":4858,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["значительн",{"_index":558,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["значок",{"_index":1506,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["знают",{"_index":5770,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["зова",{"_index":1446,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["зовут",{"_index":3533,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{}},"description":{}}],["золот",{"_index":4161,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["зон",{"_index":2888,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["зрел",{"_index":7814,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["зрен",{"_index":4989,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["зумирован",{"_index":8809,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["и",{"_index":9490,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["и/",{"_index":711,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/posts/trading-indicators/sma":{}},"description":{}}],["ива",{"_index":10839,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["игнорир",{"_index":9799,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["игнорирова",{"_index":99,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["игр",{"_index":1625,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["игра",{"_index":2104,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["игрок",{"_index":4451,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["ид",{"_index":4533,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ида",{"_index":4291,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["иде",{"_index":4546,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["идеал",{"_index":7169,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["идеальн",{"_index":1538,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["идемпотентн",{"_index":7791,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["идентификатор",{"_index":1916,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["идентификац",{"_index":2613,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["идентифицир",{"_index":1744,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["идентифицирова",{"_index":9770,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["идентифициру",{"_index":5780,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["идентичн",{"_index":5884,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["идет",{"_index":857,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["идеш",{"_index":9498,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["идт",{"_index":5690,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["идут",{"_index":10169,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["иерарх",{"_index":3844,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["иерархическ",{"_index":1924,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["из",{"_index":9302,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["избав",{"_index":8049,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["избавл",{"_index":10046,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["избавлен",{"_index":7691,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["избавля",{"_index":9301,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["избега",{"_index":8595,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["избежа",{"_index":1914,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["избежан",{"_index":1225,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["избыток",{"_index":4448,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["избыточн",{"_index":5002,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["извест",{"_index":7075,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["известн",{"_index":646,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["извин",{"_index":10752,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["извлек",{"_index":8868,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["извлека",{"_index":7107,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["извлеч",{"_index":7172,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["извлечен",{"_index":605,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/p/privacy_ru":{}},"description":{}}],["извлечет",{"_index":7108,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["извн",{"_index":1942,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["изготов",{"_index":4953,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["изготовлен",{"_index":4956,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["издан",{"_index":3924,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["издател",{"_index":8492,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["издержек",{"_index":4950,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["издержк",{"_index":4632,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["излага",{"_index":4008,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["излишн",{"_index":7366,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["излож",{"_index":7426,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["измен",{"_index":57,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["изменен",{"_index":73,"title":{"/tracks/90daysofdevops/day38":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day38":{}}}],["измененен",{"_index":8860,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["изменения",{"_index":10289,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["изменя",{"_index":1803,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{}},"description":{}}],["изменён",{"_index":8759,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["измер",{"_index":4939,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["измеря",{"_index":3300,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["изначальн",{"_index":8179,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["изнутр",{"_index":6980,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["изображен",{"_index":930,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["изобрета",{"_index":6937,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["изолир",{"_index":8641,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["изолирова",{"_index":6857,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["изоляц",{"_index":1051,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day61":{}},"description":{}}],["израил",{"_index":3886,"title":{"/tracks/disser/israel-notes":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{},"/p/репатриация":{}},"content":{"/tracks/disser/israel-notes":{},"/p/репатриация":{},"/p/publications":{}},"description":{"/tracks/disser/israel-notes":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{},"/p/репатриация":{}}}],["израильск",{"_index":11181,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{}}}],["изуч",{"_index":1631,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["изуча",{"_index":1681,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["изучен",{"_index":1309,"title":{"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/90daysofdevops/day07":{}}}],["изходн",{"_index":6201,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["ик",{"_index":4820,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["икономик",{"_index":4852,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["икт",{"_index":11705,"title":{},"content":{"/p/publications":{}},"description":{}}],["иллюстрир",{"_index":233,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["им",{"_index":1054,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["им­пор­т",{"_index":4693,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["им­порт",{"_index":4592,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["име",{"_index":5454,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{}},"description":{}}],["имеет",{"_index":352,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["имел",{"_index":4835,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["имен",{"_index":1364,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["именова",{"_index":3299,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{}},"description":{}}],["именован",{"_index":7858,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["имеют",{"_index":372,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["имеющ",{"_index":610,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["имитац",{"_index":3072,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["имитирова",{"_index":6636,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["имитиру",{"_index":7427,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["имплементир",{"_index":5773,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["импорт",{"_index":1933,"title":{"/tracks/python-101/basis/imports":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["импортер",{"_index":4096,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["импортир",{"_index":1922,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["импортирова",{"_index":1298,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{}},"description":{}}],["импортиру",{"_index":3685,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day89":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["импортируем",{"_index":3676,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["импортирует",{"_index":2274,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["импортн",{"_index":4540,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["импортозамеща",{"_index":4720,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["имён",{"_index":10821,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ин",{"_index":649,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day42":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["ин­ст­ру­мен­та­р",{"_index":4659,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ин­фор­мац",{"_index":4701,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["инач",{"_index":3606,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["инвентар",{"_index":7780,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["инвентаризац",{"_index":7550,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["инвестир",{"_index":4138,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["инвестирова",{"_index":4874,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["инвестирован",{"_index":4362,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["инвестиц",{"_index":4137,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["инвестицион",{"_index":4139,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["инвестор",{"_index":4411,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["инд",{"_index":4490,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["индекс",{"_index":2006,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["индекс(позиц",{"_index":5494,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["индекс/позиц",{"_index":5490,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["индексац",{"_index":3413,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["индексир",{"_index":3896,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["индексирова",{"_index":6250,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["индексируем",{"_index":3925,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["индексов(порядк",{"_index":5497,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["индивид",{"_index":11522,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["индивидуализм",{"_index":11516,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["индивидуальн",{"_index":8550,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["индукц",{"_index":11534,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["индустр",{"_index":4845,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day76":{}},"description":{}}],["инженер",{"_index":3879,"title":{"/tracks/90daysofdevops/day02":{}},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day02":{}}}],["инженер/архитектор",{"_index":10156,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["инженерн",{"_index":10055,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["инициализац",{"_index":2564,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["инициализир",{"_index":2298,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["инициализирова",{"_index":1919,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/90daysofdevops/day58":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["инициализиру",{"_index":5461,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["инициатив",{"_index":4850,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day24":{},"/p/publications":{}},"description":{}}],["инициир",{"_index":51,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["инициирова",{"_index":8917,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["инициирован",{"_index":463,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["инкапсуляц",{"_index":2105,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["инкрементн",{"_index":7275,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["инновац",{"_index":4839,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["инновацион",{"_index":4499,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["ино­стр",{"_index":4605,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["иностра",{"_index":3953,"title":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{}}}],["иностран",{"_index":4037,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["инспекцион",{"_index":4562,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["инсталлирова",{"_index":1501,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["инсталляцион",{"_index":10277,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["инстанс",{"_index":5316,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["инстанцир",{"_index":2487,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["инстанцирова",{"_index":2352,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["институт",{"_index":4115,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{}},"description":{}}],["институционализм",{"_index":11559,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["институциональн",{"_index":4153,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["инструкц",{"_index":2283,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/posts/ruGPT-3-notes":{},"/posts/interactivebrokers-deposit/":{},"/p/репатриация":{}},"description":{}}],["инструмент",{"_index":1632,"title":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["инструментальн",{"_index":7421,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["инструментар",{"_index":7506,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["инструментов/библиотек",{"_index":1676,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["интевенц",{"_index":4446,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["интеграц",{"_index":4201,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["интеграцион",{"_index":4203,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["интеграция/непрерывн",{"_index":10311,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["интегрир",{"_index":7420,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["интегрирова",{"_index":3946,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["интеллект",{"_index":6879,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["интеллектуальн",{"_index":4760,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["интенсивн",{"_index":4456,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["интерактивн",{"_index":420,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["интерв",{"_index":10234,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["интерва",{"_index":5998,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{}},"description":{}}],["интервал",{"_index":6183,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["интерес",{"_index":3221,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["интересн",{"_index":1268,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["интернационализац",{"_index":4814,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["интернет",{"_index":218,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/p/privacy_ru":{}},"description":{}}],["интерпретатор",{"_index":1875,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["интерпретац",{"_index":2282,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["интерпретир",{"_index":2281,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["интерпретирова",{"_index":1714,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["интерпретируем",{"_index":1671,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["интерфейс",{"_index":598,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{}}],["интерфес",{"_index":8463,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["интроспекц",{"_index":3506,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["интуитивн",{"_index":7325,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/p/publications":{}},"description":{}}],["инф",{"_index":11639,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["инфляц",{"_index":4366,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["информац",{"_index":71,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["информацион",{"_index":4494,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/p/privacy_ru":{}},"description":{}}],["информир",{"_index":11850,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["инфраструктур",{"_index":4497,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["инфраструктурн",{"_index":4286,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["инфраструктуры/сет",{"_index":9504,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["инфрастуктур",{"_index":9319,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day28":{}}}],["ис­ка­же­н",{"_index":4649,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­поль­зо­вать­",{"_index":4608,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­поль­зу­ет­",{"_index":4654,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­поль­зу­ют­",{"_index":4642,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­то­ри­че­ск",{"_index":4657,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["иска",{"_index":1658,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["исключ",{"_index":6730,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{}},"description":{}}],["исключа",{"_index":3593,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["исключен",{"_index":167,"title":{"/tracks/python-101/basis/exception_handling":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["исключительн",{"_index":8072,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/p/privacy_ru":{}},"description":{}}],["иском",{"_index":5764,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["ископа",{"_index":4477,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["искрен",{"_index":1737,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["искусств",{"_index":10180,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["искусствен",{"_index":6878,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["испан",{"_index":4987,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["испанск",{"_index":9575,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["испол",{"_index":1445,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["исполн",{"_index":11572,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["исполнен",{"_index":1891,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day31":{},"/posts/integrate-hugo-react/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["исполнительн",{"_index":7970,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["исполня",{"_index":2013,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["использ",{"_index":38,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["использова",{"_index":175,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["использован",{"_index":137,"title":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["использу",{"_index":124,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/docker-commands/":{}},"description":{}}],["используем",{"_index":307,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["использует",{"_index":998,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["испорт",{"_index":8036,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["исправ",{"_index":7382,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["исправлен",{"_index":7364,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["исправля",{"_index":7481,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["испуска",{"_index":7105,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["испытан",{"_index":8078,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["испытыва",{"_index":4293,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["исслед",{"_index":11499,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["исследован",{"_index":1624,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day14":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["исследовательск",{"_index":3947,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["истека",{"_index":9147,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["истечен",{"_index":11876,"title":{},"content":{},"description":{"/apps/npm/cognito-token-observer/":{}}}],["истин",{"_index":3618,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["истор",{"_index":8365,"title":{"/tracks/90daysofdevops/day06":{}},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/90daysofdevops/day06":{}}}],["историзм",{"_index":11533,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["историографическ",{"_index":3962,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["историческ",{"_index":3979,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["источник",{"_index":856,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["исход",{"_index":5485,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["исходн",{"_index":225,"title":{"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["исходник",{"_index":3184,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["исходя",{"_index":9104,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["исчеза",{"_index":8053,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["исчезл",{"_index":6596,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["исчезнет",{"_index":8609,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["исчерпа",{"_index":7158,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{}},"description":{}}],["исчерпыва",{"_index":8073,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["исчислен",{"_index":11506,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ит",{"_index":6311,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day06":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["итак",{"_index":7480,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["итал",{"_index":4926,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["итератор",{"_index":2154,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{}}}],["итерац",{"_index":1981,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["итерирова",{"_index":5591,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["итериру",{"_index":5498,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["итерируем",{"_index":2243,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["итог",{"_index":3432,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["итогов",{"_index":5330,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["ищ",{"_index":5659,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day58":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["ищет",{"_index":7519,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["ищут",{"_index":1766,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["ищущ",{"_index":10958,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["июл",{"_index":11361,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["й",{"_index":5270,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/p/publications":{}},"description":{}}],["йен",{"_index":4392,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["йетс",{"_index":5625,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["йо",{"_index":10828,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["к.т.н",{"_index":11738,"title":{},"content":{"/p/publications":{}},"description":{}}],["кабел",{"_index":9582,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["кабинет",{"_index":11187,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["кавычек",{"_index":3406,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["кавычк",{"_index":3400,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/markdown-syntax/":{}},"description":{}}],["кадр",{"_index":1267,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["кажд",{"_index":80,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["казахстан",{"_index":4779,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["казус",{"_index":6804,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["как",{"_index":461,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/p/репатриация":{}},"description":{}}],["каков",{"_index":1819,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["калькулятор",{"_index":10044,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["кам",{"_index":4325,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["камер",{"_index":589,"title":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{}},"description":{}}],["камн",{"_index":8480,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["кана",{"_index":481,"title":{"/tracks/webrtc/practice/practice-take-photo":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["канал",{"_index":521,"title":{"/tracks/webrtc/data-channels":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["канальн",{"_index":9579,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["канба",{"_index":8715,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["канд",{"_index":11741,"title":{},"content":{"/p/publications":{}},"description":{}}],["кандидат",{"_index":412,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["кандидатск",{"_index":4056,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["кандидатур",{"_index":5781,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["канистер",{"_index":6530,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["каноническ",{"_index":1200,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["кантильон",{"_index":11548,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["капита",{"_index":4132,"title":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["капитал",{"_index":4797,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["капитализм",{"_index":11526,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["капитальн",{"_index":4460,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["капот",{"_index":9218,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["капсул",{"_index":6440,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["карабка",{"_index":6845,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["карантин",{"_index":9571,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["карма",{"_index":187,"title":{"/tracks/webrtc/_index":{},"/tracks/python-101/_index":{}},"content":{},"description":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{}}}],["карт",{"_index":6027,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day01":{},"/p/репатриация":{}},"description":{}}],["картин",{"_index":7089,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{"/tracks/90daysofdevops/day21":{}}}],["картинк",{"_index":8680,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["карточк",{"_index":6324,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["карьер",{"_index":10051,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["каса",{"_index":169,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["касс",{"_index":11678,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["каталог",{"_index":2259,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["катастроф",{"_index":8785,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["категор",{"_index":1826,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["категоризац",{"_index":6816,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["каф",{"_index":9557,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["кафедр",{"_index":4014,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["качеств",{"_index":467,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["качествен",{"_index":4633,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["квадрат",{"_index":3689,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["квадратн",{"_index":1795,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["квалифицирова",{"_index":4856,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["квартал",{"_index":28,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["квартир",{"_index":11675,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["квот",{"_index":4305,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["кейнсианств",{"_index":11558,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["кеш",{"_index":9199,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["кешир",{"_index":9766,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["киберпреступн",{"_index":6660,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["килограмм",{"_index":4994,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["киргиз",{"_index":4781,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["кириллиц",{"_index":3951,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["кит",{"_index":4221,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["кита",{"_index":4488,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["китайск",{"_index":8711,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["клавиатур",{"_index":9715,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["клавиуатур",{"_index":9995,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["клавиш",{"_index":1473,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["класс",{"_index":465,"title":{"/tracks/python-101/basis/classes":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{}},"description":{}}],["класс(",{"_index":10858,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["классик",{"_index":4979,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["классификац",{"_index":4234,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["классифицируем",{"_index":6781,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["классическ",{"_index":11556,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["классн",{"_index":8244,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["кластер",{"_index":6294,"title":{"/tracks/90daysofdevops/day52":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{}},"description":{}}],["кластерн",{"_index":8183,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["клетк",{"_index":11757,"title":{},"content":{"/p/publications":{}},"description":{}}],["клиент",{"_index":201,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["клиентск",{"_index":231,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["клик",{"_index":11330,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["кликнув",{"_index":1523,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["климат",{"_index":4512,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["клон",{"_index":11452,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["клонир",{"_index":8858,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["клонирова",{"_index":1490,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day69":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["клонирован",{"_index":6885,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["клониру",{"_index":6911,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["клуб",{"_index":4192,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ключ",{"_index":302,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["ключев",{"_index":915,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/p/publications":{}},"description":{}}],["книг",{"_index":188,"title":{"/tracks/webrtc/_index":{},"/tracks/python-101/_index":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{}}}],["кнопк",{"_index":952,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["кнопок",{"_index":1041,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ко",{"_index":1765,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ко­то­р",{"_index":4587,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["код",{"_index":65,"title":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["код/част",{"_index":10288,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["кодд",{"_index":6792,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["кодек",{"_index":1139,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["кодекс",{"_index":11805,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["кодинг",{"_index":7258,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["кодир",{"_index":8071,"title":{},"content":{"/tracks/90daysofdevops/day57":{}},"description":{}}],["кодирован",{"_index":1227,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["кодов",{"_index":1304,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["колебан",{"_index":4420,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["колес",{"_index":7262,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["количеств",{"_index":910,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-redirect-to-url/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["количествен",{"_index":4709,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["коллег",{"_index":8911,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["коллектор",{"_index":6982,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["коллекц",{"_index":1793,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["колонк",{"_index":6772,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/posts/markdown-syntax/":{}},"description":{}}],["колонок",{"_index":6776,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["ком",{"_index":8836,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["комад",{"_index":8740,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["команд",{"_index":849,"title":{"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}}}],["командлет",{"_index":9142,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["командн",{"_index":101,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["команду.apt",{"_index":8460,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["комбинац",{"_index":1995,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["комбинирова",{"_index":1449,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["комитет",{"_index":11088,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["комм",{"_index":8654,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["комманд",{"_index":11579,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["комментар",{"_index":5842,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["комментирова",{"_index":10241,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["коммерц",{"_index":4764,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["коммерческ",{"_index":537,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["коммит",{"_index":8659,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["коммуникац",{"_index":399,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["коммуникацион",{"_index":4863,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["коммуницирова",{"_index":523,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["коммутатор",{"_index":7781,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["коммутатору/маршрутизатор",{"_index":9586,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["коммутац",{"_index":9609,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["комнат",{"_index":1011,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["компакт",{"_index":2232,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["компактн",{"_index":8559,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["компан",{"_index":4424,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["компании/проект",{"_index":8798,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["компаративн",{"_index":4548,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["компенсацион",{"_index":4715,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["компетентн",{"_index":9721,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["компетенц",{"_index":10114,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["компилир",{"_index":2278,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилирова",{"_index":9956,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилируем",{"_index":10060,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилирует",{"_index":10061,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилятор",{"_index":2289,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["компиляц",{"_index":1722,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["комплексн",{"_index":1838,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["комплект",{"_index":9630,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["компонент",{"_index":421,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{"/posts/integrate-hugo-react/":{}}}],["компромисс",{"_index":6766,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["компьютер",{"_index":398,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["компьютерн",{"_index":3787,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/p/privacy_ru":{}},"description":{}}],["конвейер",{"_index":6875,"title":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{}},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["конвенц",{"_index":8801,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/python-snippets/":{}},"description":{}}],["конверсион",{"_index":4383,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["конвертирова",{"_index":11469,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["конвертиру",{"_index":5886,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["конец",{"_index":3642,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["конечн",{"_index":52,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["конкатенац",{"_index":3395,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["конкатенирова",{"_index":10720,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["конкретик",{"_index":8355,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["конкретн",{"_index":787,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["конкурентн",{"_index":2931,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкурентносспособн",{"_index":4873,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкурентоспособн",{"_index":4801,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкуренц",{"_index":4537,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкурир",{"_index":6891,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["конкурирова",{"_index":2644,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["конкурс",{"_index":11771,"title":{},"content":{"/p/publications":{}},"description":{}}],["конкурсн",{"_index":11767,"title":{},"content":{"/p/publications":{}},"description":{}}],["коновалов",{"_index":11722,"title":{},"content":{"/p/publications":{}},"description":{}}],["консол",{"_index":1068,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["консольн",{"_index":8288,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["констант",{"_index":2684,"title":{"/tracks/90daysofdevops/day11":{}},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{"/tracks/90daysofdevops/day11":{}}}],["конституц",{"_index":11804,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["конструирован",{"_index":6185,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["конструктор",{"_index":90,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/posts/python-snippets/":{}},"description":{}}],["конструкц",{"_index":1642,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["консультацион",{"_index":4571,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["контакт",{"_index":9455,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["контактн",{"_index":11832,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["контейнер",{"_index":1271,"title":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["контейнеризац",{"_index":8434,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["контейнеризова",{"_index":10149,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["контейнерн",{"_index":8167,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["контекст",{"_index":3270,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["контекстн",{"_index":3271,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["контенер",{"_index":8645,"title":{},"content":{"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day42":{}}}],["контент",{"_index":2724,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["контрабанд",{"_index":4784,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["контрагент",{"_index":11576,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["контракт",{"_index":4422,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["контрактн",{"_index":4879,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["контрол",{"_index":4459,"title":{"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day35":{}}}],["контролир",{"_index":5301,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["контролирова",{"_index":1190,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["контролируем",{"_index":5319,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["контроллер",{"_index":6462,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["контрольн",{"_index":1606,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["контур",{"_index":8397,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["конференц",{"_index":3910,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/p/publications":{}},"description":{}}],["конфиг",{"_index":8285,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["конфигурац",{"_index":235,"title":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["конфигурацион",{"_index":2902,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["конфигурирова",{"_index":9208,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["конфигурирован",{"_index":9551,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["конфиденциальн",{"_index":7115,"title":{"/p/privacy_ru":{}},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["конфликт",{"_index":2047,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["конфликтова",{"_index":1196,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["конц",{"_index":1079,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{}}],["концентратор",{"_index":9043,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["концентрац",{"_index":4974,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["концентрир",{"_index":10148,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["концепт",{"_index":4370,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["концепц",{"_index":1282,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["кооперац",{"_index":4800,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["координац",{"_index":1605,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["координирова",{"_index":2885,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["коп",{"_index":1061,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["копир",{"_index":2183,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day32":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["копирова",{"_index":6678,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["копирован",{"_index":2190,"title":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["копиру",{"_index":11391,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["корзин",{"_index":5240,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["корм",{"_index":9293,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["корн",{"_index":5552,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day16":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["корнев",{"_index":2752,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["коробк",{"_index":2227,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/posts/markdown-syntax/":{}},"description":{}}],["королевств",{"_index":4961,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["коротк",{"_index":2171,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day04":{},"/posts/trading-indicators/sma":{}},"description":{}}],["корпоративн",{"_index":3926,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["корпорац",{"_index":4213,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["корректир",{"_index":11541,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["коррекц",{"_index":9492,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["коррупц",{"_index":4516,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["кортеж",{"_index":1790,"title":{"/tracks/python-101/basis/tuples":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["кортеж(tupl",{"_index":5887,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["корутин",{"_index":2927,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["кос­вен­н",{"_index":4590,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["косвен",{"_index":533,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/_index":{},"/p/privacy_ru":{}},"description":{}}],["косн",{"_index":9523,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["коснул",{"_index":9725,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["коснут",{"_index":82,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["кото",{"_index":10285,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["котор",{"_index":536,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/posts/docker-commands/":{}}}],["коф",{"_index":9558,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["кофейн",{"_index":9563,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["кошк",{"_index":9812,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["кошмар",{"_index":6846,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["кра",{"_index":6016,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["крайн",{"_index":6004,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["крайност",{"_index":6685,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["красив",{"_index":8427,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["красн",{"_index":8669,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["кратк",{"_index":1647,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day02":{},"/posts/ruGPT-3-notes":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["краткосрочн",{"_index":4313,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["крах",{"_index":8126,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["кред",{"_index":4308,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["кредит",{"_index":4292,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["кредитн",{"_index":4226,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["кредитован",{"_index":4250,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["крив",{"_index":7819,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["кризис",{"_index":4166,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["криптограф",{"_index":9666,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["криптографическ",{"_index":9544,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["критер",{"_index":4083,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["критическ",{"_index":5892,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["критичн",{"_index":11076,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["крич",{"_index":9949,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["кров",{"_index":6378,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["кролич",{"_index":9476,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["кросплатформен",{"_index":9524,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["кросс",{"_index":6779,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["кроссплатформен",{"_index":6709,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["крошк",{"_index":6341,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["круг",{"_index":4734,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["кругл",{"_index":1799,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{}},"description":{}}],["крупн",{"_index":3013,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day23":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["крупномасштабн",{"_index":9223,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["крут",{"_index":7818,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["крючк",{"_index":7280,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["кулис",{"_index":8449,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["культур",{"_index":9138,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["культурн",{"_index":9511,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["куп",{"_index":9258,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["купить/прода",{"_index":4412,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["куплет",{"_index":8388,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["курируем",{"_index":8578,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["курновск",{"_index":11692,"title":{"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/p/publications":{}},"description":{}}],["курс",{"_index":4150,"title":{"/posts/diploma/":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day07":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["курсор",{"_index":9442,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["куск",{"_index":1063,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["кусочк",{"_index":8913,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["куч",{"_index":2036,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["кэш",{"_index":3283,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/posts/docker-commands/":{}},"description":{}}],["кэширован",{"_index":1467,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["л",{"_index":4930,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["лаборатор",{"_index":1305,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["лабораторн",{"_index":5320,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["лайнер",{"_index":7249,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["лаконичн",{"_index":8191,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["ландшафт",{"_index":7125,"title":{},"content":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["латиниц",{"_index":3952,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["латинск",{"_index":11502,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["лев",{"_index":5815,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day40":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["легк",{"_index":1680,"title":{"/tracks/algorithms-101/leetcode/easy/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["легковесн",{"_index":2619,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["легкодоступн",{"_index":10956,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["легкост",{"_index":8636,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["легч",{"_index":7826,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["леж",{"_index":3812,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["лежа",{"_index":7453,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["лежат",{"_index":10115,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["лейк",{"_index":10947,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["лекарств",{"_index":4788,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["лекц",{"_index":9710,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["ленив",{"_index":10924,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["лент",{"_index":8701,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["лес",{"_index":9234,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["лестниц",{"_index":9292,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["лет",{"_index":1713,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["лет\".format(nam",{"_index":3534,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["лета",{"_index":10922,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["летуч",{"_index":10896,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["леум",{"_index":11672,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["ли­цен­зи­ро­ва­н",{"_index":4692,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["либ",{"_index":2046,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["либерализац",{"_index":4173,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["лидер",{"_index":8851,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["лидерборд",{"_index":6769,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["ликвидац",{"_index":11530,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ликвидн",{"_index":4388,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["лимит",{"_index":4742,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["линейн",{"_index":5615,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["линтер",{"_index":7239,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["линтинг",{"_index":7229,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["лист",{"_index":5553,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["лит",{"_index":4021,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["литерал",{"_index":1845,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["литератур",{"_index":3932,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["лиц",{"_index":4971,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day01":{},"/p/privacy_ru":{}},"description":{}}],["лиценз",{"_index":4712,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["лицензион",{"_index":4737,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["лицензирова",{"_index":6784,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["лицензирован",{"_index":4557,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["лицензировован",{"_index":4868,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["личн",{"_index":3944,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["личност",{"_index":2073,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["лиша",{"_index":9478,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["лишн",{"_index":2365,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["ло",{"_index":11546,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ловл",{"_index":9792,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["лог",{"_index":1069,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/logging":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["логгер",{"_index":2798,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["логик",{"_index":7505,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["логин",{"_index":5312,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["логин/парол",{"_index":5310,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["логирован",{"_index":2796,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["логическ",{"_index":855,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["логичн",{"_index":8652,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["логотип",{"_index":6975,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["ложк",{"_index":10885,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ложн",{"_index":3628,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["локальн",{"_index":203,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/scope":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["лома",{"_index":1990,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["лондонск",{"_index":4190,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["лор",{"_index":4134,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["луковиц",{"_index":10908,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["луч",{"_index":9042,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["лучш",{"_index":805,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/p/publications":{}},"description":{}}],["льгот",{"_index":4726,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["люб",{"_index":778,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["любим",{"_index":7063,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["любл",{"_index":6963,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["люд",{"_index":37,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["людьм",{"_index":9236,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["лямбд",{"_index":2168,"title":{"/tracks/python-101/enhance_python/lambda":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["м.е",{"_index":11723,"title":{},"content":{"/p/publications":{}},"description":{}}],["ма",{"_index":11358,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["маг",{"_index":10179,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["магазин",{"_index":7321,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["магистральн",{"_index":9109,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["мадияров",{"_index":4146,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["майкл",{"_index":6795,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["майкрософт",{"_index":9110,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["макаевн",{"_index":4148,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["макет",{"_index":1182,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["маккаб",{"_index":11679,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["макроэкономик",{"_index":4792,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["макроэкономическ",{"_index":4245,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["максимальн",{"_index":799,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["максимизац",{"_index":11512,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["максимум",{"_index":1329,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["мал",{"_index":9204,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["маленьк",{"_index":5496,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day11":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["мамочк",{"_index":11660,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["ман",{"_index":4905,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["манер",{"_index":6457,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["манипулирова",{"_index":6827,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["манипулирован",{"_index":4748,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["манипулиру",{"_index":6990,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["манипуляц",{"_index":4558,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["манифест",{"_index":1370,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["мантр",{"_index":7446,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["марафон",{"_index":10247,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["марж",{"_index":11494,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["маржинализм",{"_index":11492,"title":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}}}],["маржиналист",{"_index":11504,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["маржиналистск",{"_index":11513,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["маржинальн",{"_index":11573,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["маркер",{"_index":7324,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["маркетинг",{"_index":4871,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["маркетплейс",{"_index":9130,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["маркирова",{"_index":11154,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["маркировк",{"_index":4621,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["марксизм",{"_index":11557,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["март",{"_index":6361,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["маршрут",{"_index":1102,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day21":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{}}],["маршрутизатор",{"_index":7782,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["маршрутизац",{"_index":8091,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["маск",{"_index":9484,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["масс",{"_index":370,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/lists":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day85":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["массив",{"_index":2009,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/_index":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["массов",{"_index":7185,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["мастер",{"_index":7475,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["масштаб",{"_index":4136,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["масштабир",{"_index":6308,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["масштабирова",{"_index":6332,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["масштабирован",{"_index":1439,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["масштабируем",{"_index":3158,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["масштабирует",{"_index":8905,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["масштабн",{"_index":4142,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["мат",{"_index":11743,"title":{},"content":{"/p/publications":{}},"description":{}}],["математик",{"_index":10666,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["математическ",{"_index":2134,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day09":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["материа",{"_index":1635,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/_index":{}},"description":{}}],["материал",{"_index":8164,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["материальн",{"_index":10135,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["матриц",{"_index":3192,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day27":{}},"description":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["машин",{"_index":1626,"title":{"/tracks/90daysofdevops/day59":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["машиностроен",{"_index":4832,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["машины/х",{"_index":9486,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["мб",{"_index":6994,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["мбрр",{"_index":4281,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мвф",{"_index":4165,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мгим",{"_index":4061,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ме­ж­ду­нар",{"_index":4660,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ме­р",{"_index":4583,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["мед",{"_index":768,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["медвеж",{"_index":10618,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["медиа",{"_index":6045,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["медиаконтент",{"_index":846,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["медиан",{"_index":6044,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["медиаопоток",{"_index":339,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["медиапоток",{"_index":284,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["медицин",{"_index":3983,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["медлен",{"_index":156,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["межбанковск",{"_index":4375,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["международн",{"_index":4082,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["международногодоговор",{"_index":4276,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["межсетев",{"_index":9507,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["мейнтейнер",{"_index":8661,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["мелк",{"_index":7799,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["мелоч",{"_index":8646,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["мен",{"_index":5703,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["менгер",{"_index":11520,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["менеджер",{"_index":1295,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["меньш",{"_index":562,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["меня",{"_index":777,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["мер",{"_index":3803,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/p/privacy_ru":{}},"description":{}}],["меркантелизм",{"_index":4941,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["меркантилизм",{"_index":4065,"title":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}}}],["меркантилист",{"_index":11542,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["мероприят",{"_index":4723,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["мес",{"_index":11671,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["мессенджер",{"_index":9545,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["мест",{"_index":1954,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["местн",{"_index":4543,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["местонахожден",{"_index":9800,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["местоположен",{"_index":6124,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["месяц",{"_index":4312,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["мет",{"_index":11325,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["метада",{"_index":1080,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day45":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["металл",{"_index":4825,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["металлургическ",{"_index":4853,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["метатег",{"_index":11339,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["метк",{"_index":6412,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day33":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{}},"description":{}}],["метод",{"_index":556,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["методик",{"_index":4235,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["методолог",{"_index":6681,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["методологическ",{"_index":11515,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["метр",{"_index":7155,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["метрик",{"_index":6896,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day04":{},"/posts/diploma/":{}},"description":{}}],["метрическ",{"_index":6907,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{}},"description":{}}],["механизм",{"_index":429,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["миграц",{"_index":4199,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day90":{}},"description":{}}],["миграция.(маньшин",{"_index":4196,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мигрирова",{"_index":8342,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["микроволновк",{"_index":5273,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["микросеврис",{"_index":10287,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["микросервис",{"_index":7127,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["микрофон",{"_index":590,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/posts/python-snippets/":{}},"description":{}}],["микрофреймворк",{"_index":3148,"title":{},"content":{"/tracks/python-101/frameworks/_index":{}},"description":{}}],["миллиард",{"_index":4481,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["миллион",{"_index":8720,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["миллисекунд",{"_index":6055,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["мин",{"_index":4043,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["минимальн",{"_index":713,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/_index":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day46":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["минимизац",{"_index":10112,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["минимизир",{"_index":7924,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["минимизирова",{"_index":7931,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["минимум",{"_index":340,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["министерств",{"_index":11646,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["минорн",{"_index":11070,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["минус",{"_index":6032,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day61":{}},"description":{}}],["минут",{"_index":1649,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["мир",{"_index":1198,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["мир!\"[0",{"_index":10680,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["миров",{"_index":4058,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["мировов",{"_index":4837,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["мирохозяйствен",{"_index":4949,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["миф",{"_index":6690,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day37":{},"/p/publications":{}},"description":{}}],["млн",{"_index":5248,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["млрд",{"_index":4503,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["мм",{"_index":2828,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["мнен",{"_index":10134,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["мног",{"_index":774,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["многоконтейнерн",{"_index":8523,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["многократн",{"_index":7930,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["многомерн",{"_index":2152,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["многомодельн",{"_index":6824,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["многопользовательск",{"_index":6821,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["многопоточн",{"_index":2610,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["многословн",{"_index":2127,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["многосторон",{"_index":4121,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["многострочн",{"_index":1998,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["многоузлов",{"_index":8243,"title":{"/tracks/90daysofdevops/day52":{}},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["многоуровнев",{"_index":2372,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["множеств",{"_index":1869,"title":{"/tracks/python-101/basis/sets":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["множествен",{"_index":2373,"title":{"/tracks/90daysofdevops/day61":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day61":{},"/posts/python-snippets/":{}},"description":{}}],["мо",{"_index":5304,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["мо­гут",{"_index":4684,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["мо­жет",{"_index":4607,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["мобильн",{"_index":759,"title":{"/tracks/90daysofdevops/day90":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day14":{},"/p/publications":{}},"description":{}}],["мог",{"_index":1601,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["могл",{"_index":423,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["модел",{"_index":3015,"title":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{}}}],["моделирова",{"_index":1679,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["моделирован",{"_index":6767,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day03":{},"/p/publications":{}},"description":{}}],["моделиру",{"_index":9499,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["модификатор",{"_index":2493,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["модифицирова",{"_index":2102,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["модул",{"_index":1301,"title":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day30":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/90daysofdevops/day30":{}}}],["модулирован",{"_index":1902,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["модульн",{"_index":1692,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/posts/python-snippets/":{}},"description":{}}],["мож",{"_index":600,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["мож­н",{"_index":4670,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["може",{"_index":9144,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["может",{"_index":1024,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["мок",{"_index":3216,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["молод",{"_index":11761,"title":{},"content":{"/p/publications":{}},"description":{}}],["молодеж",{"_index":11772,"title":{},"content":{"/p/publications":{}},"description":{}}],["молок",{"_index":3345,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["момент",{"_index":779,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["моментальн",{"_index":4380,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day87":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["монетаризм",{"_index":11560,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["моникер",{"_index":9119,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["мониториг",{"_index":10306,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["мониторинг",{"_index":4849,"title":{"/tracks/90daysofdevops/day77":{}},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["монкрет",{"_index":4907,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["монограф",{"_index":3960,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["монтир",{"_index":8132,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["монтирова",{"_index":8371,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["монтирован",{"_index":9742,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["мор",{"_index":8632,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["морск",{"_index":8630,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["мост",{"_index":8455,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["мостов",{"_index":8254,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["мотивац",{"_index":10130,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["мощн",{"_index":1620,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["мс",{"_index":1204,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["му­ни­ци­паль­ны­м",{"_index":4579,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["музык",{"_index":9760,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["музыкальн",{"_index":9761,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["мультимед",{"_index":341,"title":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["мультимедийн",{"_index":588,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["мультимодел",{"_index":6823,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["мультиоблачн",{"_index":9209,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["мультитенантн",{"_index":9267,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["мусор",{"_index":2040,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["мутабельн",{"_index":1872,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["мфв",{"_index":4262,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мысл",{"_index":4007,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["мыш",{"_index":9325,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["мышечн",{"_index":10236,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["мышлен",{"_index":8615,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["мяс",{"_index":3346,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["н",{"_index":4036,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{}},"description":{}}],["на­зва­н",{"_index":4678,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["на­прав­ле­н",{"_index":4599,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["на­ря­д",{"_index":4637,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["на­ча­л",{"_index":4674,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["наберет",{"_index":10035,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["набира",{"_index":509,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["наблюда",{"_index":6438,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["наблюдаем",{"_index":6945,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наблюден",{"_index":4290,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["набор",{"_index":301,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["набра",{"_index":3663,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["наброса",{"_index":6809,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["навед",{"_index":9441,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["наведен",{"_index":7662,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["наверн",{"_index":7261,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["наверняк",{"_index":7267,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наверх",{"_index":9793,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["навест",{"_index":1263,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["навигац",{"_index":8709,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["навигирова",{"_index":5795,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["наводнен",{"_index":6377,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["навык",{"_index":7265,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["наглядн",{"_index":1779,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["нагрузк",{"_index":5323,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["нагрузки/прокс",{"_index":7651,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["нагрузок",{"_index":6755,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["над",{"_index":6366,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["надбавк",{"_index":4345,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["надежн",{"_index":1206,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["надзор",{"_index":4243,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["надмножеств",{"_index":10761,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["надпис",{"_index":1519,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["нажа",{"_index":1474,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{}},"description":{}}],["нажат",{"_index":1472,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day41":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["нажима",{"_index":951,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["нажм",{"_index":1007,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["нажмет",{"_index":6450,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["назва",{"_index":7103,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["назван",{"_index":1424,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{}}],["назнач",{"_index":744,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["назнача",{"_index":8393,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{}},"description":{}}],["назначен",{"_index":1672,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["назначьт",{"_index":10133,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["назов",{"_index":8907,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["называ",{"_index":15,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наибольш",{"_index":4002,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["наивн",{"_index":5636,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["наилучш",{"_index":1461,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наименьш",{"_index":5660,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{}}}],["найд",{"_index":143,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["найден",{"_index":5981,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/python-snippets/":{}},"description":{}}],["найдет",{"_index":6202,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["найт",{"_index":742,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["накладн",{"_index":6831,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["накладыва",{"_index":9290,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["накопител",{"_index":6679,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["накоплен",{"_index":4883,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["налага",{"_index":4564,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["налад",{"_index":10171,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["налев",{"_index":5754,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["налич",{"_index":1675,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/sets":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["наличие/отсутств",{"_index":5317,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["наличн",{"_index":4808,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["налог",{"_index":4561,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/репатриация":{}},"description":{}}],["налогов",{"_index":4458,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["намер",{"_index":10065,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["намерен",{"_index":1584,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["намн",{"_index":6985,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["нан",{"_index":9720,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["нанест",{"_index":6591,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["наоборот",{"_index":6168,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["напечата",{"_index":2641,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["написа",{"_index":1597,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["написан",{"_index":260,"title":{"/tracks/disser/articles-notes":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/disser/articles-notes":{}}}],["написать/подключ",{"_index":11247,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["напиш",{"_index":3705,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["напомина",{"_index":5762,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["напомн",{"_index":8135,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["направ",{"_index":5816,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["направл",{"_index":4536,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["направлен",{"_index":4120,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["направля",{"_index":8443,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["направьт",{"_index":10284,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["например",{"_index":221,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["напрот",{"_index":1804,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["напрям",{"_index":538,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["нареза",{"_index":1806,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["нарезк",{"_index":2008,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{}},"description":{}}],["нарисова",{"_index":9596,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["народ",{"_index":4943,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наруш",{"_index":8672,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наруша",{"_index":8910,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["нарушен",{"_index":4552,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["наряд",{"_index":6707,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["населен",{"_index":4555,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наситуац",{"_index":4354,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["наскольк",{"_index":783,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day15":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наслед",{"_index":2366,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{}},"description":{}}],["наследник",{"_index":2495,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["наследова",{"_index":3829,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["наследован",{"_index":2363,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["наследу",{"_index":3843,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["настанет",{"_index":6667,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["настольк",{"_index":782,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["настольн",{"_index":8346,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["настоя",{"_index":215,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day06":{},"/p/privacy_ru":{}},"description":{}}],["настоятельн",{"_index":9842,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["настраива",{"_index":914,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["настраиваем",{"_index":8441,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["настро",{"_index":718,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["настроек",{"_index":821,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["настроен",{"_index":3697,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["настройк",{"_index":355,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}}}],["настройки/переконфигурац",{"_index":8558,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["настройт",{"_index":1360,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["насчет",{"_index":7692,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["насчёт",{"_index":10740,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["натал",{"_index":4107,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["нативн",{"_index":6906,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["наткнул",{"_index":7640,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["натуральн",{"_index":6167,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["натыка",{"_index":7002,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["наук",{"_index":3878,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["науч",{"_index":924,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["научн",{"_index":1623,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/publications":{}},"description":{}}],["нафт",{"_index":4205,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["наход",{"_index":202,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["находя",{"_index":11864,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["нахож",{"_index":7978,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["нахожден",{"_index":5486,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["нац",{"_index":4967,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нацел",{"_index":7567,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["национализац",{"_index":4544,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["национальн",{"_index":4084,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нача",{"_index":333,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["начал",{"_index":2467,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["начало(head",{"_index":5950,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["начальн",{"_index":2005,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["начат",{"_index":7380,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["начин",{"_index":2218,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/posts/python-snippets/":{}},"description":{}}],["начина",{"_index":1628,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["начн",{"_index":5736,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["начнет",{"_index":5386,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["начнут",{"_index":7806,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["наш",{"_index":374,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["нашел",{"_index":5763,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["нашл",{"_index":5664,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["нашёл",{"_index":11072,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["нащекин",{"_index":4932,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нб",{"_index":4615,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["не­та­мо­жен­н",{"_index":4581,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["не­та­риф­н",{"_index":4598,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["неавторизова",{"_index":6635,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["неактуальн",{"_index":8776,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["неандертальец",{"_index":10845,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["неболш",{"_index":10110,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["небольш",{"_index":1299,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["неваж",{"_index":11153,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["неважн",{"_index":8621,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["невероятн",{"_index":9705,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["невозмож",{"_index":200,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["невозможн",{"_index":1883,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{}},"description":{}}],["негативн",{"_index":7867,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["неглубок",{"_index":8852,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["недавн",{"_index":8696,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["недар",{"_index":11507,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["недвижим",{"_index":4468,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["недел",{"_index":7157,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{}},"description":{}}],["недокументирова",{"_index":7801,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["недолговечн",{"_index":8101,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["недопониман",{"_index":10113,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["недопустим",{"_index":10926,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["недостатк",{"_index":2022,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day37":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["недостаток",{"_index":5003,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["недостаточн",{"_index":4732,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["недостижим",{"_index":6760,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["недостоверн",{"_index":11859,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["недоступ",{"_index":6696,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["недоступн",{"_index":1748,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["недосяга",{"_index":10066,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["независим",{"_index":3764,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["незакон",{"_index":4785,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["незафиксирова",{"_index":8877,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["нездоров",{"_index":8383,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["неизвестн",{"_index":5767,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["неизмен",{"_index":1807,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["неизменя",{"_index":1805,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day56":{},"/posts/python-snippets/":{}},"description":{}}],["неизменяем",{"_index":3382,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["неинициализирова",{"_index":10694,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["неиспользова",{"_index":10016,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["неиспользуем",{"_index":2042,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["неисправн",{"_index":7097,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["некотор",{"_index":758,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["некотоыр",{"_index":9727,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["нелокальн",{"_index":1746,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["немедлен",{"_index":1977,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["ненагружен",{"_index":11251,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["ненужн",{"_index":7874,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["ненулев",{"_index":6123,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["необход",{"_index":193,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["необходим",{"_index":246,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["необязательн",{"_index":6782,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/posts/python-snippets/":{}},"description":{}}],["неоговорен",{"_index":11834,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["неоднократн",{"_index":7493,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["неоднородн",{"_index":2021,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["неожида",{"_index":7094,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["неоклассик",{"_index":11561,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неоклассическ",{"_index":11493,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неопределен",{"_index":4514,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["неотрицательн",{"_index":5750,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["неотслежива",{"_index":8765,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["неотслечен",{"_index":8845,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["неотсортирова",{"_index":5906,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["неоьбходим",{"_index":11373,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["непиков",{"_index":10303,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["неплох",{"_index":10013,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["неполадк",{"_index":9296,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["неполадок",{"_index":7111,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day05/":{},"/p/privacy_ru":{}},"description":{}}],["непомечен",{"_index":11600,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["непосильн",{"_index":904,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["непосредствен",{"_index":1720,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["неправильн",{"_index":6663,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day04":{},"/posts/markdown-syntax/":{}},"description":{}}],["неправомерн",{"_index":11845,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["непредвиден",{"_index":4350,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["непремен",{"_index":6970,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["непреодолим",{"_index":8210,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["непрерыв",{"_index":7434,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["непрерывн",{"_index":6847,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["непривычн",{"_index":11376,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["непригодн",{"_index":8187,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["неприемлем",{"_index":5346,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["неприкреплен",{"_index":7845,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["неприменим",{"_index":7848,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["непрост",{"_index":9429,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["неравенств",{"_index":10678,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["неравновес",{"_index":4438,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["неравновесн",{"_index":11540,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неравномерн",{"_index":4473,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["неразглашен",{"_index":11826,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["неразруша",{"_index":8774,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["неразрывн",{"_index":11538,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неразумн",{"_index":4960,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нераспространен",{"_index":11836,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["нереалистичн",{"_index":6644,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["нереляцион",{"_index":6756,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["нес",{"_index":10278,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["несет",{"_index":6691,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["нескольк",{"_index":27,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["несложн",{"_index":9664,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["несмотр",{"_index":551,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["несоглас",{"_index":11823,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["несогласован",{"_index":8113,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["несомнен",{"_index":6905,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["несоответств",{"_index":4746,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["нест",{"_index":9295,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["нестабильн",{"_index":4441,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["нестандартн",{"_index":9860,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["неструктурирова",{"_index":6778,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["несут",{"_index":9173,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["несуществ",{"_index":10742,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["несуществен",{"_index":4836,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["несчастн",{"_index":6594,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["нет",{"_index":3777,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["нетарифн",{"_index":4116,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["нетерпел",{"_index":9089,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["неторгуем",{"_index":5005,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["неубыван",{"_index":5814,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["неудач",{"_index":6638,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["неуклон",{"_index":8504,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["неупорядочен",{"_index":1873,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/posts/markdown-syntax/":{}},"description":{}}],["неуправля",{"_index":9167,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["неустановлен",{"_index":8862,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["нефинансов",{"_index":4220,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["нефт",{"_index":4508,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["нефтегазов",{"_index":4495,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["нехватк",{"_index":4251,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["нецелев",{"_index":11861,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["неч",{"_index":8918,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["неча",{"_index":11750,"title":{},"content":{"/p/publications":{}},"description":{}}],["нечетн",{"_index":5679,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["нечт",{"_index":3433,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["нешн",{"_index":4793,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["неявн",{"_index":1707,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["нигд",{"_index":8572,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["нидерланд",{"_index":4492,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["нижеприведен",{"_index":8357,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["нижн",{"_index":3427,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["нижнийрегистрс_подчёркиван",{"_index":10692,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["низк",{"_index":4324,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ник",{"_index":5771,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["никак",{"_index":940,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["николаевн",{"_index":4135,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["никт",{"_index":6706,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["ним",{"_index":592,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["нисходя",{"_index":10614,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["нич",{"_index":8638,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["ничт",{"_index":3798,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["нов",{"_index":68,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["новатор",{"_index":8592,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["новичк",{"_index":3881,"title":{},"content":{"/tracks/python-101/basis/_index":{}},"description":{}}],["новичок",{"_index":6789,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["ново",{"_index":11778,"title":{},"content":{"/p/publications":{}},"description":{}}],["новост",{"_index":9521,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["нод",{"_index":6164,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["нол",{"_index":3759,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{}}}],["номер",{"_index":1441,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day01":{},"/posts/interactivebrokers-deposit/":{},"/p/publications":{}},"description":{}}],["нор",{"_index":9477,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["нор­ма­тив­н",{"_index":4652,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["норм",{"_index":4729,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day06":{},"/p/privacy_ru":{}},"description":{}}],["нормальн",{"_index":3626,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["нормативн",{"_index":3956,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["носител",{"_index":6687,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["нотац",{"_index":1927,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ноутбук",{"_index":7934,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["ноч",{"_index":7405,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["ночн",{"_index":7403,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["ноябр",{"_index":4320,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["нрав",{"_index":7886,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["нравл",{"_index":8880,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["нуж",{"_index":1288,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["нужд",{"_index":9214,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["нужда",{"_index":1106,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["нужн",{"_index":3495,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{}}],["нул",{"_index":3515,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day29":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["нулев",{"_index":1828,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day89":{}},"description":{}}],["нумерова",{"_index":11152,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["нян",{"_index":11653,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["нём",{"_index":10771,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["об",{"_index":4757,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day19/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["обе",{"_index":380,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/markdown-syntax/":{}},"description":{}}],["обезличиван",{"_index":11818,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["обернут",{"_index":3753,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["обертк",{"_index":2019,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["обертыван",{"_index":2176,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["обеспеч",{"_index":411,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обеспечен",{"_index":1205,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["обеспечив",{"_index":4975,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day53":{}},"description":{}}],["обеспечива",{"_index":1143,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обеспечьт",{"_index":9516,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["обесцениван",{"_index":7685,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["обзор",{"_index":1478,"title":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{}},"content":{"/tracks/python-101/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{}}}],["облада",{"_index":851,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/types":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/posts/python-snippets/":{}},"description":{}}],["облак",{"_index":6300,"title":{"/tracks/90daysofdevops/day28":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{"/tracks/90daysofdevops/day28":{}}}],["облако\\01виртуальн",{"_index":8935,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["област",{"_index":1018,"title":{"/tracks/python-101/basis/scope":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["областн",{"_index":11759,"title":{},"content":{"/p/publications":{}},"description":{}}],["облачн",{"_index":226,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["облегч",{"_index":9592,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["облегча",{"_index":3152,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["облегчен",{"_index":6818,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["облигац",{"_index":4180,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["обм",{"_index":1037,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обмен",{"_index":4300,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["обменива",{"_index":929,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["обменник",{"_index":9146,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["обменя",{"_index":524,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["обнаруж",{"_index":154,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["обнаружен",{"_index":529,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["обнаружива",{"_index":8382,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["обнов",{"_index":823,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["обновл",{"_index":7882,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["обновлен",{"_index":1470,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["обновля",{"_index":3915,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["обо",{"_index":1067,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day01":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["обознач",{"_index":3517,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/conditionals":{},"/posts/markdown-syntax/":{}},"description":{}}],["обознача",{"_index":2080,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day39":{},"/posts/markdown-syntax/":{}},"description":{}}],["обозначен",{"_index":3535,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["обойд",{"_index":5716,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["обойдет",{"_index":4957,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["обойт",{"_index":5719,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["оболочк",{"_index":1034,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["оболочки/bash",{"_index":10231,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["оборачив",{"_index":3251,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["оборачива",{"_index":10933,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["оборот",{"_index":11551,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["оборудован",{"_index":765,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["обоснова",{"_index":4260,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["обрабатыва",{"_index":2985,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day10":{},"/p/privacy_ru":{}},"description":{}}],["обработа",{"_index":3752,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["обработк",{"_index":781,"title":{"/tracks/python-101/basis/exception_handling":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["обработчик",{"_index":1090,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["образ",{"_index":675,"title":{"/tracks/90daysofdevops/day44":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["образец",{"_index":8527,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["образова",{"_index":4279,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["образован",{"_index":3990,"title":{"/homepage/education":{}},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["образовательн",{"_index":9432,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/p/publications":{}},"description":{}}],["образц",{"_index":308,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["обрат",{"_index":376,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["обратн",{"_index":2870,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["обраща",{"_index":2264,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{}},"description":{}}],["обращен",{"_index":625,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day55":{},"/p/privacy_ru":{}},"description":{}}],["обслужива",{"_index":8392,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["обслуживан",{"_index":1279,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["обстоятельств",{"_index":9527,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["обсуд",{"_index":6656,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["обсужда",{"_index":6373,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["обсужден",{"_index":6456,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["обусловл",{"_index":4838,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["обусловлива",{"_index":4812,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["обуча",{"_index":4881,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["обучен",{"_index":1627,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["обход",{"_index":1856,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["обширн",{"_index":9448,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["общ",{"_index":383,"title":{"/tracks/90daysofdevops/day01":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day01":{}}}],["обща",{"_index":8055,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["общедоступ",{"_index":8675,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["общедоступн",{"_index":127,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["общемиров",{"_index":4183,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["общен",{"_index":8599,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["общепринят",{"_index":2465,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["обществ",{"_index":4848,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["объ",{"_index":4019,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["объ­ё­м",{"_index":4595,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["объедин",{"_index":2324,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["объединен",{"_index":2145,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{}},"description":{}}],["объединя",{"_index":539,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["объект",{"_index":240,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["объекта/экземпляр",{"_index":1957,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["объективн",{"_index":4813,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["объектн",{"_index":1644,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["объем",{"_index":2024,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["объяв",{"_index":5484,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["объявл",{"_index":2464,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["объявлен",{"_index":1821,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["объявля",{"_index":5667,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["объясн",{"_index":2012,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["объяснен",{"_index":1071,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["объясня",{"_index":1056,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["объём",{"_index":6000,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["обычн",{"_index":205,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["обычнойставк",{"_index":4346,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["обяза",{"_index":5551,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/p/privacy_ru":{}},"description":{}}],["обязан",{"_index":8380,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["обязательн",{"_index":1291,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["обязательств",{"_index":4126,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обёртк",{"_index":9847,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["овладет",{"_index":1640,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["ог­ра­ни­че­н",{"_index":4645,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оглянут",{"_index":8140,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["оговорен",{"_index":11565,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["огранич",{"_index":2210,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["ограничен",{"_index":708,"title":{"/tracks/webrtc/media-capture-and-constraints":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{},"/p/privacy_ru":{}},"description":{}}],["ограничив",{"_index":4747,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ограничива",{"_index":2609,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["ограничительн",{"_index":4717,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["огромн",{"_index":1700,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["одинак",{"_index":8622,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["одинаков",{"_index":2057,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/репатриация":{}},"description":{}}],["одинарн",{"_index":3398,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["одиночн",{"_index":469,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{}},"description":{}}],["одн",{"_index":32,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["одновремен",{"_index":1440,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day04":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["однозначн",{"_index":1743,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["одноимен",{"_index":7152,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/posts/python-snippets/":{}},"description":{}}],["однократн",{"_index":6002,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["одномерн",{"_index":2153,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["однорангов",{"_index":382,"title":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["однородн",{"_index":2017,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["односвязн",{"_index":5677,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{}}}],["однослойн",{"_index":10713,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["однострочн",{"_index":3350,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/posts/python-snippets/":{}},"description":{}}],["одобр",{"_index":8683,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["одобря",{"_index":629,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["ожид",{"_index":9090,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["ожида",{"_index":94,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day02":{},"/posts/nextjs-to-github-pages-ations/":{},"/p/publications":{}},"description":{}}],["ожидаем",{"_index":9041,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["ожидан",{"_index":2712,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["ознаком",{"_index":1775,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{},"/p/privacy_ru":{}},"description":{}}],["ознакомлен",{"_index":6924,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["ознакомьт",{"_index":7081,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["означа",{"_index":518,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["ок",{"_index":1072,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["окажет",{"_index":5956,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["оказа",{"_index":4959,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["оказан",{"_index":4258,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оказыва",{"_index":4315,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day06":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["окн",{"_index":278,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["окон",{"_index":9212,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["окончан",{"_index":181,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["окончательн",{"_index":8567,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["округля",{"_index":10668,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["окружа",{"_index":4618,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["окружен",{"_index":2258,"title":{"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}}}],["олин",{"_index":4077,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["онлайн",{"_index":228,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day24":{}},"description":{"/tracks/90daysofdevops/day40":{}}}],["оон",{"_index":4519,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["ооп",{"_index":2347,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["оп",{"_index":1303,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["опасн",{"_index":8596,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["оперативн",{"_index":8127,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{}},"description":{}}],["оператор",{"_index":1643,"title":{"/tracks/python-101/basis/operators":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["операц",{"_index":1829,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["операцион",{"_index":2662,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{}},"description":{}}],["опережа",{"_index":8655,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["опечата",{"_index":8712,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["опечатк",{"_index":7184,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["опечаток",{"_index":8710,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["опира",{"_index":4532,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["описа",{"_index":2001,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{}},"description":{}}],["описан",{"_index":485,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["описыва",{"_index":645,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["оплат",{"_index":4361,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/posts/interactivebrokers-deposit/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/репатриация":{}},"description":{}}],["оплачива",{"_index":5383,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["оповещен",{"_index":6910,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["оппонент",{"_index":4981,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["оправда",{"_index":10129,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["опреацион",{"_index":9522,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["определ",{"_index":817,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["определен",{"_index":462,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{}}}],["определя",{"_index":470,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["определён",{"_index":4990,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/markdown-syntax/":{}},"description":{}}],["опробова",{"_index":8439,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["опрос",{"_index":9263,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["опрятн",{"_index":7663,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["оптимальн",{"_index":786,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["оптимизац",{"_index":3359,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["оптимизир",{"_index":11539,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["оптимизирова",{"_index":5891,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["опубликова",{"_index":7933,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day41":{},"/p/publications":{}},"description":{}}],["опуска",{"_index":8412,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["опустеет",{"_index":5460,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["опущ",{"_index":8402,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{}},"description":{}}],["опц",{"_index":4415,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["опцион",{"_index":4377,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["опциональн",{"_index":11586,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["опыт",{"_index":4805,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day01":{},"/p/репатриация":{}},"description":{}}],["опытн",{"_index":3882,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["ор­га­на­м",{"_index":4580,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ор­га­ни­за­ц",{"_index":4682,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["орга",{"_index":4445,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/p/privacy_ru":{}},"description":{}}],["орган",{"_index":4718,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["организ",{"_index":6774,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/p/privacy_ru":{}},"description":{}}],["организац",{"_index":4118,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/p/репатриация":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["организацион",{"_index":9257,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["организм",{"_index":6864,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["организова",{"_index":6826,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["организовыва",{"_index":10045,"title":{},"content":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["организуем",{"_index":9768,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ордын",{"_index":4931,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["оригина",{"_index":6670,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["оригинал",{"_index":6070,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["оригинальн",{"_index":2221,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["ориентац",{"_index":4773,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ориентирова",{"_index":1645,"title":{"/tracks/90daysofdevops/day88":{}},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["ориентирован",{"_index":10139,"title":{"/tracks/90daysofdevops/day03":{}},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day03":{}}}],["оркестратор",{"_index":8168,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["оркестрац",{"_index":9216,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["оркестрир",{"_index":9520,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["оркестрова",{"_index":9457,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["оркестровк",{"_index":7825,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["ос",{"_index":2647,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["ос­но­в",{"_index":4686,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["осваива",{"_index":10064,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["осведомлен",{"_index":8112,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["освет",{"_index":7516,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["освеща",{"_index":10111,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["освещен",{"_index":6654,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["осво",{"_index":1193,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["освобод",{"_index":7162,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["оскар",{"_index":10891,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ослабля",{"_index":4319,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["осмел",{"_index":9141,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["осмыслен",{"_index":6811,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["осн",{"_index":3877,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["основ",{"_index":1208,"title":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day49":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["основа",{"_index":2932,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["основан",{"_index":11803,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["основн",{"_index":938,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/posts/docker-commands/":{}}}],["основополага",{"_index":10176,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["основыв",{"_index":6414,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["особ",{"_index":4230,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["особен",{"_index":4088,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["осозна",{"_index":10298,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["оста",{"_index":439,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["остав",{"_index":5482,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["остава",{"_index":3625,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["оставл",{"_index":9447,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["оставля",{"_index":5385,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["оставьт",{"_index":8871,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["остальн",{"_index":1983,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["остальын",{"_index":9827,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["останавлива",{"_index":11580,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["останет",{"_index":8618,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["останов",{"_index":1517,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["остановк",{"_index":8529,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["останут",{"_index":7800,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["остатк",{"_index":6169,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["остаток",{"_index":3589,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["осторожн",{"_index":8059,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["осуществ",{"_index":11858,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["осуществля",{"_index":709,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["отброс",{"_index":8764,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["отбросьт",{"_index":8869,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["отвернут",{"_index":10182,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["ответ",{"_index":91,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["ответствен",{"_index":1943,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day08/":{},"/p/privacy_ru":{}},"description":{}}],["отвеча",{"_index":54,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/django":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["отвод",{"_index":4912,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["отговор",{"_index":10054,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["отгорож",{"_index":9287,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["отд",{"_index":11663,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["отда",{"_index":460,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["отдел",{"_index":7552,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["отделен",{"_index":8524,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["отдельн",{"_index":342,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["отдохн",{"_index":6359,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["отеч",{"_index":4601,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["отечествен",{"_index":4534,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["отз",{"_index":4030,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["отзыв",{"_index":8154,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["откаж",{"_index":8481,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["отказ",{"_index":6777,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отказа",{"_index":9312,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["отказоустойчив",{"_index":6698,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["откат",{"_index":5581,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["откатыва",{"_index":10080,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["отклик",{"_index":10307,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["отклон",{"_index":631,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["отключ",{"_index":299,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отключа",{"_index":276,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{}},"description":{}}],["отключен",{"_index":9846,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["откр",{"_index":612,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{},"/p/репатриация":{}},"description":{}}],["откро",{"_index":7534,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["откроет",{"_index":6720,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["откройт",{"_index":1012,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["открыва",{"_index":604,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["открыт",{"_index":224,"title":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["откуд",{"_index":6978,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["отладк",{"_index":1463,"title":{"/tracks/python-101/enhance_python/debugging":{}},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day07":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["отладчик",{"_index":3301,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["отлажен",{"_index":1174,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["отлажива",{"_index":8437,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["отлич",{"_index":1254,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["отлича",{"_index":526,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["отличительн",{"_index":9957,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["отличн",{"_index":3799,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["отложен",{"_index":11342,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["отм",{"_index":8736,"title":{"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{"/tracks/90daysofdevops/day39":{}}}],["отмен",{"_index":8758,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["отменя",{"_index":8864,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["отмет",{"_index":3187,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["отмеч",{"_index":7541,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["отмеча",{"_index":7241,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["относ",{"_index":1087,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["относительн",{"_index":1905,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["относя",{"_index":7150,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/p/privacy_ru":{}},"description":{}}],["отношен",{"_index":2570,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["отображ",{"_index":2825,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["отобража",{"_index":955,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["отображен",{"_index":771,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["отобраз",{"_index":3316,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отождествля",{"_index":11549,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["отозва",{"_index":11847,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["отправ",{"_index":568,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["отправител",{"_index":1285,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["отправк",{"_index":435,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["отправл",{"_index":480,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["отправлен",{"_index":892,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day89":{}},"description":{}}],["отправля",{"_index":487,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["отправн",{"_index":8540,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["отправьт",{"_index":923,"title":{"/tracks/webrtc/practice/practice-take-photo":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["отработа",{"_index":11043,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["отраж",{"_index":654,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["отража",{"_index":4846,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["отрасл",{"_index":4453,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["отраслев",{"_index":8593,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["отредактир",{"_index":9468,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["отредактирова",{"_index":6676,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["отрезк",{"_index":6180,"title":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/posts/trading-indicators/sma":{}},"description":{"/tracks/algorithms-101/data-structures/segment-tree":{}}}],["отрезкe",{"_index":6243,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["отрезков",{"_index":6190,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["отрезок",{"_index":6188,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/trading-indicators/sma":{}},"description":{}}],["отрис",{"_index":11229,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрисовк",{"_index":11218,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрисовыва",{"_index":11240,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрисоыва",{"_index":11227,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрицан",{"_index":10672,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["отрицательн",{"_index":2345,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/python-snippets/":{}},"description":{}}],["отрыв",{"_index":4922,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["отслед",{"_index":584,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["отслежив",{"_index":365,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["отслежива",{"_index":602,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["отслеживан",{"_index":670,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/standard_library/logging":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["отслеживател",{"_index":676,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["отсортир",{"_index":5967,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["отсортирова",{"_index":5813,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["отста",{"_index":8888,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["отступ",{"_index":10763,"title":{},"content":{"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["отсутств",{"_index":2270,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отсчет",{"_index":8587,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["отток",{"_index":4343,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["оттуд",{"_index":9449,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["отфильтрова",{"_index":2124,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["отформатирова",{"_index":2803,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["отчеств",{"_index":11831,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["отчет",{"_index":641,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["отчетн",{"_index":7824,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["офи­ци­аль­н",{"_index":4651,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["офис",{"_index":6699,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["официальн",{"_index":1729,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["оформ",{"_index":11156,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["оформлен",{"_index":3931,"title":{"/posts/markdown-syntax/":{}},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/markdown-syntax/":{}},"description":{"/posts/markdown-syntax/":{}}}],["оформля",{"_index":3966,"title":{},"content":{"/tracks/disser/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["охват",{"_index":6355,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["охватыва",{"_index":858,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["охра",{"_index":4617,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оцен",{"_index":4389,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["оцен­к",{"_index":4697,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оценива",{"_index":4807,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day30":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["оценк",{"_index":4372,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["очевид",{"_index":7168,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["очевидн",{"_index":1526,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["очеред",{"_index":1767,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day49":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["очист",{"_index":6387,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{}},"description":{}}],["очистк",{"_index":4786,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["очища",{"_index":2050,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["ошиба",{"_index":9844,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["ошибк",{"_index":1237,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ошибок",{"_index":1226,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["оьбраз",{"_index":8534,"title":{"/tracks/90daysofdevops/day45":{}},"content":{},"description":{}}],["оэср/organis",{"_index":4527,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["п",{"_index":10681,"title":{},"content":{"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["паден",{"_index":4507,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["пазл",{"_index":7088,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["пайк",{"_index":11140,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["пайплайн",{"_index":7278,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пакет",{"_index":1296,"title":{"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{}}],["пакетн",{"_index":8885,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["пакетов/модул",{"_index":2051,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["палиндр",{"_index":6071,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["палиндром",{"_index":6068,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["памя",{"_index":2033,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["памят",{"_index":1677,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["панел",{"_index":1504,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["паник",{"_index":4455,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["папк",{"_index":931,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["папка1",{"_index":10041,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["папка2",{"_index":10042,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["папка3",{"_index":10043,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["папок",{"_index":7591,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["пар",{"_index":1598,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["параграф",{"_index":11106,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["парадигм",{"_index":8385,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["параллелизм",{"_index":9286,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["параллельн",{"_index":2620,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["параметр",{"_index":468,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["парижск",{"_index":4191,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["паритет",{"_index":4151,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["парол",{"_index":5313,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["парс",{"_index":2952,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["парсер",{"_index":2972,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["парсинг",{"_index":11244,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["парт",{"_index":5471,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["партнер",{"_index":4875,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["партнерств",{"_index":4880,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["паспорт",{"_index":11776,"title":{},"content":{"/p/publications":{}},"description":{}}],["паст",{"_index":1062,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["патент",{"_index":4762,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["пауз",{"_index":763,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["перв",{"_index":96,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["первичн",{"_index":6449,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["первоисточник",{"_index":4004,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["первоначальн",{"_index":8095,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["первопричин",{"_index":6893,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["первостепен",{"_index":6883,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["первых(в",{"_index":5499,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["переадресац",{"_index":9133,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["перебазирова",{"_index":8779,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["перебер",{"_index":5526,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["перебра",{"_index":3805,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["перевед",{"_index":6979,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["перевернут",{"_index":5445,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["перевест",{"_index":10,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["перевод",{"_index":2869,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["перевож",{"_index":10037,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["перевозк",{"_index":8631,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["переворачив",{"_index":6069,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["переворачива",{"_index":3647,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["переговор",{"_index":4122,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["перегружен",{"_index":7678,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["перегрузк",{"_index":9569,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["переда",{"_index":89,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["передав",{"_index":1149,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["передава",{"_index":335,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["передад",{"_index":7240,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["передаст",{"_index":9595,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["передач",{"_index":414,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["передов",{"_index":10143,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["переж",{"_index":4355,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["перезагруж",{"_index":7375,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["перезагружа",{"_index":11372,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перезагруз",{"_index":9480,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перезагрузк",{"_index":1469,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перезаписа",{"_index":8875,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["перезаписыва",{"_index":5855,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["перезапуск",{"_index":7396,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["перезапуска",{"_index":1458,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["перезапуст",{"_index":1001,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["переименова",{"_index":8506,"title":{"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["переименован",{"_index":8829,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["переименование/перемещен",{"_index":8840,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["переименовыва",{"_index":8841,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["переименовыван",{"_index":11323,"title":{},"content":{},"description":{"/posts/howto-rename-files-in-python/":{}}}],["переиспользован",{"_index":3105,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["перейд",{"_index":6445,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["перейдет",{"_index":5487,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["перейдут",{"_index":9602,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["перейт",{"_index":1651,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["переключ",{"_index":148,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["переключа",{"_index":5329,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day26":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перемен",{"_index":1747,"title":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day11":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{"/tracks/90daysofdevops/day11":{}}}],["перемест",{"_index":6122,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["перемеша",{"_index":5627,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["перемешива",{"_index":5634,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["перемешиван",{"_index":5623,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/384/":{}}}],["перемеща",{"_index":5542,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["перемещен",{"_index":4568,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["перемножа",{"_index":5837,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["перемотк",{"_index":8879,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["перенаправ",{"_index":2690,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day54":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["перенаправлен",{"_index":9608,"title":{},"content":{"/tracks/90daysofdevops/day21":{},"/posts/howto-redirect-to-url/":{},"/posts/docker-commands/":{}},"description":{}}],["перенаправля",{"_index":2695,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["перенастро",{"_index":825,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["перенес",{"_index":5391,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["перенест",{"_index":6942,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["перенос",{"_index":1020,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/posts/markdown-syntax/":{}},"description":{}}],["переносим",{"_index":2234,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["переопредел",{"_index":2077,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["переопределен",{"_index":1773,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["переопределя",{"_index":3830,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day47":{},"/posts/python-snippets/":{}},"description":{}}],["переписа",{"_index":5854,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["переписыва",{"_index":8780,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["переписыван",{"_index":8784,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["перепланирован",{"_index":8409,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["переплет",{"_index":7503,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["переполнен",{"_index":7128,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["переполня",{"_index":1270,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["перепрыгива",{"_index":5959,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["перераспределен",{"_index":9568,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["пересборк",{"_index":8548,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["пересека",{"_index":7888,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/posts/trading-indicators/sma":{}},"description":{}}],["пересечен",{"_index":3553,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/posts/python-snippets/":{}},"description":{}}],["перескакива",{"_index":5951,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["пересмотрет",{"_index":6368,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["переста",{"_index":177,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["перестав",{"_index":5678,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["переставл",{"_index":5706,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["переставля",{"_index":5491,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["перестанет",{"_index":186,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["перестановк",{"_index":5702,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["перестраив",{"_index":8377,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["перестраива",{"_index":8546,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["перестройк",{"_index":4323,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["пересыла",{"_index":9607,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["переустанов",{"_index":157,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["перехват",{"_index":9657,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["переход",{"_index":7,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["перечен",{"_index":3950,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["перечисл",{"_index":2438,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["перечислен",{"_index":2660,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["перечисля",{"_index":1236,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["перешел",{"_index":8797,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["перешл",{"_index":3344,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["периметр",{"_index":2557,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["период",{"_index":182,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["персистентн",{"_index":7374,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["персон",{"_index":5768,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["персона",{"_index":6884,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["персональн",{"_index":11798,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["перспектив",{"_index":4111,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["песочниц",{"_index":9460,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["печ",{"_index":4042,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["печа",{"_index":5268,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["печат",{"_index":2626,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["печата",{"_index":2640,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["печатн",{"_index":4052,"title":{"/p/publications":{}},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/p/publications":{}},"description":{"/p/publications":{}}}],["пи",{"_index":4462,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["пиcа",{"_index":10968,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["пиков",{"_index":10302,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пинг",{"_index":1171,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["пингова",{"_index":9564,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["пингу",{"_index":8462,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["пиринг",{"_index":9036,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["пирингов",{"_index":9108,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["пис",{"_index":2717,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["писа",{"_index":3665,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["писанин",{"_index":6360,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["письм",{"_index":2722,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["питан",{"_index":4625,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["питон",{"_index":9422,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["пиш",{"_index":5267,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["пишет",{"_index":3714,"title":{},"content":{"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пишут",{"_index":8076,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["пишущ",{"_index":8111,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["пк",{"_index":9859,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["плава",{"_index":1835,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["плагин",{"_index":6977,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["план",{"_index":5,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/integrate-hugo-react/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["планир",{"_index":9,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["планирован",{"_index":6729,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["планировщик",{"_index":8381,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["планиру",{"_index":7362,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["пластыр",{"_index":7502,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["плат",{"_index":4870,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["платеж",{"_index":4252,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["платежн",{"_index":4231,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["платн",{"_index":7439,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["платформ",{"_index":3159,"title":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{}},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/p/publications":{}},"description":{}}],["платформен",{"_index":6780,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["плачут",{"_index":8734,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["плеер",{"_index":9762,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["плейбук",{"_index":7535,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["плейлист",{"_index":7547,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["плеч",{"_index":7263,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["плоскост",{"_index":7520,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["плох",{"_index":6642,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["площад",{"_index":2556,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["площадк",{"_index":11793,"title":{},"content":{"/p/publications":{}},"description":{}}],["плюс",{"_index":7767,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["по",{"_index":9294,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["по­мо­щ",{"_index":4669,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["по­ня­т",{"_index":4655,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["по­ня­ти­",{"_index":4638,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["по­шлин",{"_index":4667,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["побед",{"_index":5483,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["победител",{"_index":5500,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["побежда",{"_index":5502,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["побитов",{"_index":2188,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{}},"description":{}}],["поведен",{"_index":160,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["повезт",{"_index":8635,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["повер",{"_index":8141,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["поверх",{"_index":6903,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["поверхн",{"_index":6704,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["повлия",{"_index":1913,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["повод",{"_index":9149,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["повседневн",{"_index":3492,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["повсюд",{"_index":10246,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["повтор",{"_index":5976,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["повторен",{"_index":3412,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["повторител",{"_index":9583,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["повторн",{"_index":1693,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["повторя",{"_index":3617,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["повторяем",{"_index":10140,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["повыс",{"_index":6992,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["повыша",{"_index":6861,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["повышен",{"_index":4447,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["поговор",{"_index":6680,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/python-snippets/":{}},"description":{}}],["пограничн",{"_index":4727,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["погружа",{"_index":8532,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["погружен",{"_index":6833,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["погруз",{"_index":6357,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["пода",{"_index":5444,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["подач",{"_index":8727,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["подбира",{"_index":3955,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["подбор/выбор",{"_index":3936,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["подвед",{"_index":10105,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["подведен",{"_index":10313,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["подверга",{"_index":7471,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["подвергнет",{"_index":6665,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["подвергнут",{"_index":6703,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["подверж",{"_index":11571,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["подвержден",{"_index":11191,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["подвержен",{"_index":1906,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["подводн",{"_index":8479,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["подготов",{"_index":8054,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["подготовк",{"_index":4010,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/disser/_index":{},"/apps/cloud-exam-quizz/":{}}}],["подготовлен",{"_index":4046,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["подготовьт",{"_index":8098,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["подгруж",{"_index":11089,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["подгружа",{"_index":11291,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["подгрузк",{"_index":11199,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["подда",{"_index":6758,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["поддельн",{"_index":283,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["поддерев",{"_index":5578,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["поддержан",{"_index":4919,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["поддержив",{"_index":4970,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["поддержива",{"_index":67,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["поддержк",{"_index":4314,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["подел",{"_index":1450,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["подкаст",{"_index":7140,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["подкаталог",{"_index":2583,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["подкласс",{"_index":2574,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["подклчю",{"_index":11197,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["подключ",{"_index":334,"title":{"/posts/integrate-hugo-react/":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["подключа",{"_index":336,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["подключаться/отключа",{"_index":776,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["подключен",{"_index":247,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/90daysofdevops/day13":{},"/posts/integrate-hugo-react/":{}}}],["подкоманд",{"_index":8450,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["подкортеж",{"_index":3379,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["подлеж",{"_index":11835,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["подлежа",{"_index":11813,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["подлежат",{"_index":5318,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["подлин",{"_index":9087,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["подмножеств",{"_index":3631,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["подним",{"_index":8155,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["поднима",{"_index":8411,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["поднимут",{"_index":6920,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["подня",{"_index":6850,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["поднят",{"_index":8401,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["подобн",{"_index":1229,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["подожд",{"_index":10181,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["подожда",{"_index":6919,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["подорва",{"_index":4357,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["подорож",{"_index":11680,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["подп",{"_index":8553,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["подпапк",{"_index":7665,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["подписа",{"_index":4024,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["подписан",{"_index":4769,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["подписк",{"_index":9102,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["подписок",{"_index":9285,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["подпоследовательн",{"_index":5715,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["подправ",{"_index":5293,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["подпрограмм",{"_index":2928,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["подпут",{"_index":5558,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["подработк",{"_index":11681,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["подраздел",{"_index":6880,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["подразделен",{"_index":9565,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["подразумева",{"_index":1500,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["подробн",{"_index":70,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["подсветк",{"_index":11150,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["подсет",{"_index":5355,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["подсист",{"_index":7141,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["подсистем",{"_index":7194,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["подсказк",{"_index":5457,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["подсоедин",{"_index":775,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["подсоединен",{"_index":772,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["подставл",{"_index":3536,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["подстановк",{"_index":3396,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["подстрок",{"_index":3510,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["подсчет",{"_index":3386,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["подсчита",{"_index":5893,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["подсчитыв",{"_index":6015,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["подсчитыва",{"_index":5756,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["подтверд",{"_index":6337,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["подтвержд",{"_index":7365,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["подтвержда",{"_index":8473,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["подтвержден",{"_index":4736,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day14":{}},"description":{"/posts/diploma/":{}}}],["подтип",{"_index":1841,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["подума",{"_index":1988,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["подход",{"_index":1308,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["подходя",{"_index":5559,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["подчеркива",{"_index":1682,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["подчеркиван",{"_index":1940,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/markdown-syntax/":{}},"description":{}}],["подчеркнет",{"_index":10273,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["подчеркнул",{"_index":6946,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["подчеркнут",{"_index":1510,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["подчинен",{"_index":7437,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["подчёркиван",{"_index":10820,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["пож",{"_index":9790,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["пожалова",{"_index":9598,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["пожар",{"_index":6376,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["пожела",{"_index":8490,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["позвол",{"_index":560,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["позвольт",{"_index":7915,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["позволя",{"_index":110,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["поздн",{"_index":1120,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["позитивн",{"_index":4804,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["позиц",{"_index":3518,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day01":{},"/posts/trading-indicators/sma":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["позицион",{"_index":3298,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["познаком",{"_index":3348,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{}},"description":{}}],["познакомьт",{"_index":7802,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["поигра",{"_index":7080,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["поинтер",{"_index":5954,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["поиск",{"_index":1089,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/tuples":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["поиска",{"_index":9650,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["поисков",{"_index":3893,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["поисковик",{"_index":3894,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["пойд",{"_index":9260,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["пойдет",{"_index":3354,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пойм",{"_index":6662,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["поймет",{"_index":8929,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["пойт",{"_index":6590,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["пок",{"_index":8876,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["покаж",{"_index":908,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["покажет",{"_index":6579,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["показа",{"_index":1516,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["показател",{"_index":3887,"title":{},"content":{"/tracks/disser/israel-notes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day31":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["показыва",{"_index":433,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["покет",{"_index":11250,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["покида",{"_index":9105,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["покинут",{"_index":9553,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["покопа",{"_index":9613,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["покр",{"_index":9039,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["покрыт",{"_index":7972,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["покупа",{"_index":4465,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day03":{},"/posts/trading-indicators/sma":{}},"description":{}}],["покупател",{"_index":4414,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупательн",{"_index":4152,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупк",{"_index":4379,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["покупке/продаж",{"_index":4409,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупки/продаж",{"_index":4406,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупок",{"_index":6770,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["пол",{"_index":5294,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day15":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["полаг",{"_index":10079,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["полага",{"_index":8302,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["полев",{"_index":6898,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["полез",{"_index":2668,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["полезн",{"_index":263,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["полиморфизм",{"_index":3876,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["политик",{"_index":4067,"title":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/privacy_ru":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["политическ",{"_index":4367,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/p/privacy_ru":{}},"description":{}}],["полн",{"_index":540,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["полност",{"_index":1689,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["полнотекстов",{"_index":6820,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{}},"description":{}}],["полноцен",{"_index":3149,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["половин",{"_index":4903,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["полож",{"_index":8822,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/python-snippets/":{}},"description":{}}],["положен",{"_index":4738,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/p/privacy_ru":{}},"description":{}}],["положительн",{"_index":3769,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["поломк",{"_index":1991,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["получ",{"_index":490,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["получа",{"_index":488,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/p/privacy_ru":{}},"description":{}}],["получат",{"_index":7587,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["получател",{"_index":1286,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["получен",{"_index":337,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["получш",{"_index":1313,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["польз",{"_index":7171,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/docker-commands/":{}}}],["пользвоател",{"_index":11382,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["пользова",{"_index":8640,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["пользован",{"_index":8539,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["пользовател",{"_index":628,"title":{"/tracks/python-101/basis/inputs":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/p/privacy_ru":{}},"description":{}}],["пользовательск",{"_index":647,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["пользователя(логин",{"_index":5307,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["поменя",{"_index":1456,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["помест",{"_index":1932,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{}},"description":{}}],["помет",{"_index":7569,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["помеч",{"_index":7570,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["помеча",{"_index":7605,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["помечен",{"_index":10979,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["помеша",{"_index":10142,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["помещ",{"_index":7466,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["помеща",{"_index":3755,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["помещен",{"_index":6750,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["помим",{"_index":769,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["помн",{"_index":7178,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{}},"description":{}}],["помог",{"_index":7424,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["помога",{"_index":1678,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{}},"description":{}}],["помогл",{"_index":7381,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["помогут",{"_index":8303,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["поможет",{"_index":1654,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["помоч",{"_index":1630,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["помощ",{"_index":593,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cheat-sheet-command-tar/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}}}],["помощник",{"_index":6870,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["понадоб",{"_index":1480,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["понедельник",{"_index":10232,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["понесет",{"_index":7283,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["понижен",{"_index":4435,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["поним",{"_index":10279,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["понима",{"_index":4816,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["пониман",{"_index":1040,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["поня",{"_index":1704,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["понят",{"_index":2125,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/p/privacy_ru":{}},"description":{}}],["понятн",{"_index":1636,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/p/publications":{}},"description":{}}],["поощрен",{"_index":4918,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["поощря",{"_index":8594,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["попада",{"_index":6059,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["попадет",{"_index":8796,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["попаст",{"_index":7092,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["пополнен",{"_index":11178,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["поприветств",{"_index":3671,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["попроб",{"_index":1228,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["попробова",{"_index":7918,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["попробу",{"_index":3587,"title":{},"content":{"/tracks/python-101/basis/scope":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["попробует",{"_index":1784,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["попрос",{"_index":3494,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/p/репатриация":{}},"description":{}}],["попроща",{"_index":9807,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["популяр",{"_index":3982,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["популярн",{"_index":3189,"title":{"/posts/docker-commands/":{}},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["попыта",{"_index":3585,"title":{},"content":{"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["попытк",{"_index":184,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["попыток",{"_index":6597,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["поработа",{"_index":7363,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["порад",{"_index":10957,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["порекоменд",{"_index":8205,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["порогов",{"_index":4240,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["порт",{"_index":238,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["порта",{"_index":9137,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["портал",{"_index":9139,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["портативн",{"_index":8363,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["портфельн",{"_index":4464,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["порядк",{"_index":2643,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["порядок",{"_index":2645,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["посад",{"_index":6090,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["посвят",{"_index":8500,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["посвящ",{"_index":3349,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["посвящен",{"_index":3963,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["посекундн",{"_index":9213,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["посет",{"_index":1522,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["посетител",{"_index":7106,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["посеща",{"_index":1459,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day79":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["посещаем",{"_index":8719,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["поскольк",{"_index":197,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["послден",{"_index":8752,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["послед",{"_index":4417,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["последн",{"_index":1055,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["последнг",{"_index":6189,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["последовател",{"_index":4980,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["последовательн",{"_index":1791,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["последств",{"_index":4127,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["посмотр",{"_index":1017,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{}},"description":{}}],["посмотрет",{"_index":1197,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["пособ",{"_index":10158,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["посовет",{"_index":8674,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["посоветова",{"_index":8052,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["посредник",{"_index":9244,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["посредническ",{"_index":11553,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["посредств",{"_index":7418,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/p/privacy_ru":{}},"description":{}}],["пост",{"_index":6369,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["постав",{"_index":5295,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["поставл",{"_index":8588,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["поставлен",{"_index":9168,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["поставля",{"_index":3198,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["поставок",{"_index":11566,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["поставщик",{"_index":7485,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["поставьт",{"_index":1512,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["постановк",{"_index":7920,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["постара",{"_index":1634,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["постепен",{"_index":4482,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["постоя",{"_index":4802,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["постоянств",{"_index":8123,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["пострада",{"_index":7165,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["постро",{"_index":2245,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["построен",{"_index":4164,"title":{"/tracks/90daysofdevops/day73":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day24":{},"/posts/docker-commands/":{}},"description":{}}],["построител",{"_index":2166,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["построчн",{"_index":1712,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["постсоветск",{"_index":4204,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["поступа",{"_index":6973,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["поступлен",{"_index":4254,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["посчита",{"_index":5525,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["посыла",{"_index":11474,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["потенциа",{"_index":4255,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day61":{}},"description":{}}],["потенциальн",{"_index":827,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/trading-indicators/sma":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["потер",{"_index":1593,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["потерп",{"_index":8125,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["потеря",{"_index":6632,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["поток",{"_index":332,"title":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/standard_library/threading":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["потоков",{"_index":1031,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["потомк",{"_index":2461,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["потомок",{"_index":2572,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["потрат",{"_index":6455,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["потреб",{"_index":72,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["потребител",{"_index":4574,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["потребительск",{"_index":4840,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["потреблен",{"_index":2023,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["потребля",{"_index":2020,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["потребн",{"_index":6292,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day20":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["потребова",{"_index":990,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["потренир",{"_index":9722,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["потряса",{"_index":8361,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["похож",{"_index":1585,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["почерпнул",{"_index":10159,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["почита",{"_index":9182,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["почт",{"_index":2721,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["почтов",{"_index":9540,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["пошагов",{"_index":5299,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{}}}],["пошел",{"_index":6523,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["пошлин",{"_index":4535,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["пошут",{"_index":8038,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["поэлементн",{"_index":5669,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["поэт",{"_index":351,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/inputs":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["поэтапн",{"_index":8545,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["появ",{"_index":1028,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["появлен",{"_index":6621,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["появля",{"_index":632,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["пояснен",{"_index":11155,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["пра­во­в",{"_index":4653,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["прав",{"_index":2364,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["правд",{"_index":8915,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["правил",{"_index":2466,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day33":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["правильн",{"_index":229,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{}},"description":{}}],["правительств",{"_index":4440,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["правительствен",{"_index":4444,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["правк",{"_index":5292,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["правов",{"_index":3957,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["правонарушен",{"_index":11808,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["прайс",{"_index":5242,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["практик",{"_index":1076,"title":{"/tracks/webrtc/practice/_index":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["практическ",{"_index":1674,"title":{"/tracks/90daysofdevops/day34":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day34":{}}}],["практичн",{"_index":1039,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["пре­пят­ст­в",{"_index":4647,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["превосходя",{"_index":7521,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["преврат",{"_index":5701,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["превраща",{"_index":4730,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/python-snippets/":{}},"description":{}}],["превращен",{"_index":3262,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["превыша",{"_index":4253,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["превышен",{"_index":4885,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["преград",{"_index":4619,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["предварительн",{"_index":5927,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["предел",{"_index":1740,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["предельн",{"_index":11496,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["предзаполнен",{"_index":10730,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["предк",{"_index":5866,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{}}}],["предлага",{"_index":2225,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["предлож",{"_index":1422,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["предложат",{"_index":1239,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["предложен",{"_index":3891,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["предмет",{"_index":4955,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/p/privacy_ru":{}},"description":{}}],["предназнач",{"_index":1535,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["предназначен",{"_index":2037,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day22":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["предостав",{"_index":406,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["предоставл",{"_index":3067,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["предоставлен",{"_index":545,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/p/privacy_ru":{}},"description":{}}],["предоставля",{"_index":542,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["предосторожн",{"_index":11856,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["предотврат",{"_index":7498,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["предотвращен",{"_index":4759,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["предписыва",{"_index":6641,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["предполага",{"_index":7473,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["предполож",{"_index":1989,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["предпоследн",{"_index":5836,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["предпочита",{"_index":3698,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["предпочтен",{"_index":303,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["предпочтительн",{"_index":1294,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["предпринимательств",{"_index":11720,"title":{},"content":{"/p/publications":{}},"description":{}}],["предприня",{"_index":6358,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["предпринят",{"_index":7200,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["предприят",{"_index":4463,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day02":{},"/p/publications":{}},"description":{}}],["предсказа",{"_index":4450,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["предсказуем",{"_index":4511,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["представ",{"_index":7496,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["представител",{"_index":4892,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["представл",{"_index":128,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["представлен",{"_index":1952,"title":{"/tracks/90daysofdevops/day01":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{}},"description":{"/tracks/90daysofdevops/day01":{}}}],["представля",{"_index":212,"title":{"/tracks/90daysofdevops/day45":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/posts/markdown-syntax/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["представьт",{"_index":1081,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["предсто",{"_index":8093,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["предстоя",{"_index":9140,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["предупред",{"_index":7160,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["предупрежда",{"_index":7856,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["предупрежден",{"_index":8766,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["предусматрива",{"_index":4550,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["предусмотр",{"_index":11319,"title":{},"content":{"/posts/howto-rename-files-in-python/":{},"/p/privacy_ru":{}},"description":{}}],["предустановк",{"_index":5341,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["предустановлен",{"_index":11352,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["предшеств",{"_index":5953,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["предшественник",{"_index":11362,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["предыдущ",{"_index":159,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["прежд",{"_index":867,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["прежн",{"_index":7407,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["презентац",{"_index":8647,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["презентацион",{"_index":9581,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["преимуществ",{"_index":1669,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["преимуществен",{"_index":4505,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["прекрасн",{"_index":10174,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["прекрат",{"_index":7410,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/p/privacy_ru":{}},"description":{}}],["прелест",{"_index":2100,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["премиальн",{"_index":8908,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["премиум",{"_index":8906,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["пренебреч",{"_index":1823,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["преоблада",{"_index":4898,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["преобраз",{"_index":643,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/posts/markdown-syntax/":{}},"description":{}}],["преобразова",{"_index":608,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["преобразован",{"_index":1708,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day81":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["преобразовыва",{"_index":3675,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["преобразу",{"_index":3249,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["преодолен",{"_index":4349,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["преодолет",{"_index":8139,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["препятств",{"_index":4770,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["прерыван",{"_index":826,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["преуспева",{"_index":10072,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["префикс",{"_index":1052,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["префиксн",{"_index":5576,"title":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{"/tracks/algorithms-101/data-structures/prefix-sum":{}}}],["при",{"_index":438,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["при­ме­нять­",{"_index":4685,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["при­ни­мае­м",{"_index":4577,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["приб",{"_index":4425,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["прибав",{"_index":6152,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["приборн",{"_index":6390,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["прибыл",{"_index":4428,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["приватн",{"_index":1937,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["привед",{"_index":306,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["приведен",{"_index":1224,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["приведет",{"_index":1705,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["приведёт",{"_index":5999,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/python-snippets/":{}},"description":{}}],["привел",{"_index":1994,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["приверженц",{"_index":4928,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["привест",{"_index":784,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["привет",{"_index":3402,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["приветств",{"_index":7394,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["приветствова",{"_index":1616,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["приветству",{"_index":10014,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["привилег",{"_index":8488,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["привлека",{"_index":1699,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["привлекательн",{"_index":4500,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["привлеч",{"_index":4436,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["привлечен",{"_index":4143,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["привод",{"_index":165,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["привыкнет",{"_index":10141,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["привяза",{"_index":6830,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["привязк",{"_index":8453,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["привязыва",{"_index":8395,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["приглашен",{"_index":3669,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["пригод",{"_index":10170,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["приготовлен",{"_index":5275,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["придан",{"_index":9614,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["придержива",{"_index":7359,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["придет",{"_index":42,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["придума",{"_index":434,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["придумыва",{"_index":10822,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["придёт",{"_index":8726,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["приз",{"_index":8679,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["призва",{"_index":1629,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["признава",{"_index":4914,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["признак",{"_index":8854,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["признател",{"_index":6372,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["признательн",{"_index":7644,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["прийт",{"_index":10172,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["прикладн",{"_index":8241,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["прилага",{"_index":4963,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["прилагательн",{"_index":6673,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["приложен",{"_index":75,"title":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["примен",{"_index":1886,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["применен",{"_index":1622,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/90daysofdevops/day28":{}}}],["применим",{"_index":1533,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["применя",{"_index":3253,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/p/privacy_ru":{}},"description":{}}],["пример",{"_index":234,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{}}],["примерн",{"_index":1330,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/p/репатриация":{}},"description":{}}],["примечан",{"_index":1770,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{}},"description":{}}],["примитив",{"_index":10671,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["примитивн",{"_index":10665,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["примонтирова",{"_index":9750,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["примут",{"_index":8733,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["прин",{"_index":7479,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["принадлеж",{"_index":5480,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["принадлежа",{"_index":4331,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["принадлежат",{"_index":9284,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["принесет",{"_index":10183,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["принест",{"_index":8494,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["принесёт",{"_index":4988,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["принима",{"_index":478,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["принос",{"_index":4965,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["принудительн",{"_index":1468,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["принужден",{"_index":6986,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["принцип",{"_index":1734,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["приня",{"_index":7161,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["принят",{"_index":4125,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["приобрест",{"_index":8102,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["приобрета",{"_index":4867,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["приобретен",{"_index":11360,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["приоритет",{"_index":1586,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["приоритизир",{"_index":9503,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["приостанавлива",{"_index":2882,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/inputs":{}},"description":{}}],["приостановк",{"_index":2893,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["приращен",{"_index":10073,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["природ",{"_index":4942,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["природн",{"_index":4796,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["прирост",{"_index":6150,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["приростн",{"_index":11501,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["присваива",{"_index":10005,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["присваиван",{"_index":2182,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/operators":{},"/posts/python-snippets/":{}},"description":{}}],["присвоен",{"_index":1882,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["присмотр",{"_index":7126,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["присоедин",{"_index":1425,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["присоединен",{"_index":8286,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["присоединя",{"_index":10048,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["пристальн",{"_index":7148,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["приступ",{"_index":6461,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["приступа",{"_index":6310,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["присутств",{"_index":2276,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["присущ",{"_index":1929,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["приток",{"_index":4457,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["притяжен",{"_index":8657,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["приумножен",{"_index":4923,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["приход",{"_index":4474,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["причин",{"_index":3811,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["пришл",{"_index":7489,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["приятн",{"_index":8623,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{}},"description":{}}],["про­ис­хо­дя­щ",{"_index":4613,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["про­ис­хо­ж­де­н",{"_index":4606,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["про­ти­во­пос­тав­ле­н",{"_index":4672,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["про­це­ду­р",{"_index":4696,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["проанализирова",{"_index":7070,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["пробел",{"_index":2327,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["пробл",{"_index":208,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["проблем",{"_index":1435,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["проблемн",{"_index":1909,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["пробн",{"_index":174,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["пробова",{"_index":8356,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["проброс",{"_index":6651,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["провайдер",{"_index":6383,"title":{"/tracks/90daysofdevops/day60":{}},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["провал",{"_index":9604,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["провед",{"_index":2492,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["проведен",{"_index":2614,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["провел",{"_index":6682,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["провер",{"_index":640,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["проверен",{"_index":8536,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["проверк",{"_index":1255,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["проверьт",{"_index":1432,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["проверя",{"_index":716,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["проверяем",{"_index":7187,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["провест",{"_index":1065,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["провиз",{"_index":8097,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["провизор",{"_index":7973,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["провод",{"_index":2070,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прогнозирован",{"_index":4374,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["прогон",{"_index":7243,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["программ",{"_index":1652,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["программир",{"_index":10164,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["программирова",{"_index":1637,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["программирован",{"_index":1619,"title":{"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/90daysofdevops/day07":{}}}],["программист",{"_index":2038,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["программн",{"_index":1987,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["прогресс",{"_index":6439,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["прогрессивн",{"_index":4915,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["прода",{"_index":4629,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["продава",{"_index":4910,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["продаж",{"_index":4330,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/trading-indicators/sma":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["продажн",{"_index":11495,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["продакшен",{"_index":10266,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["продакшн",{"_index":7490,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["продвига",{"_index":7474,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["продвижен",{"_index":5952,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["продвинул",{"_index":7454,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["продвинут",{"_index":534,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["продела",{"_index":6441,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["проделыва",{"_index":5705,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["продемонстрирова",{"_index":9611,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["продовольств",{"_index":4101,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["продолж",{"_index":1073,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["продолжа",{"_index":3619,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/posts/trading-indicators/sma":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["продолжен",{"_index":7087,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["продолижт",{"_index":11371,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["продукт",{"_index":45,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["продукц",{"_index":4753,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["проект",{"_index":222,"title":{"/tracks/90daysofdevops/day50":{},"/posts/integrate-hugo-react/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/integrate-hugo-react/":{}}}],["проекта/таск",{"_index":8806,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["проектн",{"_index":1730,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["проеха",{"_index":6151,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["прозрачн",{"_index":10118,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["проигрыва",{"_index":754,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["проигрышн",{"_index":4935,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["произвед",{"_index":5871,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["произведен",{"_index":5827,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["произвест",{"_index":11329,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["производ",{"_index":2007,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["производител",{"_index":4542,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["производительн",{"_index":1587,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["производн",{"_index":2368,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["производств",{"_index":4475,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["производствен",{"_index":1311,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["произвольн",{"_index":401,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day41":{},"/posts/python-snippets/":{}},"description":{}}],["произойдет",{"_index":1252,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["произойт",{"_index":6997,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["произошедш",{"_index":11862,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["произошл",{"_index":6648,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["проиндексир",{"_index":9803,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["проиндексирова",{"_index":6892,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["проиниализирова",{"_index":8795,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["проинспектирова",{"_index":8571,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["происхо",{"_index":8835,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["происход",{"_index":859,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["происходя",{"_index":7211,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["происхожден",{"_index":8577,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["пройд",{"_index":5373,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пройдет",{"_index":7487,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["пройт",{"_index":1650,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["прокладыва",{"_index":9519,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["прокомичен",{"_index":8749,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["прокомментир",{"_index":9950,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["прокомментирова",{"_index":7218,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["прокрут",{"_index":6406,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["прокручив",{"_index":8664,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["прокс",{"_index":7568,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["пролож",{"_index":9518,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["промежутк",{"_index":7429,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["промежуток",{"_index":2172,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["промежуточн",{"_index":1721,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/posts/diploma/":{}},"description":{}}],["промис",{"_index":607,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["промышлен",{"_index":4098,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["проникнут",{"_index":7495,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["пронумерова",{"_index":5924,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["пропадут",{"_index":8542,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["прописыва",{"_index":3890,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["прополощ",{"_index":7492,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["пропуск",{"_index":5869,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["пропуск/игнорирован",{"_index":8843,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["пропуска",{"_index":1982,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["пропуст",{"_index":1070,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["проработа",{"_index":7360,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прос",{"_index":3763,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["прослушива",{"_index":9658,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["прослушиван",{"_index":868,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["прослушивател",{"_index":364,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["просматрива",{"_index":585,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["просмотр",{"_index":1246,"title":{"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/posts/google-sheets-2-json/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/90daysofdevops/day39":{}}}],["просмотрел",{"_index":8660,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["просмотрет",{"_index":601,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["просмотров",{"_index":4048,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["прост",{"_index":139,"title":{"/posts/trading-indicators/sma":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["просто",{"_index":8407,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["простот",{"_index":1903,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["пространств",{"_index":1742,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{}},"description":{}}],["пространствен",{"_index":6765,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["просьб",{"_index":4256,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["протекционизм",{"_index":4110,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["протекционистск",{"_index":4565,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["протестир",{"_index":1540,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["протестирова",{"_index":43,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["противн",{"_index":2575,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["противодейств",{"_index":4636,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["противоположн",{"_index":2237,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["протокол",{"_index":213,"title":{"/tracks/90daysofdevops/day23":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{"/tracks/90daysofdevops/day23":{}}}],["протоколирован",{"_index":1332,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["протяжен",{"_index":4484,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["проф",{"_index":3928,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day88":{},"/p/publications":{}},"description":{}}],["профессиональн",{"_index":3975,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["профессор",{"_index":11739,"title":{},"content":{"/p/publications":{}},"description":{}}],["профил",{"_index":3913,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day40":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["профилирова",{"_index":3355,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["профилирован",{"_index":3347,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["проход",{"_index":1103,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["прохожден",{"_index":3620,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["процедур",{"_index":4560,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["процедурн",{"_index":7821,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["процент",{"_index":4328,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["процентил",{"_index":9194,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["процентн",{"_index":4176,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["процесс",{"_index":1088,"title":{"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/diploma/":{}},"description":{"/posts/docker-commands/":{}}}],["процессор",{"_index":2611,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["проч",{"_index":4791,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["прочита",{"_index":1600,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["прочт",{"_index":8883,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["прошедш",{"_index":2874,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["прошел",{"_index":7432,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["прошл",{"_index":4449,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прощ",{"_index":3516,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прояв",{"_index":6732,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["проявля",{"_index":4342,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["проясня",{"_index":10314,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["прыга",{"_index":8922,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["прыгнут",{"_index":8930,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["прыжк",{"_index":8926,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["пря­м",{"_index":4589,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["прям",{"_index":198,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["прямая(end",{"_index":9584,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["прямоугольник",{"_index":2551,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["псевдоним",{"_index":9618,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["псевдотермина",{"_index":11594,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["психолог",{"_index":3989,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["пу­т",{"_index":4662,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["публик",{"_index":8579,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["публикаиц",{"_index":11490,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["публикац",{"_index":3923,"title":{"/posts/nextjs-to-github-pages-ations/":{},"/p/publications":{}},"content":{"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day02":{},"/p/publications":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["публикацион",{"_index":3912,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["публикация/развертыван",{"_index":10297,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["публику",{"_index":11489,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["публицистическ",{"_index":4050,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["публичн",{"_index":2470,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day01":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["пуга",{"_index":8008,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["пугающ",{"_index":8670,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["пузыр",{"_index":9500,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["пул",{"_index":9187,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["пуленепробиваем",{"_index":10865,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["пульт",{"_index":8870,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["пункт",{"_index":916,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day25":{},"/posts/markdown-syntax/":{}},"description":{}}],["пуст",{"_index":1890,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["пут",{"_index":1066,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["пута",{"_index":8083,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{}},"description":{}}],["путаниц",{"_index":1915,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["путешеств",{"_index":6147,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["путешествова",{"_index":8923,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["путём",{"_index":11829,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["пыт",{"_index":8399,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["пыта",{"_index":803,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["пьес",{"_index":7551,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["пят",{"_index":7159,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/posts/markdown-syntax/":{}},"description":{}}],["пятн",{"_index":8754,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["пётр",{"_index":10842,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["р",{"_index":3968,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["р.м",{"_index":11693,"title":{},"content":{"/p/publications":{}},"description":{}}],["р1",{"_index":9346,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["раcпозна",{"_index":3942,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["работ",{"_index":191,"title":{"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day27":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/p/репатриация":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day27":{},"/posts/cheat-sheet-command-tar/":{}}}],["работа",{"_index":136,"title":{"/tracks/90daysofdevops/day09":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day09":{}}}],["работоспособн",{"_index":6882,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["рабоч",{"_index":991,"title":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day20":{}}}],["рав",{"_index":3242,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["равенств",{"_index":1831,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["равн",{"_index":3214,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["равновес",{"_index":4851,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["равновесн",{"_index":11536,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["рад",{"_index":1615,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["радостн",{"_index":8056,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["раз",{"_index":3339,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day62":{},"/posts/markdown-syntax/":{}},"description":{}}],["раз­ли­че­н",{"_index":4664,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["разархивир",{"_index":1494,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["разб",{"_index":8172,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["разбер",{"_index":5366,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["разбива",{"_index":7975,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["разбиен",{"_index":2322,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["разбир",{"_index":10184,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["разбира",{"_index":7762,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["разбор",{"_index":5450,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["разв",{"_index":4983,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["разверн",{"_index":5321,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["развернет",{"_index":6918,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["развернул",{"_index":6384,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["развернут",{"_index":5637,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["развертыва",{"_index":5324,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["развертыван",{"_index":1702,"title":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["развертывания/доставк",{"_index":7190,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["разветв",{"_index":8706,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["разветвлен",{"_index":8713,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["развива",{"_index":4184,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day49":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["развит",{"_index":1539,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day41":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["разворачива",{"_index":5382,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}}}],["разворачиван",{"_index":5644,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["разглашен",{"_index":11848,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["разговарива",{"_index":10230,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["разговор",{"_index":10153,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["разгрузк",{"_index":9134,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["раздел",{"_index":907,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["разделен",{"_index":1867,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["разделения/разбиения/распределен",{"_index":9195,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["разделител",{"_index":2323,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["разделительн",{"_index":11146,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["разделя",{"_index":3362,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["раздраж",{"_index":10301,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["разл",{"_index":4614,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["различ",{"_index":1033,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["различа",{"_index":8708,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["различен",{"_index":9590,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["различн",{"_index":397,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/integrate-hugo-react/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/howto-rename-files-in-python/":{}}}],["размер",{"_index":1180,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["размест",{"_index":7216,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["разметк",{"_index":1177,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day07":{},"/posts/markdown-syntax/":{}},"description":{}}],["размещ",{"_index":8573,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["размеща",{"_index":8387,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["размещен",{"_index":4721,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["размонтирова",{"_index":9783,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["разн",{"_index":459,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["разниц",{"_index":1802,"title":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["разновидн",{"_index":8341,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["разнообраз",{"_index":8442,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["разност",{"_index":3555,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/posts/python-snippets/":{}},"description":{}}],["разобра",{"_index":7887,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["разов",{"_index":9789,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["разр",{"_index":7444,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["разрабатыва",{"_index":116,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["разработа",{"_index":1101,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/p/privacy_ru":{}},"description":{}}],["разработк",{"_index":267,"title":{"/tracks/python-101/basis/ide":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/publications":{}},"description":{"/posts/docker-commands/":{}}}],["разработчик",{"_index":1690,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["разреш",{"_index":1008,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["разреша",{"_index":630,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["разрешен",{"_index":627,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["разрешён",{"_index":11828,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["разрознен",{"_index":9601,"title":{},"content":{"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["разруша",{"_index":8352,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["разрушен",{"_index":10187,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["разрушительн",{"_index":9841,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["разрыв",{"_index":3407,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["разумеет",{"_index":6935,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["разумн",{"_index":121,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["рам­к",{"_index":4688,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["рамк",{"_index":46,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["ран",{"_index":109,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["ранжир",{"_index":8394,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["раскомментирова",{"_index":9673,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["раскрут",{"_index":8084,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["раскручива",{"_index":8554,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["раскрыв",{"_index":8378,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["раскрыва",{"_index":7109,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["раскрыт",{"_index":8181,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["распакова",{"_index":3185,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["распаковк",{"_index":2236,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["распаковыва",{"_index":8562,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{}},"description":{}}],["распечата",{"_index":5297,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["распечатк",{"_index":9798,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["распечатыва",{"_index":5298,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["расписан",{"_index":6448,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["расплывчат",{"_index":710,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["располага",{"_index":3801,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["располож",{"_index":1179,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day45":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{}},"description":{}}],["расположен",{"_index":3948,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["распредел",{"_index":4472,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["распределен",{"_index":4303,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["распределя",{"_index":2648,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["распростран",{"_index":3976,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["распространен",{"_index":2698,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/p/privacy_ru":{}},"description":{}}],["распространя",{"_index":5345,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["расскаж",{"_index":7247,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["расскажут",{"_index":8171,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["рассказа",{"_index":3508,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["рассказыв",{"_index":9431,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["рассказыва",{"_index":6652,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["рассматрив",{"_index":2072,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["рассматрива",{"_index":482,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["рассмотр",{"_index":2067,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["рассмотрел",{"_index":6295,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["рассмотрен",{"_index":4921,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["рассмотрет",{"_index":6367,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/posts/trading-indicators/sma":{}},"description":{}}],["рассмотрт",{"_index":9675,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["расстоян",{"_index":5994,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["рассужден",{"_index":10050,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["рассчет",{"_index":11668,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["рассчита",{"_index":4993,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["рассчитыв",{"_index":7790,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["рассчитыва",{"_index":1272,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["рассыла",{"_index":7131,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["раст",{"_index":4860,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["растен",{"_index":4627,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["растет",{"_index":4483,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["растров",{"_index":6764,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["растут",{"_index":6299,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["растущ",{"_index":6293,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["расход",{"_index":5006,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["расчет",{"_index":2982,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day12":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/diploma/":{},"/p/репатриация":{}},"description":{}}],["расшир",{"_index":3884,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["расширен",{"_index":1917,"title":{"/tracks/python-101/enhance_python/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["расширя",{"_index":3831,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["расширяем",{"_index":3106,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["расшифровыва",{"_index":1726,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["расщирен",{"_index":11307,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["раунд",{"_index":5478,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["рахниц",{"_index":8739,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["рационализац",{"_index":6871,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["рациональн",{"_index":11511,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ре",{"_index":4022,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ре­гу­ли­ро­ва­н",{"_index":4584,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ре­жи­м",{"_index":4612,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["реагир",{"_index":5290,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["реализ",{"_index":597,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{}},"description":{}}],["реализац",{"_index":11,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/posts/hugo-add-image-zoomin/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["реализова",{"_index":458,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["реализовыва",{"_index":8146,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["реализу",{"_index":8390,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["реальн",{"_index":1049,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["реальност",{"_index":11758,"title":{},"content":{"/p/publications":{}},"description":{}}],["ребасинг",{"_index":8782,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["революц",{"_index":11514,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["регион",{"_index":4241,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["региональн",{"_index":4200,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/p/publications":{}},"description":{}}],["регистр",{"_index":3428,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["регистрац",{"_index":8240,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["регистрацион",{"_index":8226,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["регистрир",{"_index":8239,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["регистрирова",{"_index":780,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["регистриру",{"_index":363,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["регламент",{"_index":11802,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["регулир",{"_index":4572,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["регулирован",{"_index":4114,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["регулярн",{"_index":7428,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["редактир",{"_index":11033,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["редактирова",{"_index":8729,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["редактирован",{"_index":3092,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["редактор",{"_index":1483,"title":{"/tracks/90daysofdevops/day17":{}},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["редакц",{"_index":11867,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["редирект",{"_index":11324,"title":{"/posts/howto-redirect-to-url/":{}},"content":{},"description":{"/posts/howto-redirect-to-url/":{}}}],["редк",{"_index":8699,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day15":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["редназначен",{"_index":3933,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["реестр",{"_index":8489,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["реж",{"_index":3734,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["режим",{"_index":297,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day17":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["резерв",{"_index":4334,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["резервн",{"_index":1107,"title":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["резонир",{"_index":10052,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["результат",{"_index":1661,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["результир",{"_index":6132,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["резюм",{"_index":11682,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["рейк",{"_index":10683,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["рейтинг",{"_index":4218,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["реквизит",{"_index":11185,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["рекламир",{"_index":8375,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["рекоменд",{"_index":1884,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["рекомендательн",{"_index":6814,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["рекомендац",{"_index":4244,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day30":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["рекомендова",{"_index":8557,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/markdown-syntax/":{}},"description":{}}],["рекоменду",{"_index":715,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["рекомендуем",{"_index":9245,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/markdown-syntax/":{}},"description":{}}],["реконструкц",{"_index":4280,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["реконфигурац",{"_index":8099,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["рекурс",{"_index":5870,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["рекурсивн",{"_index":2191,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["релевантн",{"_index":2267,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["религиозн",{"_index":11841,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["релиз",{"_index":6714,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["рельн",{"_index":10305,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["реляцион",{"_index":6788,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["рендер",{"_index":11294,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["реп",{"_index":7137,"title":{},"content":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["репатриант",{"_index":11644,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["репатриац",{"_index":11638,"title":{"/p/репатриация":{}},"content":{"/p/репатриация":{}},"description":{"/p/репатриация":{}}}],["реплик",{"_index":6326,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["репликац",{"_index":6382,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["реплицир",{"_index":6695,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["реплицирова",{"_index":6385,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["репозитор",{"_index":3174,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day40":{}}}],["ресторан",{"_index":4426,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["ресурс",{"_index":918,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ретранслятор",{"_index":1316,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ретрансляц",{"_index":194,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["реузльтат",{"_index":6254,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["реферат",{"_index":4017,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["реферирован",{"_index":4051,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["реформ",{"_index":11780,"title":{},"content":{"/p/publications":{}},"description":{}}],["реценз",{"_index":8665,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["рецензент",{"_index":8899,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["рецензирова",{"_index":8900,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["рецепт",{"_index":7815,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["реч",{"_index":3353,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["реш",{"_index":207,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["реша",{"_index":911,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day24":{},"/posts/markdown-syntax/":{}},"description":{}}],["решен",{"_index":535,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/algorithms-101/codeforces/_index":{}}}],["решительн",{"_index":9838,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["решётк",{"_index":10664,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["рзличн",{"_index":8844,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["рзультат",{"_index":9951,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["рикард",{"_index":4073,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ринц",{"_index":11783,"title":{},"content":{"/p/publications":{}},"description":{}}],["риск",{"_index":4157,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["рисунк",{"_index":7809,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["ричард",{"_index":11547,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["роб",{"_index":11139,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["робототехник",{"_index":8398,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["ровн",{"_index":5589,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["рогат",{"_index":8090,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["род",{"_index":6643,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day07":{},"/p/privacy_ru":{}},"description":{}}],["родител",{"_index":2573,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{},"/p/репатриация":{}},"description":{}}],["родительск",{"_index":2370,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["родн",{"_index":7881,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["розничн",{"_index":10074,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["рок",{"_index":7807,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["рол",{"_index":410,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["рома",{"_index":4197,"title":{"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["росс",{"_index":4087,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["российск",{"_index":4767,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["рост",{"_index":4247,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["роут",{"_index":3060,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["рубеж",{"_index":4966,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["рудн",{"_index":3929,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["рук",{"_index":6603,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["руководител",{"_index":4031,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["руководств",{"_index":2949,"title":{"/posts/markdown-syntax/":{}},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/django":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/markdown-syntax/":{}}}],["руководя",{"_index":1733,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["руск",{"_index":4040,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["русск",{"_index":4018,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["ручн",{"_index":6634,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day21":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["рф",{"_index":4129,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["рынк",{"_index":4155,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/p/publications":{}},"description":{}}],["рынок",{"_index":4145,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["рыночн",{"_index":4630,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["рэйк",{"_index":10687,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ряд",{"_index":527,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["сwebrtc",{"_index":1058,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["са­мо­г",{"_index":4673,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["са­ни­тар­н",{"_index":4706,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сад",{"_index":9559,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{"/tracks/90daysofdevops/day23":{}},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["садик",{"_index":11655,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["сажа",{"_index":6084,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["сайт",{"_index":1269,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/articles-notes":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["сальд",{"_index":4925,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сам",{"_index":785,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["самар",{"_index":11763,"title":{},"content":{"/p/publications":{}},"description":{}}],["самарск",{"_index":11748,"title":{},"content":{"/p/publications":{}},"description":{}}],["самовлюблен",{"_index":3832,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["самовосстановлен",{"_index":8373,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["самодостаточн",{"_index":8495,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["самоитерируем",{"_index":2301,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["самообслуживан",{"_index":9517,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["самоописан",{"_index":3834,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["самостоятельн",{"_index":220,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["самуэльсон",{"_index":5007,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["санитарн",{"_index":4623,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["санкц",{"_index":4242,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сантис",{"_index":4895,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сахар",{"_index":2123,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сбалансирова",{"_index":8370,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["сбива",{"_index":1588,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["сбилд",{"_index":10292,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["сбо",{"_index":1108,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["сбор",{"_index":546,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/p/privacy_ru":{}},"description":{}}],["сборк",{"_index":2039,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["сборник",{"_index":3899,"title":{},"content":{"/tracks/disser/articles-notes":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{"/p/publications":{}}}],["сборок",{"_index":7291,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["сборщик",{"_index":6958,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["сбрасыва",{"_index":5600,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["сброс",{"_index":5988,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["сбросьт",{"_index":8874,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["сбыт",{"_index":4553,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сведен",{"_index":7786,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["свеж",{"_index":8580,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["свер",{"_index":5372,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["сверх",{"_index":5817,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["сверхс",{"_index":10887,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["сверхчеловек",{"_index":10860,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["сверя",{"_index":10258,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["свест",{"_index":10294,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["свет",{"_index":7179,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["свидетельств",{"_index":4861,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["свидетельствова",{"_index":10613,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["свитчер",{"_index":5328,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["сво",{"_index":44,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/privacy_ru":{}},"description":{}}],["свобод",{"_index":4789,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["свободн",{"_index":4109,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["свод",{"_index":8617,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["своевремен",{"_index":6867,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["свойст",{"_index":2411,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["свойств",{"_index":241,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["свойств/метод",{"_index":2489,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["своп",{"_index":4416,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["сворачиван",{"_index":11375,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["своём",{"_index":8662,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["свяж",{"_index":9514,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["свяжет",{"_index":8673,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["связ",{"_index":396,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["связа",{"_index":375,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["связк",{"_index":10620,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["связн",{"_index":5681,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{}}}],["связыва",{"_index":1953,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["связыван",{"_index":1698,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["связын",{"_index":4054,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["связь(ссылк",{"_index":2184,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сгенерирова",{"_index":4011,"title":{},"content":{"/tracks/disser/utils/text_2_short":{},"/posts/docker-commands/":{}},"description":{}}],["сглаживан",{"_index":2155,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сгруппирова",{"_index":1825,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["сдач",{"_index":11881,"title":{},"content":{},"description":{"/apps/cloud-exam-quizz/":{}}}],["сдают",{"_index":4035,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["сдвиг",{"_index":3594,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["сдвига",{"_index":5541,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["сдвинув",{"_index":1518,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["сдвиньт",{"_index":5970,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["сдела",{"_index":126,"title":{"/tracks/webrtc/practice/practice-take-photo":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}}}],["сделк",{"_index":4434,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day32":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сдр",{"_index":4168,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["сеанс",{"_index":486,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["сеансов",{"_index":9580,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["северн",{"_index":4486,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сегмент",{"_index":9594,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["сегментац",{"_index":9567,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["сегментирова",{"_index":9566,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["сегодняшн",{"_index":10010,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["секрет",{"_index":6586,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["секретн",{"_index":8717,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["сектор",{"_index":4294,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["секунд",{"_index":2872,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["секц",{"_index":2910,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["сельск",{"_index":4859,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сем",{"_index":4952,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["семейств",{"_index":11359,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["сенат",{"_index":5470,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["сенатор",{"_index":5474,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["сентябр",{"_index":134,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["сер",{"_index":6855,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["сервер",{"_index":190,"title":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day18":{}}}],["серверн",{"_index":8538,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["сервис",{"_index":227,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/p/privacy_ru":{}},"description":{}}],["сервисн",{"_index":9512,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["серебр",{"_index":4901,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["середин",{"_index":4889,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сериализац",{"_index":2226,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["сериализова",{"_index":2230,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["серр",{"_index":4906,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сертификат",{"_index":8133,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/posts/markdown-syntax/":{}},"description":{}}],["серьезн",{"_index":6664,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["сесс",{"_index":3172,"title":{},"content":{"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["сет",{"_index":204,"title":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}}}],["сетев",{"_index":214,"title":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{"/tracks/90daysofdevops/day33":{}}}],["сетк",{"_index":9221,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["сеттер",{"_index":2528,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["сжат",{"_index":2233,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day25":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["сжима",{"_index":6713,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["сигна",{"_index":10616,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["сигнал",{"_index":10619,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["сигнализац",{"_index":1454,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["сигналинг",{"_index":415,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["сил",{"_index":4798,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["сильн",{"_index":1532,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["символ",{"_index":1881,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/387/":{}}}],["симкарт",{"_index":11669,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["симметрическ",{"_index":3557,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["симметричн",{"_index":10760,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["син",{"_index":9440,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["синтаксис",{"_index":1583,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/posts/markdown-syntax/":{}},"description":{}}],["синтаксическ",{"_index":66,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["синхрон",{"_index":9157,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["синхронизац",{"_index":3945,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["синхронизирова",{"_index":1771,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сионистск",{"_index":11643,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["сист",{"_index":3154,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{}}],["систем",{"_index":1930,"title":{"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day16":{}}}],["систем)/(open",{"_index":9576,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["систематизац",{"_index":3934,"title":{},"content":{"/tracks/disser/_index":{},"/p/privacy_ru":{}},"description":{}}],["систематическ",{"_index":3954,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["системн",{"_index":1443,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["системыводоснабжен",{"_index":4289,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["сит",{"_index":10948,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ситуац",{"_index":2170,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["скаж",{"_index":8896,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["скажет",{"_index":5777,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["сказа",{"_index":8242,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["сканер",{"_index":7864,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["сканир",{"_index":7869,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["сканирован",{"_index":7861,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["скаруфф",{"_index":4896,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["скача",{"_index":1293,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day01":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["скачива",{"_index":5311,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day32":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["скачиван",{"_index":5387,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["скачок",{"_index":9849,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["сквозн",{"_index":9239,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["скелет",{"_index":1527,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["складыва",{"_index":5596,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-snippets/":{}},"description":{}}],["склон",{"_index":8613,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["склонност",{"_index":7926,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["склоня",{"_index":9265,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["скобк",{"_index":1796,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["скобок",{"_index":3361,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-snippets/":{}},"description":{}}],["скользя",{"_index":4714,"title":{"/posts/trading-indicators/sma":{}},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["скомпилир",{"_index":10036,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["скомпилирова",{"_index":2275,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["скомпилиру",{"_index":10291,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["скомпрометирова",{"_index":9570,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["сконфигурирова",{"_index":8190,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["сконцентрирова",{"_index":8079,"title":{},"content":{"/tracks/90daysofdevops/day57":{}},"description":{}}],["скопир",{"_index":6418,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["скопирова",{"_index":2181,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["скопиру",{"_index":7358,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["скор",{"_index":638,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["скорост",{"_index":3065,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["скот",{"_index":8085,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["скриншот",{"_index":6421,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["скрипт",{"_index":595,"title":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/posts/hugo-add-image-zoomin/":{}}}],["скрипт/обработчик",{"_index":11248,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["скрыв",{"_index":2530,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["скрыва",{"_index":2106,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["скрыт",{"_index":7539,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["слаб",{"_index":1709,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["слев",{"_index":1541,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["слегк",{"_index":6653,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["след",{"_index":26,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["следова",{"_index":7419,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["следован",{"_index":1738,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["следовательн",{"_index":1684,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["следствен",{"_index":11528,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["следу",{"_index":1230,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["следует",{"_index":7292,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["слеж",{"_index":7598,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["слива",{"_index":7449,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["слит",{"_index":8667,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["слиян",{"_index":8678,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["сло",{"_index":6771,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day22":{},"/posts/python-snippets/":{}},"description":{}}],["слов",{"_index":1283,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["словар",{"_index":1864,"title":{"/tracks/python-101/basis/dict":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/python-snippets/":{}},"description":{}}],["словарн",{"_index":2128,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["словарь(dict",{"_index":5888,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["слож",{"_index":3641,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["сложен",{"_index":2842,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{}},"description":{}}],["сложн",{"_index":637,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сложност",{"_index":4123,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["слома",{"_index":8668,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["слот",{"_index":9092,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["служ",{"_index":4964,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["служат",{"_index":4000,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["служб",{"_index":427,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day85":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["случ",{"_index":5592,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["случа",{"_index":49,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/p/privacy_ru":{}},"description":{}}],["случайн",{"_index":1010,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["слыш",{"_index":6659,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["слыша",{"_index":6689,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["см",{"_index":569,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day39":{},"/posts/python-snippets/":{}},"description":{}}],["смартфон",{"_index":591,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["смел",{"_index":3491,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["смен",{"_index":2778,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["смерт",{"_index":8403,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["смест",{"_index":11527,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["смещен",{"_index":4828,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["смит",{"_index":4070,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["смог",{"_index":6354,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day28":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["смогл",{"_index":6749,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["смогут",{"_index":522,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["смож",{"_index":6301,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["сможет",{"_index":1297,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["смонтирова",{"_index":6751,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["смотр",{"_index":1314,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day10":{},"/posts/docker-commands/":{}},"description":{}}],["смс",{"_index":11190,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["смут",{"_index":9148,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["смущ",{"_index":9479,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["смыс­л",{"_index":4644,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["смысл",{"_index":353,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["снабд",{"_index":2064,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["снапшот",{"_index":6637,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["снг",{"_index":4498,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сниж",{"_index":7929,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["снижа",{"_index":1685,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["снижен",{"_index":4421,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сниз",{"_index":2082,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["снима",{"_index":8761,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["снимк",{"_index":1477,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["снимок",{"_index":927,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["сниппет",{"_index":10623,"title":{"/posts/python-snippets/":{}},"content":{},"description":{"/posts/python-snippets/":{}}}],["снял",{"_index":9306,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["снят",{"_index":937,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["со­гла­ше­н",{"_index":4690,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["соавтор",{"_index":8707,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["собер",{"_index":8498,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["собеседован",{"_index":9719,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["собира",{"_index":1002,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["соблюда",{"_index":10977,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["соблюдабщ",{"_index":8800,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["соблюден",{"_index":4752,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["собра",{"_index":520,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["собран",{"_index":11769,"title":{},"content":{"/p/publications":{}},"description":{}}],["собсвтен",{"_index":10999,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["собствен",{"_index":1482,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["событ",{"_index":366,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["событий/секунду/ядр",{"_index":6996,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["соверш",{"_index":8671,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["соверша",{"_index":6146,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day33":{},"/p/privacy_ru":{}},"description":{}}],["совершен",{"_index":6379,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["совет",{"_index":1191,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/docker-commands/":{}},"description":{}}],["советова",{"_index":7753,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["совмест",{"_index":3939,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["совместим",{"_index":1150,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["совместн",{"_index":1025,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["совокупн",{"_index":4559,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/privacy_ru":{}},"description":{}}],["совпа",{"_index":6099,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["совпада",{"_index":379,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{}},"description":{}}],["совпаден",{"_index":9718,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["современ",{"_index":3062,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/p/publications":{}},"description":{}}],["соглас",{"_index":7754,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["согласн",{"_index":1854,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["согласова",{"_index":6417,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["согласован",{"_index":4768,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["согласовыва",{"_index":8386,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["соглаша",{"_index":11563,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["соглашен",{"_index":2334,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["содейств",{"_index":4270,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["содействияоздоровлен",{"_index":4278,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["содействова",{"_index":4916,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["содерж",{"_index":369,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["содержа",{"_index":473,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day09":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["содержан",{"_index":3598,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day01":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["содержат",{"_index":1497,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["содержательн",{"_index":8663,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["содержим",{"_index":832,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["соедин",{"_index":405,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["соединен",{"_index":305,"title":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["соединя",{"_index":5688,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["сожалел",{"_index":6669,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["сожален",{"_index":9466,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["соз­да­н",{"_index":4600,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["созда",{"_index":479,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["создав",{"_index":8781,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["создава",{"_index":1656,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["создад",{"_index":1300,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["создадут",{"_index":8222,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["создан",{"_index":176,"title":{"/tracks/90daysofdevops/day59":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["создания/редактирован",{"_index":3073,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["создаст",{"_index":1009,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["создаёт",{"_index":11074,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["созерцан",{"_index":3833,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["сок",{"_index":10940,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["сокет",{"_index":199,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["сократ",{"_index":559,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{}},"description":{}}],["сокращен",{"_index":4274,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{}},"description":{}}],["сокровищ",{"_index":11550,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["солнечн",{"_index":4842,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["солт",{"_index":10946,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["сообщ",{"_index":7156,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/p/privacy_ru":{}},"description":{}}],["сообща",{"_index":1371,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["сообщен",{"_index":437,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["сообществ",{"_index":1701,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["соответсвен",{"_index":5495,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["соответств",{"_index":18,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/p/privacy_ru":{}},"description":{}}],["соответствен",{"_index":47,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["соответствова",{"_index":6939,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["соотношен",{"_index":4991,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["соперничеств",{"_index":4803,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сопостав",{"_index":7102,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["сопоставл",{"_index":2048,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сопоставлен",{"_index":8468,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["сопоставля",{"_index":2049,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["сопровожда",{"_index":8505,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["сопровожден",{"_index":1687,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сопрограмм",{"_index":2935,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["сортир",{"_index":3645,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["сортирова",{"_index":6762,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["сортировк",{"_index":3250,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["сортировочн",{"_index":9556,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["сортиру",{"_index":5908,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{}}],["сосед",{"_index":6087,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["соседн",{"_index":6085,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["сосредоточ",{"_index":1904,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сосредоточива",{"_index":10178,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["сосредоточьт",{"_index":3493,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["соста",{"_index":4140,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/p/privacy_ru":{}},"description":{}}],["состав",{"_index":4501,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["составлен",{"_index":4233,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["составля",{"_index":1202,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/markdown-syntax/":{}},"description":{}}],["составн",{"_index":6757,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["составьт",{"_index":9501,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["состо",{"_index":172,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["состоя",{"_index":3380,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["состоян",{"_index":548,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сотн",{"_index":8014,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["сотрудник",{"_index":11812,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["сотруднича",{"_index":4790,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["сотрудничеств",{"_index":4461,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["сотрудничества",{"_index":4268,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["соучредител",{"_index":6794,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["сохнут",{"_index":11640,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["сохран",{"_index":4545,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["сохранен",{"_index":3327,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["сохраня",{"_index":2052,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["социальн",{"_index":3978,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["сочета",{"_index":9160,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["сочетан",{"_index":1695,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["союз",{"_index":4202,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["спектр",{"_index":3151,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/p/репатриация":{}},"description":{}}],["спекулятивн",{"_index":11575,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["сперв",{"_index":11521,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["спец",{"_index":4689,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["специализац",{"_index":4547,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["специализир",{"_index":6859,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["специализирова",{"_index":4972,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["специалист",{"_index":4032,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["специальн",{"_index":844,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["специфик",{"_index":7679,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["спецификатор",{"_index":2458,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["спецификац",{"_index":394,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day55":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["специфич",{"_index":7417,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["специфическ",{"_index":2652,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["специфичн",{"_index":712,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["спечен",{"_index":4758,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["списк",{"_index":1,"title":{"/tracks/python-101/basis/lists":{}},"content":{"/tracks/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/posts/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}}}],["список",{"_index":635,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["списочн",{"_index":10808,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["спо­со­б",{"_index":4668,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["спо­соб­н",{"_index":4588,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["спойлер",{"_index":9806,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["спонсируем",{"_index":7518,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["спор",{"_index":4635,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["спорт",{"_index":7695,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["способ",{"_index":206,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/posts/howto-rename-files-in-python/":{}}}],["способн",{"_index":766,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["способо",{"_index":11198,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["способств",{"_index":1691,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["способствова",{"_index":4573,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["спот",{"_index":4378,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["справ",{"_index":2211,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["справедлив",{"_index":8454,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["справк",{"_index":1499,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["справля",{"_index":6297,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["справочн",{"_index":2262,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["спрашива",{"_index":3507,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/p/репатриация":{}},"description":{}}],["спринт",{"_index":10132,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["спрос",{"_index":4364,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["спрята",{"_index":7647,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["спуст",{"_index":7501,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["срабатыван",{"_index":7212,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["сработа",{"_index":1241,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["сравн",{"_index":5493,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["сравнен",{"_index":1857,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}}}],["сравнив",{"_index":6003,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["сравнива",{"_index":3213,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["сравнительн",{"_index":4074,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сраз",{"_index":6991,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day38":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/p/репатриация":{}},"description":{}}],["сред",{"_index":3696,"title":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{}},"content":{"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{}}}],["средн",{"_index":3343,"title":{"/tracks/algorithms-101/leetcode/medium/_index":{},"/posts/trading-indicators/sma":{}},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day06":{},"/posts/trading-indicators/sma":{},"/p/репатриация":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{}}}],["средств",{"_index":770,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["срез",{"_index":2003,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["сркипт",{"_index":11232,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["срок",{"_index":8074,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["срф",{"_index":4344,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ссыла",{"_index":1768,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["ссылк",{"_index":636,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["ссылок",{"_index":1175,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["стабильн",{"_index":133,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["став",{"_index":762,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day48":{},"/posts/markdown-syntax/":{}},"description":{}}],["ставк",{"_index":4177,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ставок",{"_index":4298,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ставьт",{"_index":11151,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["стад",{"_index":7470,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["стал",{"_index":155,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["сталкива",{"_index":4775,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["стандарт",{"_index":19,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["стандартизац",{"_index":11569,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стандартизирова",{"_index":11577,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стандартизова",{"_index":11567,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стандартн",{"_index":1863,"title":{"/tracks/python-101/standard_library/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["станет",{"_index":3627,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["станов",{"_index":517,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["становлен",{"_index":11719,"title":{},"content":{"/p/publications":{}},"description":{}}],["станут",{"_index":9603,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["станц",{"_index":7392,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["стар",{"_index":7406,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["стара",{"_index":6983,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["старт",{"_index":9450,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/posts/docker-commands/":{}},"description":{}}],["стат",{"_index":903,"title":{"/tracks/disser/articles-notes":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/publications":{}},"description":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}}}],["статик",{"_index":8170,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["статистик",{"_index":1462,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/disser/israel-notes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day82":{}},"description":{}}],["статистическ",{"_index":8220,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/p/publications":{}},"description":{}}],["статическ",{"_index":1280,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["статичн",{"_index":11524,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["статус",{"_index":603,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["стаффорд",{"_index":4893,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["стволов",{"_index":11756,"title":{},"content":{"/p/publications":{}},"description":{}}],["стек",{"_index":3304,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["стен",{"_index":5990,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["стенк",{"_index":5995,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["стенок",{"_index":5996,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["степен",{"_index":3591,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стерлинг",{"_index":4395,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["стесня",{"_index":1657,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["стил",{"_index":1735,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["стилиз",{"_index":11011,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["стимулирова",{"_index":11529,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["стимулирован",{"_index":4749,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["стиран",{"_index":11353,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["стихийн",{"_index":4351,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["сто",{"_index":1599,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/p/репатриация":{}},"description":{}}],["стоимост",{"_index":4363,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стоимостн",{"_index":4092,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["стойк",{"_index":6028,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["стол",{"_index":7749,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["столбец",{"_index":5885,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["столбц",{"_index":5794,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["столкнет",{"_index":6832,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["столкновен",{"_index":1928,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["столкнул",{"_index":9475,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["столкнут",{"_index":1436,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["стольк",{"_index":1192,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["сторон",{"_index":381,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-redirect-to-url/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["стоя",{"_index":5689,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["стр",{"_index":4020,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["стра­н",{"_index":4698,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["страда",{"_index":7186,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["стран",{"_index":1466,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["страниц",{"_index":1019,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{"/apps/npm/hugo-lunr-ml/":{}}}],["стратег",{"_index":4418,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["страшн",{"_index":8585,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["стрелк",{"_index":9723,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["стрем",{"_index":2266,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["стремительн",{"_index":6298,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["стремл",{"_index":10106,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["стремлен",{"_index":4811,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["стрим",{"_index":1448,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["стро",{"_index":1993,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["строг",{"_index":1460,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["строительн",{"_index":7401,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["строительств",{"_index":4287,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["стройк",{"_index":1014,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["строк",{"_index":102,"title":{"/tracks/python-101/basis/strings":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["строки/списки/словари/кортеж",{"_index":10688,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["строков",{"_index":1290,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["строку(",{"_index":5595,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["строчн",{"_index":9153,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["струк­ту­р",{"_index":4596,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["структур",{"_index":1694,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["структурирова",{"_index":1925,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["структурн",{"_index":4097,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["стручк",{"_index":6309,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["стручок",{"_index":6965,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["студент",{"_index":4876,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["студенческ",{"_index":11760,"title":{},"content":{"/p/publications":{}},"description":{}}],["стык",{"_index":10116,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["стэнд",{"_index":4309,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["стянул",{"_index":8586,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["субсид",{"_index":4539,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["субсидир",{"_index":4329,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["субсидирован",{"_index":4556,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["субъект",{"_index":11500,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["субъективизм",{"_index":11497,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["субъективн",{"_index":11508,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["суд",{"_index":8633,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["судебн",{"_index":4733,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["судебно",{"_index":11779,"title":{},"content":{"/p/publications":{}},"description":{}}],["судостроен",{"_index":4917,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сужа",{"_index":5997,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["сумм",{"_index":2974,"title":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{}}}],["суммир",{"_index":5531,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{}}}],["суммирован",{"_index":6213,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["супер",{"_index":7248,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["супергер",{"_index":10877,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["суперкласс",{"_index":2371,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["суперпользовател",{"_index":9752,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["суперпр",{"_index":8037,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["сут",{"_index":2079,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["суток",{"_index":7477,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["суффиксн",{"_index":5829,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["суханов",{"_index":11740,"title":{},"content":{"/p/publications":{}},"description":{}}],["существ",{"_index":216,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["существен",{"_index":4318,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["существительн",{"_index":6672,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["существова",{"_index":8129,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["существован",{"_index":8608,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["сущност",{"_index":3810,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сфер",{"_index":4269,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сформулирован",{"_index":4976,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["схем",{"_index":6531,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["сходн",{"_index":4710,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сходств",{"_index":7083,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["схож",{"_index":6817,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["сцен",{"_index":7287,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["сценар",{"_index":1688,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["счастлив",{"_index":7804,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["счел",{"_index":10274,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["счет",{"_index":1777,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/interactivebrokers-deposit/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["счетчик",{"_index":5523,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/integrate-hugo-react/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["счислен",{"_index":3539,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["счит",{"_index":5540,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["счита",{"_index":1955,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["считыва",{"_index":2984,"title":{},"content":{"/tracks/python-101/standard_library/_index":{}},"description":{}}],["сша",{"_index":4085,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["съемн",{"_index":9738,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["сыгра",{"_index":4829,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["сыр",{"_index":4099,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["сырьев",{"_index":11564,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["сэконом",{"_index":2126,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["сюд",{"_index":7589,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["т.д",{"_index":1984,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["т.е",{"_index":1876,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day31":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["т.к",{"_index":773,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["т.п",{"_index":8081,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["тano",{"_index":8893,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["та­мо­жен­н",{"_index":4665,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­мо­жен­но­м",{"_index":4675,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­ри­ф",{"_index":4676,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­риф­н",{"_index":4582,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­риф­но­г",{"_index":4666,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["таблиц",{"_index":1880,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/posts/markdown-syntax/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["табуляц",{"_index":9622,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{}},"description":{}}],["тайн",{"_index":11854,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["тайник",{"_index":7064,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["так",{"_index":1138,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["так­ж",{"_index":4609,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["такжезайм",{"_index":4332,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["таков",{"_index":3315,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["такт",{"_index":7664,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["таможен",{"_index":4112,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["танцует",{"_index":8927,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["тариф",{"_index":4551,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/репатриация":{}},"description":{}}],["тарифн",{"_index":4113,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тверд",{"_index":7488,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["твит",{"_index":9864,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["твитн",{"_index":9863,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["твиттер",{"_index":9264,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["творен",{"_index":9288,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["творц",{"_index":11519,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["творческ",{"_index":6733,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["тд",{"_index":9740,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["тег",{"_index":5309,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{}},"description":{}}],["тег/ключ/id",{"_index":11245,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["тезис",{"_index":4359,"title":{},"content":{"/p/publications":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["тек­сти­л",{"_index":4703,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["текст",{"_index":1181,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["текстильн",{"_index":4834,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["текстов",{"_index":934,"title":{"/tracks/90daysofdevops/day17":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["текучест",{"_index":10131,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["текущ",{"_index":14,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["тел",{"_index":1980,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/p/репатриация":{}},"description":{}}],["телекоммуникац",{"_index":4493,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["телекоммуникацион",{"_index":9305,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["телефон",{"_index":9560,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["тем",{"_index":1646,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["темн",{"_index":6443,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["темп",{"_index":4810,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["темплейт",{"_index":9733,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["тенденц",{"_index":4154,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day70":{},"/posts/trading-indicators/sma":{}},"description":{}}],["теор",{"_index":4064,"title":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["теорем",{"_index":4075,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["теоретическ",{"_index":4369,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["тер",{"_index":8924,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["термин",{"_index":541,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["термина",{"_index":1374,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["терминал",{"_index":3179,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["терминатор",{"_index":9620,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["терминолог",{"_index":6252,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["тернарн",{"_index":3601,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/posts/python-snippets/":{}},"description":{}}],["терпен",{"_index":6869,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["терраформ",{"_index":8047,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["терраформен",{"_index":7921,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["территор",{"_index":9315,"title":{},"content":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["террористическ",{"_index":4443,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["теря",{"_index":8786,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["тесн",{"_index":9528,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["тест",{"_index":262,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["тестир",{"_index":7210,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["тестирова",{"_index":122,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["тестирован",{"_index":259,"title":{"/tracks/webrtc/testing":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day62":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["тестиру",{"_index":7483,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["тестов",{"_index":1530,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["тех­нич",{"_index":4704,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тех­но­ло­ги­",{"_index":4702,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["техник",{"_index":2207,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["техническ",{"_index":1934,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["технолог",{"_index":902,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["технологическ",{"_index":3999,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["течен",{"_index":25,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["тик",{"_index":10884,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["тип",{"_index":655,"title":{"/tracks/python-101/basis/types":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["типизац",{"_index":1697,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{}},"description":{}}],["типизирова",{"_index":1703,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["типичн",{"_index":751,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["типолог",{"_index":4238,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ткущ",{"_index":11340,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["тнк",{"_index":4216,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["то",{"_index":1038,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{}},"description":{}}],["то­ва­р",{"_index":4594,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["товар",{"_index":4081,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day42":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["товарн",{"_index":4093,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["товаропроизводител",{"_index":4566,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ток",{"_index":6396,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["токен",{"_index":9947,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["толк",{"_index":1589,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["толка",{"_index":7771,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["толчок",{"_index":8415,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["том",{"_index":8114,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/posts/docker-commands/":{}},"description":{}}],["томас",{"_index":11544,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["тон",{"_index":9786,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["тонк",{"_index":2018,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["топ",{"_index":1663,"title":{"/tracks/python-101/top-questions/":{}},"content":{"/posts/docker-commands/":{}},"description":{"/tracks/python-101/_index":{}}}],["топлив",{"_index":4100,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["тополог",{"_index":9034,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["топологическ",{"_index":5928,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["тор­го­в",{"_index":4681,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тор­го­во­г",{"_index":4611,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тор­гов­л",{"_index":4586,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["торг",{"_index":4385,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["торгов",{"_index":4105,"title":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["торгова",{"_index":4973,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["торговл",{"_index":4068,"title":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["торгуем",{"_index":4080,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["точек",{"_index":1861,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["точечн",{"_index":1926,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["точк",{"_index":53,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["точн",{"_index":714,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["точност",{"_index":6881,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["традицион",{"_index":10144,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["трактова",{"_index":4913,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["транзакц",{"_index":6802,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["транзакцион",{"_index":6813,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["транзитивн",{"_index":9035,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["транков",{"_index":9363,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["транскодирован",{"_index":9184,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["транслирова",{"_index":1275,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["транслитерир",{"_index":4009,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["транснационализац",{"_index":4217,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["транспиляц",{"_index":10293,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["транспорт",{"_index":9589,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["транспортир",{"_index":9606,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["транспортировк",{"_index":8543,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["транспортн",{"_index":4496,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["трансфер",{"_index":4866,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["трансферт",{"_index":4104,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["трансформац",{"_index":4228,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/p/publications":{}},"description":{}}],["трассировк",{"_index":6947,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["трат",{"_index":8704,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["трафик",{"_index":195,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["треб",{"_index":1284,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["требова",{"_index":8248,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["требован",{"_index":611,"title":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/install":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["требуем",{"_index":5665,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["трейдер",{"_index":10617,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["трем",{"_index":1045,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["тренд",{"_index":10612,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["трет",{"_index":1431,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["треугольник",{"_index":3706,"title":{},"content":{"/tracks/python-101/basis/ide":{}},"description":{}}],["трех",{"_index":3397,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["трехэтапн",{"_index":8560,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["тривиальн",{"_index":10833,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["триггер",{"_index":7357,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["трижд",{"_index":9155,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["триллион",{"_index":4390,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["тринадцат",{"_index":3521,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["тройк",{"_index":5656,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["тройн",{"_index":3399,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["труд",{"_index":4806,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["трудн",{"_index":6998,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["трудновыявля",{"_index":9493,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["трудност",{"_index":4336,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["трудов",{"_index":4195,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/privacy_ru":{}},"description":{}}],["трудоемк",{"_index":9502,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["трёх",{"_index":8788,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["туннел",{"_index":8149,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["туп",{"_index":9446,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["туризм",{"_index":4862,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["турист",{"_index":7805,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["туториа",{"_index":6288,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/90daysofdevops/day29":{}}}],["ты",{"_index":5904,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["тысяч",{"_index":6936,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["тьюториа",{"_index":9689,"title":{},"content":{"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["тьюториал",{"_index":10191,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["тяжел",{"_index":6024,"title":{"/tracks/algorithms-101/leetcode/hard/_index":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["у",{"_index":7829,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["уб",{"_index":11604,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["убед",{"_index":64,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["убежда",{"_index":7478,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["убежден",{"_index":11842,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["убер",{"_index":180,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["убережет",{"_index":7797,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["убива",{"_index":11582,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["убира",{"_index":8349,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["убра",{"_index":8848,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["убытк",{"_index":4419,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ув",{"_index":1935,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["уведом",{"_index":8732,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["уведомлен",{"_index":7763,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/nextjs-to-github-pages-ations/":{},"/p/репатриация":{}},"description":{}}],["увелич",{"_index":4437,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["увеличен",{"_index":3621,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["увеличив",{"_index":6155,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["увеличива",{"_index":1780,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day46":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["увеличьт",{"_index":5522,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["увер",{"_index":1653,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["уверен",{"_index":1655,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["увид",{"_index":1331,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["увидел",{"_index":7112,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["увидет",{"_index":1021,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["увиж",{"_index":8682,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["угл",{"_index":6934,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day53":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["углов",{"_index":11144,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["углуб",{"_index":7465,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["углублен",{"_index":4799,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["углубля",{"_index":5890,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["угодн",{"_index":7065,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["угол",{"_index":8702,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["уголовн",{"_index":11807,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["угроз",{"_index":4239,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["уда",{"_index":7430,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["удал",{"_index":183,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/237/":{}}}],["удален",{"_index":331,"title":{"/tracks/webrtc/remote-streams":{},"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/sets":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/posts/howto-rename-files-in-python/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day39":{}}}],["удаля",{"_index":2765,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["удач",{"_index":1662,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["удел",{"_index":6890,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["уделя",{"_index":6866,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["удержа",{"_index":6031,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["удержив",{"_index":1471,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["удержива",{"_index":6029,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["удив",{"_index":3393,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["удивительн",{"_index":10262,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["удоб",{"_index":8853,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["удобн",{"_index":2699,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["удобочита",{"_index":2881,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["удобочитаем",{"_index":1683,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["удобств",{"_index":1907,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["удовлетвор",{"_index":7228,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["удовлетворен",{"_index":9494,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["удовлетворя",{"_index":5666,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["удовольств",{"_index":7367,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["удостовер",{"_index":9659,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["удостоверен",{"_index":9238,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["узел",{"_index":413,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{"/tracks/algorithms-101/leetcode/medium/237/":{}}}],["узк",{"_index":3357,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["узл",{"_index":196,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}}}],["узлов",{"_index":7711,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["узна",{"_index":926,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["узнава",{"_index":1136,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["уйдет",{"_index":8082,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["уйт",{"_index":1188,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["укаж",{"_index":7895,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["укажет",{"_index":8456,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["указа",{"_index":300,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["указан",{"_index":3099,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/markdown-syntax/":{}},"description":{}}],["указател",{"_index":5537,"title":{"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day12":{}}}],["указателей(pointer",{"_index":5966,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["указыв",{"_index":2739,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["указыва",{"_index":852,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/imports":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["указыван",{"_index":10829,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["украша",{"_index":11098,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["укреплен",{"_index":4259,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["укреплениемеждународн",{"_index":4267,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["улаж",{"_index":7189,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["улиц",{"_index":9554,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["улов",{"_index":7084,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["улучш",{"_index":4872,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["улучша",{"_index":9496,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["улучшен",{"_index":1594,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["ум",{"_index":10023,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["уменьш",{"_index":6018,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["уменьша",{"_index":1910,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["уменьшен",{"_index":4248,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["умерен",{"_index":7820,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["уместн",{"_index":10275,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["умира",{"_index":8406,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["умножа",{"_index":3328,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["умножен",{"_index":3340,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["умолчан",{"_index":113,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["умрет",{"_index":6677,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["унаследова",{"_index":2497,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["универсальн",{"_index":9495,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["университет",{"_index":11749,"title":{},"content":{"/p/publications":{}},"description":{}}],["уникальн",{"_index":2045,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/387/":{}}}],["унифицирова",{"_index":4,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["уничтож",{"_index":8048,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["уничтожа",{"_index":5459,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["уничтожен",{"_index":11820,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["упакова",{"_index":8189,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["упаковк",{"_index":4620,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["упаковщик",{"_index":7789,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["упаковыва",{"_index":8602,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["упер",{"_index":7368,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["уполномоч",{"_index":8850,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["уполномочен",{"_index":11811,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["упомина",{"_index":6375,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["упоминан",{"_index":8089,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["упомян",{"_index":10071,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["упомянул",{"_index":7170,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["упомянут",{"_index":6700,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["упор",{"_index":3064,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["упорн",{"_index":7182,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["упорядоч",{"_index":9513,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["упорядочен",{"_index":1590,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/types":{},"/tracks/90daysofdevops/day84":{},"/posts/markdown-syntax/":{}},"description":{}}],["управлен",{"_index":917,"title":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{}}}],["управленческ",{"_index":10125,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["управля",{"_index":464,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{}},"description":{}}],["упражнен",{"_index":140,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["упрежда",{"_index":9489,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["упрост",{"_index":266,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["упроща",{"_index":1307,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["упрощен",{"_index":3748,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["упрямств",{"_index":6697,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["урегулирова",{"_index":8898,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["урегулирован",{"_index":4187,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["уровен",{"_index":2820,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day02":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["уровн",{"_index":1363,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/90daysofdevops/day22":{}}}],["урок",{"_index":8103,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["урон",{"_index":6593,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["ус­ло­в",{"_index":4604,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["усво",{"_index":10186,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["усил",{"_index":4827,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["усилен",{"_index":4404,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["ускор",{"_index":2979,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["ускорен",{"_index":4246,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["услов",{"_index":525,"title":{"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day19/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["условн",{"_index":2142,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["усложн",{"_index":7149,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["услуг",{"_index":4103,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["услыш",{"_index":7206,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["услыша",{"_index":8088,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["усмотрен",{"_index":8526,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/p/privacy_ru":{}},"description":{}}],["усовершенствован",{"_index":11364,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["успех",{"_index":1148,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["успешн",{"_index":1242,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["устанавлива",{"_index":471,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["установ",{"_index":111,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["установк",{"_index":164,"title":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day36":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["установл",{"_index":432,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/logging":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["установлен",{"_index":419,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["установок",{"_index":9728,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["установочн",{"_index":3662,"title":{},"content":{"/tracks/python-101/basis/install":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["установщик",{"_index":8194,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["устаревш",{"_index":95,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["устновк",{"_index":11381,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["устойчив",{"_index":4273,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["устраива",{"_index":6933,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["устран",{"_index":7259,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["устранен",{"_index":7123,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["устраня",{"_index":7443,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["устро",{"_index":8142,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["устройств",{"_index":587,"title":{"/tracks/webrtc/media-devices":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["утвердительн",{"_index":10047,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["утвержда",{"_index":7484,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["утвержден",{"_index":1715,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["утил",{"_index":2953,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["утилизац",{"_index":2041,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["утилит",{"_index":2263,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["уточ­ня­ет­",{"_index":4683,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["уточн",{"_index":8582,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["уточнен",{"_index":11817,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["уточня",{"_index":6964,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["утр",{"_index":10233,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["утрат",{"_index":4340,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day62":{},"/p/privacy_ru":{}},"description":{}}],["уход",{"_index":10056,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["ухудш",{"_index":3693,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["уч",{"_index":6365,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["участ",{"_index":4128,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["участв",{"_index":4774,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["участвова",{"_index":8697,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["участк",{"_index":2000,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["участник",{"_index":4365,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["участниц",{"_index":4208,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["участок",{"_index":6086,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["учебн",{"_index":3959,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["учебник",{"_index":7694,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["учебу/практик",{"_index":11609,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["учен",{"_index":4897,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/publications":{}},"description":{}}],["учест",{"_index":6057,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["учет",{"_index":5889,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["учетн",{"_index":5300,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["учител",{"_index":11654,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["учитыв",{"_index":5948,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["учитыва",{"_index":4371,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["учл",{"_index":9235,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["учрежд",{"_index":4275,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["учрежден",{"_index":4301,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/p/publications":{}},"description":{}}],["учт",{"_index":8624,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["ущерб",{"_index":6592,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["ф",{"_index":6791,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["фаворит",{"_index":9526,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["фаз",{"_index":7828,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["файл",{"_index":289,"title":{"/tracks/python-101/basis/file_io":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/90daysofdevops/day38":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}}}],["файлов",{"_index":1931,"title":{"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{"/tracks/90daysofdevops/day16":{}}}],["файлы/папк",{"_index":8738,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["файт",{"_index":11220,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["факт",{"_index":4809,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["фактическ",{"_index":1289,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["фактор",{"_index":528,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day03":{},"/p/publications":{}},"description":{}}],["фамил",{"_index":11830,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["фантастическ",{"_index":7772,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["фатальн",{"_index":6640,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["федеральн",{"_index":11768,"title":{},"content":{"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["федерац",{"_index":9242,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["федякин",{"_index":4133,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["фенвик",{"_index":6249,"title":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}}}],["фз",{"_index":11810,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["фи­то­са­ни­тар­н",{"_index":4707,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фибоначч",{"_index":2246,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["фигурн",{"_index":2129,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["физ",{"_index":11742,"title":{},"content":{"/p/publications":{}},"description":{}}],["физиократ",{"_index":11555,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["физическ",{"_index":3984,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/p/privacy_ru":{}},"description":{}}],["фиксац",{"_index":7409,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["фиксир",{"_index":7408,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["фиксирова",{"_index":4410,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day23":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["фиксиру",{"_index":5755,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["филиал",{"_index":10075,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["фильтр",{"_index":1256,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["фильтрац",{"_index":2143,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{},"/posts/python-snippets/":{}},"description":{}}],["финальн",{"_index":1498,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["финансирован",{"_index":4225,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["финансов",{"_index":4219,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["фирм",{"_index":4402,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["фискальн",{"_index":4567,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фитосанитарн",{"_index":4624,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фишер",{"_index":5624,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["флаг",{"_index":100,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["флажок",{"_index":1513,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["флешк",{"_index":9739,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["фокус",{"_index":9203,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["фокусир",{"_index":6877,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["фон",{"_index":8644,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["фонд",{"_index":4382,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["фондов",{"_index":4387,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["фонов",{"_index":8410,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/posts/docker-commands/":{}},"description":{}}],["фор­ми­рова­н",{"_index":4658,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["форвард",{"_index":4431,"title":{"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/economics/diff-forward-contracts-futures":{}}}],["форвардн",{"_index":4407,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["форк",{"_index":6895,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["форкн",{"_index":8681,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["форкнут",{"_index":8649,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["форм",{"_index":55,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day09":{},"/posts/interactivebrokers-deposit/":{},"/p/репатриация":{}},"description":{}}],["формальн",{"_index":4728,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["формат",{"_index":2,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["форматирова",{"_index":2880,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{}},"description":{}}],["форматирован",{"_index":2832,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["форматировщик",{"_index":2801,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["формир",{"_index":6095,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["формирова",{"_index":10108,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["формирован",{"_index":4159,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["формул",{"_index":4818,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["форум",{"_index":4756,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фот",{"_index":922,"title":{"/tracks/webrtc/practice/practice-take-photo":{},"/photos/_index":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-overview":{}},"description":{}}],["фотограф",{"_index":936,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["фотосъемк",{"_index":1027,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["фрагмент",{"_index":232,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["фраз",{"_index":6692,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day18":{},"/posts/markdown-syntax/":{}},"description":{}}],["франк",{"_index":4397,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["франц",{"_index":4489,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["франчайзинг",{"_index":4878,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["франшизинг",{"_index":4877,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["фреймворк",{"_index":544,"title":{"/tracks/python-101/frameworks/_index":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["фронт",{"_index":6626,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["фронтенд",{"_index":6306,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["фрукт",{"_index":8612,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["фсфр",{"_index":11797,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["фундамент",{"_index":8552,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["фундаментальн",{"_index":8414,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["функц",{"_index":34,"title":{"/tracks/python-101/basis/functions":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["функциона",{"_index":11246,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["функциональн",{"_index":1528,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["функционир",{"_index":1739,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["функционирова",{"_index":8105,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["функционирован",{"_index":11518,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["фунт",{"_index":4394,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["фут",{"_index":7979,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["фьючерс",{"_index":4376,"title":{"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/economics/diff-forward-contracts-futures":{}}}],["фьючерсн",{"_index":11570,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["х",{"_index":4699,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{}},"description":{}}],["хаб",{"_index":8581,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["хайф",{"_index":11635,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["хакер",{"_index":8478,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["хакерск",{"_index":7257,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["хаос",{"_index":1264,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["характер",{"_index":4186,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["характериз",{"_index":4795,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["характеристик",{"_index":2387,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["характерн",{"_index":11531,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["хват",{"_index":6868,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["хвата",{"_index":7284,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["хвостов",{"_index":5852,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["хедж",{"_index":4400,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["хеджирован",{"_index":4156,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["хекшер",{"_index":4076,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["хендбук",{"_index":1617,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["хеш",{"_index":5612,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{},"/posts/python-snippets/":{}},"description":{}}],["хлебн",{"_index":6340,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["ход",{"_index":1479,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["хозяйств",{"_index":4794,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["хозяйствен",{"_index":4887,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["холст",{"_index":7198,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["хорош",{"_index":5974,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1448/":{}}}],["хост",{"_index":1292,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["хостинг",{"_index":8689,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["хостингов",{"_index":7118,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["хостируем",{"_index":7120,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["хостов",{"_index":8601,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["хот",{"_index":343,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["хотел",{"_index":3426,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["хоч",{"_index":3511,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["хочет",{"_index":1638,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["хран",{"_index":1792,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["хранен",{"_index":1858,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/posts/hugo-add-image-zoomin/":{},"/p/privacy_ru":{}},"description":{}}],["хранилищ",{"_index":6305,"title":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{}},"description":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{}}}],["хранищил",{"_index":9044,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["храня",{"_index":1794,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["хронологическ",{"_index":3961,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["худш",{"_index":6195,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["хуж",{"_index":7785,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["хук",{"_index":11293,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["хулиганств",{"_index":11762,"title":{},"content":{"/p/publications":{}},"description":{}}],["хэш",{"_index":5521,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["хэшируем",{"_index":1866,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["цвет",{"_index":6083,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["цветов",{"_index":8730,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["цветок",{"_index":6088,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["це­н",{"_index":4597,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["цел",{"_index":935,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["целев",{"_index":2185,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["целик",{"_index":3802,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["целостн",{"_index":9546,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["целочислен",{"_index":1844,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/python-snippets/":{}},"description":{}}],["цен",{"_index":4079,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["ценност",{"_index":6657,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ценообразован",{"_index":8692,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["центр",{"_index":4295,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{},"/posts/markdown-syntax/":{},"/p/репатриация":{}},"description":{}}],["централизова",{"_index":4398,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["центральн",{"_index":4399,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["цеп",{"_index":6854,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["цепочк",{"_index":7422,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/posts/python-snippets/":{}},"description":{}}],["цикл",{"_index":1979,"title":{"/tracks/python-101/basis/loops":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{"/tracks/90daysofdevops/_index":{}}}],["цитат",{"_index":4001,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{},"/posts/markdown-syntax/":{}},"description":{}}],["цитир",{"_index":11126,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["цитирован",{"_index":3937,"title":{},"content":{"/tracks/disser/_index":{},"/posts/markdown-syntax/":{},"/p/publications":{}},"description":{}}],["цитируем",{"_index":4006,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["цифр",{"_index":3392,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["цифров",{"_index":2597,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["цнестабильн",{"_index":4513,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["цп",{"_index":9205,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ч",{"_index":4691,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["час",{"_index":2873,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/diploma/":{}},"description":{}}],["часов",{"_index":9706,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["част",{"_index":393,"title":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{}}],["частичн",{"_index":1921,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["частн",{"_index":2035,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["частност",{"_index":4285,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["частные_сетев",{"_index":7748,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["частот",{"_index":5613,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day89":{}},"description":{}}],["чат",{"_index":1452,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/p/репатриация":{}},"description":{}}],["че",{"_index":5492,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["чек",{"_index":11673,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["чеклист",{"_index":11637,"title":{"/p/репатриация":{}},"content":{},"description":{}}],["челендж",{"_index":10018,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["человек",{"_index":5778,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/p/publications":{}},"description":{}}],["человекочита",{"_index":10039,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["человеческ",{"_index":7927,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day16":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["чембольш",{"_index":4823,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["черед",{"_index":6131,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["чередова",{"_index":6133,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["черепах",{"_index":5735,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["черн",{"_index":11354,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["чертеж",{"_index":6465,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["чест",{"_index":7104,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["честн",{"_index":4755,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["четверт",{"_index":3352,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["четк",{"_index":2071,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["четн",{"_index":3248,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["четырех",{"_index":4317,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day77":{},"/posts/python-snippets/":{}},"description":{}}],["четырёх",{"_index":5751,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["чисел",{"_index":1842,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["числ",{"_index":793,"title":{"/tracks/python-101/basis/numbers":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["числа(complex",{"_index":1839,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["число[строк",{"_index":5590,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["числов",{"_index":1833,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["чист",{"_index":1437,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["чит",{"_index":8544,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["чита",{"_index":2284,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["читабельн",{"_index":8830,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["читаем",{"_index":3694,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["чищ",{"_index":6645,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["член",{"_index":2369,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["чрезвычайн",{"_index":4335,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["чрезмерн",{"_index":8350,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["чтен",{"_index":1648,"title":{"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["чтопозвол",{"_index":11201,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["чувств",{"_index":8763,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["чувствительн",{"_index":8004,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/posts/python-snippets/":{}},"description":{}}],["чуж",{"_index":4962,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["чч:мм:сс",{"_index":2830,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["чья",{"_index":5501,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["чётных",{"_index":5682,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["шаблон",{"_index":3145,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["шаг",{"_index":925,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["шанс",{"_index":9456,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["швейцарск",{"_index":4396,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["шек",{"_index":11670,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["шест",{"_index":11099,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["шестнадцатеричн",{"_index":1846,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["шир",{"_index":7425,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["ширин",{"_index":720,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["широк",{"_index":3150,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["широт",{"_index":9272,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["ширяев",{"_index":11724,"title":{},"content":{"/p/publications":{}},"description":{}}],["шифр",{"_index":4016,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["шифрова",{"_index":6711,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["шифрован",{"_index":1608,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["шкаф",{"_index":9291,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["школ",{"_index":11509,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["шла",{"_index":8643,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["шли",{"_index":5680,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["шло",{"_index":4661,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["шлюз",{"_index":1104,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["шо",{"_index":9483,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["шорткод",{"_index":11149,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["шотландск",{"_index":4945,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["шпаргалк",{"_index":8307,"title":{"/tracks/90daysofdevops/day37":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["штурва",{"_index":8207,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["шутк",{"_index":10950,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["щелка",{"_index":9788,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["щелкн",{"_index":8882,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["щелкнул",{"_index":9324,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["щелкнут",{"_index":9271,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["э",{"_index":6790,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["эволюц",{"_index":4160,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эк",{"_index":4819,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эквивалент",{"_index":10696,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["эквивалентн",{"_index":9232,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{}},"description":{}}],["экзам",{"_index":4033,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/p/privacy_ru":{}},"description":{"/apps/cloud-exam-quizz/":{}}}],["экзамен",{"_index":4057,"title":{},"content":{},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{}}}],["экземпляр",{"_index":1887,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/posts/python-snippets/":{}},"description":{}}],["эконом",{"_index":2279,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["экономик",{"_index":3880,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["экономист",{"_index":4946,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["экономическ",{"_index":4063,"title":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["экосист",{"_index":8364,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["экосистем",{"_index":8620,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["экра",{"_index":757,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["экран",{"_index":6723,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["экс­порт",{"_index":4593,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["экскурс",{"_index":8219,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/posts/ruGPT-3-notes":{}},"description":{}}],["экспанс",{"_index":4815,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эксперимент",{"_index":117,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["экспериментальн",{"_index":8887,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["экспериментирова",{"_index":8723,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["эксперт",{"_index":10175,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["эксплуатац",{"_index":6873,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["эксплуатирова",{"_index":10300,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["экспонент",{"_index":1850,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["экспоненциальн",{"_index":7500,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["экспорт",{"_index":4439,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["экспорт+импорт",{"_index":4822,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["экспортер",{"_index":4095,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["экспортир",{"_index":5001,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["экспортирова",{"_index":6633,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["экспортируем",{"_index":4826,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["экспортн",{"_index":4711,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["экш",{"_index":11073,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["экшен",{"_index":11071,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["экшн",{"_index":11031,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["эл",{"_index":8891,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["эластичн",{"_index":9186,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["электрон",{"_index":2716,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["электроник",{"_index":4833,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["элемент",{"_index":745,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["элемента(index=1",{"_index":5834,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["эмбарг",{"_index":4744,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["эмитент",{"_index":4179,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["эмулируем",{"_index":9322,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["энд",{"_index":7098,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["энергетик",{"_index":4841,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["энергоносител",{"_index":4824,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["энергоресурс",{"_index":4844,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эпох",{"_index":2875,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["эталон",{"_index":9578,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["этап",{"_index":31,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["эфемерн",{"_index":8400,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["эфир",{"_index":761,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["эффект",{"_index":2164,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["эффектив",{"_index":6001,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["эффективн",{"_index":555,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["эх",{"_index":9809,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["эхоподавлен",{"_index":719,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["ю",{"_index":5376,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["юн",{"_index":1986,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["юнктад/unctad",{"_index":4520,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["юсмк",{"_index":4206,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["яблок",{"_index":8610,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["явлен",{"_index":11498,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["явля",{"_index":422,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["явн",{"_index":1820,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["ядр",{"_index":2053,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["язык",{"_index":1618,"title":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day07":{}}}],["ямайск",{"_index":4167,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["январ",{"_index":152,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day90":{}},"description":{}}],["яндекс",{"_index":3897,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["япон",{"_index":4471,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["японск",{"_index":4391,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["ярк",{"_index":1719,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["ярлык",{"_index":1503,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["ясн",{"_index":1659,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["ячейк",{"_index":5835,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/posts/markdown-syntax/":{}},"description":{}}],["яызк",{"_index":4038,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}]],"pipeline":["stemmer-ru","stemmer"]},"en":{"version":"2.3.9","fields":["title","content","description"],"fieldVectors":[["title//tracks/_index",[0,5.999]],["content//tracks/_index",[1,1.709,2,4.909,3,3.977]],["description//tracks/_index",[]],["title//tracks/disser/utils/text_2_short",[4,2.79,5,2.481,6,4.005]],["content//tracks/disser/utils/text_2_short",[7,1.349]],["description//tracks/disser/utils/text_2_short",[4,2.966,5,2.637,6,4.257,8,1.741]],["title//tracks/aws-certified-developer-associate/questions",[9,2.743]],["content//tracks/aws-certified-developer-associate/questions",[1,0.653,3,1.23,4,0.548,7,1.4,8,0.321,9,0.402,10,0.78,11,0.849,12,0.56,13,1.559,14,0.617,15,1.194,16,0.906,17,0.402,18,0.948,19,0.818,20,1.927,21,3.16,22,3.993,23,1.938,24,3.348,25,1.71,26,2.103,27,2.547,28,1.001,29,1.312,30,0.61,31,2.322,32,2.205,33,0.505,34,0.696,35,1.382,36,0.948,37,1.921,38,2.195,39,1.421,40,1.874,41,1.244,42,1.468,43,1.401,44,2.147,45,2.846,46,1.734,47,3.49,48,2.378,49,2.675,50,0.948,51,0.713,52,0.948,53,1.983,54,1.131,55,0.548,56,1.943,57,2.187,58,3.108,59,2.392,60,0.878,61,1.23,62,1.698,63,2.846,64,0.938,65,1.09,66,1.127,67,0.786,68,1.858,69,2.027,70,0.577,71,0.822,72,0.845,73,0.948,74,0.752,75,1.069,76,0.375,77,0.948,78,0.948,79,0.634,80,4.22,81,1.024,82,2.224,83,0.805,84,1.16,85,0.98,86,1.601,87,0.515,88,1.519,89,2.433,90,2.406,91,0.496,92,1.482,93,1.374,94,2.317,95,0.98,96,1.277,97,1.559,98,1.231,99,0.948,100,3.108,101,0.586,102,0.948,103,0.948,104,3.919,105,0.948,106,1.16,107,0.948,108,1.963,109,0.696,110,1.482,111,0.879,112,0.827,113,2.539,114,1.062,115,0.447,116,3.435,117,3.718,118,2.742,119,0.752,120,1.423,121,0.396,122,1.973,123,2.859,124,3.441,125,2.079,126,0.673,127,1.511,128,1.986,129,0.924,130,3.255,131,0.601,132,1.858,133,1.419,134,0.515,135,1.519,136,0.948,137,0.744,138,0.752,139,1.702,140,2.234,141,1.986,142,2.762,143,3.121,144,1.128,145,2.834,146,2.076,147,3.025,148,0.786,149,0.924,150,1.734,151,1.734,152,0.948,153,1.188,154,1.363,155,0.879,156,2.832,157,1.452,158,0.786,159,1.293,160,0.455,161,1.209,162,0.879,163,1.776,164,0.948,165,1.381,166,1.053,167,1.899,168,0.907,169,2.186,170,1.168,171,0.852,172,2.186,173,1.273,174,1.175,175,2.219,176,1.16,177,0.786,178,1.504,179,2.626,180,1.831,181,0.634,182,0.973,183,0.496,184,1.874,185,0.89,186,0.845,187,0.831,188,1.213,189,1.301,190,0.879,191,0.653,192,0.634,193,0.879,194,1.053,195,2.039,196,1.32,197,3.583,198,2.583,199,2.668,200,0.879,201,2.691,202,2.583,203,1.188,204,2.105,205,0.696,206,2.353,207,0.346,208,1.482,209,2.265,210,1.265,211,2.022,212,1.194,213,1.548,214,0.725,215,1.414,216,1.327,217,2.147,218,2.424,219,2.133,220,1.053,221,1.125,222,2.91,223,0.945,224,2.304,225,1.559,226,0.617,227,3.044,228,2.687,229,0.792,230,0.722,231,1.016,232,0.71,233,1.831,234,1.71,235,2.456,236,2.065,237,1.877,238,0.98,239,1.008,240,2.604,241,2.396,242,1.619,243,0.601,244,1.072,245,1.101,246,1.168,247,0.756,248,0.617,249,2.065,250,1.374,251,1.98,252,2.703,253,2.103,254,0.722,255,0.536,256,1.389,257,2.734,258,1.759,259,2.197,260,0.617,261,2.396,262,3.045,263,0.47,264,2.307,265,0.786,266,0.786,267,1.437,268,2.039,269,1.468,270,0.696,271,1.273,272,3.385,273,0.673,274,0.653,275,0.634,276,1.401,277,0.634,278,1.251,279,1.078,280,2.219,281,0.447,282,0.601,283,2.205,284,0.548,285,1.024,286,1.065,287,0.447,288,0.752,289,0.547,290,0.634,291,1.831,292,1.559,293,2.161,294,0.548,295,1.692,296,1.053,297,1.053,298,1.128,299,1.437,300,1.607,301,0.827,302,3.749,303,3.07,304,0.673,305,1.128,306,0.478,307,0.923,308,2.817,309,1.13,310,1.447,311,0.515,312,2.105,313,1.231,314,1.23,315,2.083,316,2.628,317,2.255,318,2.396,319,1.759,320,1.23,321,0.653,322,0.673,323,1.374,324,2.419,325,2.583,326,1.437,327,0.757,328,0.845,329,1.194,330,0.478,331,0.879,332,1.194,333,0.696,334,1.047,335,3.868,336,0.879,337,0.696,338,3.749,339,1.194,340,0.907,341,0.567,342,0.827,343,3.593,344,1.702,345,0.396,346,1.231,347,1.627,348,1.437,349,1.374,350,1.231,351,2.112,352,1.024,353,1.312,354,1.513,355,0.961,356,0.907,357,1.513,358,1.926,359,1.734,360,2.223,361,2.13,362,0.634,363,0.525,364,0.752,365,0.792,366,2.083,367,1.607,368,1.072,369,1.14,370,0.786,371,2.103,372,2.265,373,2.84,374,3.199,375,0.961,376,0.827,377,0.786,378,0.447,379,0.879,380,2.103,381,0.653,382,0.553,383,1.468,384,1.23,385,1.001,386,0.786,387,1.929,388,3.369,389,1.98,390,1.462,391,3.568,392,2.583,393,1.382,394,0.36,395,1.024,396,1.401,397,0.56,398,1.047,399,1.608,400,1.576,401,1.168,402,1.607,403,0.948,404,0.462,405,0.948,406,1.001,407,1.153,408,2.039,409,1.825,410,1.414,411,0.948,412,1.506,413,0.47,414,1.198,415,1.649,416,1.273,417,1.053,418,0.948,419,1.099,420,2.272,421,1.513,422,1.986,423,1.748,424,1.374,425,1.171,426,0.879,427,0.536,428,0.948,429,0.43,430,1.607,431,3.097,432,0.827,433,0.342,434,0.875,435,1.231,436,0.696,437,0.752,438,1.053,439,1.874,440,0.786,441,0.667,442,1.877,443,0.879,444,1.001,445,0.317,446,3.523,447,0.98,448,0.696,449,0.948,450,1.68,451,0.879,452,0.487,453,1.482,454,2.45,455,1.643,456,0.786,457,0.879,458,0.685,459,0.907,460,0.505,461,1.771,462,0.534,463,0.722,464,2.765,465,2.147,466,2.456,467,0.786,468,0.879,469,1.053,470,1.053,471,1.273,472,1.649,473,0.427,474,0.525,475,0.752,476,1.047,477,0.536,478,1.288,479,0.696,480,2.352,481,2.396,482,1.559,483,0.948,484,1.443,485,0.879,486,0.56,487,0.414,488,3.018,489,0.673,490,0.948,491,0.879,492,0.948,493,0.786,494,2.583,495,0.261,496,1.128,497,0.948,498,1.231,499,0.948,500,0.586,501,0.56,502,1.374,503,0.786,504,0.752,505,1.374,506,0.948,507,0.948,508,1.363,509,0.487,510,2.591,511,0.44,512,0.478,513,2.591,514,3.749,515,0.827,516,0.722,517,1.986,518,1.607,519,1.437,520,1.277,521,0.696,522,1.734,523,1.607,524,0.86,525,0.827,526,0.722,527,2.567,528,0.603,529,2.083,530,0.462,531,0.752,532,1.641,533,1.614,534,1.18,535,1.327,536,0.722,537,0.47,538,1.649,539,1.702,540,0.786,541,1.024,542,1.734,543,0.948,544,1.513,545,0.722,546,1.734,547,1.734,548,2.396,549,0.948,550,0.948,551,0.948,552,0.879,553,0.786,554,0.673,555,0.948,556,0.752,557,0.455,558,0.827,559,0.948,560,0.948,561,1.513,562,3.45,563,0.42,564,0.722,565,0.365,566,0.525,567,1.559,568,0.948,569,2.255,570,0.696,571,0.948,572,0.948,573,1.734,574,1.734,575,0.786,576,0.96,577,2.662,578,0.525,579,0.827,580,0.462,581,0.948,582,0.948,583,0.433,584,1.32,585,0.827,586,1.607,587,0.948,588,0.696,589,0.948,590,2.09,591,0.091,592,1.513,593,0.752,594,0.879,595,0.786,596,2.509,597,1.001,598,0.56,599,4.123,600,0.617,601,1.062,602,4.357,603,2.221,604,2.09,605,0.924,606,0.948,607,0.548,608,0.786,609,2.09,610,3.212,611,1.494,612,1.231,613,1.419,614,0.752,615,0.879,616,0.827,617,1.734,618,0.948,619,0.827,620,0.948,621,1.32,622,0.601,623,1.437,624,1.759,625,0.325,626,0.375,627,0.879,628,0.653,629,1.926,630,0.786,631,0.505,632,0.525,633,0.586,634,1.513,635,0.617,636,0.722,637,0.924,638,1.053,639,1.053,640,0.98,641,0.408,642,1.112,643,1.024,644,1.702,645,0.948,646,0.948,647,1.374,648,0.879,649,0.617,650,0.827,651,0.879,652,1.414,653,0.586,654,0.786,655,0.38,656,0.573,657,0.827,658,0.752,659,0.673,660,1.374,661,0.948,662,1.734,663,1.513,664,1.734,665,1.986,666,1.16,667,0.786,668,0.752,669,0.879,670,0.653,671,0.466,672,0.879,673,0.548,674,1.607,675,0.948,676,0.948,677,0.948,678,0.879,679,0.601,680,0.948,681,0.948,682,0.948,683,0.948,684,0.961,685,1.734,686,0.948,687,1.607,688,1.607,689,0.948,690,1.047,691,1.607,692,0.879,693,0.786,694,1.355,695,0.948,696,0.65,697,0.879,698,1.578,699,0.924,700,0.752,701,2.951,702,0.515,703,3.198,704,1.053,705,1.053,706,0.879,707,0.586,708,1.053,709,0.786,710,0.948,711,0.722,712,0.948,713,0.722,714,1.047,715,0.948,716,0.786,717,0.948,718,0.948,719,0.47,720,0.496,721,0.653,722,0.879,723,0.948,724,0.948,725,1.053,726,1.053,727,0.757,728,0.98,729,0.673,730,0.827,731,0.786,732,0.525,733,0.696,734,0.651,735,0.879,736,0.548,737,0.505,738,1.32,739,2.255,740,0.98,741,0.948,742,0.696,743,1.374,744,0.948,745,0.722,746,0.548,747,0.786,748,0.673,749,1.001,750,0.525,751,1.053,752,0.752,753,1.734,754,0.891,755,0.496,756,1.16,757,1.734,758,0.653,759,0.601,760,1.053,761,2.221,762,0.56,763,1.374,764,0.827,765,0.752,766,0.696,767,1.194,768,1.053,769,1.053,770,1.519,771,1.927,772,1.641,773,1.194,774,0.722,775,2.454,776,1.231,777,0.414,778,0.673,779,0.601,780,0.673,781,0.617,782,0.948,783,1.332,784,0.827,785,0.586,786,0.879,787,0.948,788,1.231,789,1.513,790,0.948,791,0.586,792,0.752,793,2.09,794,0.752,795,1.253,796,0.601,797,0.525,798,0.948,799,0.948,800,0.722,801,1.053,802,0.653,803,2.961,804,0.875,805,1.053,806,0.879,807,0.827,808,3.832,809,0.845,810,0.786,811,0.137,812,1.053,813,1.053,814,0.586,815,1.32,816,0.653,817,0.47,818,1.053,819,0.786,820,0.478,821,0.879,822,0.696,823,0.505,824,0.786,825,0.879,826,0.617,827,0.722,828,0.948,829,0.541,830,1.437,831,0.536,832,0.961,833,1.053,834,1.053,835,1.053,836,1.053,837,1.053,838,1.053,839,1.231,840,1.053,841,0.948,842,1.513,843,0.879,844,2.09,845,0.948,846,0.752]],["description//tracks/aws-certified-developer-associate/questions",[9,1.86,15,3.021,21,1.645,32,1.045,847,3.637,848,3.637]],["title//tracks/aws-certified-developer-associate/_index",[21,1.109,32,0.705,591,0.078,847,2.452,849,4.58,850,2.959,851,2.959]],["content//tracks/aws-certified-developer-associate/_index",[0,4.126,1,1.208,7,0.772,8,0.967,9,2.843,11,0.702,14,4.624,15,5.96,16,0.534,17,3.013,21,3.212,22,2.285,23,2.15,24,2.895,27,1.556,28,1.647,29,1.972,31,2.683,32,2.341,35,1.143,37,1.414,39,2.548,47,1.914,48,1.251,54,0.442,57,1.626,58,3.305,60,0.546,62,1.107,65,0.9,66,0.932,72,2.668,75,0.717,83,3.113,84,1.907,85,1.612,90,1.042,94,1.227,95,1.612,100,2.688,101,2.752,104,3.389,106,2.976,108,1.574,113,1.58,115,1.345,116,2.548,117,2.466,121,2.584,123,3.689,124,1.907,127,1.112,135,1.808,143,3.268,145,4.147,146,2.662,157,1.325,165,0.9,169,1.736,172,1.736,173,3.268,178,1.371,179,2.169,182,1.159,188,2.175,199,3.064,203,1.414,206,2.285,207,1.042,223,1.747,225,2.895,226,0.599,227,1.345,228,2.624,236,1.519,239,1.157,240,1.626,242,1.192,245,1.42,246,1.39,251,4.752,253,2.025,256,0.932,259,4.004,260,2.895,261,2.752,262,1.549,270,2.094,276,2.224,278,1.61,280,2.349,283,1.083,294,2.57,302,2.976,303,2.002,305,1.855,307,0.889,308,1.943,309,1.345,311,1.549,312,2.417,324,3.325,334,1.722,341,0.932,346,2.025,351,0.869,358,1.855,362,1.907,369,1.309,370,2.364,373,2.106,375,3.032,381,0.54,382,0.91,384,1.464,386,3.689,387,1.668,388,3.527,389,2.976,391,2.517,397,1.683,401,1.39,404,1.39,414,0.991,416,3.268,425,2.651,431,1.69,434,1.438,444,2.57,458,1.759,461,2.285,463,3.389,464,2.895,466,2.821,471,2.094,473,1.283,475,2.26,478,1.886,480,1.943,484,1.39,487,1.943,488,2.025,495,0.784,503,4.537,504,4.338,510,3.66,538,3.768,544,2.488,563,1.263,575,2.364,583,1.303,591,0.075,598,1.683,599,3.161,604,2.488,619,2.488,622,2.821,637,2.371,641,2.354,644,2.025,649,1.855,653,1.763,657,3.883,658,2.26,679,4.505,728,2.517,745,2.172,747,2.364,772,3.032,773,1.963,777,1.245,795,2.327,847,5.559,848,4.537,849,9.443,850,6.707,851,9.337,852,2.644,853,2.364,854,1.414,855,2.025,856,2.26,857,3.168,858,4.945,859,2.025,860,1.227,861,0.657,862,2.976,863,1.907,864,1.808,865,1.612,866,3.168,867,4.945,868,2.094,869,3.887,870,2.451,871,2.852,872,1.683,873,1.972,874,3.168,875,2.488,876,3.168,877,3.168,878,3.168,879,2.644,880,3.168,881,3.168,882,4.126,883,2.976,884,2.094,885,2.025,886,2.644,887,1.175,888,2.371,889,1.808,890,1.647,891,2.094,892,2.852,893,2.852,894,1.763,895,2.852,896,2.852,897,4.537,898,5.074,899,2.976,900,3.168,901,2.895,902,3.883,903,3.268,904,3.389,905,3.168,906,2.852,907,2.172,908,3.168,909,3.168,910,4.775,911,3.689,912,2.976,913,3.689,914,3.268,915,4.019,916,3.168,917,3.168,918,5.126,919,2.644,920,4.019,921,3.168,922,2.852,923,3.883,924,1.175,925,1.907,926,1.612,927,2.852,928,2.172,929,0.643,930,4.945,931,2.57,932,2.364,933,6.185,934,1.159,935,3.168,936,3.168,937,2.26,938,2.364,939,2.488,940,2.094,941,2.852,942,1.069,943,2.172,944,3.168,945,3.168,946,3.689,947,2.852,948,1.438,949,4.945,950,1.519,951,2.364,952,4.126,953,3.689,954,3.168,955,3.168,956,3.168,957,1.855,958,2.094,959,3.168,960,3.168,961,2.025,962,3.527,963,3.168,964,4.126,965,2.688,966,4.945,967,3.168,968,2.852,969,2.852,970,2.644,971,2.852,972,4.945,973,1.722,974,4.338,975,3.305,976,2.895,977,2.172,978,2.364,979,2.852,980,4.945,981,1.763,982,2.488,983,1.963,984,2.025,985,3.168,986,1.763,987,3.168,988,2.488,989,1.722,990,0.473]],["description//tracks/aws-certified-developer-associate/_index",[14,2.661,15,2.816,21,1.533,32,0.974,66,1.337,538,2.816,847,3.39]],["title//tracks/aws-certified-developer-associate/xray/",[387,2.074,388,4.385]],["content//tracks/aws-certified-developer-associate/xray/",[1,1.112,3,2.588,7,0.582,8,1.137,9,1.422,11,0.825,12,1.98,16,0.878,17,1.422,19,1.582,21,2.523,22,3.109,23,1.672,27,2.517,31,2.522,32,2.126,35,1.344,39,1.382,40,2.737,43,2.46,44,3.729,47,2.604,48,0.943,49,1.034,51,1.213,53,1.363,54,0.52,56,1.422,57,1.225,60,0.965,62,0.835,64,1.37,65,1.019,70,0.808,75,1.693,76,2.393,82,2.074,89,1.992,114,2.233,116,1.382,122,1.557,125,1.844,128,2.012,129,2.685,132,1.608,134,1.822,137,0.541,142,1.818,145,2.074,147,1.608,153,2.499,156,1.914,169,2.814,171,0.965,172,2.956,174,1.213,175,2.765,178,2.492,179,1.635,183,3.166,188,2.367,189,1.822,204,1.822,207,1.225,208,2.074,209,3.226,210,1.065,215,1.98,216,1.858,218,1.509,221,2.299,223,1.071,224,2.59,226,0.452,229,1.532,233,2.074,239,1.31,245,1.071,247,1.058,251,3.37,259,3.227,260,3.279,262,1.822,269,3.337,272,2.026,278,1.98,279,1.509,281,1.582,285,2.975,286,0.922,289,1.59,293,4.295,302,4.501,312,2.737,337,2.463,338,2.243,340,1.754,351,1.022,354,2.926,361,2.2,366,2.026,379,6.24,381,1.147,387,3.59,388,7.566,404,1.635,414,1.751,425,1.326,431,1.274,433,2.428,439,1.822,441,1.291,447,2.85,455,1.071,458,1.326,477,2.85,478,2.029,482,2.182,484,2.456,486,1.98,487,2.2,488,2.382,494,5.873,496,4.379,512,2.542,520,1.787,524,2.499,534,1.535,535,1.858,569,5.126,583,1.532,584,2.554,591,0.207,628,2.309,637,3.586,643,1.98,644,2.382,647,2.659,655,2.891,656,2.026,671,0.902,684,1.858,690,2.026,699,1.787,701,2.554,707,2.074,737,1.787,739,2.554,742,2.463,743,3.995,744,3.355,745,2.554,746,1.937,747,2.78,748,3.579,749,3.496,754,1.01,783,2.267,789,2.926,793,8.263,795,4.326,796,4.574,797,1.858,809,3.281,817,2.499,841,3.355,842,6.295,861,0.773,865,3.423,869,2.382,870,1.071,942,1.889,943,5.987,991,4.446,992,1.635,993,3.727,994,3.579,995,3.727,996,2.309,997,2.309,998,7.455,999,1.822,1000,3.37,1001,3.727,1002,4.299,1003,1.822,1004,1.98,1005,1.897,1006,9.192,1007,5.04,1008,4.672,1009,7.498,1010,2.53,1011,2.382,1012,1.939,1013,5.018,1014,3.727,1015,1.608,1016,3.727,1017,1.858,1018,5.04,1019,3.727,1020,3.47,1021,3.11,1022,2.554,1023,4.672,1024,1.382,1025,5.599,1026,3.727,1027,3.727,1028,3.727,1029,3.355,1030,2.026,1031,3.355,1032,2.659,1033,3.496,1034,1.897,1035,5.599,1036,3.995,1037,2.126,1038,1.402,1039,1.787,1040,5.495,1041,2.659,1042,3.355,1043,2.659,1044,3.727,1045,3.727,1046,3.727,1047,3.355,1048,1.937,1049,1.582,1050,0.912,1051,3.727,1052,3.727,1053,3.727,1054,1.841,1055,1.692,1056,1.937,1057,3.727,1058,2.126,1059,3.727,1060,3.727,1061,3.727]],["description//tracks/aws-certified-developer-associate/xray/",[27,1.346,447,2.676,484,2.307,496,3.079,991,3.475]],["title//tracks/aws-certified-developer-associate/step-functions/",[48,1.555,65,1.119]],["content//tracks/aws-certified-developer-associate/step-functions/",[7,0.903,9,2.208,16,0.903,17,2.208,19,2.457,21,2.888,27,2.191,31,2.596,32,2.183,37,2.582,47,3.665,48,2.713,49,1.605,56,2.917,65,1.92,75,1.938,82,2.525,86,2.418,87,2.829,89,2.059,90,1.903,97,3.389,113,2.886,125,1.587,128,1.296,129,2.775,130,6.669,132,2.497,142,1.879,165,1.054,171,1.498,174,1.657,201,2.724,214,3.219,219,4.254,221,1.978,228,2.497,244,3.221,250,4.129,252,2.886,263,2.582,280,2.293,281,3.245,283,2.613,307,1.624,308,2.274,369,1.533,381,0.987,383,2.582,394,1.978,396,2.795,401,2.539,425,2.059,447,2.946,448,3.825,455,2.849,472,3.586,524,2.582,528,1.31,534,1.587,540,4.318,575,5.703,591,0.137,610,5.703,621,3.967,642,2.418,671,1.4,694,2.946,701,3.967,727,3.003,728,3.89,729,3.699,730,4.545,731,4.318,732,2.886,733,3.825,734,1.416,735,6.378,736,3.008,737,2.775,738,3.967,739,6.488,740,4.356,741,5.21,788,3.699,797,2.886,802,3.586,853,4.318,861,1.201,870,1.663,926,2.946,931,3.008,942,1.953,992,3.755,1017,3.812,1033,3.008,1048,3.008,1049,2.457,1054,2.513,1055,2.628,1056,3.008,1062,3.973,1063,4.129,1064,7.644,1065,2.886,1066,5.788,1067,5.788,1068,3.967,1069,5.788,1070,2.829,1071,4.129,1072,5.788,1073,5.788,1074,4.829,1075,4.129,1076,7.644,1077,4.545,1078,2.005,1079,5.21,1080,4.545,1081,3.302,1082,4.318,1083,5.788,1084,3.967,1085,5.21,1086,2.829,1087,3.008,1088,4.129,1089,2.775]],["description//tracks/aws-certified-developer-associate/step-functions/",[23,1.239,48,1.579,65,1.136]],["title//tracks/aws-certified-developer-associate/sqs/_index",[31,1.405,121,2.019,899,3.231]],["content//tracks/aws-certified-developer-associate/sqs/_index",[7,1.092,9,1.936,16,0.822,17,1.936,19,2.154,23,1.798,27,1.791,31,2.45,32,1.716,33,2.434,41,2.271,49,1.408,51,1.1,57,1.669,62,1.137,64,1.242,76,3.329,82,1.408,84,4.211,90,1.669,108,1.314,113,3.992,128,1.137,142,2.938,146,1.811,159,2.749,161,2.304,165,0.924,172,2.81,178,1.408,182,1.856,201,5.02,203,2.265,204,3.914,206,3.233,209,2.434,210,1.522,213,2.389,217,3.489,218,2.833,219,2.825,224,1.758,232,0.837,233,2.825,240,2.3,246,2.227,247,1.986,253,3.244,263,3.122,268,3.145,280,2.145,282,2.896,286,1.256,311,2.481,313,3.244,324,2.265,332,3.145,357,6.287,380,5.516,383,3.122,389,6.039,414,2.503,422,3.786,425,2.489,429,1.129,441,1.758,444,2.638,447,3.561,455,2.688,460,2.434,461,2.346,464,2.972,465,2.531,466,5.338,496,2.972,514,2.346,526,3.479,534,2.195,545,3.479,588,3.355,591,0.204,605,4.598,640,2.583,653,3.894,671,1.693,673,3.637,684,2.531,701,3.479,706,5.837,719,2.265,720,2.389,721,3.145,722,4.235,723,4.569,724,4.569,738,3.479,740,3.561,754,1.375,767,4.335,784,7.347,815,6.204,831,2.583,832,2.531,861,1.053,865,2.583,870,1.458,883,4.211,887,1.882,899,6.366,942,1.712,1020,3.145,1030,2.759,1038,3.404,1047,4.569,1054,2.3,1055,2.304,1056,2.638,1058,2.896,1068,4.795,1090,4.074,1091,3.2,1092,5.075,1093,5.837,1094,3.244,1095,3.355,1096,6.298,1097,5.075,1098,4.569,1099,6.437,1100,5.075,1101,3.786,1102,5.075,1103,4.235,1104,5.075,1105,3.786,1106,5.075,1107,4.569,1108,4.569,1109,3.621,1110,4.569,1111,7.347,1112,3.561,1113,4.795,1114,1.533,1115,4.961,1116,3.293,1117,5.075,1118,6.996,1119,2.896,1120,5.075,1121,5.075,1122,3.986,1123,3.986,1124,2.531,1125,5.075,1126,4.569,1127,5.075,1128,5.075,1129,5.075,1130,3.479,1131,3.621,1132,5.075,1133,5.075,1134,3.786,1135,3.355,1136,2.697,1137,3.621,1138,5.075,1139,4.569,1140,4.235,1141,4.235,1142,3.786]],["description//tracks/aws-certified-developer-associate/sqs/_index",[23,1.133,31,1.494,121,2.146,899,3.434]],["title//tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/",[16,0.313,23,0.708,182,1.303,389,2.145,414,1.114,466,2.033,1142,2.658]],["content//tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/",[1,1.734,4,1.398,7,1.449,10,2.977,16,0.84,23,2.014,27,2.128,28,2.257,30,0.852,31,2.108,32,1.83,33,1.29,35,0.97,40,1.315,42,1.2,51,0.583,54,0.375,56,1.657,57,1.428,60,1.185,63,4.142,64,1.533,65,0.994,68,1.161,71,2.124,76,0.957,80,1.619,82,1.514,84,2.614,86,2.281,89,0.957,90,2.06,94,2.995,96,1.29,108,1.124,111,2.245,115,1.843,118,1.29,121,2.586,125,1.718,127,1.917,128,0.602,132,1.161,133,1.874,137,0.42,140,3.394,142,1.41,146,1.903,149,1.29,153,2.436,156,3.09,159,1.706,160,2.967,163,1.012,165,0.49,169,2.716,170,2.395,172,1.524,174,0.583,179,1.18,180,1.497,182,2.292,183,1.266,187,3.173,201,4.94,204,3.782,209,1.29,210,0.826,211,1.41,216,1.341,217,3.125,223,1.8,225,4.306,226,0.326,231,2.952,232,0.716,240,2.06,242,2.357,245,0.773,247,0.764,256,2.163,262,1.315,263,1.2,276,0.984,278,0.712,280,1.463,283,2.142,284,2.838,286,0.666,298,1.575,303,2.977,306,3.339,307,1.218,308,2.889,318,2.417,320,3.843,328,1.18,347,2.318,351,0.737,362,1.619,363,2.165,369,1.947,381,0.459,382,1.569,387,1.465,389,5.95,390,1.026,398,1.462,399,1.315,410,1.429,414,3.074,427,1.369,429,0.434,431,0.92,445,2.332,455,2.452,459,2.57,460,1.29,461,2.007,466,5.408,473,1.089,475,1.919,478,1.382,487,1.057,495,0.666,514,1.243,526,1.844,527,3.406,533,2.189,534,1.497,537,1.2,556,1.919,563,1.073,565,0.932,579,2.113,591,0.207,628,1.667,631,1.29,637,2.619,640,4.527,641,2.847,642,2.872,643,1.429,668,1.919,688,2.245,690,4.205,696,1.465,698,2.082,702,1.315,706,2.245,719,1.2,727,2.702,729,1.72,732,3.429,734,0.658,736,1.398,740,2.21,749,3.258,754,1.177,770,1.535,774,2.976,777,1.057,783,1.089,797,1.341,804,2.845,809,1.18,811,0.71,820,1.221,825,2.245,826,1.575,860,1.041,883,6.178,888,3.005,889,1.535,899,6.369,915,2.87,924,2.986,929,0.546,934,3.306,948,4.163,962,1.919,973,1.462,986,3.039,1000,1.619,1003,3.362,1004,1.429,1010,1.633,1012,1.891,1017,1.341,1024,0.998,1038,1.633,1049,1.843,1050,1.063,1086,1.315,1093,2.245,1094,1.72,1095,2.87,1099,5.772,1114,0.589,1119,1.535,1130,1.844,1137,1.919,1142,4.675,1143,1.575,1144,5.321,1145,2.669,1146,3.211,1147,3.902,1148,3.535,1149,3.909,1150,3.49,1151,1.587,1152,2.113,1153,2.245,1154,2.245,1155,2.422,1156,3.909,1157,2.123,1158,2.538,1159,2.113,1160,1.315,1161,2.69,1162,2.69,1163,2.257,1164,2.123,1165,3.623,1166,1.972,1167,3.33,1168,2.48,1169,2.57,1170,2.779,1171,1.844,1172,2.113,1173,3.125,1174,1.778,1175,2.113,1176,6.619,1177,1.341,1178,1.786,1179,2.614,1180,2.245,1181,1.497,1182,2.776,1183,2.543,1184,1.535,1185,1.497,1186,2.87,1187,2.543,1188,1.919,1189,5.518,1190,1.057,1191,1.919,1192,1.667,1193,1.106,1194,1.398,1195,2.543,1196,1.919,1197,1.778,1198,2.113,1199,2.113,1200,2.245,1201,6.267,1202,2.165,1203,1.41,1204,2.614,1205,5.46,1206,2.69,1207,2.69,1208,2.69,1209,3.909,1210,2.69,1211,2.69,1212,2.69,1213,2.69,1214,2.422,1215,5.46,1216,2.691,1217,2.69,1218,2.69,1219,2.69,1220,2.69,1221,2.69,1222,3.189,1223,1.72,1224,2.69,1225,5.46,1226,2.245,1227,2.69,1228,1.844,1229,2.007,1230,1.243,1231,1.72,1232,2.422,1233,1.535,1234,2.69,1235,4.342,1236,1.619,1237,4.342,1238,1.099,1239,1.972,1240,4.342,1241,5.519,1242,2.422,1243,2.69,1244,1.844,1245,2.113,1246,2.245,1247,2.422,1248,3.098,1249,1.844,1250,2.422,1251,2.69,1252,2.245,1253,2.422,1254,1.619,1255,1.919,1256,2.69,1257,2.69,1258,1.341,1259,2.543,1260,2.691,1261,2.007]],["description//tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/",[16,0.399,23,0.903,182,1.662,389,2.735,414,1.421,466,2.593,1142,3.39]],["title//tracks/aws-certified-developer-associate/sns/_index",[31,1.405,121,2.019,461,2.481]],["content//tracks/aws-certified-developer-associate/sns/_index",[9,2.31,16,0.814,19,2.57,23,2.019,25,3.147,26,3.87,27,2.371,31,2.515,32,1.688,38,2.451,44,4.363,47,3.587,48,1.992,49,1.679,53,2.879,54,0.844,68,2.612,69,2.849,82,1.679,108,1.567,120,1.824,121,2.961,127,2.125,128,1.356,135,3.454,137,0.585,147,2.612,165,1.102,172,2.764,201,4.118,202,6.183,209,3.776,211,1.965,219,4.87,235,4.492,236,2.903,237,3.454,240,1.99,247,1.719,253,3.87,268,5.741,280,2.109,294,4.092,324,2.701,369,1.603,383,3.904,389,5.266,425,2.154,427,3.081,454,3.87,455,1.739,458,2.154,459,3.706,460,4.196,461,4.825,464,4.61,465,3.019,466,6.05,510,3.644,533,1.803,534,2.54,561,4.754,590,4.754,591,0.143,671,1.465,696,2.656,710,5.45,711,4.15,712,5.45,713,4.15,714,4.279,715,5.45,716,4.517,717,5.45,718,5.45,740,3.081,754,2.133,854,2.701,861,1.256,870,1.739,883,6.034,887,2.245,899,3.644,929,1.229,942,2.042,957,3.545,992,2.656,997,3.751,1003,2.96,1054,2.589,1055,2.749,1068,4.15,1070,2.96,1090,4.007,1093,5.051,1099,6.528,1140,5.051,1141,5.051,1262,6.054,1263,5.874,1264,7.873,1265,6.054,1266,6.054,1267,5.45,1268,6.054,1269,4.517,1270,6.054,1271,6.054,1272,6.054,1273,6.054,1274,6.054,1275,6.054,1276,6.054,1277,5.45,1278,3.454,1279,2.414,1280,4.754,1281,5.051,1282,6.054,1283,3.454,1284,4.517]],["description//tracks/aws-certified-developer-associate/sns/_index",[23,1.133,31,1.494,121,2.146,461,2.637]],["title//tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/",[23,0.773,32,0.834,47,1.506,455,1.118,461,1.798,466,2.219]],["content//tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/",[1,1.581,4,2.202,7,1.582,10,1.716,16,0.699,23,1.581,31,2.441,32,2.038,47,3.738,48,2.64,57,1.393,63,2.801,64,1.774,66,1.247,75,1.997,83,3.029,86,2.572,89,1.508,90,1.393,91,1.994,116,2.689,121,1.594,128,1.379,133,1.828,153,1.891,157,1.649,163,1.594,178,1.175,181,2.55,183,3.746,188,1.949,201,4.927,202,3.327,204,3.01,205,2.801,209,2.032,216,4.216,221,2.104,224,2.132,231,3.558,235,5.032,236,2.032,238,2.156,239,1.979,242,2.316,262,2.071,268,2.626,279,2.493,280,1.942,286,1.048,289,1.203,293,2.613,306,3.292,307,1.189,315,2.303,324,1.891,327,1.665,335,3.023,347,3.078,351,2.318,369,2.108,373,3.152,374,3.936,378,1.799,382,2.287,407,1.135,441,1.468,455,2.287,459,1.994,461,3.907,466,5.906,508,2.19,509,1.958,533,2.517,534,1.162,576,1.528,591,0.221,597,2.316,640,4.489,655,1.528,690,2.303,698,2.952,699,3.478,716,3.161,727,3.663,732,2.113,740,2.156,774,5.795,783,1.716,800,2.904,804,3.839,811,0.551,883,6.203,920,2.801,929,0.86,934,3.225,940,2.801,948,4.533,973,2.303,986,4.036,997,2.626,1003,2.071,1004,3.271,1012,2.512,1038,2.316,1049,3.378,1099,4.593,1144,5.512,1145,3.545,1146,1.69,1147,4.17,1148,3.698,1150,2.708,1163,2.202,1164,2.071,1166,1.924,1168,2.324,1179,2.55,1181,4.036,1185,4.036,1202,2.113,1238,1.558,1260,2.626,1277,3.814,1285,2.708,1286,2.071,1287,1.799,1288,2.801,1289,4.237,1290,4.237,1291,4.593,1292,3.023,1293,3.512,1294,2.801,1295,3.814,1296,2.626,1297,1.716,1298,5.542,1299,3.814,1300,6.157,1301,4.237,1302,4.237,1303,0.691,1304,3.814,1305,3.161,1306,4.237,1307,4.237,1308,7.94,1309,4.237,1310,4.237,1311,2.383,1312,4.237,1313,4.237,1314,4.237,1315,2.303,1316,1.828,1317,2.417,1318,2.417,1319,7.959,1320,3.161,1321,3.814,1322,7.165,1323,3.814,1324,1.69,1325,2.113]],["description//tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/",[23,0.968,32,1.045,47,1.887,455,1.4,461,2.253,466,2.781]],["title//tracks/aws-certified-developer-associate/s3/_index",[373,2.49]],["content//tracks/aws-certified-developer-associate/s3/_index",[1,1.136,4,1.498,8,1.4,9,1.751,11,0.638,15,1.786,16,0.851,17,1.1,19,1.223,21,2.402,22,2.643,23,1.892,25,1.498,27,1.669,28,3.389,29,1.149,31,1.864,32,1.824,34,1.905,35,2.062,38,1.858,40,3.707,41,1.856,43,1.678,44,3.966,47,2.756,48,1.65,49,1.808,51,1.543,53,1.678,54,0.909,55,1.498,56,2.487,57,1.88,62,1.028,64,1.399,68,1.98,69,2.16,74,2.056,75,1.039,76,1.025,79,1.734,80,1.734,81,1.531,82,2.551,83,1.204,85,2.91,86,1.917,89,1.633,90,0.947,91,1.356,95,4.202,96,3.414,98,1.842,100,1.566,106,1.734,108,1.48,109,1.905,117,1.437,120,0.868,121,1.084,125,1.258,127,1.012,128,1.781,135,1.644,137,0.688,140,3.123,146,1.48,147,1.243,156,1.954,157,0.772,163,1.084,165,1.187,169,2.662,172,2.288,174,0.625,175,0.912,176,1.734,178,1.808,179,2.508,180,1.604,182,1.054,184,1.409,186,1.264,189,2.795,195,2.843,196,1.975,197,1.905,198,2.263,206,1.332,209,1.382,210,1.24,211,2.582,217,4.44,218,2.64,222,1.467,223,0.828,224,1.98,227,3.219,228,1.98,232,0.475,234,1.498,237,1.644,240,3.186,241,4.105,242,2.452,246,1.264,247,2.258,256,2.231,259,2.467,263,2.048,268,4.699,269,1.286,276,2.091,278,1.215,280,1.746,281,1.223,284,3.389,286,0.713,289,0.818,293,2.427,303,1.167,310,1.566,311,1.409,322,1.842,328,2.013,329,1.786,334,3.108,341,0.848,346,4.55,347,1.948,351,2.555,360,2.16,370,5.311,372,3.168,373,3.652,374,4.499,375,3.251,387,1.548,389,1.734,395,1.531,397,1.531,398,2.494,399,1.409,404,2.508,407,1.229,419,1.644,420,2.551,422,2.15,423,1.531,425,1.025,427,1.467,429,0.923,431,3.223,434,2.96,439,1.409,441,0.998,448,1.905,450,1.025,452,1.332,454,1.842,455,0.828,459,1.356,461,1.332,472,1.786,478,1.161,479,1.905,480,3.56,489,2.933,495,0.713,502,3.274,505,2.056,508,1.025,512,1.308,514,3.013,520,1.382,521,3.033,532,1.437,533,1.941,534,0.79,541,1.531,554,1.842,567,1.688,591,0.229,596,1.531,598,1.531,599,4.55,602,5.418,607,1.498,609,3.603,616,3.603,621,3.145,626,1.025,643,3.038,644,1.842,655,3.678,668,2.056,669,3.829,670,1.786,671,1.383,672,2.405,673,1.498,674,3.829,675,2.594,676,2.594,677,2.594,678,2.405,679,1.644,680,2.594,681,2.594,682,2.594,683,2.594,684,2.288,685,4.131,686,2.594,687,3.829,688,3.829,689,2.594,690,1.566,691,2.405,692,2.405,693,2.15,694,1.467,695,5.147,696,0.972,697,2.405,698,3.959,699,3.959,720,1.356,728,3.318,734,0.705,745,3.145,754,1.243,755,1.356,763,5.078,765,2.056,766,1.905,774,1.975,775,3.423,778,1.842,779,1.644,780,1.842,781,1.688,782,2.594,783,1.167,784,2.263,785,1.604,786,2.405,787,2.594,788,1.842,791,3.962,796,2.618,797,2.288,809,1.264,817,1.286,822,3.779,823,2.201,827,1.975,830,2.15,865,2.335,870,0.828,889,1.644,890,1.498,931,1.498,934,1.054,950,1.382,957,2.687,976,1.688,981,1.604,992,1.264,999,1.409,1003,1.409,1015,1.98,1017,1.437,1023,2.405,1024,1.069,1033,1.498,1038,1.084,1040,3.919,1054,1.509,1070,1.409,1078,0.998,1086,2.243,1090,2.335,1101,2.15,1115,1.786,1136,1.531,1157,1.409,1158,1.167,1160,1.409,1184,1.644,1187,1.688,1222,3.859,1230,1.332,1316,1.98,1318,4.538,1326,1.975,1327,1.382,1328,2.335,1329,2.15,1330,4.131,1331,3.603,1332,1.786,1333,2.882,1334,2.882,1335,0.911,1336,2.882,1337,2.882,1338,2.405,1339,2.263,1340,2.594,1341,2.594,1342,2.263,1343,1.149,1344,2.056,1345,1.498,1346,1.688,1347,2.882,1348,2.882,1349,2.882,1350,2.263,1351,2.15,1352,2.405,1353,1.437,1354,1.688,1355,2.594,1356,2.882,1357,4.589,1358,1.786,1359,2.882,1360,1.286,1361,2.405,1362,1.604,1363,2.405,1364,2.594,1365,2.882,1366,2.056,1367,2.594,1368,2.405,1369,2.15,1370,2.882,1371,2.882,1372,3.829,1373,2.882,1374,2.056,1375,2.056,1376,2.882,1377,2.083,1378,3.829,1379,2.056,1380,3.423,1381,2.882,1382,2.882,1383,2.263,1384,2.594,1385,3.655,1386,4.589,1387,2.594,1388,3.033,1389,3.441,1390,4.131,1391,2.882,1392,1.286,1393,2.882,1394,2.594,1395,3.423,1396,1.604,1397,2.056,1398,1.786,1399,2.882,1400,2.882,1401,2.882,1402,2.882,1403,2.882,1404,3.829,1405,1.734,1406,2.405,1407,2.882,1408,6.889,1409,2.882,1410,3.829,1411,3.603,1412,2.882,1413,2.882,1414,2.882,1415,2.405,1416,2.405,1417,1.734,1418,2.882,1419,2.594,1420,1.975,1421,1.644,1422,1.566,1423,1.604,1424,1.644]],["description//tracks/aws-certified-developer-associate/s3/_index",[95,2.313,128,1.018,524,2.028,643,2.414,655,1.639,762,2.414,1425,3.39]],["title//tracks/aws-certified-developer-associate/s3/upload-file-to-s3/",[351,1.472,373,1.859,699,2.574]],["content//tracks/aws-certified-developer-associate/s3/upload-file-to-s3/",[1,1.606,7,0.985,10,2.554,17,2.407,23,1.606,25,3.279,35,2.916,38,2.554,42,3.608,56,2.407,64,1.543,65,1.472,82,1.749,91,2.969,95,3.21,127,2.214,133,2.722,172,2.838,210,1.2,215,3.352,221,2.156,229,2.594,231,3.404,239,2.202,278,1.671,351,2.988,353,3.558,355,5.268,361,3.505,363,3.146,364,6.365,369,1.671,373,3.259,374,4.199,385,2.373,414,1.972,431,2.156,445,1.901,455,1.812,458,2.244,461,3.737,474,3.146,533,2.802,565,2.185,641,2.442,699,5.159,720,2.969,734,1.543,750,3.146,783,2.554,797,3.146,928,5.542,934,2.307,948,3.671,950,4.513,1005,4.952,1089,3.025,1148,3.601,1163,3.279,1164,3.084,1169,2.969,1170,3.21,1181,3.511,1182,5.168,1194,3.279,1196,4.5,1216,3.909,1258,3.146,1279,2.516,1287,2.678,1421,3.599,1426,6.308,1427,7.278,1428,4.954,1429,5.264,1430,3.797,1431,5.768,1432,5.678,1433,5.768,1434,4.5,1435,4.5,1436,5.344,1437,4.324,1438,4.032]],["description//tracks/aws-certified-developer-associate/s3/upload-file-to-s3/",[23,1.133,351,1.564,373,1.976,699,2.736]],["title//tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/",[157,1.276,373,1.65,655,1.719,796,2.718]],["content//tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/",[1,1.107,3,2.576,7,0.87,10,3.632,23,1.911,32,1.195,35,2.01,41,1.809,51,1.944,60,1.285,64,2.195,65,1.015,82,2.769,83,3.905,89,3.326,114,2.222,118,2.673,140,4.379,146,1.443,157,1.997,160,3.216,161,2.53,172,3.148,221,2.548,231,3.205,232,1.23,239,2.366,256,1.64,289,1.582,298,3.263,305,3.263,308,2.189,351,2.044,361,2.929,364,5.993,369,1.974,373,3.332,374,3.326,381,0.95,387,2.515,414,1.742,431,3.066,445,2.247,455,1.601,478,1.41,486,2.961,534,2.737,565,1.93,591,0.132,612,3.562,641,2.157,643,2.961,655,3.764,699,4.848,727,3.3,734,1.364,759,3.179,796,6.11,804,3.814,811,1.093,887,2.067,928,5.11,929,1.705,934,2.038,948,3.385,962,3.976,973,3.029,1010,3.373,1015,3.624,1049,3.566,1089,2.673,1146,2.973,1147,4.22,1148,3.597,1150,3.562,1151,1.62,1163,3.875,1164,4.107,1170,3.794,1181,4.149,1195,3.263,1203,1.809,1258,2.779,1316,2.404,1325,2.779,1351,4.158,1372,6.22,1427,6.71,1429,4.65,1431,3.976,1433,3.976,1434,3.976,1436,3.683,1439,5.573,1440,2.366,1441,2.038,1442,5.573,1443,4.376,1444,5.573,1445,8.4,1446,4.65,1447,3.509,1448,3.029,1449,3.794,1450,5.017,1451,7.455,1452,7.455,1453,5.573,1454,3.263]],["description//tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/",[23,1.044,157,1.408,373,1.821,655,1.896,796,3]],["title//tracks/aws-certified-developer-associate/s3/grant-access-s3/",[240,1.408,328,1.879,373,1.484,655,1.545,1385,2.738]],["content//tracks/aws-certified-developer-associate/s3/grant-access-s3/",[1,0.953,3,3.109,7,0.749,10,3.41,16,0.683,23,1.945,25,2.494,30,1.519,32,1.665,33,2.301,42,2.141,51,1.04,57,2.554,62,1.507,63,4.447,64,1.646,66,1.411,83,2.004,86,2.004,95,2.442,114,1.913,120,1.446,127,1.684,128,1.74,133,2.903,146,1.242,157,2.081,163,1.804,172,2.361,174,1.458,179,2.105,188,1.519,196,3.288,205,3.171,217,5,222,2.442,228,2.07,240,3.496,241,3.166,242,1.804,247,2.735,256,1.411,276,1.754,278,1.271,280,1.285,289,1.91,306,3.055,307,1.346,308,1.885,309,2.036,328,4.474,351,2.431,352,2.549,361,1.885,362,2.888,364,3.423,365,1.973,369,1.271,373,3.473,374,4.632,375,3.874,376,3.767,378,2.036,394,1.64,397,2.549,398,2.608,399,2.345,404,2.105,406,2.494,407,1.285,414,1.5,419,2.737,431,1.64,441,2.33,445,1.446,450,1.707,452,2.217,458,1.707,461,3.109,478,1.214,480,1.885,487,1.885,512,2.178,514,2.217,533,1.428,583,1.973,591,0.237,613,2.07,625,1.482,641,3.008,655,3.617,670,4.814,690,4.223,693,3.579,699,3.726,702,2.345,719,2.141,729,3.067,733,3.171,750,2.392,759,5.245,783,1.943,804,3.528,811,1.011,814,2.67,861,0.995,873,1.913,924,2.495,934,3.08,940,3.171,948,3.055,950,2.301,968,4.319,974,3.423,984,3.067,1003,2.345,1005,2.442,1017,2.392,1038,2.53,1049,2.036,1080,3.767,1089,2.301,1130,4.611,1136,2.549,1146,1.913,1147,2.105,1148,3.529,1157,3.798,1159,3.767,1160,2.345,1163,2.494,1164,3.289,1167,4.712,1170,3.424,1173,4.422,1222,3.954,1258,3.355,1279,2.683,1286,2.345,1291,3.579,1296,2.973,1297,3.146,1323,4.319,1325,4.199,1329,3.579,1375,3.423,1385,5.383,1387,4.319,1389,2.888,1395,5.796,1396,2.67,1397,4.799,1438,4.3,1455,3.767,1456,2.608,1457,4.319,1458,4.319,1459,4.319,1460,4.798,1461,4.798,1462,1.73,1463,4.319,1464,2.67,1465,4.798,1466,3.171,1467,4.798,1468,4.798,1469,4.798,1470,4.798,1471,3.767,1472,4.798,1473,4.798,1474,4.798,1475,4.447,1476,3.838,1477,2.973,1478,4.003,1479,2.442,1480,4.003,1481,3.579,1482,2.392,1483,4.003,1484,7.769,1485,4.798,1486,4.319,1487,4.798,1488,4.319,1489,2.07,1490,2.67,1491,3.171,1492,4.798]],["description//tracks/aws-certified-developer-associate/s3/grant-access-s3/",[23,0.968,240,1.603,328,2.139,373,1.689,655,1.758,1385,3.116]],["title//tracks/aws-certified-developer-associate/s3/delete-from-s3/",[140,2.355,373,1.859,374,2.395]],["content//tracks/aws-certified-developer-associate/s3/delete-from-s3/",[1,1.329,10,3.713,16,0.737,23,1.821,31,1.751,32,2.061,35,2.413,41,2.171,82,1.855,114,3.346,140,4.747,163,2.516,174,1.45,201,3.149,231,3.498,247,1.899,280,1.792,306,3.037,308,2.628,347,3.892,363,3.336,373,3.592,374,4.877,382,1.922,384,3.092,394,2.287,445,2.016,452,3.092,478,1.693,533,2.863,597,2.516,655,3.307,719,2.985,720,3.149,727,2.628,734,1.637,750,3.336,811,0.87,814,4.67,1012,2.317,1024,2.481,1089,3.208,1145,3.27,1146,3.346,1147,4.022,1148,3.595,1150,5.364,1160,3.27,1164,3.27,1170,3.404,1190,2.628,1287,4.204,1325,4.184,1353,3.336,1360,2.985,1446,5.582,1454,4.914,1491,4.421,1493,6.689,1494,6.021,1495,6.689,1496,6.021,1497,5.253,1498,5.253]],["description//tracks/aws-certified-developer-associate/s3/delete-from-s3/",[23,1.133,140,2.503,373,1.976,374,2.546]],["title//tracks/aws-certified-developer-associate/s3/create-s3-bucket/",[7,0.838,373,1.859,374,2.395]],["content//tracks/aws-certified-developer-associate/s3/create-s3-bucket/",[1,1.161,7,1.551,10,3.482,16,0.676,22,2.701,23,1.815,28,3.038,30,1.85,31,2.014,32,2.036,51,1.864,62,1.723,64,1.43,65,1.064,81,3.105,94,2.262,115,2.481,118,3.689,120,1.761,124,3.517,127,2.7,137,0.743,142,2.497,146,1.513,153,2.608,157,2.304,160,2.521,165,1.064,204,2.857,210,1.111,231,2.23,234,3.038,240,2.529,247,1.659,263,2.608,278,1.548,280,2.061,306,2.653,307,1.64,308,3.022,328,3.375,347,3.879,353,2.331,363,2.914,365,2.403,369,1.548,373,3.494,374,4.849,375,2.914,378,3.266,381,0.996,382,1.679,384,2.701,398,3.176,399,2.857,414,1.827,429,1.388,461,2.701,478,1.479,495,1.446,528,1.323,532,2.914,533,3.111,591,0.182,593,5.488,605,2.802,611,4.15,642,2.441,666,4.63,869,3.735,929,1.746,931,3.038,934,3.145,948,3.905,1012,2.024,1017,2.914,1024,3.616,1038,2.198,1089,2.802,1094,3.735,1144,5.243,1145,2.857,1146,2.331,1147,3.375,1148,3.379,1157,2.857,1167,4.087,1170,2.974,1175,4.589,1193,2.403,1202,2.914,1216,3.621,1286,2.857,1342,4.589,1343,2.331,1344,5.488,1345,3.999,1436,3.863,1438,3.735,1448,3.176,1449,2.974,1499,4.36,1500,3.735,1501,5.26,1502,4.169,1503,5.844,1504,4.36,1505,4.589,1506,4.876,1507,4.169,1508,5.26,1509,6.754,1510,5.26,1511,5.26,1512,5.26,1513,4.589,1514,2.262,1515,3.105,1516,5.26,1517,2.974,1518,5.26]],["description//tracks/aws-certified-developer-associate/s3/create-s3-bucket/",[7,0.891,23,1.133,373,1.976,374,2.546]],["title//tracks/aws-certified-developer-associate/s3/create-folder-s3/",[7,0.669,355,2.136,373,1.484,374,1.911,750,2.136]],["content//tracks/aws-certified-developer-associate/s3/create-folder-s3/",[7,1.625,23,1.799,32,1.625,57,2.493,147,3.271,247,2.152,307,2.127,330,3.442,347,3.218,355,5.249,373,3.477,374,4.647,431,2.591,474,3.78,487,2.978,533,2.885,637,3.636,655,3.495,750,4.518,811,0.986,873,3.023,1089,3.636,1144,3.941,1147,3.326,1148,3.572,1150,4.846,1163,3.941,1164,3.706,1170,3.858,1172,5.953,1182,4.846,1184,4.325,1185,4.219,1354,4.439,1429,6.326,1509,5.953,1519,7.581,1520,5.196,1521,4.439,1522,5.408,1523,6.824]],["description//tracks/aws-certified-developer-associate/s3/create-folder-s3/",[7,0.761,23,0.968,355,2.431,373,1.689,374,2.175,750,2.431]],["title//tracks/aws-certified-developer-associate/route53/",[100,3.341,101,3.421]],["content//tracks/aws-certified-developer-associate/route53/",[7,1.165,13,2.613,16,0.869,17,1.702,23,0.886,27,1.142,31,2.134,32,1.982,35,2.305,41,1.448,48,1.129,51,0.967,56,3.425,57,3.379,60,1.287,64,1.564,68,1.925,69,3.008,81,2.371,82,2.393,85,3.8,87,2.181,88,4.651,100,5.848,101,5.358,114,3.58,118,2.14,121,2.403,125,1.223,127,2.243,128,0.999,142,2.074,144,2.613,156,2.184,157,1.712,169,1.566,172,2.621,175,2.023,178,1.237,184,3.124,188,1.412,191,2.765,196,3.058,206,2.062,211,2.914,215,3.395,217,4.871,223,1.836,227,1.894,231,1.702,240,2.101,242,2.403,269,2.851,278,1.182,280,2.184,284,3.322,285,2.371,286,1.104,289,1.267,292,2.613,293,3.169,295,2.511,307,1.252,308,2.933,320,3.451,328,3.576,329,5.051,334,4.689,338,6.217,342,5.018,366,2.425,369,1.182,372,3.119,374,1.991,385,2.808,391,3.252,397,4.584,398,4.431,399,3.985,429,1.205,432,3.504,444,2.319,487,2.511,527,2.425,533,2.815,534,1.223,535,2.225,539,4.085,541,2.371,558,3.504,578,2.225,591,0.231,605,3.065,611,3.39,612,2.852,613,2.757,614,3.183,632,3.187,642,2.669,659,4.085,666,6.11,667,5.57,671,1.08,679,5.791,684,2.225,702,2.181,734,1.092,754,2.023,766,4.935,783,3.023,795,2.1,817,1.991,839,2.852,861,0.926,870,1.282,901,2.613,942,1.505,973,2.425,992,1.957,1004,4.331,1054,2.101,1055,2.026,1056,2.319,1058,2.546,1070,2.181,1146,1.779,1278,2.546,1283,2.546,1335,1.269,1350,3.504,1360,1.991,1392,1.991,1394,4.016,1396,2.483,1421,5.122,1436,2.949,1447,2.1,1520,5.117,1524,4.224,1525,6.23,1526,3.504,1527,3.329,1528,2.271,1529,4.462,1530,4.462,1531,4.462,1532,4.462,1533,4.462,1534,4.462,1535,4.462,1536,4.462,1537,4.462,1538,4.462,1539,2.613,1540,2.949,1541,6.721,1542,3.723,1543,7.466,1544,3.723,1545,3.183,1546,6.39,1547,4.462,1548,6.721,1549,6.402,1550,4.462,1551,4.38,1552,7.466,1553,2.425,1554,4.462,1555,4.462,1556,4.016,1557,4.016,1558,6.155,1559,7.466,1560,6.39,1561,4.462,1562,4.462,1563,4.462,1564,2.613,1565,3.183]],["description//tracks/aws-certified-developer-associate/route53/",[23,0.674,27,0.868,30,1.074,82,0.941,100,2.834,101,1.888,120,1.022,329,2.102,427,1.727,707,1.888,1396,1.888]],["title//tracks/aws-certified-developer-associate/rds/",[261,4.001]],["content//tracks/aws-certified-developer-associate/rds/",[9,1.828,16,0.829,17,1.828,19,2.034,23,1.97,27,2.154,31,2.471,32,2.065,35,2.424,37,2.138,49,2.153,51,1.039,53,2.458,55,2.491,60,1.159,64,1.173,75,1.522,79,2.884,80,4.046,81,2.546,82,2.334,90,1.576,95,2.439,108,1.24,113,2.39,114,1.911,116,1.777,120,1.444,121,1.802,125,1.843,128,1.985,142,2.182,154,2.128,156,3.458,169,2.725,170,2.102,171,1.24,172,2.36,174,1.039,178,1.329,180,5.52,182,1.752,187,2.9,195,5.216,203,2.138,212,4.165,213,2.256,218,2.722,223,1.377,227,2.853,235,2.734,240,2.21,245,1.377,247,1.361,252,2.39,256,2.95,261,5.747,262,5.048,263,2.138,270,5.132,271,5.132,276,2.839,279,1.94,280,2.732,289,1.361,295,2.641,303,3.144,320,2.215,332,4.165,339,4.165,340,3.164,358,5.64,361,2.641,372,2.808,383,3.465,393,1.728,407,1.284,462,1.329,482,3.936,521,6.074,524,2.138,527,4.22,528,1.085,529,4.575,533,2.506,534,1.843,539,3.063,540,3.575,557,2.068,584,5.322,592,3.763,596,5.014,600,2.806,602,3.571,610,5.015,613,4.072,623,3.575,624,5.132,629,4.929,634,6.097,642,2.808,643,2.546,649,4.929,653,2.667,658,4.796,659,4.297,660,6.005,661,6.051,662,6.051,663,5.279,664,7.577,665,5.015,666,5.066,667,5.015,671,1.16,673,2.491,684,2.39,714,2.605,728,2.439,776,3.063,797,3.352,807,3.763,809,2.102,820,2.176,832,2.39,861,0.994,870,1.377,942,1.617,1038,1.802,1054,2.21,1062,2.491,1090,2.439,1122,3.763,1260,2.969,1297,1.94,1316,2.068,1346,2.806,1464,2.667,1497,3.763,1566,6.61,1567,4.608,1568,7.765,1569,5.609,1570,6.722,1571,4.792,1572,3.999,1573,4.792,1574,4.792,1575,4.792,1576,4.792,1577,4.792,1578,3.999,1579,3.763,1580,3.999,1581,3.285,1582,3.763,1583,3.285,1584,4.792,1585,3.063,1586,4.792,1587,3.999,1588,4.314,1589,4.792,1590,3.999,1591,4.314,1592,4.314,1593,2.884,1594,2.667,1595,4.792,1596,3.763,1597,3.285,1598,4.314]],["description//tracks/aws-certified-developer-associate/rds/",[17,1.527,51,0.867,110,2.227,171,1.036,223,1.149,262,1.956,383,1.785,649,2.343,1148,1.423]],["title//tracks/aws-certified-developer-associate/opensearch-service/_index",[31,1.609,897,4.586]],["content//tracks/aws-certified-developer-associate/opensearch-service/_index",[16,0.875,23,1.935,27,1.622,31,2.609,32,1.917,38,2.566,41,2.057,47,2.453,82,1.757,95,3.225,116,2.35,117,3.16,128,2.269,156,3.222,169,2.846,171,1.64,172,2.224,174,1.373,175,2.006,178,1.757,210,1.205,211,2.057,225,5.705,227,4.398,228,2.734,249,3.039,263,2.828,276,2.965,279,3.283,280,1.697,281,2.69,283,2.166,308,2.49,312,3.098,317,4.343,324,3.618,341,1.864,346,4.051,369,1.678,371,4.051,373,2.195,381,1.08,425,2.254,427,3.225,433,3.289,436,4.188,447,3.225,455,1.82,459,2.983,464,4.748,465,4.043,482,3.711,487,2.49,534,2.451,536,5.558,537,2.828,586,5.287,590,4.976,591,0.192,592,4.976,631,3.039,643,3.367,654,4.727,668,5.784,671,1.533,720,2.983,747,4.727,749,3.294,754,1.717,767,3.927,809,2.78,817,2.828,830,4.727,861,1.315,870,1.82,897,6.671,898,7.865,924,2.35,931,3.294,942,3.017,975,3.444,992,2.78,1003,3.098,1010,2.383,1012,3.452,1017,3.16,1022,4.343,1024,2.35,1030,3.444,1054,2.666,1070,3.098,1071,4.521,1080,4.976,1090,3.225,1108,5.704,1332,3.927,1346,3.711,1456,3.444,1585,5.183,1599,4.976,1600,6.766,1601,3.927,1602,4.976,1603,5.287,1604,6.337,1605,5.704,1606,5.704,1607,4.976,1608,4.521]],["description//tracks/aws-certified-developer-associate/opensearch-service/_index",[23,1.523]],["title//tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/",[32,0.918,172,1.504,227,1.818,283,1.464,1608,3.056]],["content//tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/",[3,2.689,4,1.753,5,0.917,7,1.505,8,1.029,10,2.877,13,1.162,16,0.754,17,1.679,21,1.484,22,0.917,23,1.844,25,1.031,28,2.287,29,0.791,31,2.281,32,1.775,33,0.951,39,3.383,41,1.095,42,0.885,47,3.564,48,2.309,51,0.954,53,1.609,54,0.991,56,1.679,57,1.706,58,2.392,60,0.581,62,1.303,64,1.877,65,1.152,66,1.527,68,0.856,70,0.43,71,1.042,72,1.48,75,1.433,76,1.2,82,0.55,85,2.239,86,0.829,89,1.2,90,1.109,94,0.768,95,1.717,108,1.839,110,1.877,114,1.755,116,2.929,117,2.901,118,3.034,125,1.423,127,0.696,128,1.718,129,4.332,132,0.856,133,3.196,137,0.716,142,2.629,146,1.747,147,2.51,153,1.963,156,1.153,157,0.904,160,0.856,161,0.901,163,1.269,165,1.152,169,0.696,171,1.139,172,1.822,174,1.125,179,0.87,183,3.177,188,0.628,201,1.588,204,0.97,209,2.11,210,1.656,211,1.095,214,0.746,216,0.989,217,2.901,218,0.803,221,0.678,223,1.818,224,0.687,227,4.354,228,4.22,231,3.64,232,0.726,235,1.924,237,2.51,238,2.239,239,1.215,240,2.774,245,1.818,246,0.87,247,1.474,252,0.989,255,2.642,256,0.584,262,1.649,264,2.03,272,4.91,276,1.233,278,1.787,279,1.366,280,1.39,283,1.153,286,0.835,287,1.868,291,1.104,293,2.203,303,1.782,306,3.363,307,1.632,308,2.039,309,0.842,312,1.649,320,1.559,324,3.829,326,1.48,327,2.039,328,2.277,329,1.229,332,1.229,334,2.392,340,0.934,341,1.294,347,2.865,361,1.325,363,2.588,365,1.809,366,1.078,369,2.366,372,0.829,374,2.316,378,1.432,381,0.75,382,1.491,385,0.746,387,1.138,390,1.98,393,1.872,394,0.678,397,1.792,398,3.162,399,3.093,400,1.387,406,1.753,407,0.531,412,1.729,413,0.885,414,0.62,416,2.229,423,1.792,429,0.544,431,0.678,433,2.405,441,0.687,445,1.564,447,1.01,450,1.2,452,0.917,455,0.57,459,2.071,461,1.559,465,3.939,473,0.803,476,1.833,478,1.601,480,0.779,484,1.48,485,1.655,486,2.338,495,0.835,509,2.034,512,0.901,514,0.917,526,1.36,527,1.078,533,2.115,534,2.165,535,0.989,541,1.054,567,2.577,591,0.175,600,1.162,605,1.618,611,0.901,613,0.856,631,0.951,637,2.11,641,1.703,642,3.204,643,1.054,655,1.872,659,2.156,668,2.406,669,2.814,670,1.229,671,0.816,679,4.896,698,2.11,702,0.97,707,1.877,714,2.821,727,2.651,732,3.694,733,1.311,734,0.825,739,1.36,748,3.318,754,0.914,770,1.132,775,2.516,783,1.366,794,2.406,795,0.934,804,3.678,809,2.277,811,0.439,814,1.104,816,1.229,817,1.505,819,1.48,827,1.36,829,0.557,831,1.01,832,2.194,864,1.924,870,0.57,897,6.979,898,5.928,924,1.251,926,1.01,931,1.753,934,3.086,937,1.415,948,3.482,957,1.975,962,1.415,965,3.439,970,1.655,973,1.078,977,1.36,984,1.268,986,2.889,996,1.229,1000,1.194,1002,2.813,1003,2.151,1004,1.054,1012,2.736,1020,5.47,1024,0.736,1038,1.655,1049,2.469,1090,1.01,1112,1.01,1116,1.588,1136,1.054,1137,4.815,1144,5.321,1145,3.473,1146,1.755,1147,4.133,1148,3.635,1150,1.268,1151,1.279,1155,1.786,1158,1.366,1163,3.024,1164,2.844,1167,3.586,1168,1.664,1173,1.682,1177,2.194,1178,0.816,1179,2.03,1180,1.655,1181,1.104,1182,1.268,1183,2.577,1184,1.132,1185,3.238,1186,2.229,1190,1.325,1191,1.415,1192,2.727,1193,0.816,1195,1.162,1202,2.588,1204,2.03,1216,1.229,1222,1.717,1223,1.268,1226,1.655,1229,1.48,1230,0.917,1242,1.786,1245,1.558,1258,1.682,1259,3.705,1279,0.791,1286,0.97,1287,0.842,1296,3.92,1297,0.803,1316,0.856,1317,1.132,1318,4.621,1324,0.791,1325,0.989,1329,1.48,1335,0.394,1346,1.162,1351,2.516,1360,0.885,1374,1.415,1385,1.268,1397,1.415,1434,2.406,1438,1.268,1440,0.842,1449,1.717,1455,1.558,1456,2.821,1457,1.786,1462,1.872,1466,1.311,1471,1.558,1475,1.311,1476,1.132,1498,4.076,1513,2.649,1517,1.01,1518,1.786,1524,1.311,1528,1.01,1545,1.415,1578,1.655,1600,2.814,1608,5.472,1609,1.36,1610,1.194,1611,1.984,1612,4.123,1613,1.984,1614,3.431,1615,3.036,1616,1.984,1617,1.786,1618,1.984,1619,1.984,1620,1.786,1621,1.984,1622,1.655,1623,1.984,1624,0.87,1625,1.786,1626,1.984,1627,1.786,1628,1.984,1629,4.4,1630,5.237,1631,1.984,1632,1.786,1633,1.984,1634,1.984,1635,1.268,1636,1.786,1637,1.984,1638,1.655,1639,1.311,1640,1.984,1641,1.984,1642,3.319,1643,1.984,1644,1.655,1645,2.229,1646,1.984,1647,1.558,1648,1.031,1649,1.984,1650,2.406,1651,1.655,1652,1.786,1653,1.415,1654,1.132,1655,1.36,1656,2.814,1657,2.312,1658,1.786,1659,1.655,1660,0.901,1661,1.984,1662,1.984,1663,1.268,1664,1.162,1665,2.009,1666,1.984,1667,1.655,1668,1.415,1669,1.558,1670,1.984,1671,1.984,1672,1.984,1673,1.588,1674,1.984,1675,1.717,1676,1.984,1677,1.984,1678,1.48,1679,1.984,1680,1.984,1681,1.984,1682,4.34,1683,1.984,1684,1.984,1685,1.984,1686,4.076,1687,2.814,1688,2.649,1689,1.984,1690,1.984,1691,1.054,1692,7.67,1693,1.984,1694,4.4,1695,0.746,1696,3.455,1697,1.229,1698,1.558,1699,1.415,1700,1.366,1701,1.36,1702,2.312,1703,1.984,1704,1.984,1705,1.984,1706,2.814,1707,1.984,1708,1.229,1709,1.48,1710,3.139,1711,1.268,1712,3.373,1713,1.786,1714,1.36,1715,1.415,1716,5.078,1717,1.984,1718,1.786,1719,1.984,1720,1.311,1721,1.36,1722,0.917,1723,1.786,1724,1.104]],["description//tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/",[7,0.245,8,0.478,23,0.311,31,0.41,32,0.59,47,0.606,48,0.396,114,1.097,125,0.429,156,0.536,169,0.55,172,0.965,227,1.876,228,1.586,262,0.766,284,0.814,324,0.699,447,0.797,465,0.781,633,0.872,720,0.737,897,1.169,1608,1.962,1687,1.307,1725,1.567,1726,1.41]],["title//tracks/aws-certified-developer-associate/lambda/",[47,2.783]],["content//tracks/aws-certified-developer-associate/lambda/",[3,1.155,4,1.299,7,1.36,10,1.012,12,1.328,14,1.464,16,0.871,17,0.954,21,2.641,22,4.514,23,1.979,24,4.584,26,2.615,27,2.304,28,1.299,29,0.997,30,0.791,31,2.235,32,2.218,37,2.678,38,1.657,39,0.927,40,2.539,43,0.914,44,2.589,45,2.704,47,4.131,48,2.647,49,1.836,51,0.887,53,1.496,54,0.991,55,1.299,57,2.176,58,1.359,59,0.927,60,0.705,61,1.891,62,1.344,63,1.652,64,1.468,65,1.093,66,1.204,68,1.079,70,0.542,71,0.772,75,1.973,76,2.135,79,1.505,80,1.505,82,2.312,83,1.044,84,1.505,85,1.272,88,1.426,89,2.669,90,2.337,93,1.783,95,2.082,96,1.199,101,1.391,106,2.462,109,1.652,113,2.589,116,3.005,117,4.04,118,2.878,120,0.753,121,2.257,123,1.865,125,2.221,128,1.814,132,1.765,135,2.334,137,0.58,138,1.783,142,2.541,145,1.391,147,1.079,149,1.199,157,1.608,163,0.94,165,0.455,172,0.878,174,1.696,175,1.295,178,1.836,179,2.278,185,1.155,187,2.589,188,2.375,192,2.462,197,3.966,199,3.719,201,3.685,204,2.934,206,1.891,209,2.878,210,1.141,211,1.948,213,2.444,216,4.04,217,3.301,218,2.68,219,2.277,221,0.855,222,4.124,223,1.901,224,2.711,225,2.396,226,0.727,227,3.184,228,3.984,229,1.682,230,1.714,231,2.862,232,0.857,233,2.277,234,1.299,235,4.28,236,3.408,237,3.424,238,4.345,239,1.215,240,2.466,241,1.926,242,1.539,243,1.426,244,2.277,245,0.718,246,1.097,247,1.704,248,1.464,249,1.962,250,1.783,251,1.505,252,2.04,253,3.836,254,1.714,255,1.272,256,1.765,257,4.722,258,3.966,259,1.765,260,1.464,261,1.391,262,2,263,1.116,264,1.505,265,1.865,266,1.865,267,3.052,268,3.218,269,1.116,270,1.652,271,1.652,272,1.359,273,1.598,274,2.535,275,1.505,276,2.194,277,1.505,278,1.083,279,2.103,280,2.233,281,1.061,282,1.426,283,1.775,284,1.299,285,1.328,286,1.012,287,1.061,288,1.783,289,1.474,290,1.505,291,2.277,292,2.396,293,3.017,294,2.127,295,0.982,303,2.103,305,2.396,306,1.858,313,1.598,316,1.391,317,1.714,319,4.697,320,2.4,324,2.678,334,3.863,335,1.783,341,0.735,347,1.061,350,1.598,351,0.685,353,0.997,356,3.115,358,1.464,369,1.375,373,2.079,374,1.116,381,0.698,385,0.94,387,0.843,389,1.505,397,2.174,404,2.278,407,0.67,414,1.279,419,1.426,420,1.116,421,3.213,425,0.889,426,2.086,428,2.25,431,0.855,439,1.222,441,1.799,451,2.086,452,2.774,453,1.391,454,1.598,455,1.492,456,1.865,457,2.086,458,0.889,459,1.177,460,1.199,461,2.4,462,0.693,463,1.714,464,1.464,465,2.992,466,3.424,467,1.865,468,2.086,473,1.012,478,1.314,480,3.075,495,1.285,502,1.783,508,1.456,509,1.155,510,1.505,512,1.135,514,1.155,526,1.714,527,1.359,529,1.359,533,1.787,534,1.645,535,1.247,554,1.598,569,1.714,570,1.652,580,1.097,591,0.192,613,2.241,623,1.865,640,2.082,648,2.086,649,1.464,650,1.963,651,2.086,652,2.174,653,1.391,654,1.865,655,2.387,656,1.359,657,1.963,665,1.865,684,1.247,690,2.822,698,1.199,699,1.199,702,2.539,720,1.926,727,1.607,738,1.714,750,1.247,755,1.177,772,1.247,773,1.549,775,3.874,779,1.426,791,3.684,795,1.926,800,4.871,804,1.858,809,1.795,811,0.532,820,1.135,829,0.701,845,2.25,846,1.783,861,0.519,864,2.334,870,0.718,887,0.927,894,1.391,912,1.505,920,4.697,928,1.714,981,2.89,1004,1.328,1010,0.94,1012,0.866,1015,1.765,1030,1.359,1033,2.699,1038,2.257,1039,2.878,1050,0.612,1054,1.973,1078,1.417,1114,0.548,1134,1.865,1145,1.222,1147,1.097,1148,0.889,1151,0.727,1157,3.474,1164,1.222,1186,1.652,1204,1.505,1214,5.402,1233,1.426,1238,0.633,1278,1.426,1279,0.997,1283,1.426,1288,1.652,1305,3.052,1316,1.079,1330,2.25,1332,1.549,1369,1.865,1377,1.858,1385,1.598,1423,1.391,1424,1.426,1430,1.505,1464,1.391,1500,2.615,1522,2.919,1558,1.783,1599,1.963,1638,2.086,1664,1.464,1691,1.328,1727,3.188,1728,1.963,1729,2.25,1730,2.25,1731,2.5,1732,2.396,1733,1.963,1734,3.683,1735,2.25,1736,1.783,1737,2.5,1738,2.5,1739,2.5,1740,2.5,1741,1.199,1742,1.714,1743,2.5,1744,1.783,1745,2.5,1746,2.086,1747,2.25,1748,2.5,1749,3.874,1750,1.963,1751,1.116,1752,2.5,1753,2.25,1754,4.078,1755,3.213,1756,1.865,1757,2.5,1758,2.086,1759,2.5,1760,2.5,1761,2.086,1762,2.5,1763,4.091,1764,2.5,1765,1.963,1766,4.091,1767,1.783,1768,2.25,1769,2.5,1770,2.5,1771,4.091,1772,2.5,1773,2.5,1774,2.5,1775,2.25,1776,2.396,1777,1.505,1778,2.25,1779,2.25,1780,3.414,1781,2.5,1782,1.865,1783,2.5,1784,2.5,1785,4.091,1786,4.091,1787,3.213,1788,1.963,1789,2.5,1790,2.5,1791,2.5,1792,2.5,1793,2.5,1794,2.5,1795,1.865,1796,3.683,1797,2.086,1798,0.927,1799,2.5,1800,4.091,1801,2.5,1802,2.5,1803,2.5,1804,2.5,1805,2.5,1806,2.5,1807,1.652,1808,2.5,1809,2.5,1810,2.5]],["description//tracks/aws-certified-developer-associate/lambda/",[32,1.127,47,2.035,65,1.305,870,1.51]],["title//tracks/aws-certified-developer-associate/kms/_index",[31,1.405,280,1.438,431,1.835]],["content//tracks/aws-certified-developer-associate/kms/_index",[3,1.388,5,1.388,7,1.429,8,2.035,9,1.146,16,0.903,17,1.809,19,1.275,21,1.982,23,0.596,27,1.213,29,3.079,31,2.606,32,2.254,37,2.621,39,1.114,40,1.468,49,1.315,53,1.734,54,0.819,55,1.561,56,1.146,57,2.388,60,0.518,62,1.062,66,0.884,68,2.535,69,1.414,72,2.08,76,1.068,82,1.315,89,3.204,90,1.931,92,1.671,95,1.528,96,1.44,108,0.777,114,1.198,119,2.142,120,0.905,127,1.054,128,2.271,132,1.296,133,1.296,137,0.29,140,1.317,142,0.975,145,1.671,146,2.232,154,1.86,157,1.787,159,2.308,165,0.547,171,1.521,174,1.027,175,1.501,178,1.85,188,0.951,195,2.938,210,1.269,215,2.519,217,2.364,218,1.92,223,0.863,226,0.364,232,0.495,240,2.388,241,2.232,242,1.13,247,0.853,249,1.44,256,2.378,261,1.671,262,1.468,272,3.193,275,1.808,276,1.734,278,0.795,280,2.769,281,1.275,285,1.596,287,2.013,289,0.853,291,1.671,293,2.013,295,1.863,303,1.92,306,1.364,307,0.843,310,1.632,311,1.468,322,3.031,328,1.317,341,0.884,346,1.92,350,3.031,353,1.198,358,1.759,371,3.031,372,1.255,373,1.642,378,1.275,381,0.808,385,1.13,393,1.083,397,1.596,407,0.804,413,2.116,416,1.985,425,1.068,431,3.745,455,1.362,458,1.068,459,1.414,474,1.498,480,1.18,484,2.577,500,1.671,502,2.142,514,4.294,516,4.027,520,2.274,533,0.894,534,1.829,541,1.596,569,2.058,591,0.248,596,5.054,597,2.209,598,2.519,599,6.805,600,1.759,601,2.343,602,5.52,603,6.744,604,5.704,605,2.274,606,2.703,607,1.561,608,2.241,609,6.347,610,3.537,611,2.667,612,1.92,613,2.535,614,5.507,615,2.506,616,2.358,617,4.268,618,2.703,619,3.723,620,2.703,621,2.058,622,1.713,623,3.537,624,3.134,625,0.927,626,1.068,627,2.506,628,1.861,629,4.253,630,2.241,631,2.274,632,1.498,633,1.671,634,2.358,635,1.759,636,2.058,637,1.44,644,1.92,655,2.406,658,2.142,660,2.142,671,0.727,673,4.013,684,1.498,694,1.528,698,1.44,716,2.241,720,2.232,736,1.561,754,0.814,762,1.596,763,2.142,764,7.47,770,1.713,791,1.671,796,1.713,809,2.08,817,1.34,823,1.44,861,0.984,865,1.528,870,1.362,918,2.241,920,1.985,929,0.61,942,1.013,992,1.317,1010,1.13,1013,3.537,1024,1.114,1033,1.561,1054,1.931,1055,1.364,1056,1.561,1058,1.713,1062,1.561,1070,1.468,1075,2.142,1112,1.528,1115,2.938,1119,1.713,1157,1.468,1171,4.027,1260,1.861,1283,1.713,1286,2.318,1293,1.713,1297,1.216,1305,3.537,1324,1.198,1335,0.596,1360,1.34,1363,6.061,1368,2.506,1380,2.241,1383,2.358,1388,1.985,1389,2.854,1422,2.577,1497,2.358,1504,2.241,1520,2.058,1553,1.632,1565,2.142,1587,2.506,1594,2.639,1610,1.808,1657,2.058,1660,1.364,1664,1.759,1744,2.142,1749,3.537,1750,2.358,1756,2.241,1777,2.854,1811,3.003,1812,3.003,1813,1.561,1814,3.003,1815,3.003,1816,4.741,1817,3.003,1818,3.003,1819,3.003,1820,4.268,1821,2.358,1822,6.672,1823,3.003,1824,5.875,1825,5.182,1826,3.956,1827,5.567,1828,3.003,1829,3.003,1830,3.003,1831,3.003,1832,1.498,1833,3.003,1834,3.003,1835,2.241,1836,8.378,1837,3.003,1838,1.44,1839,3.003,1840,3.003,1841,3.003,1842,3.003,1843,3.003,1844,3.003,1845,3.003,1846,3.003,1847,1.92,1848,6.672,1849,2.142,1850,2.703,1851,3.003,1852,3.003,1853,2.703,1854,2.703,1855,3.003,1856,3.003,1857,2.703,1858,3.003,1859,1.759,1860,3.003,1861,3.003,1862,3.003,1863,3.003,1864,3.003,1865,5.875,1866,3.003,1867,2.703,1868,3.003,1869,1.255,1870,2.506,1871,3.003,1872,3.003,1873,2.703]],["description//tracks/aws-certified-developer-associate/kms/_index",[7,0.504,16,0.284,23,0.641,31,0.845,128,0.723,222,1.643,241,1.52,244,1.797,280,0.865,431,1.715,602,1.716,1813,1.678]],["title//tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/",[16,0.342,373,1.347,599,2.487,602,2.067,655,1.403,763,2.775]],["content//tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/",[5,1.679,7,1.238,8,2.419,10,1.471,16,0.867,17,2.096,27,0.93,29,1.449,31,1.734,32,2.054,33,2.634,35,1.31,41,1.783,42,1.621,51,1.877,54,0.924,57,2.178,62,1.23,64,1.807,65,1,68,2.37,70,0.787,82,2.402,83,1.518,89,2.357,90,2.178,91,1.71,108,1.715,118,1.742,127,1.275,128,1.483,132,2.37,133,2.37,137,0.64,140,3.912,142,1.783,149,1.742,157,1.472,159,1.427,163,2.491,165,1.206,171,1.911,174,1.19,175,2.097,176,2.187,178,1.008,179,3.239,183,3.118,210,0.691,211,1.179,216,2.739,217,5.143,218,1.471,223,1.578,230,2.49,231,3.182,239,1.55,240,2.427,244,2.022,245,1.903,247,2.368,255,1.849,269,1.621,280,2.234,289,1.032,303,2.682,306,2.494,307,1.02,309,2.812,321,3.404,340,1.71,341,1.069,344,3.511,347,3.365,351,2.374,361,1.427,369,2.1,372,3.084,373,3.088,374,4.275,382,1.578,390,2.096,393,2.663,400,2.724,412,2.158,429,0.886,431,3.63,441,1.258,450,1.954,473,1.471,480,1.427,484,1.594,486,1.93,487,1.427,495,0.899,502,2.592,509,2.539,514,1.679,517,5.915,533,2.198,534,0.996,545,2.49,563,1.449,591,0.227,599,6.404,602,5.385,603,4.584,604,4.314,605,1.742,609,5.201,611,2.494,615,3.032,625,1.122,629,3.217,641,2.127,655,2.663,663,2.853,671,0.879,673,1.889,696,1.853,698,3.541,699,4.462,720,1.71,734,1.621,754,0.985,763,5.949,764,7.168,777,1.427,783,1.471,791,2.022,809,1.594,814,2.022,860,1.407,889,2.073,924,2.037,929,1.115,934,2.009,943,3.765,948,4.144,950,2.634,973,2.986,999,1.776,1010,2.491,1012,1.903,1024,2.456,1038,3.137,1078,1.258,1096,3.271,1112,1.849,1130,2.49,1136,2.919,1144,4.913,1145,2.686,1147,2.906,1148,3.641,1151,2.305,1157,4.077,1163,1.889,1167,2.919,1168,1.165,1170,1.849,1178,1.494,1183,2.128,1186,2.402,1194,1.889,1223,2.323,1258,1.812,1260,2.251,1279,2.191,1285,2.323,1286,3.238,1293,2.073,1296,4.104,1297,1.471,1325,1.812,1372,4.584,1385,4.719,1395,4.942,1396,3.057,1397,3.919,1422,3.6,1428,4.314,1431,4.725,1436,3.631,1447,1.71,1448,4.013,1462,1.31,1481,2.711,1482,1.812,1507,2.592,1509,4.314,1515,1.93,1614,2.402,1749,4.942,1849,3.919,1853,3.271,1854,3.271,1874,3.271,1875,2.592,1876,2.592,1877,3.633,1878,2.592,1879,3.633,1880,4.942,1881,3.032,1882,5.656,1883,3.633,1884,3.633,1885,3.032,1886,3.271,1887,1.386,1888,3.633,1889,3.633,1890,3.633,1891,3.633,1892,2.592,1893,3.633,1894,3.271,1895,3.271,1896,2.711,1897,4.945,1898,3.271,1899,2.711,1900,2.711,1901,3.271,1902,3.271,1903,5.493,1904,3.032,1905,5.527,1906,3.633,1907,2.187,1908,3.633,1909,3.271,1910,3.633,1911,4.945,1912,5.493,1913,3.633,1914,5.493,1915,5.493,1916,3.271,1917,3.032,1918,3.633,1919,3.633,1920,3.633,1921,3.633]],["description//tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/",[16,0.428,373,1.689,599,3.116,602,2.59,655,1.758,763,3.478]],["title//tracks/aws-certified-developer-associate/kinesis/_index",[464,4.21]],["content//tracks/aws-certified-developer-associate/kinesis/_index",[9,2.019,16,0.832,19,2.247,23,1.824,27,1.843,31,2.142,32,1.882,41,1.718,49,1.997,53,1.935,55,2.751,57,1.74,60,0.912,62,1.185,65,0.964,66,1.557,70,1.147,76,3.124,82,1.468,86,2.211,89,1.883,108,1.37,110,2.946,117,2.639,119,3.776,120,2.17,125,1.451,128,2.386,165,0.964,174,1.147,175,2.279,204,2.587,208,2.946,210,1.747,211,1.718,213,2.491,218,2.143,221,2.461,225,5.142,243,3.02,245,1.52,246,2.322,249,4.211,256,2.584,261,2.946,280,1.418,281,2.247,284,2.751,292,3.099,294,2.751,295,2.079,308,2.829,310,2.877,312,2.587,327,2.079,365,2.176,380,3.383,384,3.327,385,1.991,420,3.651,425,1.883,429,0.854,434,3.715,435,4.602,446,7.617,455,2.722,464,6.202,465,5.194,488,3.383,496,4.791,509,2.446,524,2.362,527,3.913,534,1.974,556,5.136,557,3.53,558,4.156,559,4.764,560,4.764,561,4.156,562,8.53,563,2.111,564,3.628,565,1.833,566,3.59,567,4.216,568,4.764,569,3.628,570,3.498,571,4.764,572,4.764,573,6.481,574,6.481,575,3.948,576,2.597,578,2.639,579,4.156,580,3.158,581,4.764,582,4.764,583,2.176,584,5.608,585,4.156,586,6.827,587,4.764,588,4.759,589,4.764,590,6.425,591,0.194,592,6.425,593,3.776,594,4.416,595,3.948,612,3.383,630,3.948,642,2.211,671,1.281,684,2.639,747,3.948,754,1.434,770,3.02,777,2.079,802,3.279,829,1.485,839,5.23,861,1.098,865,2.694,870,1.52,942,1.786,976,4.216,992,2.322,1022,3.628,1033,4.253,1036,3.776,1037,3.02,1054,2.367,1086,3.52,1089,3.453,1090,2.694,1416,6.007,1417,3.185,1424,3.02,1579,4.156,1582,4.156,1605,4.764,1606,4.764,1645,3.498,1724,2.946,1780,4.416,1838,2.538,1922,4.156,1923,5.293,1924,5.293,1925,3.383,1926,5.293,1927,2.049,1928,5.293,1929,5.293,1930,4.764,1931,4.764,1932,4.764,1933,4.416,1934,5.293,1935,4.764,1936,5.293]],["description//tracks/aws-certified-developer-associate/kinesis/_index",[128,0.896,210,0.761,244,2.227,249,1.919,455,1.149,465,1.995,496,2.343,557,1.726,976,2.343]],["title//tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/",[23,0.708,128,1.212,225,2.087,368,1.983,464,2.087,1607,2.798]],["content//tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/",[1,1.479,3,0.851,7,1.501,10,3.196,16,0.724,23,1.207,25,0.958,27,2.554,28,0.958,29,0.735,30,1.318,31,1.294,32,1.829,33,2.37,40,0.901,42,1.858,43,0.674,47,3.192,48,2.348,51,0.686,54,0.907,59,2.254,60,1.048,64,1.209,65,0.9,66,1.454,68,1.796,70,0.399,71,1.286,75,1.376,76,2.987,82,1.905,83,0.77,86,2.325,87,0.901,89,0.655,91,1.96,94,2.975,108,1.573,110,1.025,115,1.344,116,1.544,117,2.776,118,3.443,125,2.107,127,1.111,128,2.326,131,2.82,132,0.795,133,3.097,137,0.781,142,2.769,144,1.079,146,0.82,153,3.065,156,2.698,157,1.743,159,0.724,160,1.366,165,1.013,169,2.134,170,2.442,178,0.878,179,2.168,180,1.025,182,0.674,183,1.96,185,0.851,187,1.366,188,1.002,203,0.822,205,2.093,210,1.365,211,1.352,213,1.49,215,1.682,216,4.186,218,0.746,221,0.63,223,1.196,224,2.253,225,5.542,228,3.486,229,0.758,231,3.485,232,0.918,237,2.375,238,3.311,239,0.974,240,1.041,245,1.746,247,0.523,249,1.518,254,2.17,256,0.542,278,1.309,279,2.254,280,1.923,286,1.377,287,0.782,289,0.523,295,2.187,303,2.001,306,3.98,307,1.168,308,2.388,309,0.782,310,1.001,312,0.901,315,2.263,320,3.811,324,0.822,327,1.636,328,0.808,332,3.449,340,0.867,347,2.762,351,1.355,363,2.464,365,1.302,368,3.996,369,1.973,381,0.71,382,2.268,390,2.319,393,2.008,398,1.001,399,0.901,400,2.289,406,1.646,407,0.848,412,1.636,415,3.449,418,1.658,419,1.806,420,0.822,427,0.938,429,0.511,431,1.423,434,0.836,435,2.661,442,2.82,444,0.958,445,0.555,446,4.153,450,1.98,452,0.851,454,2.661,455,0.91,459,2.326,461,2.573,464,5.791,465,5.04,473,1.282,478,1.054,480,0.724,495,1.377,501,0.979,508,1.98,509,1.924,524,0.822,527,3.902,530,0.808,533,1.81,534,1.526,537,1.413,563,0.735,565,1.097,578,1.579,584,5.754,591,0.233,597,1.859,599,1.178,601,1.263,602,1.682,605,0.883,611,0.836,625,2.634,631,2.37,637,0.883,641,1.226,642,1.323,670,2.58,671,1.007,690,1.001,698,0.883,727,2.388,732,2.076,734,1.019,752,3.971,755,1.49,759,1.051,762,1.682,767,1.962,770,1.051,777,0.724,780,1.178,792,1.314,795,0.867,797,0.919,800,1.263,804,2.244,809,1.826,811,0.542,814,2.317,815,4.166,816,1.141,820,0.836,831,0.938,832,2.076,860,1.612,861,0.864,864,1.051,868,1.218,885,1.178,889,1.806,915,3.679,920,1.218,924,2.254,928,2.854,929,0.374,934,3.34,943,2.17,948,4.243,973,3.025,975,1.001,977,1.263,986,2.75,1003,3.51,1004,4.083,1010,1.191,1012,1.928,1017,2.464,1034,1.611,1038,1.191,1049,2.363,1078,0.638,1091,0.683,1113,1.263,1114,1.083,1116,1.49,1122,1.447,1124,1.579,1144,5.229,1145,2.721,1146,1.263,1147,3.268,1148,3.588,1150,2.024,1157,1.548,1158,0.746,1163,0.958,1164,1.548,1167,2.957,1168,1.784,1169,0.867,1173,2.464,1178,0.758,1179,2.974,1180,3.474,1181,2.75,1183,2.438,1184,1.051,1185,2.75,1186,3.266,1187,1.079,1188,1.314,1189,3.387,1190,1.636,1191,1.314,1192,1.141,1193,1.302,1194,0.958,1195,2.438,1196,1.314,1197,1.218,1198,1.447,1199,1.447,1200,1.537,1216,1.141,1226,2.642,1230,0.851,1233,1.051,1236,3.916,1238,0.801,1244,1.263,1259,1.079,1278,1.051,1286,2.416,1288,1.218,1291,4.535,1292,1.314,1294,1.218,1295,1.658,1296,3.767,1297,2.634,1299,1.658,1303,0.301,1304,1.658,1305,1.374,1311,1.913,1315,2.263,1316,2.132,1318,3.176,1322,3.748,1324,0.735,1360,0.822,1369,4.535,1392,1.413,1424,2.375,1433,2.259,1434,1.314,1449,3.094,1476,3.176,1497,1.447,1500,1.178,1502,1.314,1514,0.713,1517,0.938,1557,1.658,1579,1.447,1596,3.269,1603,1.537,1607,4.371,1642,1.051,1654,2.82,1668,2.259,1673,1.96,1675,1.611,1678,4.153,1682,4.854,1686,2.486,1697,1.141,1708,4.256,1715,1.314,1716,1.263,1734,2.85,1835,3.106,1849,1.314,1937,2.259,1938,2.17,1939,1.842,1940,2.17,1941,6.918,1942,6.506,1943,3.166,1944,3.166,1945,4.942,1946,1.447,1947,4.164,1948,2.093,1949,4.164,1950,1.079,1951,1.658,1952,1.178,1953,1.842,1954,1.842,1955,1.842,1956,1.842,1957,1.842,1958,1.842,1959,1.658,1960,0.693,1961,1.842,1962,1.842,1963,1.842,1964,1.842,1965,3.166,1966,1.842,1967,1.842,1968,1.842,1969,6.079,1970,3.166,1971,3.166,1972,1.842,1973,1.447,1974,1.537,1975,4.164,1976,1.658,1977,3.166,1978,1.658,1979,6.868,1980,2.642,1981,1.282,1982,1.842,1983,1.842,1984,1.842,1985,1.842,1986,1.842,1987,1.842,1988,4.164,1989,1.842,1990,1.842,1991,6.079,1992,4.942,1993,1.842,1994,4.164,1995,3.166,1996,4.449,1997,1.842,1998,1.537,1999,4.164,2000,2.97,2001,1.447,2002,1.537,2003,3.748,2004,1.218,2005,1.374,2006,1.842,2007,1.447,2008,1.842,2009,1.842,2010,3.166,2011,1.842,2012,4.942,2013,1.842,2014,4.942,2015,3.166,2016,4.164,2017,1.842,2018,1.842,2019,1.842,2020,1.314,2021,3.166,2022,4.164,2023,3.166,2024,1.906,2025,3.166,2026,1.842,2027,1.842,2028,1.842,2029,1.842,2030,1.842,2031,1.842,2032,1.842,2033,1.842,2034,1.842,2035,1.842,2036,1.842,2037,3.166,2038,1.842,2039,1.842,2040,1.842,2041,1.842,2042,1.842,2043,3.166,2044,3.166,2045,1.447,2046,1.842,2047,1.842,2048,1.842,2049,1.842,2050,1.178,2051,1.842,2052,1.842,2053,1.658]],["description//tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/",[23,0.903,128,1.45,225,2.661,368,2.529,464,2.661,1607,3.568]],["title//tracks/aws-certified-developer-associate/iam/",[179,3.154]],["content//tracks/aws-certified-developer-associate/iam/",[3,3.884,7,1.514,9,1.7,10,2.83,16,0.892,19,1.179,21,2.358,22,2.578,23,1.482,25,1.444,26,1.775,27,1.634,31,2.419,32,2.249,35,1.002,38,1.804,39,1.03,40,1.358,42,1.239,43,1.016,48,1.412,49,1.938,51,1.821,53,1.629,55,1.444,56,2.128,57,2.95,60,0.768,62,1.565,65,0.811,70,0.965,76,0.988,79,1.672,80,2.681,81,2.367,82,2.948,86,1.16,89,0.988,90,1.834,94,1.075,96,1.332,108,0.719,109,1.836,116,1.03,120,0.837,124,2.681,128,0.622,137,0.539,138,1.981,142,1.446,146,1.931,147,3.933,153,1.239,156,0.949,157,0.744,163,2.401,165,0.506,169,2.453,170,1.954,171,1.444,172,0.975,175,1.766,178,1.236,179,4.648,180,4.152,182,1.629,185,2.95,188,1.41,189,1.358,195,1.721,196,1.904,197,4.219,198,4.381,206,3.23,212,4.33,215,3.713,216,4.663,217,4.955,218,1.125,219,2.48,222,1.413,223,1.834,224,0.962,226,0.54,227,2.966,236,1.332,239,1.043,240,3.325,241,2.626,244,1.546,246,1.954,247,2.547,261,1.546,263,1.239,276,3.222,278,1.18,280,2.532,283,1.523,289,1.812,294,1.444,295,1.091,298,1.626,303,1.125,305,1.626,307,0.779,309,1.179,310,1.509,320,1.284,323,1.981,329,1.721,334,1.509,347,2.71,349,4.554,351,0.761,358,2.609,369,1.975,372,1.16,373,1.932,374,2.489,378,1.891,385,2.098,394,0.949,396,2.04,407,1.193,423,2.367,425,2.654,431,2.679,434,2.023,439,1.358,441,1.543,452,1.284,453,2.48,473,1.125,478,0.703,480,1.091,484,1.218,488,4.08,501,1.476,507,2.5,508,1.585,509,1.284,510,4.49,511,1.16,512,1.261,513,4.484,514,4.795,515,2.181,516,1.904,517,3.324,518,3.717,519,3.324,520,1.332,521,1.836,533,1.901,534,0.761,536,6.247,537,1.988,538,2.761,539,2.848,540,2.072,541,1.476,542,4.01,543,2.5,544,5.013,545,1.904,546,4.01,547,4.01,548,5.022,549,2.5,550,2.5,551,2.5,552,2.317,553,2.072,554,3.566,555,2.5,591,0.208,593,1.981,596,1.476,611,1.261,625,1.723,629,5.049,631,1.332,671,0.672,684,2.782,703,5.326,734,1.09,740,2.267,749,1.444,754,0.753,755,1.307,773,2.761,779,1.584,783,1.125,791,2.48,795,2.626,804,1.261,809,1.954,856,1.981,860,1.075,869,1.775,870,0.798,871,6.291,887,1.03,894,1.546,915,1.836,933,4.01,934,1.016,942,0.937,948,1.261,950,1.332,957,1.626,964,3.717,986,1.546,992,1.218,999,1.358,1003,1.358,1010,1.676,1038,1.045,1039,1.332,1070,2.178,1081,1.584,1136,1.476,1148,1.585,1149,2.5,1151,0.807,1157,4.978,1169,1.307,1170,1.413,1193,1.832,1195,1.626,1202,1.385,1203,0.902,1293,1.584,1318,1.584,1326,4.375,1332,4.856,1335,0.552,1358,3.457,1385,5.372,1389,1.672,1395,6.27,1396,1.546,1397,3.178,1405,1.672,1422,1.509,1423,1.546,1447,1.307,1456,1.509,1462,2.302,1609,1.904,1648,1.444,1654,2.542,1664,1.626,1668,1.981,1691,1.476,1695,1.045,1722,1.284,1724,1.546,1729,2.5,1730,2.5,1832,1.385,1838,1.332,1950,1.626,2054,2.5,2055,2.777,2056,2.777,2057,4.01,2058,2.777,2059,2.777,2060,2.5,2061,2.777,2062,5.579,2063,4.219,2064,2.777,2065,2.848,2066,2.5,2067,2.181,2068,2.777,2069,2.181,2070,2.5,2071,2.777,2072,2.777,2073,2.777,2074,2.777,2075,2.777,2076,2.136,2077,2.777,2078,2.777,2079,2.777,2080,5.013,2081,4.455,2082,2.777,2083,4.455,2084,4.455,2085,2.777,2086,2.5,2087,2.5,2088,2.777,2089,2.777,2090,2.777,2091,2.777,2092,8.973,2093,2.777,2094,8.147,2095,5.858,2096,1.476,2097,2.777,2098,6.384,2099,4.455,2100,2.777,2101,2.777,2102,2.777,2103,2.777,2104,4.455,2105,2.777,2106,2.777,2107,2.777,2108,2.777,2109,2.777,2110,2.777]],["description//tracks/aws-certified-developer-associate/iam/",[32,0.809,51,0.818,65,1.029,179,1.656,223,1.085,240,1.241,280,1.011,510,2.272,870,1.085]],["title//tracks/aws-certified-developer-associate/fis/",[503,4.005,504,3.83,915,3.548]],["content//tracks/aws-certified-developer-associate/fis/",[7,1.225,9,2.3,11,1.335,16,0.767,19,2.559,22,3.629,27,1.543,29,2.404,31,2.056,32,2.056,37,2.69,39,2.911,49,1.672,53,2.204,59,2.911,62,1.35,82,1.672,84,3.628,85,3.068,88,3.439,93,4.3,94,2.334,125,2.394,132,2.601,147,3.387,149,3.765,156,3.509,158,4.497,163,3.699,169,3.247,172,2.756,174,1.306,175,2.485,179,2.644,208,3.355,211,1.957,216,3.006,228,2.601,238,3.068,239,1.411,249,2.891,261,4.859,272,4.267,278,1.596,280,1.615,283,2.06,289,1.711,292,3.53,302,3.628,303,2.441,309,3.333,311,2.947,312,3.838,313,3.853,316,3.355,325,4.734,367,5.03,372,2.518,387,2.649,395,4.171,399,2.947,407,1.615,421,4.734,425,2.145,427,3.068,429,0.973,439,3.838,447,3.068,455,2.255,478,1.525,481,7.86,482,5.113,483,7.067,484,2.644,485,5.03,486,4.171,487,2.368,488,3.853,489,3.853,490,5.426,491,5.03,492,5.426,493,4.497,494,4.734,495,2.16,496,3.53,497,5.426,498,6.286,499,5.426,500,3.355,501,3.203,502,4.3,503,7.156,504,6.843,505,4.3,506,5.426,541,3.203,591,0.143,598,3.203,605,2.891,667,4.497,671,1.459,673,3.133,785,3.355,832,3.006,861,1.251,870,1.732,904,5.381,915,5.189,929,1.224,942,2.034,992,2.644,997,3.735,1010,2.953,1017,3.006,1033,3.133,1054,2.871,1063,4.3,1065,3.006,1070,2.947,1081,3.439,1090,3.068,1101,4.497,1134,4.497,1245,4.734,1267,5.426,1326,4.132,1360,2.69,1665,3.039,1827,5.03,1869,2.518,1973,6.856,2111,5.426,2112,6.028,2113,3.984,2114,6.028,2115,6.028,2116,5.03,2117,5.03,2118,5.426,2119,4.132]],["description//tracks/aws-certified-developer-associate/fis/",[32,0.858,175,1.267,241,1.883,439,1.956,498,2.557,503,2.985,504,2.854,915,2.644,1245,3.142]],["title//tracks/aws-certified-developer-associate/fargate/",[471,4.752]],["content//tracks/aws-certified-developer-associate/fargate/",[9,2.54,16,0.585,17,3.192,19,2.826,22,3.077,23,1.662,27,2.342,31,2.643,32,2.196,49,1.846,53,2.435,62,1.491,82,1.846,113,4.786,116,2.469,125,1.825,142,2.161,156,2.86,169,2.337,171,1.723,242,2.504,259,4.267,274,4.125,276,2.435,280,2.649,283,2.276,302,6.075,307,1.868,372,3.495,383,3.733,404,3.67,423,4.445,448,4.4,471,6.671,472,5.947,473,2.696,474,3.32,475,5.968,476,3.619,477,3.388,478,2.645,479,4.4,480,3.287,482,5.357,534,2.293,565,2.306,671,1.611,696,2.246,701,4.563,754,1.804,854,2.971,861,1.381,870,1.913,887,2.469,901,3.898,902,5.228,903,6.536,904,5.734,923,5.228,942,2.246,992,2.921,1054,2.751,1055,3.023,1056,3.461,1058,4.773,1070,3.255,1078,2.306,1126,5.993,1283,3.798,1567,4.563,1572,5.555,2120,5.555,2121,6.658,2122,5.555,2123,4.256,2124,5.228,2125,5.993,2126,5.993,2127,5.993,2128,5.993,2129,4.4,2130,4.967]],["description//tracks/aws-certified-developer-associate/fargate/",[113,3.11,404,2.736,478,1.579]],["title//tracks/aws-certified-developer-associate/eventbridge/",[463,4.928]],["content//tracks/aws-certified-developer-associate/eventbridge/",[4,2.674,9,1.963,16,0.873,17,3.076,19,2.183,23,1.998,26,3.288,27,2.327,31,2.566,32,2.014,37,4.192,41,1.67,47,2.733,48,2.301,49,1.427,53,3.173,62,1.152,65,0.936,68,2.219,75,1.165,80,3.096,82,1.427,84,3.096,87,2.515,89,3.236,90,2.321,110,2.863,113,4.02,114,2.051,115,2.183,125,1.41,128,1.805,146,2.246,157,2.16,165,0.936,169,1.806,172,1.806,174,1.53,178,1.427,179,2.256,188,2.235,201,4.529,204,2.515,206,2.377,209,4.361,210,1.343,214,1.935,216,2.565,219,2.863,226,0.623,228,4.539,234,2.674,251,3.096,252,2.565,253,3.288,254,3.526,258,4.667,269,2.295,278,1.362,279,2.083,281,2.183,283,3.108,293,2.183,305,3.012,307,1.443,312,3.452,320,4.342,324,3.872,327,3.167,351,1.41,389,4.852,395,4.283,414,1.608,425,1.83,427,2.618,441,1.782,443,4.292,451,4.292,452,2.377,453,2.863,454,3.288,455,2.028,456,3.837,457,4.292,458,1.83,459,2.421,460,2.467,461,2.377,462,1.427,463,6.895,464,3.012,465,2.565,466,5.591,467,3.837,468,4.292,472,4.375,487,2.021,488,3.288,508,2.512,524,2.295,534,1.936,535,2.565,588,3.4,591,0.167,601,2.051,635,3.012,636,3.526,642,2.149,656,2.796,671,1.245,696,1.735,699,2.467,736,2.674,738,4.839,745,3.526,754,1.394,779,2.935,802,3.187,854,4.293,861,1.067,865,3.593,870,1.478,883,3.096,899,3.096,929,1.044,942,1.735,957,3.012,964,4.292,971,7.811,992,2.256,1038,1.935,1054,2.321,1055,3.206,1056,2.674,1058,2.935,1068,4.839,1084,3.526,1088,3.669,1103,4.292,1105,5.268,1107,4.63,1110,8.186,1140,4.292,1141,7.24,1157,2.515,1160,2.515,1297,2.083,1422,2.796,1456,2.796,1551,3.526,1594,2.863,1614,3.4,2131,3.4,2132,7.811,2133,5.144,2134,5.144,2135,5.144,2136,5.144,2137,4.039,2138,5.144,2139,5.144,2140,3.4,2141,4.028,2142,5.144,2143,3.669,2144,4.63,2145,3.837,2146,3.837,2147,4.63,2148,5.144,2149,3.096,2150,5.144,2151,3.526,2152,5.144]],["description//tracks/aws-certified-developer-associate/eventbridge/",[23,0.674,27,0.868,32,0.727,172,1.191,228,1.464,283,1.16,383,1.514,463,2.325,508,1.207,854,1.514,1088,2.42,2132,3.054]],["title//tracks/aws-certified-developer-associate/elasticloadbalancing/_index",[259,2.316,308,2.109,391,2.732]],["content//tracks/aws-certified-developer-associate/elasticloadbalancing/_index",[5,1.16,7,0.813,9,0.957,16,0.835,17,0.957,19,1.065,21,0.846,23,1.697,24,3.048,27,2.571,29,1.001,30,1.299,31,1.864,32,1.932,35,0.905,37,2.323,40,2.006,41,0.814,42,1.12,44,3.307,45,2.712,47,2.015,48,1.522,49,1.839,51,0.889,53,2.603,54,0.572,55,1.304,56,2.716,57,1.349,58,1.364,59,0.93,62,0.919,76,1.46,79,1.51,82,1.444,85,4.84,86,1.714,87,3.242,88,2.341,89,0.893,90,0.825,100,4.409,108,1.348,109,1.658,116,2.23,122,1.048,125,0.688,127,0.881,128,1.594,135,1.431,138,1.79,139,1.604,140,2.284,142,2.153,147,2.246,149,2.497,156,3.341,163,0.944,165,0.457,169,3.206,171,1.557,174,0.544,175,2.378,182,1.5,184,2.545,186,1.101,197,1.658,204,1.227,206,1.896,209,1.968,210,0.78,211,2.153,213,2.831,215,1.333,218,3.042,223,0.721,226,0.497,227,1.065,234,2.706,239,1.218,241,2.831,242,2.494,244,1.396,246,1.101,247,1.165,249,1.203,252,1.251,257,1.79,258,3.441,259,3.601,262,1.227,272,3.869,276,1.904,279,2.108,280,1.099,289,1.883,291,1.396,292,1.469,293,2.553,295,2.363,302,2.47,308,4.175,310,2.23,311,1.227,315,1.364,316,1.396,320,1.896,321,1.555,322,1.604,324,1.12,327,0.986,328,1.101,329,1.555,334,1.364,336,2.093,338,5.973,341,0.738,345,0.944,360,1.181,365,1.687,366,1.364,368,1.396,369,1.087,372,2.512,378,1.065,381,0.7,383,4.075,385,1.958,387,1.384,391,5.398,392,6.554,393,0.905,394,0.858,395,4.852,396,0.917,397,2.18,398,4.645,399,3.966,401,2.638,402,3.424,403,2.258,404,1.8,405,2.258,406,1.304,407,1.099,408,4.656,409,5.373,410,3.195,411,2.258,423,2.18,425,1.46,427,1.277,429,0.84,441,0.869,443,2.093,447,3.824,448,2.712,452,2.406,455,0.721,465,1.251,471,1.658,476,4.084,477,1.277,478,1.522,487,1.612,504,1.79,524,1.12,534,1.952,541,2.18,580,2.909,591,0.26,595,3.061,600,1.469,605,1.968,607,2.133,612,1.604,613,1.77,614,1.79,622,1.431,626,0.893,631,1.203,633,1.396,642,2.974,653,1.396,659,4.239,660,5.079,671,1.26,678,2.093,679,1.431,684,1.251,690,1.364,691,2.093,696,0.846,698,1.203,701,1.72,714,2.23,720,1.931,728,1.277,734,0.614,754,0.68,755,1.181,765,1.79,766,3.975,783,1.016,791,1.396,794,1.79,804,1.139,815,1.72,817,1.12,854,1.12,861,0.52,865,3.061,870,0.721,903,5.362,904,4.545,918,1.872,919,2.093,934,0.917,938,5.311,942,0.846,965,1.364,975,1.364,976,1.469,992,2.284,1010,0.944,1017,1.251,1023,3.424,1033,2.706,1036,4.731,1037,1.431,1038,2.262,1039,1.203,1040,1.72,1042,3.694,1043,1.79,1049,1.065,1054,1.349,1068,1.72,1078,1.803,1086,3.673,1091,0.93,1098,2.258,1130,1.72,1158,1.016,1169,1.181,1171,1.72,1178,1.032,1184,1.431,1194,1.304,1230,1.16,1281,2.093,1293,1.431,1326,3.568,1327,1.968,1328,2.088,1335,0.498,1354,1.469,1360,1.12,1363,2.093,1384,2.258,1389,2.47,1405,1.51,1423,1.396,1466,3.975,1488,3.694,1489,1.082,1491,1.658,1520,1.72,1524,1.658,1526,1.97,1527,1.872,1551,2.812,1553,2.829,1594,1.396,1602,1.97,1642,1.431,1645,2.712,1655,1.72,1664,1.469,1665,1.588,1721,1.72,1754,5.208,1761,2.093,1787,3.222,1825,7.355,1867,2.258,1882,2.927,1925,1.604,1950,1.469,2065,1.604,2120,2.093,2146,1.872,2153,2.509,2154,2.509,2155,2.509,2156,6.632,2157,5.206,2158,7.839,2159,5.206,2160,4.344,2161,7.119,2162,5.206,2163,2.509,2164,2.509,2165,4.686,2166,2.509,2167,2.093,2168,2.509,2169,2.258,2170,2.509,2171,2.258,2172,2.509,2173,4.344,2174,2.509,2175,5.206,2176,2.509,2177,2.509,2178,2.509,2179,2.509,2180,2.509,2181,1.72,2182,2.258,2183,2.258,2184,1.72,2185,1.72,2186,1.97,2187,2.258,2188,0.893,2189,2.509,2190,2.509,2191,2.509,2192,2.258,2193,2.258,2194,2.509,2195,5.94,2196,2.509,2197,2.509,2198,2.509,2199,2.509,2200,2.509,2201,2.509,2202,2.509,2203,2.509,2204,2.093,2205,2.258,2206,1.658,2207,1.658,2208,3.694,2209,2.509]],["description//tracks/aws-certified-developer-associate/elasticloadbalancing/_index",[27,1.248,85,2.481,284,2.534,338,2.934,439,2.383,447,2.481]],["title//tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/",[7,0.744,308,1.872,391,2.425,409,3.266]],["content//tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/",[1,1.479,3,0.929,5,2.709,7,1.414,8,1.04,10,2.579,16,0.715,23,0.882,27,1.906,30,0.636,31,1.163,32,1.701,35,0.725,39,1.647,41,1.107,43,1.914,44,3.176,51,0.739,53,1.247,54,0.888,57,1.46,60,1.284,62,1.172,64,1.281,65,1.445,66,1.003,72,0.881,76,0.715,82,0.557,83,0.839,85,1.735,86,2.837,88,1.146,89,1.58,90,0.661,91,0.946,93,3.169,100,1.092,108,1.15,110,3.262,114,2.337,116,1.264,118,2.13,120,1.028,122,0.839,125,1.746,127,1.559,128,0.764,132,2.258,133,1.916,137,0.329,140,0.881,142,2.875,145,1.898,146,1.517,147,3.948,153,1.982,154,1.657,156,3.645,157,1.995,160,2.748,163,0.756,165,0.809,169,3.41,174,1.134,175,1.657,176,1.209,178,0.557,182,0.735,183,2.759,184,0.982,185,1.576,186,0.881,188,0.636,195,1.245,203,0.897,206,0.929,208,1.898,209,1.635,210,0.995,213,1.605,215,1.812,218,2.119,221,0.687,224,1.181,226,0.243,231,3.42,232,0.733,234,4.007,239,1.04,240,2.675,242,2.396,245,0.98,247,2.31,251,1.209,259,1.916,263,1.522,274,1.245,276,3.454,278,1.798,279,1.799,280,1.819,282,1.146,291,1.118,292,1.177,293,3.453,294,1.044,295,0.789,298,1.177,303,1.381,304,1.284,306,3.083,307,1.645,308,4.16,310,1.092,312,1.667,315,4.518,320,2.944,321,2.113,323,3.169,324,1.982,328,1.949,329,1.245,332,1.245,333,1.328,334,3.186,338,4.3,341,1.54,347,2.704,362,2.673,363,1.002,365,1.402,366,3.186,369,0.903,378,1.447,381,1.086,382,0.577,383,0.897,390,1.695,391,5.379,393,1.602,397,2.781,398,2.414,399,2.559,400,1.827,402,2.845,406,1.772,408,1.245,409,5.991,412,2.056,423,1.068,425,1.58,429,1.028,434,1.548,439,0.982,441,0.696,445,1.766,447,1.023,448,1.328,449,1.809,450,1.213,453,2.472,458,0.715,461,0.929,472,2.752,473,1.381,478,0.508,479,1.328,487,1.34,495,1.45,508,1.58,514,1.576,533,2.637,534,0.935,535,1.002,536,1.377,537,1.522,538,1.245,563,0.801,578,1.002,591,0.139,595,1.499,597,0.756,602,1.068,607,1.044,611,1.548,622,1.146,628,1.245,631,0.964,632,1.002,633,1.898,641,2.269,642,3.22,649,1.177,659,5.072,660,1.433,666,4.896,670,1.245,671,0.486,679,2.534,690,2.414,694,1.023,696,1.766,702,2.172,707,1.118,714,1.092,720,0.946,727,0.789,729,1.284,732,3.386,734,2.034,748,1.284,749,2.309,750,2.61,754,1.204,759,1.146,762,1.068,770,2.534,772,1.002,779,1.945,780,2.18,783,1.381,785,4.626,791,1.118,794,1.433,795,1.605,804,0.912,809,3.381,811,0.444,814,1.898,815,1.377,831,1.735,832,1.7,856,1.433,861,0.921,869,1.284,872,1.068,873,1.771,879,2.845,889,1.945,891,1.328,924,2.518,926,2.261,932,1.499,934,3.516,938,5.331,942,1.766,948,2.892,961,1.284,975,1.092,986,2.913,990,0.663,992,1.949,994,2.18,1004,1.068,1012,0.696,1020,1.245,1030,1.092,1036,1.433,1038,2.554,1041,2.433,1043,3.734,1049,1.885,1081,1.146,1086,0.982,1094,1.284,1095,1.328,1114,0.44,1116,1.605,1124,1.002,1144,4.007,1145,1.667,1146,1.36,1147,3.135,1148,3.539,1151,2.365,1158,0.814,1160,0.982,1163,1.044,1164,1.667,1166,1.548,1167,5.136,1168,1.678,1171,3.045,1173,3.844,1177,1.7,1179,3.15,1181,1.898,1185,3.545,1186,1.328,1187,1.997,1188,2.433,1190,2.056,1192,1.245,1193,0.826,1195,3.065,1216,1.245,1258,1.002,1259,2.601,1279,2.087,1284,1.499,1285,1.284,1286,2.865,1291,1.499,1297,0.814,1315,1.092,1316,0.867,1317,1.146,1324,0.801,1325,1.7,1328,1.023,1329,1.499,1338,1.677,1343,0.801,1354,1.177,1358,3.243,1360,0.897,1366,1.433,1380,3.314,1389,1.209,1392,0.897,1395,1.499,1408,1.677,1425,3.314,1433,3.169,1436,4.723,1447,0.946,1449,1.735,1475,1.328,1476,1.945,1482,1.7,1489,2.529,1491,2.254,1506,1.677,1517,2.261,1526,5.848,1528,1.735,1548,6.113,1551,4.017,1556,4.711,1558,5.313,1614,3.459,1648,1.772,1654,1.146,1659,1.677,1663,1.284,1665,1.72,1668,1.433,1673,1.605,1675,1.735,1699,2.433,1700,0.814,1708,2.113,1715,1.433,1722,0.929,1741,0.964,1776,1.997,1832,1.002,1838,0.964,1869,0.839,1875,2.433,1882,3.734,1897,1.809,1907,2.052,1917,2.845,1937,2.433,1950,1.997,1976,1.809,2020,1.433,2045,1.578,2054,1.809,2080,1.578,2096,2.36,2113,1.328,2118,1.809,2207,1.328,2210,1.809,2211,5.234,2212,1.677,2213,2.845,2214,2.18,2215,4.442,2216,3.069,2217,3.459,2218,4.442,2219,2.009,2220,1.809,2221,1.578,2222,1.677,2223,2.009,2224,2.009,2225,1.997,2226,2.845,2227,1.377,2228,2.009,2229,2.009,2230,1.578,2231,2.009,2232,1.677,2233,2.009,2234,1.812,2235,1.328,2236,1.812,2237,1.945,2238,3.41,2239,3.41,2240,4.442,2241,2.544,2242,1.433,2243,2.009,2244,1.809,2245,1.578,2246,5.861,2247,1.578,2248,3.41,2249,1.433,2250,2.009,2251,1.809,2252,2.839,2253,2.433,2254,2.009,2255,1.809,2256,1.328,2257,2.009,2258,1.578,2259,2.009,2260,2.009,2261,2.009,2262,1.433,2263,1.677,2264,1.809,2265,1.809,2266,1.578,2267,2.009,2268,1.578,2269,0.881,2270,1.677,2271,1.499,2272,2.678,2273,3.41]],["description//tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/",[7,0.761,32,1.045,308,1.915,391,2.481,409,3.341,925,2.934]],["title//tracks/aws-certified-developer-associate/elasticbeanstalk/",[259,2.652,260,3.599]],["content//tracks/aws-certified-developer-associate/elasticbeanstalk/",[4,1.254,7,1.46,9,0.92,10,0.977,16,0.853,17,0.92,19,1.024,21,0.814,22,1.115,23,1.772,25,1.254,27,2.691,29,0.962,31,2.094,32,2.114,38,0.977,40,2.477,43,0.882,44,1.203,45,2.626,47,0.934,48,1.005,49,1.629,51,1.829,54,0.706,55,1.254,56,0.92,57,2.708,58,1.311,59,1.473,60,0.685,62,1.654,64,0.59,66,0.71,68,1.714,70,0.861,72,2.222,75,1.811,76,0.858,79,1.452,82,1.102,85,2.578,86,1.66,89,1.414,90,1.666,94,0.934,95,2.022,100,2.753,101,1.343,104,2.723,108,0.624,109,1.595,114,1.585,116,3.756,120,1.197,121,1.494,122,1.008,124,3.535,125,2.025,127,2.709,128,0.89,129,1.157,133,1.041,139,1.542,142,3.17,145,2.211,146,2.442,147,2.534,149,1.157,153,1.773,156,3.225,157,1.357,159,1.99,160,1.041,163,1.494,165,0.439,168,1.87,169,2.593,170,1.058,171,0.624,172,1.395,174,0.523,175,1.258,178,1.405,179,2.222,182,1.453,185,1.836,188,0.764,192,1.452,201,1.136,208,1.343,209,1.157,210,1.117,211,0.783,216,3.849,217,2.526,224,0.836,226,0.292,227,4.167,228,1.714,231,2.818,232,0.655,233,1.343,236,1.905,239,0.565,240,1.306,241,2.384,242,2.443,245,1.141,246,1.058,251,1.452,252,1.203,256,2.661,259,4.429,260,5.949,263,1.076,269,1.076,272,3.53,276,0.882,278,0.639,279,2.378,280,1.573,281,1.024,283,2.008,286,1.91,289,1.128,293,1.687,294,1.254,300,2.013,303,4.046,306,2.949,307,1.421,308,2.902,312,2.477,315,2.16,321,1.495,324,3.675,328,1.743,330,1.095,334,2.753,338,3.049,341,0.71,343,5.83,344,2.54,345,0.907,346,3.754,347,1.687,348,1.8,349,1.721,350,1.542,351,2.704,352,1.282,353,1.585,354,1.894,355,1.203,356,1.136,357,1.894,358,1.413,359,3.577,360,3.477,361,2.902,362,1.452,363,1.203,364,1.721,365,2.083,366,3.53,367,2.013,368,1.343,369,1.342,370,1.8,371,3.238,372,3.825,373,3.089,374,2.26,375,3.238,376,1.894,377,1.8,378,1.024,381,0.864,383,2.26,384,1.115,385,0.907,391,3.305,394,0.825,396,1.453,397,1.282,399,1.179,404,1.058,419,1.376,423,3.45,425,0.858,431,0.825,434,1.095,435,3.238,441,1.376,447,1.228,452,1.115,453,1.343,455,1.455,456,1.8,458,1.802,459,1.136,465,2.929,467,5.511,474,1.203,476,3.798,477,1.228,478,0.611,480,3.836,484,1.058,488,1.542,501,1.282,505,4.984,508,1.802,512,1.095,514,1.115,520,1.157,523,3.315,529,1.311,533,1.183,534,1.089,557,1.714,565,2.034,567,2.327,570,1.595,588,1.595,591,0.175,598,1.282,600,1.413,613,2.186,624,1.595,637,1.157,640,1.228,642,1.008,644,3.238,647,1.721,659,1.542,666,1.452,671,0.961,674,4.227,684,1.203,694,1.228,696,1.34,699,3.114,702,1.179,714,1.311,720,1.87,727,1.561,729,1.542,737,1.157,738,1.654,745,1.654,746,1.254,754,1.592,756,3.535,759,2.89,767,1.495,783,2.051,797,1.203,804,1.804,806,2.013,810,4.382,817,1.773,822,1.595,827,1.654,832,1.981,854,3.569,863,1.452,887,2.178,922,2.172,924,0.895,925,1.452,928,1.654,929,0.807,931,1.254,934,0.882,943,1.654,948,1.804,950,3.702,965,1.311,970,2.013,982,1.894,992,1.058,1005,1.228,1015,1.041,1017,1.981,1020,2.462,1024,0.895,1030,1.311,1036,2.835,1038,1.494,1039,2.817,1048,1.254,1049,1.024,1054,0.793,1062,1.254,1071,1.721,1078,0.836,1081,1.376,1082,1.8,1084,2.723,1086,1.942,1087,1.254,1112,1.228,1119,1.376,1122,1.894,1134,1.8,1136,1.282,1148,2.311,1151,0.701,1157,1.942,1160,1.179,1170,1.228,1178,2.083,1194,1.254,1203,0.783,1222,2.578,1223,1.542,1238,0.611,1241,1.721,1246,2.013,1247,2.172,1250,2.172,1279,1.585,1283,4.563,1284,1.8,1297,0.977,1324,0.962,1325,1.203,1326,2.723,1327,1.157,1332,1.495,1354,1.413,1437,3.472,1438,3.238,1462,0.87,1464,1.343,1489,1.714,1500,2.54,1522,2.835,1526,1.894,1527,1.8,1528,1.228,1549,1.894,1553,2.16,1558,5.27,1609,1.654,1612,1.343,1645,1.595,1659,2.013,1698,1.894,1699,2.835,1726,2.172,1727,1.282,1732,2.966,1733,1.894,1736,2.835,1746,2.013,1776,2.327,1795,1.8,1952,1.542,2076,1.905,2096,1.282,2143,2.835,2151,1.654,2181,1.654,2258,1.894,2268,1.894,2274,2.013,2275,2.013,2276,2.172,2277,2.413,2278,1.721,2279,2.172,2280,3.973,2281,3.973,2282,1.115,2283,2.413,2284,2.413,2285,2.172,2286,2.413,2287,2.413,2288,2.413,2289,3.577,2290,1.894,2291,2.413,2292,1.654,2293,3.472,2294,1.343,2295,2.413,2296,2.413,2297,2.413,2298,2.413,2299,2.413,2300,2.172,2301,2.413,2302,2.413,2303,2.413,2304,2.413,2305,2.413,2306,2.413,2307,2.413,2308,2.413,2309,2.413,2310,2.413,2311,2.413,2312,2.413,2313,2.413,2314,2.172,2315,2.013,2316,2.013,2317,2.413,2318,2.413,2319,2.413,2320,2.413,2321,2.013,2322,2.413,2323,2.413,2324,2.413,2325,1.376,2326,3.577,2327,1.721,2328,2.413,2329,2.172,2330,2.413,2331,3.973,2332,2.172,2333,1.894,2334,3.577,2335,2.413,2336,2.413,2337,1.8,2338,2.413]],["description//tracks/aws-certified-developer-associate/elasticbeanstalk/",[32,1.337,259,2.691,260,3.653]],["title//tracks/aws-certified-developer-associate/elasticache/",[104,4.928]],["content//tracks/aws-certified-developer-associate/elasticache/",[7,1.222,9,1.562,16,0.863,19,1.737,21,1.381,23,1.656,26,2.616,27,2.23,31,1.072,32,1.98,34,3.968,35,1.476,38,1.657,39,1.518,43,1.497,47,2.324,48,1.519,49,1.665,51,0.887,53,2.599,54,0.571,55,2.127,56,1.562,57,1.346,58,2.225,60,0.706,62,2.068,82,1.971,83,1.71,85,2.083,86,1.71,88,3.425,90,1.974,91,2.825,92,5.709,94,1.584,104,6.799,116,3.231,121,2.258,125,1.646,128,2.349,132,1.766,142,2.829,144,2.397,147,1.766,157,1.096,165,0.745,169,1.437,171,1.059,175,2.25,178,2.171,182,2.195,188,1.296,195,4.405,206,1.892,210,1.585,214,2.258,223,1.176,225,2.397,226,0.496,232,0.675,233,2.278,239,0.958,240,2.741,241,1.926,242,3.277,246,1.796,249,1.963,256,2.772,259,1.766,261,3.956,262,4.402,264,4.278,271,3.968,272,5.122,274,2.536,276,2.195,278,2.073,280,2.334,283,2.052,286,1.485,289,1.162,293,2.548,303,2.878,308,2.358,310,2.225,313,2.616,315,2.225,316,3.956,321,2.536,322,2.616,323,4.282,324,1.826,325,3.214,326,4.478,327,1.608,328,1.796,329,3.72,330,3.228,331,3.415,332,2.536,333,2.705,334,3.263,335,4.282,336,3.415,337,2.705,338,2.463,339,2.536,340,1.926,341,1.766,342,3.214,343,5.009,344,3.837,345,1.539,346,2.616,347,1.737,348,3.053,349,2.92,350,2.616,351,1.122,352,2.175,353,1.632,354,3.214,355,2.041,356,1.926,357,3.214,358,2.397,368,4.85,372,2.969,382,1.176,383,3.172,384,1.892,391,2.083,401,1.796,415,2.536,420,3.172,425,1.456,434,1.858,437,2.92,446,3.053,452,1.892,465,3.545,473,1.657,482,2.397,493,3.053,500,3.341,516,4.114,521,3.968,527,3.263,534,1.646,554,2.616,576,1.476,591,0.257,597,1.539,602,2.175,619,3.214,649,2.397,655,2.165,660,4.282,667,4.478,671,2.108,690,2.225,709,3.053,714,3.263,732,2.041,761,3.415,790,3.684,795,1.926,811,0.532,822,2.705,824,3.053,829,1.148,854,1.826,861,1.245,870,1.176,906,8.482,942,1.381,1032,2.92,1054,1.974,1071,2.92,1086,2.001,1090,2.083,1103,3.415,1109,2.92,1158,2.431,1190,2.358,1248,2.92,1335,0.813,1367,3.684,1392,1.826,1405,2.463,1419,3.684,1520,2.805,1542,3.415,1567,2.805,1645,2.705,1650,2.92,1665,2.752,1714,2.805,1716,4.114,1722,1.892,1779,3.684,1787,3.214,1873,5.404,1878,2.92,1899,3.053,2065,2.616,2119,4.114,2146,3.053,2173,3.415,2204,5.009,2216,3.684,2339,9.004,2340,3.684,2341,3.684,2342,7.83,2343,6.003,2344,4.093,2345,4.093,2346,3.415,2347,3.415,2348,4.093,2349,4.093,2350,3.415,2351,4.093,2352,5.931,2353,3.415,2354,4.093,2355,4.093,2356,2.536,2357,3.214,2358,1.562,2359,3.684,2360,3.684,2361,8.714,2362,2.705,2363,3.684,2364,4.093,2365,7.109,2366,3.214,2367,4.093,2368,4.093,2369,4.093,2370,4.093]],["description//tracks/aws-certified-developer-associate/elasticache/",[23,1.366,104,4.715]],["title//tracks/aws-certified-developer-associate/eks/",[31,1.405,259,2.316,903,3.548]],["content//tracks/aws-certified-developer-associate/eks/",[16,0.815,17,3.345,23,1.843,27,2.244,31,2.518,32,1.879,35,2.193,53,2.223,60,1.361,82,1.686,100,3.305,101,3.384,116,3.251,125,2.403,130,3.887,135,3.469,156,2.078,178,1.686,184,2.972,214,2.287,239,1.423,240,1.999,242,2.287,259,3.783,276,2.223,278,2.091,280,2.486,281,2.581,283,2.699,284,4.557,294,3.161,302,4.752,303,2.462,324,2.713,333,4.019,352,4.195,378,2.581,381,1.037,383,2.713,392,4.775,396,2.223,404,2.667,425,2.163,440,4.536,441,2.106,452,2.81,472,3.768,477,4.462,478,2.602,482,5.134,520,2.916,545,4.168,553,4.536,591,0.258,635,3.56,636,4.168,642,3.298,671,1.471,707,3.384,719,3.523,791,3.384,797,3.032,861,1.261,865,3.094,870,1.747,903,6.982,904,6.01,926,4.018,942,2.051,951,4.536,957,3.56,992,3.464,1054,2.596,1055,2.761,1056,3.161,1058,3.469,1075,4.338,1081,3.469,1086,2.972,1283,5.487,1317,3.469,1388,4.019,1392,2.713,1524,6.357,1539,3.56,1567,4.168,1572,5.073,1669,4.775,2001,4.775,2122,5.073,2123,3.887,2124,4.775,2125,5.473,2126,5.473,2127,5.473,2128,5.473,2130,4.536,2195,5.073,2371,6.08,2372,6.08,2373,6.08,2374,6.08,2375,6.08,2376,5.473,2377,5.473,2378,5.073,2379,5.073,2380,5.473,2381,5.473,2382,4.775,2383,5.473]],["description//tracks/aws-certified-developer-associate/eks/",[23,1.133,31,1.494,259,2.462,903,3.771]],["title//tracks/aws-certified-developer-associate/ecs/",[31,1.405,259,2.316,478,1.358]],["content//tracks/aws-certified-developer-associate/ecs/",[7,0.968,9,1.633,13,3.632,16,0.837,17,2.783,19,1.817,23,1.922,27,2.047,31,2.639,32,1.957,35,1.544,49,1.187,51,0.928,53,1.565,54,1.017,56,2.783,60,1.257,62,0.959,64,1.047,65,1.456,75,0.969,82,1.187,97,2.506,100,3.964,101,2.382,113,2.134,116,3.282,120,1.29,125,2.426,128,1.389,137,0.705,141,3.193,143,2.829,147,2.676,156,3.308,169,3.107,175,2.309,178,1.187,179,1.878,184,3.566,186,2.721,195,2.652,206,1.978,210,0.814,211,2.368,214,1.61,216,2.134,229,1.76,239,1.002,240,1.407,241,2.015,247,1.215,259,3.819,263,1.91,272,3.964,273,2.736,276,1.565,278,1.931,280,2.274,281,1.817,284,3.791,286,1.059,294,2.225,298,2.506,299,4.627,300,5.175,301,3.361,302,5.9,303,1.733,304,2.736,305,2.506,306,1.943,307,1.201,308,2.865,309,1.817,310,2.326,311,2.093,312,2.093,313,4.662,314,2.866,315,2.326,316,5.081,317,5.481,318,4.926,319,4.099,320,2.866,324,1.91,333,2.829,352,3.295,361,1.682,371,2.736,378,1.817,381,1.057,383,3.254,391,3.156,392,4.87,396,3.585,404,1.878,425,1.523,429,0.691,437,4.424,440,3.193,441,1.483,450,2.595,452,1.978,471,4.821,473,1.733,476,3.371,477,3.712,478,2.674,482,2.506,493,3.193,505,3.054,520,2.053,524,1.91,534,2.192,535,2.134,553,3.193,591,0.258,635,2.506,636,2.934,642,3.047,647,3.054,651,3.571,652,4.249,659,2.736,671,1.036,684,2.134,701,5.818,702,2.093,707,2.382,714,3.371,719,2.767,735,3.571,754,2.167,762,2.274,783,1.733,791,2.382,797,2.134,800,2.934,844,3.361,861,0.888,865,2.178,870,1.23,901,2.506,902,3.361,903,6.18,904,5.818,926,2.178,938,3.193,942,1.444,951,3.193,957,2.506,961,2.736,992,1.878,997,2.652,1005,2.178,1010,1.61,1011,2.736,1033,2.225,1041,3.054,1043,4.424,1054,2.039,1055,1.943,1056,2.225,1058,2.442,1075,3.054,1081,2.442,1086,2.093,1090,2.178,1105,3.193,1157,2.093,1238,1.083,1278,2.442,1283,4.563,1286,2.093,1317,2.442,1332,3.843,1388,2.829,1392,1.91,1423,2.382,1456,2.326,1464,2.382,1524,5.611,1539,2.506,1567,2.934,1627,3.853,1648,2.225,1660,1.943,1669,3.361,1700,1.733,1727,2.274,1782,3.193,2065,2.736,2120,3.571,2122,3.571,2195,3.571,2256,2.829,2376,3.853,2377,3.853,2378,3.571,2379,3.571,2380,3.853,2381,3.853,2382,3.361,2383,3.853,2384,4.28,2385,4.28,2386,3.853,2387,4.28,2388,4.28,2389,5.175,2390,4.28,2391,3.571,2392,3.853,2393,4.28,2394,4.28,2395,4.28,2396,4.28,2397,4.28]],["description//tracks/aws-certified-developer-associate/ecs/",[125,1.336,276,1.783,284,2.534,478,1.234,707,2.713,1524,3.222]],["title//tracks/aws-certified-developer-associate/ecr/",[259,2.316,478,1.358,901,3.144]],["content//tracks/aws-certified-developer-associate/ecr/",[7,1.22,16,0.764,23,1.728,27,2,31,2.415,32,2.104,76,2.129,82,1.66,94,3.025,113,2.984,116,3.227,124,3.602,134,5.126,140,4.047,142,1.943,147,2.582,160,2.582,175,1.895,184,3.82,212,4.842,217,2.984,221,2.046,238,3.046,256,1.761,259,4.129,280,2.471,302,3.602,308,2.351,328,2.626,361,3.983,391,3.046,395,3.18,396,2.189,397,3.18,425,2.129,448,3.956,460,3.748,467,4.465,471,5.165,477,4.995,478,2.637,495,1.481,533,2.591,534,2.142,580,2.626,591,0.247,602,3.18,611,4.603,640,3.046,641,2.317,648,4.994,653,3.331,656,3.253,671,1.448,707,3.331,754,1.622,765,4.27,806,4.994,809,2.626,811,0.779,861,1.242,870,1.719,901,5.937,902,7.962,903,3.956,904,4.102,942,2.019,948,2.717,992,2.626,1017,2.984,1054,2.569,1055,2.717,1056,3.111,1058,3.415,1090,3.046,1112,3.046,1183,3.505,1193,2.461,1358,4.842,1398,3.709,1425,4.465,1597,4.102,2063,6.325,2123,3.826,2124,4.7,2398,4.102,2399,5.388,2400,7.034,2401,5.388,2402,5.985,2403,5.985,2404,5.388,2405,5.985,2406,5.388,2407,5.985,2408,6.581,2409,4.994,2410,5.985,2411,5.985,2412,8.701,2413,5.356,2414,5.985,2415,5.985,2416,4.27,2417,5.985,2418,5.388]],["description//tracks/aws-certified-developer-associate/ecr/",[125,1.336,276,1.783,284,2.534,478,1.234,707,2.713,1524,3.222]],["title//tracks/aws-certified-developer-associate/ec2/",[169,2.524]],["content//tracks/aws-certified-developer-associate/ec2/",[7,1.268,8,2.268,9,1.051,10,1.793,11,0.981,16,0.787,17,2.117,19,1.17,21,0.93,23,2.014,27,1.902,29,1.099,31,1.159,32,1.919,37,1.975,43,1.008,44,2.207,45,1.821,48,0.697,49,1.93,51,1.203,53,1.619,54,0.971,55,1.432,56,1.051,57,2.289,59,1.022,60,0.763,62,1.559,64,1.358,66,1.302,68,3.003,69,1.297,70,0.597,74,1.966,75,0.624,79,1.658,80,2.664,82,2.062,85,3.234,87,2.713,88,3.166,89,0.98,90,2.444,94,1.067,95,4.89,96,1.321,108,0.713,109,1.821,114,2.534,116,1.022,120,1.334,122,2.654,125,1.742,127,0.967,128,1.423,135,2.526,137,0.428,138,1.966,140,1.942,142,2.063,144,1.613,146,1.146,147,1.91,149,3.746,154,0.872,156,3.628,157,0.738,163,1.665,165,0.502,167,3.959,168,2.084,169,3.603,170,2.434,171,1.802,172,3.019,173,2.926,174,0.959,175,2.723,176,1.658,177,2.056,178,1.539,179,1.209,180,4.787,181,1.658,182,1.008,183,2.084,184,3.107,185,2.565,186,1.209,187,2.394,188,0.872,189,1.347,190,2.299,191,1.707,192,1.658,193,2.299,203,1.229,205,1.821,208,2.464,210,1.055,211,2.26,212,1.707,213,2.612,218,2.247,221,0.942,223,0.792,224,1.533,232,0.455,234,1.432,236,1.321,239,1.036,240,0.906,241,1.297,242,2.087,246,1.209,247,1.575,252,1.374,255,1.402,256,2.586,259,2.394,261,3.874,262,4.377,270,1.821,271,4.913,272,1.498,275,1.658,276,2.324,278,0.73,279,1.116,280,1.991,286,0.682,293,1.17,294,1.432,295,1.083,303,2.247,306,2.885,307,0.773,308,1.083,313,2.83,315,1.498,316,3.088,317,4.356,318,2.464,319,1.821,320,3.874,324,1.229,328,1.942,330,1.251,333,1.821,335,1.966,338,3.34,339,4.313,346,6.233,350,1.761,351,1.521,355,1.374,356,1.297,358,4.076,361,2.92,369,1.47,370,2.056,371,6.089,372,1.151,375,3.169,380,1.761,391,1.402,399,2.164,401,2.434,404,3.261,407,0.738,422,5.546,423,4.9,425,0.98,427,2.824,429,0.445,431,2.865,435,3.547,444,1.432,448,4.913,453,3.088,454,4.062,455,0.792,462,0.764,473,1.116,476,4.415,493,4.741,494,2.164,495,1.095,513,1.402,524,1.975,527,3.016,529,3.016,533,1.318,534,2.587,536,1.889,539,1.761,554,1.761,580,1.209,591,0.204,596,3.949,605,1.321,611,1.251,613,2.742,624,4.2,628,2.743,634,4.99,642,1.151,650,2.164,653,1.534,684,2.767,696,0.93,709,3.303,729,1.761,734,1.083,755,1.297,767,2.743,776,1.761,783,1.116,785,1.534,794,3.158,795,2.612,796,1.572,797,2.767,798,2.48,799,2.48,804,2.01,814,1.534,817,1.229,822,1.821,852,2.299,861,1.151,864,1.572,870,0.792,887,1.642,891,2.926,948,1.251,950,3.047,975,1.498,986,1.534,1005,2.253,1008,2.299,1013,2.056,1015,1.91,1030,1.498,1033,1.432,1037,3.166,1038,1.036,1039,1.321,1043,3.158,1054,2.444,1070,2.713,1074,2.299,1075,3.158,1090,1.402,1091,2.897,1115,1.707,1147,1.209,1148,2.476,1157,1.347,1160,1.347,1166,2.01,1177,1.374,1178,1.133,1184,1.572,1185,1.534,1197,3.668,1204,1.658,1223,1.761,1230,1.273,1236,1.658,1239,1.251,1283,1.572,1286,2.164,1297,1.116,1316,1.189,1331,2.164,1332,4.606,1335,0.547,1353,1.374,1358,1.707,1360,2.476,1392,1.229,1405,1.658,1416,5.808,1425,3.303,1447,1.297,1466,1.821,1565,5.303,1566,4.99,1596,2.164,1597,1.889,1598,2.48,1617,3.985,1650,1.966,1691,1.464,1722,1.273,1728,2.164,1754,2.164,1776,1.613,1780,2.299,1782,3.303,1933,2.299,2050,2.83,2063,1.821,2070,2.48,2076,2.123,2095,2.164,2160,2.299,2169,2.48,2207,1.821,2214,1.761,2292,1.889,2341,2.48,2352,5.302,2389,2.299,2391,2.299,2408,1.966,2419,1.464,2420,2.755,2421,4.427,2422,2.164,2423,2.755,2424,2.755,2425,2.48,2426,4.427,2427,2.164,2428,7.743,2429,2.755,2430,2.755,2431,1.761,2432,2.755,2433,4.427,2434,5.549,2435,2.755,2436,2.299,2437,2.755,2438,1.707,2439,2.48,2440,2.755,2441,2.755,2442,2.526,2443,3.158,2444,2.592,2445,4.63,2446,3.985,2447,2.48,2448,2.755,2449,3.303,2450,3.985,2451,3.985,2452,3.668,2453,2.299,2454,5.549,2455,2.755,2456,6.355,2457,9.436,2458,6.355,2459,6.355,2460,2.48,2461,6.355,2462,2.48,2463,2.48,2464,2.48,2465,5.549,2466,1.432,2467,1.966,2468,2.48,2469,2.48,2470,2.755,2471,2.755,2472,2.755,2473,0.645,2474,2.48,2475,2.755,2476,4.427,2477,5.549,2478,1.761,2479,2.755]],["description//tracks/aws-certified-developer-associate/ec2/",[23,1.044,65,1.305,169,1.846,870,1.51]],["title//tracks/aws-certified-developer-associate/dynamodb/_index",[117,3.585]],["content//tracks/aws-certified-developer-associate/dynamodb/_index",[7,1.425,9,1.289,13,1.979,14,1.979,16,0.856,17,1.983,19,1.434,21,2.59,22,4.356,23,2.002,24,3.709,27,2.231,29,1.348,31,2.122,32,1.991,37,2.319,38,3.108,40,2.541,43,1.236,44,1.685,47,2.452,48,1.315,49,0.937,53,3.396,54,0.725,56,1.289,57,1.709,60,1.323,62,0.757,64,1.272,67,2.521,76,1.202,81,2.762,82,2.248,83,1.412,86,2.171,88,1.928,90,1.709,91,2.447,92,1.881,96,4.747,106,2.034,108,1.346,117,5.134,118,4.881,120,1.909,127,1.825,128,2.2,132,2.243,135,3.614,137,0.783,142,1.097,157,0.905,171,0.875,172,2.496,174,0.732,175,1.646,178,1.442,183,1.591,184,1.652,188,1.646,201,1.591,204,3.097,206,1.562,210,1.352,211,2.492,218,2.565,228,2.733,229,1.39,231,1.289,232,1.045,236,1.621,237,1.928,240,1.111,241,1.591,242,1.271,246,1.483,247,1.798,248,1.979,249,3.038,250,2.411,251,2.034,252,1.685,253,4.546,254,2.316,255,2.646,256,2.63,257,5.477,258,4.187,259,2.733,260,1.979,261,1.881,262,4.261,263,1.508,264,2.034,265,2.521,266,2.521,267,3.878,268,3.221,269,1.508,270,4.187,271,2.234,272,1.837,273,2.16,274,2.094,275,3.129,276,1.236,277,2.034,278,1.883,279,2.105,280,0.905,281,1.434,282,1.928,283,1.155,284,2.702,285,2.762,286,0.836,287,2.206,288,2.411,289,0.959,290,2.034,291,2.893,292,1.979,293,2.206,294,1.757,295,1.328,307,2.275,309,1.434,317,2.316,319,2.234,340,1.591,344,3.323,368,1.881,369,0.895,372,2.171,378,2.206,380,3.323,381,1.309,383,2.319,384,1.562,385,1.271,407,1.392,414,1.057,415,6.175,420,3.617,422,2.521,423,3.778,425,1.849,429,0.545,431,3.531,432,4.082,433,2.056,434,4.059,435,4.049,436,3.436,441,1.171,442,4.973,446,2.521,447,2.646,452,2.402,455,0.971,458,1.202,465,2.592,478,0.855,487,1.328,518,2.82,521,2.234,527,4.173,528,0.765,529,1.837,534,1.425,541,1.796,557,1.458,564,2.316,580,1.483,584,3.563,591,0.252,598,2.762,602,1.796,611,1.534,612,2.16,628,2.094,629,1.979,649,1.979,653,2.893,663,2.654,671,0.818,684,1.685,696,1.14,698,2.493,714,1.837,728,2.646,737,2.493,749,2.702,754,1.409,761,5.285,762,1.796,764,2.654,776,3.323,780,2.16,791,1.881,811,0.44,823,1.621,839,2.16,864,1.928,865,1.72,870,0.971,926,1.72,942,1.754,957,1.979,982,2.654,1004,2.762,1005,1.72,1010,2.382,1024,1.928,1033,2.702,1038,1.271,1039,1.621,1054,1.709,1077,2.654,1089,1.621,1101,2.521,1130,2.316,1148,1.202,1204,5.246,1241,3.708,1258,1.685,1279,1.348,1326,2.316,1360,1.508,1411,6.844,1449,1.72,1462,1.219,1464,2.893,1481,2.521,1517,1.72,1520,5.556,1521,1.979,1566,2.654,1567,2.316,1569,2.82,1591,3.042,1594,1.881,1601,2.094,1722,1.562,1724,1.881,1747,3.042,1782,4.726,1820,3.042,1850,5.702,1899,3.878,1925,2.16,1927,1.308,2003,3.042,2095,4.082,2119,2.316,2173,2.82,2193,3.042,2220,5.702,2244,3.042,2269,1.483,2272,2.654,2290,2.654,2358,3.222,2409,5.285,2439,3.042,2466,1.757,2480,3.38,2481,2.521,2482,3.38,2483,2.654,2484,3.38,2485,3.38,2486,1.508,2487,5.198,2488,3.38,2489,6.335,2490,5.198,2491,3.042,2492,3.38,2493,3.042,2494,3.38,2495,2.521,2496,3.042,2497,3.38,2498,3.042,2499,5.198,2500,5.198,2501,3.38,2502,3.38,2503,5.198,2504,3.38]],["description//tracks/aws-certified-developer-associate/dynamodb/_index",[7,0.821,23,1.044,117,3.574,118,2.522]],["title//tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/",[117,3.065,1089,2.948]],["content//tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/",[1,1.447,3,2.201,5,1.396,7,1.601,10,3.28,16,0.588,21,1.607,22,1.396,23,1.447,27,1.219,28,1.57,30,0.956,31,0.791,32,1.021,33,2.284,35,1.718,41,0.98,43,1.105,44,1.506,51,1.872,53,1.105,54,1.079,60,1.016,64,2.207,65,0.867,68,1.303,76,2.098,81,4.59,83,1.99,86,2.463,89,2.098,108,2.003,117,4.698,118,5.124,120,0.91,125,1.306,127,1.672,128,1.067,131,2.717,133,2.055,137,0.811,140,3.683,142,0.98,146,2.097,148,2.253,153,2.631,157,1.58,159,1.871,160,2.055,165,1.475,168,2.775,172,1.06,174,0.655,178,1.321,185,1.396,191,2.951,201,1.422,210,1.121,223,0.868,230,2.07,231,3.872,232,0.498,238,1.537,239,1.566,240,0.993,245,2.092,247,0.858,256,0.889,262,1.477,278,1.772,280,0.809,285,1.605,286,1.459,306,3.678,307,0.848,308,2.63,309,2.022,323,2.155,330,1.371,341,0.889,347,2.022,362,1.818,369,2.342,382,2.092,384,1.396,390,2.554,393,2.127,400,1.958,412,1.871,415,5.589,420,2.987,423,4.792,431,3.405,432,7.479,433,3.266,434,3.039,435,6.368,436,5.115,441,1.046,442,5.79,445,2.017,450,1.694,452,1.396,461,2.201,473,1.223,484,1.325,495,1.178,508,1.075,520,1.448,521,1.996,527,4.902,528,0.684,533,2.91,534,2.424,541,1.605,563,1.205,569,2.07,570,1.996,576,1.089,584,3.264,591,0.192,631,2.828,633,1.681,641,2.591,655,1.089,656,2.589,657,2.372,698,3.21,719,1.348,727,2.317,737,1.448,740,1.537,750,1.506,754,0.818,759,1.723,776,3.769,777,1.187,781,1.769,783,1.928,804,4.095,811,0.767,814,2.651,831,1.537,869,1.931,870,0.868,887,1.12,888,2.284,926,1.537,934,3.234,940,1.996,948,1.371,986,4.508,991,1.996,1003,1.477,1005,4.396,1012,1.046,1038,1.136,1049,2.503,1112,3.001,1116,2.242,1124,1.506,1144,5.502,1145,1.477,1146,1.205,1147,4.469,1148,3.699,1150,4.278,1151,1.385,1163,4.023,1164,4.223,1166,1.371,1168,1.89,1178,1.242,1183,3.453,1185,3.282,1204,5.199,1258,2.94,1259,1.769,1292,2.155,1296,4.795,1297,1.223,1308,2.719,1315,1.642,1325,2.375,1366,2.155,1464,3.282,1475,3.148,1476,1.723,1480,2.52,1482,1.506,1489,1.303,1520,3.264,1553,1.642,1567,2.07,1642,2.717,1673,2.775,1675,1.537,1697,2.951,1727,1.605,1869,1.262,1875,2.155,1916,2.719,2053,2.719,2069,2.372,2144,2.719,2182,2.719,2217,1.996,2234,1.605,2236,1.605,2350,3.974,2358,3.296,2409,2.52,2505,4.763,2506,5.308,2507,3.02,2508,4.763,2509,3.974,2510,2.372,2511,3.02,2512,4.763,2513,3.02,2514,4.287,2515,2.52,2516,3.02,2517,8.394,2518,2.719,2519,3.02,2520,2.719,2521,2.719,2522,3.02,2523,3.02,2524,2.719,2525,2.372]],["description//tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/",[7,0.821,23,1.044,117,3.574,118,2.522]],["title//tracks/aws-certified-developer-associate/cognito/",[199,4.455]],["content//tracks/aws-certified-developer-associate/cognito/",[7,1.233,9,1.889,16,0.788,17,1.889,19,2.101,21,2.32,22,4.487,23,2.021,24,2.899,26,4.395,27,2.296,31,1.8,32,1.99,38,2.004,39,1.836,47,3.059,48,2.349,49,1.907,51,1.073,53,1.81,55,2.573,57,1.627,60,0.853,63,3.272,66,1.456,70,1.073,72,2.172,82,2.904,89,2.446,90,2.261,116,1.836,117,2.468,121,1.862,130,3.164,137,0.478,142,1.607,163,2.586,165,0.901,174,2.012,178,2.575,179,3.016,180,4.751,188,1.567,189,3.361,195,3.067,196,3.393,197,6.294,198,5.399,199,6.305,200,4.13,201,3.719,202,6.704,203,2.209,204,2.42,205,3.272,206,2.288,207,1.627,208,2.755,209,3.789,210,1.308,211,1.607,212,4.896,213,2.33,214,1.862,215,3.653,216,4.257,217,3.429,218,2.784,219,2.755,221,1.692,222,5.329,223,2.667,224,3.216,225,4.026,226,0.833,227,2.101,228,3.683,229,2.036,230,3.393,231,1.889,232,0.817,233,2.755,234,2.573,235,5.118,236,4.094,237,2.824,238,2.519,239,1.609,240,3.242,241,3.719,242,3.374,243,3.923,244,3.827,245,1.422,274,3.067,276,3.28,280,2.287,289,1.952,320,2.288,341,1.456,358,2.899,369,1.311,373,1.714,383,2.209,385,1.862,425,1.761,431,2.35,455,1.422,500,2.755,510,5.588,533,1.474,534,1.885,540,3.693,541,3.653,544,6.204,545,3.393,554,5.05,591,0.163,635,2.899,636,3.393,671,1.198,690,2.69,749,2.573,754,1.341,773,4.261,809,3.745,811,0.894,854,2.209,861,1.027,870,1.422,931,2.573,942,1.67,957,2.899,997,3.067,1054,2.261,1055,2.247,1056,4.437,1058,2.824,1070,2.42,1105,3.693,1178,2.036,1260,3.067,1269,3.693,1283,2.824,1594,3.827,1654,3.923,1776,2.899,1787,3.887,1826,4.13,1857,4.456,1930,4.456,2316,4.13,2526,7.901,2527,4.95,2528,4.95,2529,4.456,2530,4.95,2531,4.95,2532,4.95,2533,4.95,2534,4.95,2535,4.456,2536,4.95]],["description//tracks/aws-certified-developer-associate/cognito/",[23,1.366,199,4.262]],["title//tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar",[21,1.445,27,1.096,32,0.918,116,1.588,914,2.831]],["content//tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar",[1,1.177,3,3.826,4,0.915,5,0.813,7,1.141,8,0.928,10,2.96,11,0.39,16,0.75,21,2.374,23,0.604,25,0.915,27,2.429,29,0.702,30,0.963,31,1.551,32,2.182,37,0.785,39,1.777,40,0.86,41,0.988,42,1.358,43,1.471,44,2.005,47,1.178,48,0.77,51,1.038,54,0.826,57,2.21,58,1.654,59,2.357,60,1.096,62,1.073,64,1.45,65,1.224,66,0.518,68,1.313,71,0.543,72,0.772,75,2.007,76,1.083,81,1.617,82,2.296,83,0.735,86,2.002,90,1.78,91,2.255,92,1.694,94,2.096,108,1.534,110,2.667,113,0.877,114,1.604,115,0.747,116,3.698,118,1.46,120,0.53,122,1.271,125,2.004,127,1.068,132,1.735,133,1.313,134,4.457,137,0.523,139,1.125,140,2.6,142,1.305,143,3.917,145,1.694,146,1.24,147,2.336,149,0.844,153,2.836,156,3.061,157,2.48,159,0.691,160,1.735,163,1.145,165,1.079,168,4.816,169,2.905,170,1.764,171,0.455,174,0.872,175,1.273,178,0.844,179,1.335,180,4.321,182,0.643,183,0.828,184,0.86,185,2.937,188,2.227,189,2.342,192,4.045,201,1.893,203,1.794,204,0.86,208,1.694,210,1.209,211,0.988,212,3.672,216,3.509,218,0.713,219,2.238,221,1.04,222,2.439,223,1.702,224,0.609,227,1.707,228,2.9,231,2.685,232,0.502,233,1.694,237,1.004,238,0.896,239,1.647,240,2.21,242,1.145,245,1.555,247,1.36,259,0.759,260,1.03,263,0.785,273,1.125,276,0.643,280,1.703,281,1.707,286,0.435,295,1.882,298,1.03,301,1.382,303,2.573,306,3.319,307,1.886,308,1.196,312,1.488,315,0.956,320,3.676,327,0.691,328,2.788,332,1.886,334,2.604,341,0.518,347,2.298,351,2.307,356,0.828,360,0.828,362,1.059,363,2.699,365,1.654,366,0.956,368,0.979,369,1.863,372,3.243,373,1.054,381,0.923,382,1.155,383,0.785,384,0.813,390,2.065,393,1.728,398,0.956,399,2.342,400,1.654,412,1.58,413,1.358,431,1.04,444,1.582,445,1.212,450,1.083,459,1.433,460,1.46,473,1.232,474,0.877,475,1.255,478,0.77,480,1.58,486,1.617,488,4.963,489,1.125,495,1.466,498,1.125,509,1.407,512,1.382,515,1.382,528,0.398,533,2.578,534,0.482,537,0.785,539,1.125,563,1.911,565,1.393,576,0.635,591,0.214,600,1.03,610,1.313,611,0.799,613,0.759,629,2.355,641,1.557,642,2.261,649,2.355,658,1.255,659,1.125,666,2.884,670,1.09,671,0.736,673,0.915,699,0.844,702,1.966,714,0.956,719,0.785,727,1.882,728,0.896,732,2.005,733,3.917,734,0.984,736,0.915,737,2.596,743,1.255,746,0.915,750,0.877,754,0.477,758,2.492,759,1.736,765,1.255,767,1.09,770,1.004,774,1.206,777,0.691,783,0.713,785,0.979,789,2.39,794,2.171,795,1.433,796,1.004,797,2.005,804,2.458,809,3.087,810,3,811,0.915,814,2.667,816,1.09,820,0.799,829,1.128,831,0.896,854,3.14,855,1.125,856,1.255,859,1.125,860,2.294,861,0.365,862,1.059,864,1.736,868,1.163,872,1.617,873,2.159,887,0.653,889,3.088,912,3.567,914,6.272,920,1.163,924,2.8,929,0.357,932,1.313,934,3.274,940,2.658,948,4.024,950,1.46,951,1.313,952,1.468,984,1.125,986,0.979,990,0.263,992,0.772,1000,1.059,1004,2.137,1005,2.047,1012,1.393,1017,2.389,1020,1.09,1024,1.129,1038,2.036,1039,1.46,1049,2.698,1055,0.799,1062,0.915,1063,5.539,1078,0.609,1079,3.62,1088,1.255,1090,0.896,1111,1.382,1116,0.828,1119,1.736,1124,1.518,1139,2.74,1144,5.198,1145,2.646,1146,1.604,1147,3.799,1148,3.576,1150,1.125,1151,1.169,1152,3.158,1157,1.966,1158,0.713,1160,0.86,1163,2.09,1164,0.86,1166,0.799,1167,4.012,1168,1.899,1169,0.828,1170,2.755,1173,2.955,1177,3.765,1178,2.437,1179,2.884,1181,0.979,1182,1.125,1183,1.03,1184,1.004,1185,2.238,1186,2.658,1187,1.03,1188,1.255,1189,3.71,1190,0.691,1191,1.255,1192,1.09,1193,0.724,1194,0.915,1195,2.806,1196,2.171,1197,3.167,1198,1.382,1199,1.382,1200,1.468,1222,2.439,1229,1.313,1230,1.407,1236,1.059,1239,0.799,1244,1.206,1246,1.468,1258,2.005,1259,1.782,1260,1.09,1261,1.313,1279,2.159,1285,1.125,1297,1.232,1315,1.654,1317,1.736,1327,0.844,1328,1.549,1335,0.604,1343,0.702,1379,1.255,1398,1.09,1405,1.059,1417,1.059,1421,1.736,1424,1.004,1436,1.163,1438,1.125,1462,1.45,1464,1.694,1471,1.382,1475,2.012,1476,1.736,1477,1.09,1479,0.896,1482,1.518,1489,0.759,1491,2.658,1500,1.945,1507,1.255,1513,5.525,1514,0.681,1515,0.935,1517,1.549,1558,3.862,1597,2.086,1603,1.468,1612,1.694,1614,2.658,1622,1.468,1635,1.125,1636,1.584,1658,1.584,1665,1.557,1673,1.433,1675,1.549,1682,1.313,1696,1.382,1699,2.171,1701,1.206,1709,1.313,1711,1.125,1715,2.869,1716,3.284,1724,0.979,1727,1.617,1732,3.17,1869,1.271,1876,1.255,1878,1.255,1880,4.421,1904,1.468,1907,2.42,1937,1.255,1950,1.03,1959,1.584,2069,3.763,2080,5.525,2096,1.617,2113,3.167,2116,1.468,2123,1.945,2146,1.313,2213,2.54,2234,1.617,2236,0.935,2237,1.004,2242,1.255,2294,0.979,2333,2.39,2362,1.163,2398,1.206,2416,1.255,2422,1.382,2438,5.548,2449,1.313,2452,2.012,2453,1.468,2464,1.584,2466,3.08,2509,1.468,2537,1.584,2538,1.76,2539,1.382,2540,1.76,2541,1.76,2542,1.163,2543,3.044,2544,1.76,2545,1.76,2546,3.044,2547,1.76,2548,1.468,2549,1.76,2550,1.584,2551,3.418,2552,1.76,2553,4.235,2554,1.76,2555,2.74,2556,2.74,2557,3.8,2558,2.869,2559,2.54,2560,1.382,2561,1.76,2562,1.76,2563,1.76,2564,1.584,2565,1.76,2566,2.74,2567,1.584,2568,1.468,2569,3.62,2570,4.022,2571,1.313,2572,1.584,2573,1.468,2574,1.654,2575,0.915,2576,1.03,2577,1.76,2578,1.059,2579,3.044,2580,1.468,2581,3.575,2582,4.227,2583,1.76,2584,1.76,2585,1.76,2586,4.022,2587,3.044,2588,1.76,2589,1.059,2590,3.044,2591,3.044,2592,1.76,2593,3.044,2594,4.022,2595,1.059,2596,1.059,2597,3.044,2598,1.163,2599,3.356,2600,1.163,2601,1.76,2602,1.584,2603,1.76,2604,1.125,2605,1.76,2606,1.76,2607,1.76,2608,0.702,2609,1.313,2610,2.74,2611,1.76,2612,1.76,2613,1.584,2614,1.76,2615,5.413,2616,1.76,2617,5.926,2618,6.356,2619,1.76,2620,1.76,2621,1.76,2622,3.044,2623,1.76,2624,1.76,2625,1.76,2626,1.09,2627,1.76]],["description//tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar",[21,1.774,27,1.346,32,1.127,116,1.95,914,3.475]],["title//tracks/aws-certified-developer-associate/codestar/_index",[914,4.752]],["content//tracks/aws-certified-developer-associate/codestar/_index",[7,1.095,16,0.616,21,3.387,23,1.393,27,2.397,28,3.645,32,2.275,37,3.129,57,2.306,60,1.209,75,1.957,82,2.397,116,3.473,125,1.922,156,2.397,167,5.003,168,4.408,169,2.462,175,2.22,178,1.945,188,2.22,208,3.903,218,3.792,243,4.93,244,3.903,280,2.509,283,2.954,284,3.645,312,3.428,315,3.812,353,2.797,381,1.196,383,3.129,385,2.638,413,3.129,423,3.726,425,2.495,453,4.809,455,2.015,524,3.129,541,3.726,578,3.497,591,0.166,656,4.697,861,1.455,870,2.015,914,6.971,929,1.423,940,4.635,942,2.366,1039,3.363,1054,2.841,1055,3.923,1058,4.001,1062,3.645,1068,4.807,1070,3.428,1148,2.495,1326,4.807,1609,4.807,1645,4.635,1648,3.645,1716,5.923,2556,6.313,2628,6.313,2629,7.013,2630,4.001,2631,6.313,2632,5.851,2633,7.013,2634,5.232,2635,7.013,2636,7.013,2637,6.313]],["description//tracks/aws-certified-developer-associate/codestar/_index",[21,1.436,23,0.845,27,1.089,32,0.912,116,1.578,243,2.428,283,1.455,914,2.813]],["title//tracks/aws-certified-developer-associate/codepipeline/",[173,4.752]],["content//tracks/aws-certified-developer-associate/codepipeline/",[7,0.937,9,2.29,16,0.527,17,2.29,19,2.548,23,1.834,27,1.536,31,2.05,32,2.053,35,2.165,37,3.888,39,3.231,43,2.195,45,3.967,48,1.519,49,1.665,54,1.092,60,1.35,66,2.303,69,2.825,71,1.854,75,1.359,82,2.171,84,3.613,89,2.135,90,1.973,114,2.394,116,3.231,122,3.27,125,2.389,130,3.837,135,3.424,142,1.948,156,2.978,157,2.334,163,3.816,165,1.093,167,6.588,168,3.685,169,3.058,170,3.822,171,2.255,172,3.058,173,6.612,174,1.301,175,1.9,176,3.613,177,4.478,178,1.665,179,2.633,180,3.341,181,3.613,182,2.195,183,2.825,184,2.934,185,2.774,186,2.633,187,2.59,188,1.9,189,2.934,190,5.008,191,3.719,192,6.347,193,5.008,210,1.141,211,1.948,223,1.724,244,3.341,256,1.766,280,1.608,283,3.157,286,1.485,289,1.704,308,2.358,341,1.766,351,1.645,372,2.507,373,2.079,381,1.335,455,2.249,472,3.719,478,1.519,487,2.358,500,3.341,600,3.515,621,4.114,635,3.515,636,4.114,656,3.262,696,2.025,707,3.341,750,2.993,772,3.904,855,3.837,861,1.245,870,1.724,887,2.226,929,1.218,942,2.025,992,2.633,997,3.719,1010,2.945,1011,3.837,1054,2.574,1055,2.725,1056,3.12,1058,3.424,1062,4.07,1063,7.007,1070,2.934,1090,3.055,1101,4.478,1151,1.745,1594,3.341,1601,3.719,1609,4.114,1869,2.507,2315,5.008,2398,6.565,2553,5.558,2630,3.424,2631,5.403,2632,5.008,2634,4.478,2638,4.713,2639,6.002,2640,5.403,2641,6.002,2642,6.002,2643,6.002,2644,5.403,2645,1.665]],["description//tracks/aws-certified-developer-associate/codepipeline/",[23,0.795,84,2.408,173,2.644,286,0.99,707,2.227,1062,2.08,1063,2.854,1601,2.479,1869,1.671]],["title//tracks/aws-certified-developer-associate/codeguru/_index",[913,5.364]],["content//tracks/aws-certified-developer-associate/codeguru/_index",[8,2.077,21,2.862,23,2.016,27,1.742,31,1.783,41,2.21,75,2.406,82,1.888,115,3.923,134,3.328,157,1.824,174,1.475,175,2.686,178,2.353,208,4.722,232,1.123,235,3.884,248,4.968,276,3.103,293,4.107,310,3.701,312,3.328,358,3.987,425,2.422,439,4.519,453,5.791,484,2.987,534,1.866,591,0.161,637,4.069,749,3.539,797,3.395,810,6.33,861,1.412,869,4.352,870,1.956,913,7.882,926,3.465,934,2.49,942,2.297,990,1.016,992,2.987,999,3.328,1037,3.884,1041,4.857,1054,2.789,1062,3.539,1582,7.258,1648,3.539,1650,4.857,1686,5.346,1775,6.129,1869,2.844,2067,5.346,2111,6.129,2289,6.129,2404,6.129,2413,6.632,2438,4.219,2495,6.896,2646,6.808,2647,9.675,2648,6.808,2649,6.808,2650,6.808,2651,6.808,2652,6.808,2653,6.33,2654,4.857,2655,7.637,2656,6.808,2657,6.808,2658,5.346]],["description//tracks/aws-certified-developer-associate/codeguru/_index",[27,1.024,75,0.906,175,1.267,310,2.175,401,1.755,453,2.227,1062,2.08,1648,2.08,2130,2.985]],["title//tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/",[23,0.851,75,0.97,453,2.384,913,3.196,1062,2.227]],["content//tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/",[3,2.207,7,1.433,10,3.403,11,1.058,23,1.758,29,1.905,32,1.024,35,1.723,43,1.746,51,1.035,54,1.081,60,1.336,61,2.207,62,1.07,65,0.869,66,1.405,68,2.061,75,2.078,108,2.006,110,2.658,115,2.027,120,1.439,125,1.309,134,4.782,137,0.749,145,5.109,146,1.736,149,3.216,153,2.992,156,1.632,157,2.076,165,1.411,169,2.354,174,1.453,175,1.512,178,1.325,183,2.248,188,1.512,189,2.335,203,2.131,210,0.908,221,1.632,224,1.654,231,2.559,232,0.788,235,5.379,239,1.569,242,2.915,245,2.226,248,4.921,269,2.131,278,1.265,279,2.715,286,1.182,293,4.355,347,2.847,351,2.681,362,2.874,365,1.964,381,0.814,382,1.372,385,1.796,390,2.957,393,1.723,398,2.596,399,2.335,413,2.131,453,5.356,455,1.926,460,4.03,473,1.934,496,2.797,509,3.099,511,1.995,512,2.168,534,1.309,556,5.996,561,3.75,570,5.851,591,0.113,613,2.893,629,3.927,641,2.596,642,1.995,698,2.29,732,2.381,758,2.959,776,3.053,777,1.876,804,3.519,809,2.942,814,3.732,832,3.865,854,3.458,855,3.053,861,0.991,887,2.487,912,5.525,913,7.887,924,2.487,929,0.969,934,3.357,948,3.816,1020,2.959,1039,2.29,1049,2.847,1062,2.482,1078,1.654,1119,2.725,1123,3.75,1144,5.365,1146,1.905,1147,2.942,1148,3.526,1151,1.388,1163,3.486,1167,3.563,1168,2.15,1173,2.381,1178,1.964,1179,4.665,1182,3.053,1183,2.797,1187,2.797,1190,1.876,1193,1.964,1229,3.563,1239,2.168,1258,3.344,1259,2.797,1287,2.027,1293,2.725,1317,2.725,1320,3.563,1327,2.29,1491,3.157,1540,3.157,1583,3.273,1650,3.407,1663,3.053,1678,3.563,1687,3.985,1716,4.596,1720,3.157,1721,3.273,1724,2.658,1902,6.037,1917,3.985,1937,3.407,2217,3.157,2413,7.033,2438,5.486,2452,3.157,2509,3.985,2542,3.157,2551,5.996,2553,2.874,2557,4.771,2653,3.563,2654,3.407,2659,6.037,2660,5.123,2661,4.776,2662,4.776,2663,4.776,2664,2.248,2665,4.776,2666,4.776,2667,4.776,2668,4.299,2669,8.405,2670,4.776,2671,4.776,2672,4.299,2673,5.596,2674,4.776,2675,4.776,2676,4.776]],["description//tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/",[]],["title//tracks/aws-certified-developer-associate/codedeploy/",[143,4.752]],["content//tracks/aws-certified-developer-associate/codedeploy/",[9,2.22,16,0.833,19,2.47,21,1.963,23,1.812,27,1.489,31,2.483,32,2.206,37,2.597,47,3.77,48,2.172,49,2.128,51,1.977,55,3.025,60,1.323,62,1.303,68,2.511,75,1.318,82,1.614,89,3.246,113,2.902,114,2.321,116,4.023,124,3.503,125,1.595,137,0.562,139,5.486,140,4.421,141,6.403,142,3.161,143,6.804,144,3.408,145,5.42,146,2.222,147,4.476,148,4.342,149,2.791,150,6.906,151,6.906,153,3.83,154,1.842,155,4.856,156,3.242,157,1.559,158,4.342,159,2.286,160,2.511,161,2.642,162,4.856,163,2.886,164,5.239,165,1.06,169,2.693,173,3.846,238,2.962,269,2.597,280,2.055,286,1.44,289,1.652,302,5.492,303,2.356,320,2.69,338,5.166,351,2.6,353,2.321,372,2.431,396,2.806,404,3.366,425,2.071,441,2.016,471,3.846,480,3.014,534,2.103,539,4.904,591,0.182,637,2.791,656,3.163,671,1.408,754,2.079,821,4.856,844,4.57,861,1.207,870,1.672,942,1.963,951,4.342,1003,2.845,1010,2.189,1054,2.522,1062,3.025,1090,2.962,1202,3.826,1283,4.377,1297,3.107,1539,5.026,1869,2.431,2398,3.989,2677,5.239,2678,5.82,2679,7.672,2680,8.583]],["description//tracks/aws-certified-developer-associate/codedeploy/",[23,0.845,27,1.089,75,0.964,116,1.578,143,2.813,607,2.212,1062,2.212,1932,3.83]],["title//tracks/aws-certified-developer-associate/codecommit/_index",[912,4.327]],["content//tracks/aws-certified-developer-associate/codecommit/_index",[17,3.064,31,2.454,32,1.721,37,3.583,82,2.753,134,3.926,167,5.728,218,3.251,241,3.779,245,2.307,256,2.362,280,2.151,425,2.857,480,3.155,541,4.266,591,0.19,637,3.851,853,5.991,861,1.666,870,2.307,911,5.991,912,5.974,931,4.174,942,2.709,1033,4.174,1054,3.082,1089,3.851,1263,5.991,1522,5.728,2557,4.872,2634,5.991]],["description//tracks/aws-certified-developer-associate/codecommit/_index",[23,1.366,912,4.14]],["title//tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/",[912,3.7,1089,2.948]],["content//tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/",[1,1.712,4,2.314,5,3.447,7,1.524,8,1.358,16,0.715,31,1.952,32,1.923,41,1.445,44,3.182,54,1.202,60,0.768,64,1.561,65,1.569,70,0.965,71,1.375,82,2.068,86,1.86,91,2.096,94,3.576,108,2.231,114,2.545,122,1.86,133,1.921,134,5.266,137,0.616,142,1.445,146,1.153,153,1.987,156,3.289,157,1.193,165,1.483,169,3.026,170,2.799,174,0.965,179,3.271,180,5.434,183,3.51,184,4.516,189,2.177,192,2.68,201,2.096,212,3.954,218,1.803,219,3.551,221,2.549,224,2.21,231,2.845,239,1.745,240,2.834,242,1.675,245,2.142,247,1.264,256,1.31,276,1.628,280,2.309,306,3.698,320,4.27,327,1.749,339,2.759,347,3.659,351,2.737,363,2.22,369,2.376,382,2.142,390,2.434,393,1.606,399,3.119,429,0.718,455,1.279,460,3.906,478,1.127,533,2.425,534,1.221,563,2.545,591,0.105,642,1.86,698,2.135,727,1.749,758,5.559,783,2.584,804,2.022,820,2.022,823,2.135,912,5.688,924,3.197,934,2.333,948,4.369,950,3.906,986,3.551,997,3.954,1005,4.702,1012,2.583,1038,1.675,1049,2.708,1081,2.54,1144,5.435,1145,3.646,1147,4.335,1148,3.655,1163,2.314,1166,2.022,1167,2.366,1168,2.045,1169,2.096,1173,3.719,1179,3.84,1181,2.478,1185,4.15,1189,5.909,1195,3.736,1197,4.217,1222,3.795,1230,2.058,1236,2.68,1239,2.022,1279,3.438,1286,2.177,1287,2.708,1293,3.64,1321,4.008,1332,2.759,1449,2.266,1475,2.943,1476,2.54,1500,2.846,1507,3.176,1597,4.373,1696,3.496,1875,3.176,1880,3.322,1907,2.68,2020,5.32,2242,3.176,2438,5.725,2442,5.118,2452,4.217,2557,5.137,2566,5.744,2599,5.324,2681,4.452,2682,4.452,2683,4.452,2684,4.452,2685,4.452,2686,8.621]],["description//tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/",[912,3.754,925,3.754,1089,2.991]],["title//tracks/aws-certified-developer-associate/codebuild/",[911,5.364]],["content//tracks/aws-certified-developer-associate/codebuild/",[7,1.214,8,1.813,9,2.267,16,0.839,19,2.523,21,2.624,22,3.595,23,1.722,24,3.48,27,2.444,31,2.5,32,2.257,37,2.652,39,3.411,42,2.652,47,2.301,48,2.194,49,1.648,59,3.411,62,1.331,65,1.082,66,1.748,75,2.26,82,1.648,85,3.025,94,2.301,110,3.308,111,4.959,112,4.667,113,4.761,114,2.37,115,2.523,116,3.797,117,2.963,118,2.85,119,4.24,120,1.791,121,2.235,122,2.483,123,6.863,124,3.577,125,2.522,126,3.799,127,2.086,128,1.331,129,2.85,130,3.799,131,3.391,132,2.564,133,2.564,134,4.239,135,3.391,136,5.35,137,0.574,143,5.731,167,4.24,173,5.141,179,2.607,206,2.747,210,1.13,211,1.929,224,2.058,227,3.681,242,2.235,276,2.173,279,3.15,280,2.084,283,3.46,289,1.687,293,2.523,334,3.23,347,2.523,351,1.629,369,1.574,404,2.607,436,5.141,477,3.025,496,3.48,553,4.434,591,0.141,599,3.799,602,3.157,613,2.564,637,2.85,644,3.799,647,4.24,671,1.438,729,3.799,829,1.668,844,4.667,861,1.233,869,3.799,870,1.707,889,3.391,911,7.638,912,4.682,914,3.928,940,3.928,942,2.005,948,2.698,1005,3.959,1010,2.235,1054,2.557,1055,2.698,1062,3.089,1063,5.549,1070,2.905,1090,3.959,1119,3.391,1157,2.905,1170,3.025,1194,4.043,1714,5.332,1869,2.483,1895,5.35,2221,4.667,2398,5.332,2438,3.683,2654,4.24,2687,5.943,2688,7.779,2689,4.667,2690,7.779,2691,4.073,2692,5.943,2693,5.943]],["description//tracks/aws-certified-developer-associate/codebuild/",[16,0.314,23,0.71,39,1.325,75,0.809,210,0.68,283,1.854,383,1.595,911,2.666,1070,1.747,1869,1.493]],["title//tracks/aws-certified-developer-associate/codeartifact/",[910,5.646]],["content//tracks/aws-certified-developer-associate/codeartifact/",[1,1.339,16,0.89,21,3.349,23,1.339,31,2.208,32,1.973,37,3.009,43,2.466,75,1.527,82,1.87,95,4.292,128,1.51,130,4.31,134,4.123,137,0.651,142,2.189,174,1.994,182,2.466,188,2.135,256,2.707,276,3.084,280,2.259,281,3.906,283,2.305,293,3.58,328,2.958,347,2.862,356,4.672,425,2.399,429,1.088,455,2.423,477,3.432,495,1.668,508,2.399,512,3.061,520,4.413,534,1.848,536,4.622,591,0.16,611,3.829,613,2.909,637,4.044,640,4.683,656,5.504,671,1.632,679,3.847,702,3.296,762,3.583,766,4.457,817,3.763,861,1.399,870,1.937,910,7.951,931,3.505,942,2.275,992,2.958,1054,2.773,1055,3.061,1058,3.847,1070,3.296,1071,4.81,1090,3.432,1283,3.847,1422,3.665,1609,4.622,1710,4.81,1826,5.626,1849,4.81,2398,6.308,2399,6.07,2400,6.07,2401,6.07,2535,6.07,2574,3.665,2630,3.847,2694,8.434,2695,6.743,2696,6.07,2697,5.626,2698,6.743,2699,6.07,2700,5.295,2701,6.743,2702,4.81,2703,6.743,2704,6.743,2705,6.743,2706,6.743,2707,6.743]],["description//tracks/aws-certified-developer-associate/codeartifact/",[23,1.366,910,5.402]],["title//tracks/aws-certified-developer-associate/cloudwatch/_index",[324,3.208]],["content//tracks/aws-certified-developer-associate/cloudwatch/_index",[9,1.704,14,2.615,16,0.878,19,1.896,21,3.191,22,3.453,23,1.964,27,2.367,31,2.26,32,1.982,47,3.476,48,2.393,49,2.072,51,2.004,53,1.633,55,2.322,56,2.44,57,1.469,60,0.77,62,1.673,64,1.093,75,1.448,79,2.688,82,1.239,87,2.184,89,3.071,90,2.103,94,1.729,108,1.156,116,1.656,121,1.68,122,3.407,124,3.849,125,2.048,128,1.827,137,0.432,142,2.425,146,1.156,153,2.854,156,3.233,157,1.196,165,1.164,169,3.32,170,1.959,171,1.655,172,2.622,175,2.365,178,1.239,179,1.959,185,2.064,187,2.759,188,1.414,209,2.142,215,2.373,216,2.227,217,2.227,218,2.589,223,1.283,224,2.215,226,0.905,227,4.424,228,4.154,231,1.704,234,2.322,237,2.548,239,1.497,240,1.469,244,2.486,245,1.283,246,2.806,247,1.268,252,2.227,256,1.881,275,3.849,278,1.183,280,1.713,284,3.324,289,1.268,303,1.809,307,1.253,312,4.624,313,2.855,315,5.375,316,3.559,318,4.158,323,3.186,324,4.65,347,3.171,350,4.088,351,1.224,369,1.183,372,3.121,373,1.547,387,3.191,388,6.747,395,2.373,408,2.768,413,1.993,420,2.854,424,3.186,425,1.589,427,3.255,463,4.383,476,2.428,479,4.227,495,1.105,514,2.956,517,3.332,529,4.433,534,1.753,539,2.855,541,4.333,557,2.759,569,5.59,580,2.806,591,0.253,622,2.548,642,1.866,643,3.398,644,5.213,645,4.021,646,4.021,647,5.329,653,2.486,671,1.547,673,2.322,684,2.227,696,2.158,702,2.184,707,2.486,740,3.255,745,3.061,754,1.21,756,2.688,795,2.102,807,3.507,820,2.028,839,2.855,842,5.866,843,3.727,861,0.927,865,4.151,870,1.283,884,2.952,942,1.507,943,3.061,975,2.428,992,1.959,1002,2.855,1007,4.021,1033,2.322,1054,2.103,1078,1.547,1089,2.142,1109,3.186,1113,4.383,1124,2.227,1157,2.184,1204,2.688,1284,5.573,1293,2.548,1360,4.297,1385,2.855,1422,2.428,1697,2.768,1767,3.186,2001,3.507,2050,2.855,2167,3.727,2251,5.757,2442,2.548,2609,3.332,2628,4.021,2708,4.467,2709,5.336,2710,4.467,2711,4.467,2712,4.467,2713,3.332,2714,4.467,2715,4.467,2716,4.467]],["description//tracks/aws-certified-developer-associate/cloudwatch/_index",[23,1.366,324,3.069]],["title//tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/",[324,2.743,1089,2.948]],["content//tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/",[1,0.784,3,1.824,5,0.793,7,1.342,10,2.689,11,0.66,12,2.097,16,0.657,17,1.797,23,1.059,25,0.892,27,1.01,29,1.879,30,0.543,31,1.396,32,1.791,33,1.429,35,1.923,39,1.105,40,1.456,41,0.967,42,2.102,44,0.856,48,0.434,51,1.36,54,0.926,60,0.919,62,1.675,64,1.153,65,0.542,66,1.719,67,1.281,68,1.703,70,1.155,72,0.753,75,0.893,82,1.306,87,0.839,88,0.979,89,2.232,91,2.217,95,2.713,108,1.624,110,2.196,120,0.517,121,1.484,122,2.227,125,1.291,127,1.046,128,1.804,131,1.7,132,3.877,133,1.285,137,0.699,139,2.522,142,2.259,144,1.744,145,0.955,146,2.041,153,3.595,154,0.943,156,3.482,157,2.158,159,1.17,160,0.741,161,0.779,163,3.142,165,1.142,169,3.208,171,0.771,172,1.385,174,0.855,175,1.249,176,1.033,178,0.476,179,2.563,180,0.955,181,1.793,182,1.443,183,2.509,185,0.793,186,1.307,187,1.285,188,1.249,196,1.177,201,1.402,203,1.761,204,2.606,206,0.793,209,2.259,210,1.635,211,1.281,214,0.646,216,2.349,217,0.856,218,2.689,219,4.282,221,0.587,223,1.353,224,0.595,226,0.208,227,1.264,228,0.741,231,3.583,232,0.491,235,3.334,237,1.7,238,1.516,239,0.697,240,0.979,241,0.808,243,1.7,245,1.679,246,0.753,247,0.487,252,0.856,259,0.741,276,0.628,278,1.662,280,1.428,282,0.979,285,2.503,286,0.425,287,1.675,289,0.487,290,1.033,291,0.955,299,1.281,303,1.598,306,2.42,307,1.64,308,1.17,309,0.729,312,4.666,313,4.625,315,5.636,318,3.492,321,1.064,322,1.097,324,4.215,327,2.094,330,0.779,332,1.064,337,2.608,339,1.064,340,0.808,344,2.522,346,4.246,347,2.663,348,1.281,349,1.225,361,1.55,365,3.075,369,1.412,371,4.246,376,2.339,377,2.222,378,1.264,380,1.097,381,0.803,382,0.856,383,0.766,384,0.793,385,1.12,390,1.797,391,1.516,393,1.423,394,1.349,396,0.628,399,1.929,400,1.623,406,1.548,410,1.583,412,1.17,414,1.473,416,1.135,420,1.329,423,0.912,425,0.611,427,0.874,429,0.277,431,1.61,434,1.792,441,1.032,444,1.548,445,1.607,450,1.404,452,0.793,458,2.232,459,0.808,461,3.07,466,4.128,473,1.206,474,1.968,476,3.41,478,0.434,479,1.135,480,0.674,484,1.307,487,1.55,495,1.319,508,0.611,510,1.033,511,1.244,512,0.779,514,2.177,516,1.177,520,2.556,526,3.229,532,1.485,533,2.226,534,0.817,537,0.766,554,1.097,557,1.285,578,0.856,580,2.753,583,1.225,591,0.203,595,1.281,598,1.583,605,2.556,607,0.892,611,0.779,612,1.097,613,0.741,621,3.654,622,0.979,628,1.064,631,1.429,632,0.856,633,1.658,640,0.874,641,2.978,642,1.244,643,1.583,649,2.311,652,0.912,671,0.721,684,0.856,696,1.005,702,0.839,709,1.281,714,0.933,720,0.808,721,1.064,722,1.432,727,1.17,732,3.312,734,1.535,737,3.864,740,1.516,748,5.15,754,1.277,759,2.688,770,2.251,777,1.851,778,1.904,781,1.744,783,1.907,784,1.348,786,1.432,792,2.125,795,3.126,804,2.849,809,0.753,810,1.281,811,0.513,814,2.622,820,1.353,829,0.482,831,1.516,832,4.095,860,0.665,864,0.979,868,1.135,869,1.097,873,2.502,879,4.448,883,3.776,887,1.463,889,0.979,923,1.348,924,1.463,926,0.874,929,1.413,934,2.813,937,1.225,941,1.545,942,1.798,948,3.954,950,0.823,973,0.933,977,1.177,981,0.955,990,0.256,1004,0.912,1010,2.005,1011,1.904,1012,1.632,1015,1.285,1024,0.637,1033,0.892,1038,2.198,1039,1.892,1049,2.819,1055,0.779,1089,0.823,1091,1.105,1099,2.222,1114,0.376,1116,0.808,1119,0.979,1124,0.856,1136,0.912,1137,2.815,1144,5.331,1145,1.456,1147,1.731,1148,3.555,1151,1.824,1157,1.456,1160,1.456,1163,2.771,1165,1.432,1167,4.189,1168,1.265,1169,2.217,1170,0.874,1171,1.177,1173,2.658,1174,1.135,1178,1.937,1179,3.998,1181,1.658,1182,1.904,1185,0.955,1186,1.135,1187,1.005,1190,1.17,1193,0.706,1194,2.449,1195,1.005,1198,1.348,1199,1.348,1202,0.856,1222,3.193,1229,1.281,1236,1.033,1248,1.225,1258,1.485,1259,2.759,1260,1.064,1261,1.281,1279,1.879,1284,7.779,1286,0.839,1291,1.281,1298,1.545,1315,0.933,1318,1.7,1324,0.685,1325,3.47,1332,1.846,1343,0.685,1346,1.005,1350,2.339,1383,1.348,1392,0.766,1406,1.432,1422,0.933,1423,0.955,1428,3.699,1431,2.815,1436,1.135,1440,1.675,1443,1.348,1446,1.432,1447,0.808,1455,1.348,1456,0.933,1462,0.619,1466,2.608,1471,1.348,1475,2.608,1476,1.7,1477,1.064,1482,0.856,1502,2.125,1514,1.528,1517,1.516,1523,1.545,1540,1.135,1545,1.225,1553,0.933,1608,1.225,1614,3.523,1622,1.432,1657,2.705,1668,1.225,1669,1.348,1673,1.402,1675,2.008,1688,1.348,1695,1.12,1697,2.919,1701,2.042,1702,1.177,1709,2.222,1715,2.125,1716,2.042,1723,2.681,1741,0.823,1758,3.293,1765,1.348,1767,4.964,1776,1.005,1838,0.823,1874,4.241,1880,1.281,1881,1.432,1882,1.225,1885,1.432,1898,1.545,1907,2.835,1922,1.348,1948,2.608,2007,2.339,2045,1.348,2096,1.583,2117,3.931,2207,1.969,2221,1.348,2234,0.912,2236,0.912,2242,1.225,2245,3.699,2252,1.097,2262,1.225,2269,0.753,2270,2.486,2292,1.177,2293,3.654,2329,1.545,2333,1.348,2334,3.552,2362,1.135,2392,4.799,2416,1.225,2418,1.545,2431,1.097,2442,2.251,2443,1.225,2444,1.005,2466,1.548,2483,1.348,2525,1.348,2548,1.432,2555,1.545,2600,1.969,2609,2.944,2613,1.545,2709,1.432,2717,1.281,2718,1.545,2719,1.717,2720,1.432,2721,7.839,2722,1.432,2723,1.717,2724,1.717,2725,1.7,2726,1.717,2727,2.681,2728,1.717,2729,2.339,2730,1.717,2731,5.844,2732,1.717,2733,1.717,2734,1.717,2735,1.717,2736,1.135,2737,1.717,2738,2.979,2739,1.545,2740,1.432,2741,1.717,2742,2.486,2743,0.912,2744,1.225,2745,1.717,2746,1.545,2747,1.717,2748,2.979,2749,1.717,2750,1.717,2751,1.717,2752,1.717,2753,1.177,2754,5.26,2755,1.545,2756,1.717,2757,1.717,2758,1.717,2759,1.545,2760,1.717,2761,2.979,2762,2.979,2763,2.486,2764,1.717,2765,1.717,2766,1.717,2767,3.946,2768,3.946,2769,2.979,2770,2.979,2771,1.717,2772,1.717,2773,1.717,2774,1.717,2775,1.717,2776,1.717,2777,1.717,2778,2.979,2779,3.552,2780,2.979,2781,1.717,2782,1.717,2783,1.717,2784,1.717,2785,1.717,2786,1.348,2787,1.717,2788,1.717,2789,1.717,2790,1.717,2791,1.281,2792,1.717,2793,1.348,2794,1.717,2795,1.717,2796,1.717,2797,1.717,2798,1.717,2799,1.717,2800,1.717,2801,3.552,2802,1.717,2803,1.717,2804,1.717,2805,1.717,2806,1.432,2807,1.717,2808,1.432,2809,1.717,2810,1.717,2811,2.681,2812,1.717,2813,1.545,2814,1.348,2815,1.717,2816,1.717,2817,1.717,2818,1.717,2819,2.979,2820,1.717,2821,1.717,2822,1.717,2823,1.432,2824,1.717,2825,1.717,2826,1.717,2827,1.717,2828,1.717,2829,1.432,2830,1.432]],["description//tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/",[324,3.069,1089,3.299]],["title//tracks/aws-certified-developer-associate/cloudfront/_index",[106,4.327]],["content//tracks/aws-certified-developer-associate/cloudfront/_index",[7,1.408,9,1.726,16,0.88,19,1.92,21,2.538,22,4.628,23,1.946,24,4.406,25,3.355,27,2.472,29,1.804,30,1.432,31,2.148,32,2.165,40,3.155,44,2.256,47,2.913,48,1.633,49,1.79,53,1.654,54,0.631,55,2.352,58,2.459,60,0.78,61,2.091,62,1.013,80,3.884,81,3.997,82,2.632,83,4.183,84,4.938,85,3.829,86,2.696,87,3.155,88,3.682,89,2.677,90,2.474,91,2.129,92,4.566,93,3.228,94,1.751,95,2.303,96,2.17,97,2.649,98,2.892,99,4.073,100,2.459,101,2.518,102,4.073,103,4.073,104,3.101,105,4.073,106,5.587,107,4.073,117,4.325,118,3.608,120,1.363,125,1.24,127,1.588,128,2.262,132,1.952,137,0.437,142,2.095,144,2.649,156,2.206,169,2.265,174,0.98,182,2.36,183,2.129,184,3.155,188,2.043,201,2.129,204,3.678,210,1.227,211,1.469,218,2.613,229,1.86,231,1.726,232,1.065,236,2.17,237,2.581,240,2.122,242,3.262,246,1.985,247,2.136,248,2.649,249,3.095,250,3.228,251,2.723,252,2.256,253,5.244,254,3.101,255,2.303,256,2.414,257,6.188,258,4.973,259,1.952,260,2.649,261,2.518,262,2.212,263,2.019,264,2.723,265,3.375,266,3.375,267,4.815,268,4.662,269,3.87,270,2.99,271,2.99,272,2.459,273,2.892,274,2.803,275,2.723,276,2.36,277,2.723,278,1.198,279,2.613,280,1.212,281,2.74,282,2.581,283,1.546,284,2.352,285,2.404,286,1.119,287,1.92,288,3.228,289,1.284,290,2.723,291,2.518,292,2.649,293,3.482,294,2.352,295,2.536,317,3.101,327,2.536,329,2.803,351,1.24,360,3.038,361,1.777,366,2.459,372,3.143,373,2.606,374,2.88,385,1.702,398,2.459,425,1.61,429,0.73,435,2.892,447,4.724,454,4.126,458,1.61,465,2.256,489,2.892,495,1.119,500,2.518,520,2.17,533,1.347,534,1.24,557,1.952,580,1.985,591,0.249,602,2.404,611,3.416,630,3.375,632,2.256,655,1.632,666,2.723,671,1.095,697,3.775,699,2.17,728,3.829,766,5.733,827,4.424,853,3.375,861,0.939,870,1.3,918,4.815,919,3.775,938,3.375,942,1.526,976,2.649,997,2.803,1054,2.122,1068,3.101,1070,3.155,1116,2.129,1158,1.832,1254,3.884,1278,2.581,1281,5.385,1360,2.019,1377,2.054,1380,3.375,1420,5.157,1421,4.293,1565,3.228,1931,4.073,2140,2.99,2208,4.073,2270,3.775,2353,3.775,2506,4.073,2831,7.385,2832,4.524,2833,4.524,2834,4.073,2835,4.524,2836,6.454,2837,6.454,2838,4.524,2839,4.524,2840,3.553]],["description//tracks/aws-certified-developer-associate/cloudfront/_index",[83,1.778,87,2.08,88,2.428,276,1.556,454,2.72,580,1.867,766,2.813,2140,2.813]],["title//tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/",[106,2.578,142,1.39,360,2.016,373,1.484,728,2.18]],["content//tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/",[1,1.289,2,1.632,3,1.322,7,1.452,8,1.391,10,3.597,11,0.634,13,1.675,16,0.57,21,0.965,23,1.982,30,1.444,31,1.194,32,1.7,33,2.187,39,1.061,42,2.539,43,1.046,51,1.537,53,1.046,54,0.793,57,0.94,64,1.116,65,0.521,66,0.841,72,1.255,83,1.195,86,1.905,89,2.024,90,0.94,91,1.346,106,5.526,108,1.181,110,1.592,114,1.819,116,2.407,127,1.601,128,1.022,133,2.455,134,1.398,137,0.627,142,1.847,146,1.68,153,1.276,156,0.978,157,1.739,159,2.235,160,1.234,163,1.076,165,1.036,169,1.004,171,0.74,172,1.601,174,1.233,175,0.905,178,0.793,183,3.056,184,4.149,185,1.322,188,0.905,210,0.867,217,4.509,218,3.437,221,0.978,223,0.822,224,0.991,227,1.936,231,2.884,232,0.472,234,1.487,239,0.669,240,2.921,242,2.442,245,1.31,247,1.615,263,1.276,268,4.023,269,3.674,276,1.046,278,2.001,280,1.222,282,1.632,286,0.708,293,1.936,298,1.675,303,1.158,305,1.675,306,3.22,307,1.822,308,3.553,318,2.539,322,1.828,326,2.134,328,3.111,330,1.299,338,1.722,341,1.342,347,2.756,351,2.673,353,1.141,355,4.106,360,4.256,362,1.722,365,1.876,366,2.479,369,1.719,372,2.377,373,3.457,374,4.768,375,2.275,381,0.488,382,1.634,390,1.74,393,1.645,398,1.555,399,2.781,400,1.876,406,1.487,407,0.766,412,1.792,425,1.018,427,1.456,429,1.144,433,0.928,445,1.956,447,4.735,450,1.623,452,1.322,459,2.147,461,3.278,473,1.158,478,1.154,480,2.235,495,1.408,509,1.322,513,3.304,528,0.648,532,1.426,533,2.693,534,0.784,591,0.195,593,2.04,602,2.423,605,1.372,608,2.134,611,2.071,625,0.883,629,2.671,641,2.513,642,1.195,643,1.52,655,3.312,666,1.722,670,1.772,679,3.704,699,4.337,702,1.398,720,1.346,727,3.116,728,5.126,732,2.275,734,1.392,746,1.487,750,2.275,759,4.046,766,1.891,783,1.158,804,3.601,809,2.001,831,2.321,832,1.426,855,1.828,860,1.107,861,0.593,862,1.722,870,0.822,873,1.819,924,1.691,926,2.895,928,1.96,929,1.534,934,3.402,940,4.688,942,1.919,948,3.22,950,3.401,973,1.555,975,2.479,1003,1.398,1005,1.456,1010,1.716,1012,1.58,1017,2.837,1024,2.803,1038,2.983,1049,2.415,1070,2.23,1081,1.632,1082,5.291,1116,1.346,1119,1.632,1124,1.426,1136,1.52,1144,5.329,1145,3.174,1146,1.819,1147,3.723,1148,3.584,1151,2.062,1157,2.781,1158,1.158,1160,1.398,1163,4.412,1164,3.877,1167,4.375,1168,0.917,1170,2.895,1171,1.96,1173,3.954,1181,1.592,1182,2.916,1183,2.671,1193,1.176,1194,1.487,1195,2.671,1202,1.426,1216,1.772,1258,1.426,1279,2.269,1280,2.246,1286,2.23,1296,1.772,1297,1.158,1325,2.275,1329,2.134,1342,2.246,1343,1.141,1344,3.254,1345,2.371,1360,1.276,1390,2.575,1396,1.592,1397,2.04,1430,1.722,1432,5.121,1434,2.04,1435,2.04,1437,1.96,1438,1.828,1447,1.346,1448,3.528,1449,3.304,1454,1.675,1462,1.032,1466,1.891,1475,1.891,1476,3.246,1479,1.456,1480,2.387,1481,2.134,1482,2.275,1483,2.387,1500,2.916,1501,2.575,1504,2.134,1505,2.246,1506,2.387,1507,2.04,1508,2.575,1509,5.569,1510,2.575,1511,2.575,1512,2.575,1513,2.246,1515,1.52,1516,2.575,1587,2.387,1593,1.722,1614,1.891,1632,2.575,1673,1.346,1675,1.456,1718,2.575,1722,1.322,1755,5.098,1778,2.575,1838,1.372,1869,1.195,1885,2.387,1907,3.424,1909,2.575,1938,1.96,1950,1.675,2217,3.76,2234,1.52,2236,1.52,2237,1.632,2252,1.828,2357,2.246,2575,1.487,2576,1.675,2578,1.722,2589,1.722,2595,1.722,2596,1.722,2630,1.632,2660,1.891,2697,2.387,2808,2.387,2841,2.86,2842,2.86,2843,2.86,2844,4.561,2845,4.244,2846,2.86,2847,2.86,2848,2.86,2849,2.86,2850,2.86,2851,2.86,2852,2.86,2853,2.86,2854,2.86,2855,2.86]],["description//tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/",[106,3.165,142,1.707,360,2.475,373,1.821,728,2.676]],["title//tracks/aws-certified-developer-associate/cloudformation/_index",[58,3.908]],["content//tracks/aws-certified-developer-associate/cloudformation/_index",[1,0.639,3,1.488,5,1.488,7,1.506,9,1.228,11,0.713,16,0.868,17,2.644,19,1.366,21,2.073,23,1.376,27,1.572,29,1.284,31,2.246,32,1.931,35,1.806,37,1.436,39,1.194,41,1.625,42,1.436,47,2.378,48,1.754,49,0.893,51,1.331,53,1.831,54,0.698,56,2.344,57,3.338,58,5.6,59,3.795,60,1.059,61,2.839,62,1.121,63,4.581,64,1.503,65,1.118,66,0.947,67,2.402,68,1.389,69,1.515,70,0.698,71,1.546,72,3.04,73,2.898,74,2.297,75,1.7,76,1.145,77,2.898,78,2.898,82,2.722,83,2.091,84,1.938,89,1.145,90,1.058,91,2.356,94,2.378,96,1.544,112,3.931,116,3.267,119,3.572,120,1.509,122,2.091,123,2.402,125,2.352,126,5.757,128,2.161,132,2.16,135,1.837,140,2.695,142,2.785,149,1.544,153,1.436,155,4.177,156,3.498,157,2.129,159,2.414,169,3.47,171,0.833,175,2.194,178,0.893,182,1.177,187,1.389,188,1.019,189,2.447,195,1.995,203,2.741,206,2.314,210,0.612,211,2.58,214,1.211,218,2.487,232,0.531,233,1.792,239,0.753,240,1.058,242,1.883,246,1.412,247,1.968,259,2.99,260,2.932,278,0.853,280,1.856,281,1.366,283,1.1,285,1.71,286,2.27,289,0.914,290,1.938,299,2.402,302,1.938,303,2.487,307,0.903,308,1.967,309,2.608,318,1.792,327,1.265,328,1.412,332,1.995,334,2.721,351,2.179,353,1.284,356,2.892,366,1.75,369,1.326,372,1.345,373,1.115,381,0.854,383,1.436,385,2.607,391,2.548,397,1.71,404,1.412,407,0.862,423,3.989,425,2.186,429,0.519,431,1.1,436,2.128,455,0.925,459,1.515,462,0.893,472,3.807,476,4.08,477,1.638,478,1.267,480,1.265,482,1.885,484,1.412,487,1.265,495,1.239,500,3.419,505,2.297,508,1.145,509,1.488,512,1.462,514,3.203,520,1.544,524,1.436,529,3.339,534,2.058,535,3.063,557,1.389,570,2.128,588,3.309,591,0.251,597,1.211,611,3.767,613,1.389,622,1.837,624,3.309,632,2.496,633,1.792,641,1.246,650,2.528,668,2.297,671,0.779,684,1.605,720,3.262,737,4.399,746,1.673,750,1.605,754,1.878,783,2.487,796,3.505,802,3.102,804,3.147,821,4.177,829,0.903,854,2.741,861,0.668,865,3.127,870,0.925,887,1.194,889,1.837,929,1.016,934,1.177,942,1.086,948,2.273,992,1.412,997,1.995,1003,3.003,1010,2.989,1011,2.058,1024,1.194,1031,4.507,1054,1.646,1056,1.673,1062,2.602,1084,2.206,1087,1.673,1088,2.297,1119,3.505,1144,2.602,1151,1.455,1169,1.515,1170,2.548,1184,1.837,1188,2.297,1189,3.431,1190,1.265,1202,2.496,1222,1.638,1230,1.488,1238,0.815,1278,2.856,1279,1.284,1297,1.303,1315,3.339,1316,2.16,1327,2.401,1421,2.856,1440,2.125,1448,1.75,1464,1.792,1489,1.389,1505,2.528,1558,2.297,1565,3.572,1600,2.686,1609,2.206,1612,5.569,1654,1.837,1664,1.885,1714,2.206,1732,1.885,1733,2.528,1755,2.528,1838,2.401,1869,1.345,1907,1.938,1948,2.128,2141,1.837,2181,3.431,2258,2.528,2274,2.686,2275,2.686,2285,2.898,2325,1.837,2357,2.528,2386,2.898,2443,2.297,2445,2.686,2446,2.898,2478,2.058,2600,3.309,2637,2.898,2645,0.893,2654,2.297,2677,2.898,2845,2.402,2856,5.006,2857,3.219,2858,3.219,2859,3.219,2860,6.93,2861,2.686,2862,3.219,2863,4.178,2864,2.686,2865,3.219,2866,3.219,2867,2.898,2868,3.219,2869,3.219,2870,3.219,2871,3.505,2872,3.219,2873,3.219,2874,5.006,2875,3.219,2876,3.219,2877,2.686,2878,3.219,2879,2.898,2880,3.219,2881,3.219,2882,3.219,2883,3.219,2884,2.898,2885,5.006,2886,2.898,2887,2.898,2888,3.2,2889,2.898,2890,6.238,2891,4.383,2892,2.898,2893,3.219,2894,2.686,2895,2.058,2896,2.686]],["description//tracks/aws-certified-developer-associate/cloudformation/_index",[17,1.86,75,1.104,223,1.4,423,2.59,472,3.021,2140,3.222]],["title//tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/",[23,0.708,32,0.764,58,1.937,126,2.278,156,1.218,169,1.251,829,1]],["content//tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/",[5,3.234,7,1.287,8,1.795,10,3.13,16,0.517,17,1.52,23,1.638,31,2.024,32,1.914,33,1.911,41,1.293,42,2.626,43,1.457,44,1.987,54,0.556,57,3.013,58,5.364,59,2.866,64,0.975,65,0.725,66,1.172,71,1.817,72,1.748,75,0.902,83,3.229,86,1.664,116,2.866,122,2.923,125,2.447,126,6.171,127,1.399,132,1.719,137,0.676,142,2.802,146,1.523,147,1.719,156,3.585,159,1.565,161,1.809,165,1.274,169,3.587,175,1.261,183,1.875,204,3.779,218,1.613,223,1.691,224,1.38,228,2.539,231,2.245,233,2.218,238,3.562,242,2.632,245,2.01,256,1.172,276,1.457,279,1.613,286,1.732,299,2.973,306,1.809,328,2.582,347,1.691,351,1.613,356,2.77,361,1.565,362,2.398,366,3.199,369,1.559,372,3.229,373,2.424,374,1.778,377,2.973,382,1.691,385,1.499,390,1.52,393,1.437,396,1.457,400,1.638,406,2.071,412,1.565,414,1.246,423,2.117,445,1.201,450,1.418,453,2.218,480,1.565,495,0.986,509,1.841,529,3.199,533,1.186,534,1.918,585,3.129,588,4.626,591,0.195,611,2.672,613,2.539,621,5.298,624,3.89,626,2.094,641,1.542,643,3.127,652,2.117,666,2.398,671,0.964,696,1.344,720,3.294,721,2.469,727,1.565,729,2.547,737,4.901,754,1.08,770,3.358,776,2.547,777,2.312,783,1.613,796,4.41,804,2.672,809,2.582,811,0.91,815,4.797,817,1.778,829,1.964,832,3.854,864,2.273,889,2.273,891,3.89,924,1.478,948,2.672,986,3.276,1002,2.547,1010,2.907,1012,2.038,1038,1.499,1039,1.911,1078,1.38,1144,5.13,1145,1.948,1147,1.748,1148,3.329,1151,2.034,1163,3.059,1164,2.877,1167,3.127,1169,2.77,1170,2.028,1173,1.987,1178,1.638,1185,2.218,1197,2.633,1216,2.469,1222,3.562,1230,2.72,1259,3.446,1315,4.201,1320,2.973,1428,3.129,1443,3.129,1448,3.804,1612,5.542,1614,4.626,1615,3.587,1673,1.875,1700,2.383,1735,5.298,1838,1.911,1869,1.664,1878,2.842,1901,3.587,1907,2.398,2160,4.911,2181,2.731,2210,5.298,2212,3.325,2264,3.587,2268,3.129,2442,2.273,2443,4.992,2444,2.333,2445,6.449,2447,3.587,2474,3.587,2578,3.542,2672,3.587,2739,3.587,2753,2.731,2829,3.325,2845,2.973,2886,6.957,2889,3.587,2890,9.094,2891,6.538,2892,5.298,2895,5.982,2897,3.984,2898,3.984,2899,3.984,2900,5.885,2901,6.998,2902,3.984,2903,3.984,2904,3.984,2905,3.984,2906,3.984,2907,9.518,2908,3.984,2909,3.984,2910,5.885,2911,3.984,2912,5.885,2913,3.984,2914,6.998,2915,3.984,2916,3.984,2917,5.885,2918,2.633,2919,5.885,2920,5.885,2921,5.885,2922,5.885,2923,5.885,2924,3.984,2925,3.984,2926,3.984,2927,3.984,2928,3.984,2929,3.984,2930,5.885,2931,5.885,2932,5.885,2933,5.885,2934,5.885,2935,3.984,2936,3.984,2937,3.984,2938,3.984,2939,3.984,2940,3.984,2941,3.984,2942,3.984,2943,3.984,2944,3.984,2945,3.984,2946,3.984]],["description//tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/",[23,0.903,32,0.974,58,2.47,126,2.905,156,1.553,169,1.595,829,1.275]],["title//tracks/aws-certified-developer-associate/api-gateway/",[22,2.841,24,3.599]],["content//tracks/aws-certified-developer-associate/api-gateway/",[1,0.989,7,1.471,9,1.22,12,1.699,16,0.854,19,1.357,21,3.138,22,4.982,23,2.062,24,5.853,25,1.662,26,2.044,27,2.543,28,2.588,29,2.439,30,1.576,31,2.468,32,2.183,33,1.533,34,2.113,35,1.153,36,2.878,37,4.011,38,2.796,39,1.186,40,4.477,41,1.038,42,1.427,43,1.169,44,4.483,45,5.47,46,4.483,47,3.73,48,2.094,49,2.198,50,2.878,51,1.793,52,2.878,53,2.237,54,0.694,55,1.662,56,1.22,57,1.051,59,2.268,60,0.858,61,2.302,62,1.37,63,2.113,64,0.782,72,1.403,75,1.128,76,1.137,79,1.924,80,4.156,82,2.615,83,1.336,85,2.534,88,2.841,89,1.137,90,2.46,91,1.505,92,3.404,97,1.872,100,2.707,106,1.924,108,1.583,109,2.113,113,1.594,116,2.56,117,3.952,118,3.311,120,0.964,125,0.876,128,1.917,132,2.149,137,0.309,138,2.281,142,2.854,145,1.779,146,0.828,147,2.979,152,2.878,154,1.012,156,1.702,157,1.334,163,1.202,169,1.748,174,0.693,175,1.012,178,2.295,179,3.029,184,2.434,186,1.403,187,2.979,188,1.936,192,5.151,197,2.113,199,3.79,201,1.505,204,2.99,208,1.779,210,1.423,211,1.617,214,1.202,216,2.483,217,2.483,218,2.796,222,3.514,223,1.984,224,1.725,226,0.603,227,2.114,229,1.315,231,1.22,232,0.822,236,1.533,237,1.824,238,1.627,239,1.751,240,2.27,242,2.3,246,2.185,247,1.96,248,1.872,249,2.933,250,2.281,251,3.681,252,3.05,253,4.414,254,2.191,255,1.627,256,2.435,257,6.106,258,4.564,259,1.379,260,1.872,261,1.779,262,1.563,263,1.427,264,1.924,265,2.385,266,2.385,267,3.715,268,5.128,269,1.427,270,2.113,271,2.113,272,1.738,273,2.044,274,1.981,275,1.924,276,2.237,277,1.924,278,1.319,279,2.016,280,1.85,281,1.357,282,1.824,283,2.091,284,1.662,285,1.699,286,0.791,287,1.357,288,2.281,289,1.414,290,1.924,291,4.763,292,1.872,293,3.732,294,1.662,295,1.256,303,1.295,307,1.397,308,1.956,312,1.563,315,2.707,319,2.113,320,1.478,324,2.222,325,2.511,326,2.385,330,1.452,334,1.738,341,0.941,347,2.114,351,0.876,353,2.754,372,1.336,373,2.119,374,2.729,378,2.596,379,2.668,380,3.91,381,0.849,382,1.431,383,2.222,384,1.478,385,1.873,386,2.385,387,1.68,388,3.553,389,1.924,391,2.534,395,2.646,397,2.646,401,1.403,420,1.427,421,5.422,425,1.137,429,0.804,439,1.563,442,1.824,458,1.137,476,1.738,484,1.403,510,2.997,512,1.452,522,4.483,523,4.155,524,1.427,525,2.511,526,2.191,527,2.707,528,1.128,529,2.707,530,1.403,531,2.281,532,1.594,533,1.483,534,1.365,535,3.443,537,1.427,539,2.044,557,1.379,598,1.699,600,1.872,607,1.662,611,1.452,612,2.044,613,1.379,623,2.385,640,1.627,643,1.699,644,2.044,649,1.872,671,0.774,684,1.594,690,1.738,698,2.933,709,2.385,728,3.113,736,1.662,740,1.627,752,2.281,762,1.699,765,2.281,775,2.385,791,4.165,793,2.511,795,1.505,811,0.416,815,2.191,817,1.427,830,2.385,854,2.222,861,0.663,870,0.918,924,1.186,929,0.649,942,1.079,973,1.738,991,2.113,1004,1.699,1010,1.202,1015,1.379,1017,2.483,1030,1.738,1033,1.662,1157,2.99,1204,1.924,1222,1.627,1244,2.191,1254,1.924,1332,1.981,1346,1.872,1351,3.715,1377,1.452,1404,2.668,1420,2.191,1525,2.668,1539,1.872,1596,2.511,1612,1.779,1635,4.414,1660,1.452,2095,2.511,2353,6.244,2378,2.668,2553,1.924,2598,2.113,2947,3.197,2948,3.197,2949,3.197,2950,3.197,2951,3.197,2952,3.197,2953,3.197,2954,3.197,2955,2.878,2956,2.878,2957,2.668,2958,3.197,2959,3.197,2960,3.197,2961,3.197,2962,3.197]],["description//tracks/aws-certified-developer-associate/api-gateway/",[7,0.664,22,2.854,23,0.845,24,2.492,276,1.556,383,1.899,607,2.212]],["title//tracks/archive/",[863,4.327]],["content//tracks/archive/",[236,4.085,591,0.229,863,5.126,2963,8.729,2964,7.615]],["description//tracks/archive/",[]],["title//tracks/algorithms-101/plan",[538,4.455]],["content//tracks/algorithms-101/plan",[1,1.677,3,1.736,8,1.146,11,1.248,12,1.996,14,2.2,19,1.595,30,1.189,49,1.042,51,0.814,54,0.785,55,1.953,60,0.971,70,1.465,75,1.53,79,2.261,80,2.261,98,2.401,101,2.091,108,0.972,118,4.2,137,0.544,147,1.621,158,2.803,165,1.026,170,1.648,186,1.648,207,1.235,226,0.91,229,1.545,232,1.572,239,0.879,245,1.618,277,3.39,281,4.044,282,2.143,286,0.93,361,1.476,381,0.641,382,1.618,390,1.433,393,2.032,400,1.545,412,1.476,425,1.337,429,0.909,433,1.219,434,1.706,439,1.837,450,1.337,455,1.079,478,0.951,495,1.394,496,2.2,528,2.185,532,2.809,538,2.328,565,1.951,566,3.37,578,1.873,583,2.316,591,0.264,596,2.993,671,0.909,767,2.328,831,2.867,859,3.601,860,1.454,862,2.261,872,1.996,883,4.068,888,1.802,923,2.95,965,3.062,983,2.328,990,1.201,999,1.837,1012,2.786,1024,1.393,1050,2.525,1078,1.301,1091,1.393,1112,1.912,1116,1.768,1124,2.809,1135,2.483,1146,2.246,1203,1.219,1228,6.003,1258,1.873,1278,4.818,1327,1.802,1343,1.498,1345,1.953,1462,2.708,1482,2.809,1490,3.761,1521,2.2,1581,2.575,1612,3.135,1642,2.143,1665,1.454,1673,2.651,1675,2.867,1700,1.521,1708,2.328,1711,2.401,1727,4.487,1751,3.908,1798,1.393,1887,2.579,1938,2.575,1998,4.7,2119,2.575,2234,1.996,2236,1.996,2237,3.214,2252,2.401,2269,1.648,2358,3.635,2486,3.589,2575,2.928,2576,3.299,2578,3.39,2589,2.261,2595,2.261,2596,3.39,2598,3.723,2610,3.382,2664,3.181,2736,6.909,2743,2.993,2861,3.135,2965,6.084,2966,1.433,2967,2.575,2968,1.874,2969,4.877,2970,3.513,2971,3.601,2972,2.95,2973,2.95,2974,3.135,2975,2.68,2976,2.803,2977,2.95,2978,3.757,2979,3.135,2980,3.135,2981,2.95,2982,1.996,2983,2.401,2984,2.754,2985,2.091,2986,1.706,2987,2.803,2988,2.604,2989,3.135,2990,2.68,2991,4.519,2992,2.803,2993,4.7,2994,3.757,2995,3.757,2996,2.328,2997,3.135,2998,4.203,2999,4.203,3000,4.203,3001,2.803,3002,4.963,3003,2.803,3004,2.68,3005,2.483,3006,2.575,3007,2.803,3008,2.95,3009,2.803,3010,0.951,3011,2.95,3012,1.873,3013,3.382,3014,3.757,3015,2.483,3016,2.95,3017,2.803,3018,2.95,3019,2.803,3020,2.575,3021,2.803,3022,2.575,3023,3.135,3024,2.95,3025,2.143,3026,3.382,3027,3.382,3028,0.408]],["description//tracks/algorithms-101/plan",[]],["title//tracks/algorithms-101/leetcode75",[1146,2.141,3022,3.68,3028,0.583]],["content//tracks/algorithms-101/leetcode75",[1,1.348,3,1.212,11,1.367,12,1.393,51,0.922,54,0.366,60,0.733,61,1.212,91,1.234,100,1.425,101,1.459,108,0.679,137,0.253,140,2.354,154,0.83,165,0.477,170,1.15,172,0.92,174,0.922,186,2.354,206,1.212,210,0.499,213,1.234,224,0.908,229,1.749,232,0.885,245,0.753,277,1.578,281,4.155,307,0.736,311,2.079,353,1.045,385,0.986,390,1,393,0.945,400,1.078,407,0.702,412,1.03,427,2.164,429,1.425,431,0.896,433,0.851,445,0.79,450,0.933,478,0.663,484,1.15,501,1.393,528,1.866,535,1.307,565,0.908,566,1.307,591,0.265,632,1.307,698,1.257,748,2.718,755,1.234,759,1.496,831,1.334,859,1.676,862,1.578,875,2.059,899,2.559,983,1.624,990,1.461,999,2.623,1012,2.35,1015,2.315,1024,1.577,1034,1.334,1050,1.51,1055,1.19,1091,2.695,1112,1.334,1113,1.797,1115,2.635,1116,1.234,1123,2.059,1124,1.307,1146,1.045,1158,1.061,1174,1.733,1203,1.742,1228,1.797,1241,1.87,1315,1.425,1324,1.045,1328,1.334,1335,0.521,1342,2.059,1345,1.363,1360,1.17,1377,1.19,1441,0.959,1447,1.234,1449,1.334,1454,1.535,1462,2.621,1482,2.12,1499,1.956,1517,1.334,1521,2.49,1578,2.187,1579,2.059,1581,1.797,1612,2.367,1657,1.797,1665,2.077,1673,2.002,1675,1.334,1688,2.059,1698,2.059,1700,1.061,1708,2.635,1741,1.257,1751,1.17,1827,2.187,1938,1.797,2050,1.676,2185,2.915,2188,1.513,2213,2.187,2225,1.535,2234,1.393,2236,1.393,2237,1.496,2256,1.733,2269,1.866,2431,1.676,2436,2.187,2466,1.363,2469,2.36,2486,3.865,2493,2.36,2510,2.059,2575,1.363,2576,1.535,2578,1.578,2589,1.578,2595,1.578,2596,1.578,2598,1.733,2653,1.956,2664,4.157,2736,7.004,2743,2.259,2965,8.812,2966,2.772,2970,2.789,2972,2.059,2973,2.059,2975,1.87,2976,1.956,2977,2.059,2983,1.676,2984,1.282,2986,2.436,2987,1.956,2990,1.87,2991,1.578,2996,1.624,2998,1.956,2999,1.956,3000,1.956,3003,1.956,3004,1.87,3006,1.797,3007,1.956,3010,0.663,3011,2.059,3012,2.12,3015,1.733,3016,2.059,3018,2.059,3019,1.956,3021,1.956,3022,2.915,3023,2.187,3028,0.284,3029,2.621,3030,2.36,3031,2.36,3032,2.811,3033,1.956,3034,2.36,3035,2.059,3036,1.676,3037,2.187,3038,2.059,3039,2.187,3040,2.915,3041,2.187,3042,1.459,3043,2.187,3044,2.187,3045,1.956,3046,3.615,3047,2.187,3048,1.87,3049,2.187,3050,2.187,3051,2.621,3052,2.12,3053,2.187,3054,2.187,3055,2.187,3056,4.477,3057,2.187,3058,1.733,3059,2.187,3060,2.059,3061,2.187,3062,1.797,3063,2.187,3064,2.187,3065,2.36,3066,2.187,3067,2.36,3068,1.956,3069,2.36,3070,2.059,3071,2.059,3072,2.36,3073,2.059,3074,2.621,3075,2.621,3076,2.621,3077,2.621,3078,2.621,3079,2.621,3080,1.797,3081,2.36,3082,2.621,3083,2.621,3084,3.034,3085,2.621,3086,2.621,3087,2.187,3088,2.621,3089,2.621,3090,2.621,3091,2.36,3092,2.621,3093,2.36,3094,3.828,3095,2.36,3096,2.621,3097,1.87,3098,2.621,3099,2.36,3100,2.621,3101,2.059,3102,2.621,3103,2.621,3104,2.059,3105,2.621,3106,2.059,3107,2.36,3108,2.621,3109,2.621,3110,2.187,3111,2.621,3112,2.36,3113,2.621,3114,2.621,3115,2.36,3116,1.733,3117,2.36,3118,2.621,3119,2.36,3120,2.36,3121,2.36,3122,2.621,3123,2.621,3124,2.621,3125,2.187,3126,2.36,3127,1.797,3128,1.624,3129,2.36,3130,2.621,3131,2.187,3132,2.621,3133,2.621,3134,2.36,3135,2.36,3136,2.621,3137,2.36,3138,2.621,3139,2.621,3140,2.187,3141,2.621,3142,2.621,3143,3.339,3144,2.621,3145,2.621,3146,2.36,3147,2.621,3148,2.621,3149,2.621,3150,2.621,3151,2.621,3152,2.621,3153,2.621,3154,2.059,3155,2.36,3156,1.578,3157,1.578,3158,2.36,3159,2.36,3160,2.621,3161,2.621,3162,1.676,3163,3.828,3164,2.621,3165,2.621,3166,2.621,3167,2.621,3168,2.187,3169,2.621,3170,2.621,3171,2.621,3172,2.621]],["description//tracks/algorithms-101/leetcode75",[]],["title//tracks/algorithms-101/algorithms",[1887,2.743]],["content//tracks/algorithms-101/algorithms",[1,1.621,7,0.481,8,1.952,9,0.68,11,1.9,16,0.742,29,2.698,30,2.141,35,1.111,41,0.579,42,0.796,43,0.652,48,1.62,49,0.495,51,0.88,54,1.346,57,0.586,59,1.507,60,1.166,62,0.91,64,1.857,65,0.74,66,0.525,70,2.038,71,1.686,72,0.782,76,2.407,87,2.364,108,1.545,114,2.552,120,1.457,121,0.671,127,0.626,128,1.433,131,1.757,133,1.329,137,0.995,139,1.14,146,0.797,154,1.531,159,0.701,160,1.329,161,2.195,165,1.665,170,2.619,171,0.462,174,1.048,175,0.565,182,1.486,186,3.902,187,1.329,188,0.565,207,2.496,210,0.586,211,1.938,221,1.389,223,1.167,224,2.546,226,0.92,229,3.76,230,1.222,231,1.845,232,1.346,239,1.826,269,2.158,278,1.281,283,1.389,285,2.569,286,0.441,289,0.506,298,1.044,307,0.864,309,1.307,311,1.505,327,1.21,330,0.81,340,1.449,341,2.163,353,0.711,361,0.701,369,0.472,381,1.153,382,1.568,393,1.111,394,2.731,395,3.761,404,0.782,409,1.222,410,2.159,412,0.701,413,0.796,414,1.27,425,0.635,429,1.508,433,1.319,441,0.618,442,1.757,444,0.927,445,1.645,455,1.389,458,2.124,462,1.341,487,0.701,495,1.878,500,0.993,509,2.523,511,2.02,512,0.81,513,2.068,531,1.272,532,2.026,533,0.531,557,1.753,563,1.228,565,2.068,566,2.977,567,1.044,576,0.643,578,1.535,580,2.619,583,0.733,591,0.258,597,1.158,601,2.698,626,1.72,631,0.855,635,1.044,642,2.02,671,1.549,696,1.841,719,0.796,727,0.701,733,2.035,734,0.994,748,3.091,754,0.483,756,2.91,759,1.018,772,4.334,777,2.144,781,1.044,785,0.993,788,1.14,793,1.401,795,2.569,811,1.099,817,1.813,826,1.803,829,0.5,831,0.908,855,1.14,860,0.69,861,1.803,873,0.711,875,6.408,887,1.793,888,1.477,889,2.759,890,0.927,899,2.91,929,1.687,965,0.969,975,0.969,981,0.993,983,2.518,989,2.628,990,1.297,999,0.872,1010,2.053,1012,2.343,1015,1.329,1018,4.353,1048,0.927,1049,1.307,1050,2.424,1065,0.889,1084,1.222,1086,0.872,1087,0.927,1089,0.855,1090,0.908,1091,1.507,1094,1.14,1114,2.003,1131,1.272,1135,1.179,1151,1.181,1168,2.269,1174,2.685,1178,0.733,1193,2.782,1203,2.649,1230,1.423,1248,1.272,1249,1.222,1278,1.018,1279,1.928,1285,1.14,1286,0.872,1287,2.053,1303,1.399,1316,1.329,1317,1.018,1318,1.757,1335,0.354,1345,0.927,1353,0.889,1362,2.691,1396,0.993,1422,2.208,1423,1.714,1437,1.222,1440,1.307,1441,2.688,1449,2.068,1454,3.961,1477,1.105,1482,0.889,1490,4.447,1528,2.461,1539,1.044,1564,3.748,1624,1.782,1635,1.14,1639,1.179,1665,1.573,1673,0.839,1678,2.297,1697,1.105,1700,0.722,1708,1.105,1711,3.816,1722,0.824,1727,2.569,1751,4.142,1756,1.331,1777,2.445,1798,2.373,1869,2.28,1887,2.977,1892,1.272,1899,1.331,1900,1.331,1927,1.192,1935,1.605,1937,1.272,1960,2.246,1981,1.247,2076,1.948,2096,2.159,2123,1.14,2131,2.685,2188,0.635,2217,5.668,2225,1.803,2235,1.179,2271,2.297,2282,1.423,2294,1.714,2325,1.018,2356,1.105,2358,3.459,2359,6.372,2473,0.951,2486,1.374,2515,1.488,2520,2.772,2551,1.272,2578,1.073,2608,0.711,2645,0.854,2660,1.179,2664,2.569,2713,3.031,2725,1.757,2727,1.605,2814,2.418,2918,1.179,2966,1.845,2968,1.127,2971,1.14,2983,3.489,2990,1.272,2991,5.003,2996,1.908,2997,0.993,3001,2.297,3004,1.272,3005,2.035,3010,1.511,3024,1.401,3028,0.525,3052,4.48,3058,1.179,3084,4.566,3094,3.657,3106,1.401,3120,3.657,3121,3.657,3127,2.111,3128,1.105,3143,1.401,3173,1.179,3174,1.044,3175,1.488,3176,1.784,3177,1.073,3178,4.063,3179,4.913,3180,1.272,3181,4.063,3182,1.488,3183,1.784,3184,1.784,3185,1.784,3186,1.535,3187,1.488,3188,1.605,3189,5.644,3190,2.418,3191,5.971,3192,5.971,3193,1.784,3194,1.784,3195,1.784,3196,4.836,3197,3.079,3198,5.663,3199,1.784,3200,1.784,3201,1.784,3202,1.784,3203,1.784,3204,1.784,3205,1.714,3206,1.784,3207,1.784,3208,1.272,3209,3.079,3210,3.079,3211,1.784,3212,1.784,3213,1.605,3214,1.605,3215,1.401,3216,1.784,3217,1.401,3218,2.772,3219,3.079,3220,3.079,3221,2.569,3222,1.784,3223,1.784,3224,1.784,3225,1.784,3226,1.784,3227,1.784,3228,3.079,3229,3.409,3230,1.853,3231,3.079,3232,1.784,3233,3.607,3234,1.784,3235,1.784,3236,2.569,3237,1.605,3238,1.757,3239,1.401,3240,1.488,3241,1.488,3242,1.331,3243,1.105,3244,1.401,3245,1.401,3246,3.079,3247,1.605,3248,2.772,3249,1.784,3250,1.605,3251,1.605,3252,1.605,3253,1.605,3254,1.784,3255,1.605,3256,1.784,3257,1.605,3258,1.784,3259,1.784,3260,1.784,3261,1.784,3262,1.784,3263,1.605,3264,1.784,3265,1.784,3266,1.784,3267,1.331,3268,1.784,3269,1.784,3270,1.784,3271,1.784,3272,1.784,3273,4.913,3274,1.784,3275,1.784,3276,1.331,3277,3.079,3278,1.784,3279,3.079,3280,1.784,3281,1.784,3282,3.079,3283,1.784,3284,1.784,3285,1.784,3286,1.784,3287,1.784,3288,1.784,3289,3.079,3290,1.784,3291,4.063,3292,4.353,3293,2.685,3294,3.39,3295,1.784,3296,1.222,3297,1.784,3298,1.784,3299,1.784,3300,4.826,3301,1.784,3302,1.272,3303,1.605,3304,3.079,3305,1.784,3306,1.784,3307,1.784,3308,1.784,3309,1.784,3310,1.784,3311,2.772,3312,1.605,3313,2.772,3314,3.079,3315,2.418,3316,1.331,3317,1.488,3318,1.605,3319,3.079,3320,3.079,3321,3.079,3322,3.079,3323,3.079,3324,1.605,3325,1.784,3326,3.079,3327,1.488,3328,5.458,3329,2.772,3330,1.605,3331,1.488,3332,2.569,3333,1.784,3334,1.331,3335,3.079,3336,3.079,3337,1.605,3338,1.331,3339,1.784,3340,1.784,3341,1.784,3342,1.784,3343,1.222,3344,1.784,3345,3.079,3346,5.375,3347,2.518,3348,3.079,3349,1.605,3350,0.889,3351,1.179,3352,1.784,3353,1.784,3354,1.784,3355,1.784,3356,1.784,3357,0.993,3358,3.657,3359,3.657,3360,1.488,3361,4.836,3362,1.605,3363,1.401,3364,1.784,3365,0.77,3366,1.331,3367,1.331,3368,2.418]],["description//tracks/algorithms-101/algorithms",[1887,2.38,3028,0.677,3369,5.615]],["title//tracks/algorithms-101/_index",[1887,2.345,3370,4.827]],["content//tracks/algorithms-101/_index",[0,4.308,1,1.726,9,3.082,12,4.292,14,4.145,16,0.454,39,1.914,54,1.212,59,1.914,60,0.89,62,1.156,66,2.082,70,1.973,75,1.169,108,1.336,125,1.415,128,1.809,137,0.84,146,1.336,157,1.896,158,6.484,207,3.369,210,1.732,223,1.483,226,0.979,243,2.945,245,2.497,278,1.874,291,3.94,303,2.09,304,3.3,311,3.949,345,1.942,351,1.415,356,2.43,382,2.32,390,1.97,393,1.862,394,1.765,395,4.292,396,2.954,410,2.743,412,2.028,414,1.614,425,2.518,431,1.765,434,3.946,439,3.949,441,1.788,444,2.684,450,2.874,486,2.743,495,1.277,534,1.415,538,3.199,558,6.343,575,3.852,576,2.913,583,3.322,591,0.238,597,1.942,601,2.059,622,2.945,655,2.553,673,3.679,736,3.679,753,4.647,767,4.386,772,4.69,777,2.781,780,3.3,811,0.672,831,2.627,832,3.53,848,6.484,859,5.555,883,4.26,886,4.308,887,1.914,888,2.476,891,3.412,893,7.271,924,1.914,925,4.26,952,5.906,990,1.59,999,3.46,1010,1.942,1032,3.683,1037,4.038,1039,2.476,1078,1.788,1116,2.43,1137,3.683,1146,3.466,1151,2.348,1183,3.023,1238,2.199,1288,3.412,1303,0.842,1311,1.999,1366,3.683,1396,2.873,1423,5.068,1458,4.647,1821,6.825,1881,7.848,1887,3.316,1938,3.539,1978,4.647,2149,4.26,2473,1.208,2478,5.163,2525,4.054,2574,3.847,2575,4.199,2634,3.852,2729,5.558,2736,3.412,2863,2.873,2966,1.97,2975,3.683,3022,3.539,3025,5.596,3026,6.372,3028,0.768,3097,3.683,3175,4.308,3229,2.957,3276,3.852,3316,3.852,3343,3.539,3350,3.53,3371,8.078,3372,4.647,3373,5.163,3374,5.163,3375,5.163,3376,7.079,3377,5.163,3378,2.957,3379,4.647,3380,4.308,3381,5.163,3382,5.163,3383,7.079,3384,5.163,3385,3.412,3386,8.078,3387,4.647,3388,5.163,3389,5.163,3390,1.914,3391,3.852,3392,5.163,3393,4.308,3394,5.163,3395,5.163,3396,5.163]],["description//tracks/algorithms-101/_index",[1887,2.38,3369,5.615,3370,4.898]],["title//tracks/algorithms-101/leetcode/_index",[3028,0.78]],["content//tracks/algorithms-101/leetcode/_index",[14,4.666,16,0.7,41,2.587,54,1.111,57,2.62,59,2.955,70,1.727,75,1.804,165,1.451,226,1.131,245,2.289,246,3.496,307,2.236,352,4.234,365,3.277,420,3.556,462,2.21,473,3.227,479,5.267,583,3.837,711,5.462,926,4.056,990,1.189,991,5.267,1113,5.462,1151,2.317,1238,2.017,1514,3.085,1887,3.04,2575,4.142,3028,1.074,3368,6.258,3385,5.267,3397,7.969,3398,7.173,3399,7.969,3400,7.969,3401,7.969]],["description//tracks/algorithms-101/leetcode/_index",[]],["title//tracks/algorithms-101/leetcode/medium/_index",[2736,4.752]],["content//tracks/algorithms-101/leetcode/medium/_index",[]],["description//tracks/algorithms-101/leetcode/medium/_index",[]],["title//tracks/algorithms-101/leetcode/medium/8",[400,1.959,528,1.079,2968,1.321,3402,4.289]],["content//tracks/algorithms-101/leetcode/medium/8",[429,1.267,528,1.777,591,0.261,601,4.186,811,1.203,990,1.172,1114,2.026,1311,3.039,2581,5.856,3028,0.852,3229,4.108,3403,7.066,3404,6.55,3405,7.85,3406,7.85,3407,7.85,3408,7.85,3409,8.205,3410,6.55,3411,7.85]],["description//tracks/algorithms-101/leetcode/medium/8",[400,2.162,528,1.191,2968,1.458,3028,0.571,3402,4.733]],["title//tracks/algorithms-101/leetcode/medium/78",[1135,4.063,3024,4.827]],["content//tracks/algorithms-101/leetcode/medium/78",[1,2.012,7,0.93,8,2.649,16,0.524,33,2.858,48,2.331,54,1.087,66,1.753,70,1.292,137,0.753,146,2.248,161,2.706,165,1.085,186,4.494,211,1.935,221,2.968,224,3.008,226,1.116,232,0.983,239,1.395,286,1.928,341,1.753,381,1.57,382,2.646,394,2.664,433,2.99,458,2.773,462,2.65,495,2.558,529,3.239,565,2.064,591,0.248,601,3.983,671,1.442,811,1.198,829,1.672,860,2.307,861,1.801,890,3.098,990,0.89,1012,2.064,1050,2.253,1114,1.306,1135,6.926,1151,2.265,1203,3.182,1230,2.754,1287,3.308,1303,1.417,1430,3.587,1440,3.308,1441,2.179,1490,5.456,1515,4.14,1624,2.614,1960,2.242,2024,3.587,2188,2.12,2294,4.833,2358,2.973,2473,1.824,2486,3.477,2645,1.653,2983,3.81,2991,5.226,3028,0.846,3084,4.252,3186,2.972,3205,3.317,3229,4.232,3312,5.365,3337,5.365,3347,3.693,3349,7.015,3350,4.33,3351,5.151,3367,4.446,3390,2.21,3412,5.96,3413,3.939,3414,5.96,3415,5.96,3416,5.96,3417,5.365,3418,5.96,3419,5.96,3420,4.973,3421,5.814,3422,7.793,3423,7.793]],["description//tracks/algorithms-101/leetcode/medium/78",[1135,4.123,3024,4.898,3028,0.677]],["title//tracks/algorithms-101/leetcode/medium/75",[1711,3.432,2358,2.048,3022,3.68]],["content//tracks/algorithms-101/leetcode/medium/75",[16,0.608,54,0.965,60,1.193,137,1.008,185,3.198,226,1.039,353,2.76,415,4.288,445,2.933,591,0.254,631,4.465,633,3.852,756,5.159,804,3.142,811,1.115,829,2.405,990,1.39,1050,2.278,1114,2.233,1143,4.052,1168,2.985,1239,4.418,1303,1.129,1362,4.77,1392,3.088,1437,4.743,1441,2.531,1540,4.574,1624,3.036,1751,3.824,1838,3.319,1887,2.64,2123,4.424,2188,2.462,2358,2.64,2473,1.62,2645,1.919,2713,5.163,3010,2.169,3028,0.751,3198,7.462,3205,3.852,3229,3.58,3350,3.451,3358,6.229,3359,6.229,3362,6.229,3366,5.163,3424,9.003,3425,5.434,3426,5.434,3427,6.92,3428,5.159,3429,5.061,3430,10.191,3431,7.715,3432,3.761,3433,8.571]],["description//tracks/algorithms-101/leetcode/medium/75",[1711,3.647,2358,2.177,3022,3.911,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/73",[51,1.033,2269,2.09,3002,3.149,3021,3.555]],["content//tracks/algorithms-101/leetcode/medium/73",[51,1.971,54,1.157,62,1.859,70,1.799,71,2.563,128,1.472,133,2.837,137,0.879,160,2.837,165,1.197,181,4.996,226,0.797,341,1.934,353,2.622,387,2.218,424,4.69,462,1.823,591,0.256,730,5.163,734,2.031,755,3.094,929,1.685,990,0.981,1032,4.69,1114,2.316,1203,2.134,1239,2.985,1303,1.073,1335,1.306,1361,5.486,1449,5.199,1517,3.346,1624,2.884,1797,8.524,1981,2.662,2269,3.641,2325,3.751,2473,1.539,2645,2.302,2968,1.823,3002,6.894,3010,1.664,3021,6.192,3028,0.901,3177,5.751,3186,4.139,3300,6.489,3315,7.901,3317,5.486,3318,5.918,3351,4.345,3363,5.163,3365,2.837,3434,6.574,3435,6.574,3436,6.574,3437,6.574,3438,6.574,3439,9.096,3440,8.3,3441,8.3,3442,8.3,3443,8.3,3444,6.574,3445,8.3,3446,7.972,3447,8.3,3448,8.3,3449,6.574]],["description//tracks/algorithms-101/leetcode/medium/73",[51,1.139,2269,2.307,3002,3.475,3021,3.923,3028,0.571]],["title//tracks/algorithms-101/leetcode/medium/7",[393,1.936,2968,1.489,2986,2.437]],["content//tracks/algorithms-101/leetcode/medium/7",[54,0.978,64,1.716,70,1.52,71,2.892,137,0.945,165,1.277,222,4.767,226,0.85,247,1.991,256,2.063,287,2.977,303,2.839,322,4.483,387,3.558,419,4.001,429,1.394,508,2.495,530,3.791,565,2.429,591,0.255,601,2.797,811,1.272,887,2.6,929,1.901,990,1.047,1114,2.052,1166,3.184,1303,1.144,1311,2.715,1335,1.393,1654,4.001,1813,3.645,1847,4.483,2473,1.641,2576,4.106,2645,2.598,2743,4.976,2968,2.598,2986,4.253,3015,5.711,3028,0.761,3154,5.507,3365,3.026,3390,3.625,3409,5.851,3410,5.851,3450,7.779,3451,6.313,3452,6.447,3453,7.779,3454,5.851,3455,4.807,3456,7.013,3457,7.013,3458,7.013,3459,7.013,3460,7.013,3461,8.8,3462,7.013]],["description//tracks/algorithms-101/leetcode/medium/7",[393,2.058,2968,1.582,2986,2.591,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/62",[186,2.355,1024,1.991,3019,4.005]],["content//tracks/algorithms-101/leetcode/medium/62",[8,1.871,39,2.274,49,1.701,54,1.228,66,1.804,69,2.887,71,2.452,120,1.848,137,1.017,154,2.513,165,1.695,186,3.483,210,1.166,226,0.962,232,1.012,314,2.835,387,2.069,393,2.212,394,2.097,429,0.99,445,3.03,458,2.182,462,1.701,591,0.259,671,1.484,730,4.816,811,1.211,829,1.721,859,3.921,929,1.612,990,0.915,1024,2.944,1034,3.122,1049,4.268,1114,1.929,1146,3.166,1164,4.304,1168,2.545,1192,5.976,1193,2.522,1239,4.75,1303,1.295,1335,1.218,1392,2.737,1421,3.499,1528,4.041,2188,2.182,2356,4.92,2473,1.858,2645,2.202,2968,1.701,3002,5.819,3010,2.629,3019,4.576,3028,0.955,3177,5.604,3186,4.643,3292,8.682,3357,3.414,3390,3.664,3446,8.39,3463,4.816,3464,6.134,3465,6.134,3466,5.521,3467,7.94,3468,7.147,3469,8.805,3470,8.805]],["description//tracks/algorithms-101/leetcode/medium/62",[186,2.503,1024,2.116,3019,4.257,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/56",[566,2.677,1708,3.326,3018,4.216]],["content//tracks/algorithms-101/leetcode/medium/56",[49,2.444,54,1.01,71,2.722,137,1.008,226,0.878,462,2.008,566,4.395,591,0.254,601,3.789,622,4.132,719,3.231,811,1.147,929,1.789,990,1.081,1050,2.156,1158,2.932,1303,1.182,1335,1.438,1708,6.608,2473,1.695,2645,2.635,3028,0.786,3168,8.248,3177,4.359,3208,7.228,3351,6.279,3471,7.242,3472,7.242,3473,7.242,3474,7.242,3475,7.242,3476,7.242,3477,7.242,3478,7.242,3479,7.242,3480,7.242,3481,7.242,3482,7.242,3483,6.519,3484,7.242,3485,7.242,3486,7.242,3487,7.242,3488,9.5,3489,7.242,3490,7.242,3491,7.242,3492,6.519,3493,7.242]],["description//tracks/algorithms-101/leetcode/medium/56",[566,2.845,1708,3.536,3018,4.481,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/55",[2119,3.68,3016,4.216,3017,4.005]],["content//tracks/algorithms-101/leetcode/medium/55",[49,2.244,54,1.128,65,1.626,70,1.369,71,2.499,137,0.978,165,1.473,174,1.369,226,1.082,381,1.38,408,5.015,433,3.287,462,2.244,591,0.258,626,3.463,733,4.176,811,1.334,826,3.699,829,1.773,860,3.457,887,3.001,929,1.643,990,0.943,1050,1.98,1091,3.311,1114,2.182,1151,1.837,1203,2.051,1239,4.597,1303,1.457,1335,1.255,1353,3.15,1440,2.682,1441,2.959,1528,4.544,1722,2.92,1798,3.001,1896,4.713,1922,4.961,2473,2.09,2478,4.038,2608,3.882,2645,2.244,2968,1.752,3010,2.048,3017,6.661,3028,0.686,3186,3.15,3205,4.97,3229,4.16,3293,4.176,3300,4.507,3347,5.015,3350,4.035,3365,2.726,3494,6.318,3495,6.318,3496,6.318,3497,4.507,3498,8.929,3499,5.015,3500,8.929,3501,6.318,3502,6.318,3503,4.961,3504,6.318,3505,8.929,3506,6.318,3507,6.318,3508,6.318,3509,6.318,3510,5.271,3511,8.093]],["description//tracks/algorithms-101/leetcode/medium/55",[2119,3.911,3016,4.481,3017,4.257,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/53",[101,2.988,1091,1.991,3012,2.677]],["content//tracks/algorithms-101/leetcode/medium/53",[11,1.638,49,2.051,54,1.031,71,2.961,108,1.914,137,0.985,165,1.346,226,0.896,390,3.405,462,2.051,591,0.255,811,1.247,929,1.946,990,1.104,1050,1.809,1303,1.207,1335,1.469,2473,1.731,2589,4.451,2645,2.659,2966,3.658,2968,2.051,3012,3.687,3028,0.802,3127,6.118,3177,4.451,3205,4.967,3229,4.257,3347,4.582,3350,3.687,3390,2.742,3503,7.009,3512,7.395,3513,6.656,3514,8.925,3515,8.925,3516,7.395,3517,7.395,3518,9.956,3519,9.956,3520,6.656,3521,7.395]],["description//tracks/algorithms-101/leetcode/medium/53",[101,3.176,1091,2.116,3012,2.845,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/50",[12,2.852,3009,4.005,3010,1.358]],["content//tracks/algorithms-101/leetcode/medium/50",[49,2.036,54,1.418,71,2.952,137,0.96,165,1.618,226,1.077,387,3.529,407,1.967,450,2.613,462,2.465,591,0.255,811,1.243,929,1.94,990,1.096,1303,1.45,1490,4.087,1648,3.817,1927,2.843,2356,4.55,2467,5.239,2473,2.08,2645,2.651,3009,5.478,3010,2.704,3028,0.797,3390,2.723,3522,7.343,3523,8.888,3524,7.343,3525,7.343,3526,7.343,3527,7.343,3528,7.343,3529,7.343,3530,7.343,3531,8.888,3532,6.34,3533,7.343]],["description//tracks/algorithms-101/leetcode/medium/50",[12,3.032,3009,4.257,3010,1.444,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/5",[245,1.369,2970,2.477,2984,2.329,2985,2.652]],["content//tracks/algorithms-101/leetcode/medium/5",[11,1.162,16,0.461,30,2.578,39,1.945,48,1.328,49,1.455,54,0.998,57,1.725,64,1.751,69,2.469,70,1.137,71,2.21,137,0.913,178,1.455,210,0.998,211,2.323,214,1.973,222,2.67,224,2.821,226,1.06,232,0.865,245,1.507,269,2.341,287,2.227,341,1.543,381,1.22,404,4.017,433,2.323,445,2.915,495,2.015,511,2.192,528,2.073,532,2.616,591,0.26,658,3.743,671,1.269,720,2.469,734,2.241,742,3.468,754,1.422,777,2.812,811,1.06,816,3.251,929,1.453,937,3.743,961,6.293,962,5.106,973,4.427,990,1.068,1015,2.264,1030,2.851,1085,7.332,1087,2.727,1114,1.917,1152,4.12,1166,2.382,1168,2.935,1223,4.575,1230,2.425,1303,1.329,1311,3.744,1335,1.421,1398,3.251,1462,1.892,1515,2.787,1695,1.973,1777,4.307,1798,1.945,1832,2.616,1869,2.192,1887,3.338,1907,3.158,1960,1.973,2141,2.993,2419,2.787,2473,1.675,2645,1.985,2964,4.12,2970,4.548,2984,4.277,2985,5.82,2986,2.382,3010,2.214,3028,0.777,3177,3.158,3316,3.914,3365,2.264,3378,2.99,3420,4.377,3534,5.246,3535,5.246,3536,5.246,3537,5.246,3538,5.246,3539,3.743,3540,3.596,3541,3.983,3542,3.072,3543,5.246,3544,7.157,3545,4.118,3546,5.246,3547,5.246,3548,7.876,3549,7.157,3550,7.157,3551,8.75,3552,5.246,3553,5.246,3554,8.145,3555,5.246,3556,4.723,3557,8.75,3558,5.246,3559,5.246,3560,9.451,3561,9.158,3562,8.75,3563,5.246,3564,5.246,3565,5.246,3566,5.246,3567,7.157,3568,5.246,3569,5.246,3570,5.246,3571,5.246,3572,5.246,3573,5.246,3574,5.246,3575,5.246,3576,5.246,3577,5.246,3578,5.246,3579,5.246,3580,5.246,3581,5.246]],["description//tracks/algorithms-101/leetcode/medium/5",[49,1.11,245,1.149,591,0.095,1238,1.012,2970,2.08,2984,1.956,2985,2.227,3028,0.434,3582,3.142]],["title//tracks/algorithms-101/leetcode/medium/49",[147,2.316,3007,4.005,3008,4.216]],["content//tracks/algorithms-101/leetcode/medium/49",[16,0.726,54,1.265,57,2.148,64,2.023,69,3.075,71,2.801,96,3.133,137,0.876,147,2.819,159,2.567,160,2.819,165,1.505,226,1.002,232,1.078,269,2.915,307,1.833,381,1.41,414,2.043,429,1.334,462,1.812,528,2.054,535,3.258,591,0.255,672,5.452,727,2.567,754,1.77,781,3.826,802,4.048,811,1.18,929,1.996,990,0.975,1000,3.932,1034,3.325,1050,1.599,1095,4.318,1114,2.089,1158,2.645,1228,4.478,1238,1.653,1303,1.349,1311,3.69,1335,1.298,1343,3.617,1345,4.298,1377,2.966,1440,2.773,1553,3.551,1594,3.636,1700,3.982,1887,2.493,2131,4.318,2262,4.661,2473,1.935,2481,4.874,2596,5.459,2645,2.515,2968,1.812,2993,5.452,2996,4.048,3008,7.123,3028,0.897,3042,4.601,3208,4.661,3365,2.819,3545,4.802,3583,7.442,3584,6.534,3585,6.534,3586,6.534,3587,6.534,3588,5.452,3589,5.881,3590,5.881,3591,6.534,3592,6.534,3593,6.534,3594,6.534,3595,6.534,3596,6.534,3597,6.534,3598,3.728,3599,5.881,3600,5.881,3601,6.534,3602,6.534,3603,6.534,3604,6.534,3605,6.534,3606,5.881,3607,6.534,3608,6.534,3609,6.534]],["description//tracks/algorithms-101/leetcode/medium/49",[147,2.462,3007,4.257,3008,4.481,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/48",[361,2.109,596,2.852,3006,3.68]],["content//tracks/algorithms-101/leetcode/medium/48",[35,2.616,54,1.012,57,2.385,71,2.725,137,0.919,185,4.078,226,0.879,353,3.518,361,3.983,387,2.447,591,0.251,596,5.386,633,4.038,811,0.944,929,2.008,990,1.083,1114,1.589,1303,1.184,1335,1.441,1440,3.079,1489,3.13,1624,3.87,1728,5.697,1776,4.248,1838,3.479,2473,1.698,2645,2.637,3002,6.896,3006,6.047,3010,2.233,3028,1.032,3186,3.617,3187,6.053,3221,6.053,3317,7.361,3351,4.795,3365,3.13,3428,5.31,3429,3.943,3446,7.361,3610,9.508,3611,7.255,3612,7.255,3613,7.255,3614,7.255,3615,7.255,3616,7.255,3617,6.53,3618,7.255,3619,7.255,3620,8.823]],["description//tracks/algorithms-101/leetcode/medium/48",[361,2.242,596,3.032,3006,3.911,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/46",[3004,4.385,3005,4.063]],["content//tracks/algorithms-101/leetcode/medium/46",[39,2.627,41,2.299,54,1.212,57,2.329,64,2.302,65,1.583,69,3.334,71,2.905,137,0.948,165,1.29,211,2.299,224,2.453,226,0.858,286,1.753,314,3.274,341,2.084,381,1.208,394,2.421,407,1.897,414,2.215,565,2.453,591,0.253,671,2.104,811,1.31,861,1.469,887,2.627,929,1.91,990,1.057,1037,4.041,1050,1.733,1151,2.059,1194,3.682,1203,2.299,1303,1.156,1335,1.407,1490,3.942,1515,3.763,2473,1.658,2551,5.053,2558,5.053,2626,4.389,2645,2.609,2664,3.334,2968,1.964,3005,6.218,3028,0.769,3205,3.942,3229,4.413,3332,5.91,3350,3.532,3351,4.682,3365,3.056,3391,5.285,3621,7.084,3622,7.084,3623,7.084,3624,7.084,3625,8.695,3626,7.084,3627,7.084,3628,7.084,3629,8.695,3630,7.084,3631,7.084,3632,7.084,3633,7.084,3634,7.084,3635,7.084]],["description//tracks/algorithms-101/leetcode/medium/46",[3004,4.45,3005,4.123,3028,0.677]],["title//tracks/algorithms-101/leetcode/medium/38",[1700,2.489,3003,4.586]],["content//tracks/algorithms-101/leetcode/medium/38",[49,2.266,54,1.139,60,1.632,71,2.523,97,3.756,108,1.66,120,1.933,137,1.041,211,2.082,226,0.777,232,1.058,289,1.821,307,1.8,381,1.393,429,1.319,478,1.623,528,2.214,530,2.814,567,3.756,591,0.261,601,3.586,671,1.552,811,1.063,929,1.922,990,0.957,1010,2.412,1024,2.378,1065,4.484,1095,4.239,1114,1.405,1116,3.019,1303,1.047,1324,2.558,1335,1.274,1456,3.486,1490,3.57,1673,4.233,1700,3.834,1798,2.378,1813,5.398,2294,3.57,2332,5.774,2473,1.501,2576,4.785,2645,2.266,2968,1.779,2984,4.396,2992,4.785,3010,2.53,3028,0.696,3058,4.239,3365,2.767,3390,2.378,3428,5.412,3545,3.019,3636,3.756,3637,8.171,3638,8.171,3639,4.239,3640,4.785,3641,6.414,3642,8.171,3643,6.414,3644,6.414,3645,6.414,3646,6.414,3647,6.414,3648,8.993,3649,7.356,3650,6.414,3651,5.774]],["description//tracks/algorithms-101/leetcode/medium/38",[1700,2.526,3003,4.654,3028,0.677]],["title//tracks/algorithms-101/leetcode/medium/36",[532,2.677,3000,4.005,3001,4.005]],["content//tracks/algorithms-101/leetcode/medium/36",[33,3.104,39,2.4,49,1.795,51,1.403,54,0.903,62,1.841,71,2.538,75,1.466,137,0.947,165,1.644,181,5.436,185,2.992,226,0.784,232,1.068,234,4.272,245,1.86,369,1.714,375,3.228,381,1.54,387,3.435,400,2.662,412,3.853,424,5.864,478,2.285,508,2.924,532,4.737,591,0.25,626,2.924,635,3.791,641,2.506,671,1.566,734,1.584,754,1.754,755,3.047,811,1.069,929,1.928,990,0.966,1002,5.254,1078,3.128,1146,3.278,1168,2.635,1192,4.011,1303,1.056,1324,2.581,1449,3.294,1476,4.689,1517,3.294,1813,4.694,2214,5.254,2427,5.083,2473,1.515,2608,3.278,2645,2.279,2673,5.401,2840,5.083,3001,6.132,3028,0.702,3186,4.098,3300,5.864,3365,2.793,3463,5.083,3499,4.011,3589,5.827,3652,8.827,3653,7.536,3654,5.827,3655,6.473,3656,6.473,3657,6.473,3658,8.219,3659,8.219,3660,8.219,3661,8.219,3662,8.219,3663,8.219,3664,8.219,3665,8.219,3666,6.473,3667,6.473,3668,8.219,3669,6.473,3670,8.219,3671,6.473,3672,7.399,3673,6.473,3674,6.473,3675,6.473,3676,6.473]],["description//tracks/algorithms-101/leetcode/medium/36",[532,2.845,3000,4.257,3001,4.257,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/34",[11,0.728,70,0.712,860,1.272,1050,0.804,1203,1.067,1798,1.219,2358,1.254,2999,2.452]],["content//tracks/algorithms-101/leetcode/medium/34",[11,2.108,16,0.571,30,2.059,51,1.786,54,1.149,64,1.591,65,1.184,71,2.795,75,1.472,137,1.03,165,1.184,214,2.446,226,0.788,232,1.073,390,2.481,395,5.637,400,2.674,414,2.033,420,2.902,433,2.938,445,2.868,495,1.609,508,2.933,511,2.717,591,0.257,800,4.457,811,1.238,929,1.837,990,0.971,1012,2.252,1050,2.215,1114,1.806,1158,2.633,1168,3.148,1174,4.298,1178,2.674,1303,1.345,1335,1.637,1417,3.914,1544,6.878,1798,2.412,1887,2.481,2358,2.481,2473,1.522,2486,2.902,2645,2.51,2968,1.804,2997,3.619,3010,1.646,3012,4.111,3028,0.706,3205,4.588,3229,4.191,3350,4.513,3365,2.806,3390,2.412,3428,5.447,3429,4.48,3431,5.854,3513,5.854,3677,5.426,3678,8.243,3679,6.503,3680,5.854,3681,9.051,3682,9.051,3683,6.503,3684,6.503,3685,6.503,3686,6.503,3687,6.503,3688,6.503]],["description//tracks/algorithms-101/leetcode/medium/34",[11,0.886,70,0.867,860,1.549,1050,0.979,1203,1.299,1798,1.484,2358,1.527,2999,2.985,3028,0.434]],["title//tracks/algorithms-101/leetcode/medium/33",[596,2.276,1012,1.484,1050,1.048,2358,1.634,2998,3.196]],["content//tracks/algorithms-101/leetcode/medium/33",[33,3.578,48,1.888,54,1.04,64,1.825,137,1.014,394,2.55,395,5.113,414,2.332,433,2.422,445,3.079,591,0.259,596,3.964,772,3.72,811,1.167,990,1.113,1050,1.825,1114,1.634,1168,3.275,1368,6.225,2358,2.846,2626,4.623,2968,2.069,3028,0.81,3052,3.72,3062,5.113,3198,7.741,3205,4.152,3229,3.748,3390,2.766,3424,8.988,3425,7.046,3426,5.858,3689,6.715,3690,6.225]],["description//tracks/algorithms-101/leetcode/medium/33",[596,2.59,1012,1.689,1050,1.193,2358,1.86,2998,3.637,3028,0.529]],["title//tracks/algorithms-101/leetcode/medium/3",[165,0.708,888,1.866,1078,1.347,1343,1.551,2970,2.022,2984,1.902]],["content//tracks/algorithms-101/leetcode/medium/3",[1,1.15,11,1.896,16,0.672,29,2.308,49,1.605,51,1.254,54,0.807,59,2.146,62,1.296,64,1.416,65,1.054,69,2.724,70,1.254,71,1.787,128,1.296,137,0.958,165,1.392,170,3.994,178,1.605,210,1.454,211,1.879,214,2.875,226,1.103,256,1.703,287,2.457,341,1.703,385,2.177,395,3.075,404,2.539,409,3.967,429,0.934,433,1.879,445,2.304,528,2.062,576,2.087,591,0.258,601,2.308,631,2.775,746,3.008,749,3.008,777,2.274,811,0.994,861,1.201,887,2.146,888,3.666,929,1.552,983,5.642,989,4.949,990,1.359,1030,4.652,1048,3.008,1050,2.094,1078,2.648,1080,4.545,1087,3.008,1114,2.173,1115,3.586,1166,2.628,1168,1.855,1193,2.38,1203,2.779,1294,3.825,1297,2.343,1303,1.397,1311,3.764,1335,1.518,1343,3.414,1441,2.795,1514,2.241,1624,2.539,1700,2.343,1927,2.241,1981,3.687,2141,3.302,2225,3.389,2235,3.825,2473,2.003,2582,5.453,2645,1.605,2871,3.302,2966,2.208,2970,4.449,2984,4.185,3010,1.465,3028,0.628,3052,2.886,3186,4.849,3208,6.106,3357,3.221,3365,2.497,3390,3.174,3492,5.21,3541,3.221,3545,4.029,3548,8.196,3672,7.705,3691,5.788,3692,4.545,3693,8.56,3694,9.724,3695,7.644,3696,5.788,3697,5.788,3698,5.788,3699,5.788,3700,4.829,3701,5.788,3702,5.788,3703,5.788,3704,5.788,3705,3.825,3706,8.56,3707,5.788,3708,5.788,3709,5.788,3710,4.129,3711,4.545]],["description//tracks/algorithms-101/leetcode/medium/3",[165,0.827,888,2.179,1078,1.574,1343,1.812,2970,2.362,2984,2.222,3028,0.493]],["title//tracks/algorithms-101/leetcode/medium/29",[232,0.786,2598,3.149,2968,1.321,2997,2.652]],["content//tracks/algorithms-101/leetcode/medium/29",[16,0.436,29,1.979,35,1.79,49,1.91,54,1.252,56,3.425,71,2.127,75,1.123,137,1.023,165,1.634,171,1.284,210,0.944,222,5.021,226,0.959,232,1.136,256,1.46,277,2.986,287,2.106,303,2.009,382,1.979,393,2.484,400,2.04,439,2.426,450,1.765,565,1.719,591,0.262,601,3.874,641,1.921,696,1.674,700,3.54,720,2.335,777,2.706,811,1.283,820,2.253,890,2.579,929,1.606,990,1.028,1078,1.719,1087,2.579,1114,2.188,1303,1.291,1315,2.697,1316,2.141,1335,0.985,1392,2.214,1489,2.141,1496,4.466,1654,2.831,1700,2.789,1798,2.554,2241,3.702,2269,2.177,2473,1.851,2645,1.91,2743,3.659,2966,3.018,2968,2.49,2997,4.403,3010,1.256,3015,3.279,3028,0.538,3033,7.871,3052,4.477,3116,4.552,3208,5.643,3365,3.687,3390,3.533,3409,4.14,3410,4.14,3432,2.697,3450,8.363,3542,2.905,3590,8.991,3712,10.428,3713,3.896,3714,8.081,3715,3.896,3716,4.962,3717,4.962,3718,7.911,3719,3.54,3720,5.747,3721,4.962,3722,4.962,3723,4.962,3724,3.279,3725,7.911,3726,9.715,3727,7.911,3728,6.368,3729,7.911,3730,7.491,3731,4.962,3732,8.978,3733,6.887,3734,4.962,3735,6.887,3736,8.545,3737,8.545]],["description//tracks/algorithms-101/leetcode/medium/29",[232,0.867,2598,3.475,2968,1.458,2997,2.926,3028,0.571]],["title//tracks/algorithms-101/leetcode/medium/2390",[528,1.079,565,1.65,3067,4.289,3068,3.555]],["content//tracks/algorithms-101/leetcode/medium/2390",[1,1.27,7,0.998,11,1.416,16,0.716,65,1.164,128,1.432,146,1.655,157,1.713,161,2.903,171,2.448,174,1.386,178,2.262,210,1.216,226,0.988,231,2.44,247,1.815,256,1.881,273,4.087,278,1.693,316,3.559,318,3.559,341,2.399,344,4.087,345,2.405,381,1.391,382,2.343,396,2.338,401,2.805,455,2.343,460,3.911,462,2.49,478,1.618,508,2.275,509,2.955,528,2.408,530,2.805,533,1.904,565,2.825,576,2.306,578,3.189,591,0.24,625,1.975,671,1.547,727,2.512,777,2.512,778,4.087,802,5.564,811,0.832,829,1.794,868,4.226,990,1.217,1024,2.371,1033,3.324,1094,4.087,1146,3.252,1168,2.878,1238,1.618,1287,3.812,1303,1.043,1311,3.157,1335,1.27,1343,4.171,1353,3.189,1377,3.703,1430,3.849,1435,5.818,1489,2.759,1514,2.475,1564,3.744,1612,5.941,1663,5.213,1722,3.769,1736,4.562,1869,3.407,1960,2.405,1981,2.589,2558,5.818,2645,1.773,2660,4.226,2982,3.397,3028,0.694,3068,7.668,3378,2.671,3393,5.336,3545,3.839,3738,4.771,3739,4.562,3740,2.186,3741,6.395,3742,6.395,3743,3.648,3744,6.395,3745,5.021,3746,6.395,3747,6.395]],["description//tracks/algorithms-101/leetcode/medium/2390",[65,1.075,207,1.315,528,0.906,565,1.386,870,1.149,990,0.597,3028,0.434,3068,2.985]],["title//tracks/algorithms-101/leetcode/medium/22",[8,1.638,2578,3.231,2971,3.432]],["content//tracks/algorithms-101/leetcode/medium/22",[8,2.252,39,2.737,48,1.868,54,1.029,70,1.6,71,2.753,137,0.961,165,1.344,226,0.894,229,3.035,384,3.412,420,3.294,591,0.258,671,1.786,727,2.9,811,0.96,929,1.81,965,4.012,990,1.102,1015,3.185,1114,2.099,1166,3.352,1303,1.455,1311,3.708,1335,1.466,1624,3.238,2473,1.728,2645,2.473,2971,5.699,2991,4.443,3010,2.578,3028,0.801,3208,6.361,3365,3.185,3390,3.306,3428,5.766,3429,5.536,3545,3.474,3748,7.382,3749,7.382,3750,9.58,3751,7.382,3752,7.382]],["description//tracks/algorithms-101/leetcode/medium/22",[8,1.741,2578,3.434,2971,3.647,3028,0.619]],["title//tracks/algorithms-101/leetcode/medium/2",[54,0.664,232,0.786,239,1.115,429,0.769]],["content//tracks/algorithms-101/leetcode/medium/2",[1,1.931,7,0.903,39,2.146,49,1.605,64,1.87,70,1.254,71,1.787,137,0.559,226,1.037,232,1.562,239,1.789,256,1.703,341,1.703,381,1.303,385,2.177,414,1.809,429,1.469,450,2.72,478,1.934,501,3.075,591,0.261,601,3.414,671,1.4,755,2.724,811,1.184,861,1.586,929,1.175,1087,3.008,1114,2.074,1158,3.095,1166,2.628,1287,2.457,1303,1.397,1335,1.15,1430,3.483,1440,2.457,1462,3.087,1624,4.153,1654,3.302,1665,3.314,1756,4.318,1813,3.973,1927,2.241,1981,2.343,2087,8.196,2269,2.539,2473,1.789,2645,1.605,2966,3.474,2968,1.605,2986,3.886,3243,3.586,3346,6.881,3365,3.298,3413,6.427,3598,3.302,3753,9.061,3754,5.788,3755,9.061,3756,5.788,3757,5.788,3758,5.788,3759,5.788,3760,5.788,3761,7.644,3762,7.636,3763,7.644,3764,5.152,3765,5.788,3766,5.788,3767,5.788,3768,7.644,3769,5.788,3770,5.788,3771,5.703,3772,5.788,3773,5.788,3774,7.644,3775,5.788,3776,7.644,3777,7.644,3778,5.788,3779,5.788,3780,5.788,3781,5.788,3782,5.788,3783,5.788,3784,5.788,3785,7.644,3786,5.788,3787,7.644,3788,5.21,3789,7.644,3790,5.21,3791,7.644,3792,8.56,3793,5.788,3794,5.788,3795,5.21,3796,5.788,3797,5.788]],["description//tracks/algorithms-101/leetcode/medium/2",[54,0.733,232,0.867,239,1.231,429,0.848,3028,0.571]],["title//tracks/algorithms-101/leetcode/medium/19",[1,0.773,30,1.231,565,1.347,1665,1.506,2237,2.219,2992,2.902]],["content//tracks/algorithms-101/leetcode/medium/19",[1,1.944,30,2.741,54,1.207,70,1.525,71,2.674,76,3.081,125,1.929,137,0.906,226,0.853,232,1.161,314,3.252,480,2.764,495,1.741,508,2.503,565,2.999,591,0.257,652,3.738,671,1.702,811,1.273,929,1.758,990,1.05,1151,2.045,1303,1.413,1335,1.397,1462,3.123,1665,3.352,1751,4.186,1798,2.609,2237,4.014,2473,2.027,2645,2.401,2992,6.998,3010,2.374,3028,0.94,3238,4.014,3239,5.525,3242,5.249,3243,4.36,3357,3.916,3365,3.036,3390,2.609,3764,6.302,3798,6.334,3799,7.036,3800,5.249,3801,5.525,3802,6.334,3803,5.525,3804,7.036,3805,7.686,3806,6.8,3807,9.38,3808,5.871,3809,7.036,3810,7.036,3811,8.659,3812,7.036]],["description//tracks/algorithms-101/leetcode/medium/19",[1,0.903,30,1.438,565,1.574,1665,1.759,2237,2.593,2992,3.39,3028,0.493]],["title//tracks/algorithms-101/leetcode/medium/189",[596,2.852,1050,1.314,3813,5.368]],["content//tracks/algorithms-101/leetcode/medium/189",[16,0.725,30,2.062,38,2.637,54,0.908,60,1.123,65,1.649,70,1.788,71,2.548,75,1.475,121,2.45,137,0.92,154,2.062,161,3.746,165,1.502,210,1.722,214,3.103,226,1.216,247,1.849,345,2.45,381,1.111,401,2.857,407,1.745,429,1.332,445,2.487,462,2.288,495,2.042,511,2.721,538,4.036,591,0.244,596,5.059,625,2.011,779,3.716,820,2.957,823,3.957,860,2.521,873,2.597,929,1.322,934,2.382,990,1.232,1048,3.386,1049,2.765,1050,2.567,1114,1.808,1143,3.814,1158,2.637,1203,3.309,1238,1.648,1303,1.346,1335,1.294,1539,3.814,1660,2.957,2076,3.124,2181,4.464,2325,4.708,2473,1.524,2478,4.163,2968,1.806,2986,4.629,3010,2.486,3028,0.707,3052,5.315,3205,3.625,3229,4.193,3541,3.625,3542,3.814,3598,3.716,3617,5.863,3740,2.226,3743,3.716,3814,5.435,3815,3.92,3816,6.513,3817,6.513,3818,6.513,3819,8.252,3820,6.513,3821,6.513,3822,9.057]],["description//tracks/algorithms-101/leetcode/medium/189",[65,0.957,445,1.585,596,2.794,1050,1.287,3052,2.622]],["title//tracks/algorithms-101/leetcode/medium/17",[229,1.761,429,0.691,1345,2.227,1482,2.136,2990,3.056]],["content//tracks/algorithms-101/leetcode/medium/17",[54,1.229,69,3.409,70,1.569,71,2.722,137,0.852,226,0.878,229,2.978,363,3.611,382,2.84,394,2.475,406,3.764,412,2.845,414,2.264,429,1.169,478,1.833,528,1.64,535,4.395,591,0.257,641,2.804,811,1.286,929,1.789,990,1.081,1166,3.288,1254,5.304,1303,1.438,1335,1.75,1345,5.356,1440,3.074,1482,3.611,1813,5.421,2473,1.695,2589,4.359,2645,2.444,3028,0.786,3042,4.905,3545,3.409,3588,6.043,3692,5.687,3730,7.354,3823,5.687,3824,7.242,3825,7.242,3826,7.242,3827,7.242,3828,7.242,3829,7.242,3830,7.242,3831,7.242,3832,7.242,3833,7.242,3834,7.242,3835,7.242]],["description//tracks/algorithms-101/leetcode/medium/17",[229,2.005,429,0.787,1345,2.534,1482,2.431,2990,3.478,3028,0.529]],["title//tracks/algorithms-101/leetcode/medium/166",[3715,3.742,3724,3.149,3836,4.289,3837,3.976]],["content//tracks/algorithms-101/leetcode/medium/166",[11,1.303,16,0.517,38,3.129,41,1.91,62,1.318,65,1.071,70,1.275,121,2.907,160,2.539,207,1.935,226,1.11,232,0.971,239,1.377,255,2.995,256,1.731,263,3.851,282,3.357,382,2.22,410,3.127,413,3.449,433,2.509,450,2.094,455,1.691,462,2.143,495,1.912,511,2.458,514,2.72,528,1.954,530,3.39,535,2.934,563,3.082,591,0.257,601,2.347,625,1.817,671,1.424,754,2.094,785,3.275,811,1.005,828,7.768,873,2.347,888,4.984,929,1.195,990,1.421,1000,4.652,1048,3.059,1065,3.854,1086,2.877,1087,3.059,1114,1.693,1202,3.854,1228,4.033,1244,4.033,1258,2.934,1303,0.96,1316,4.296,1335,1.169,1440,3.281,1489,3.334,1663,3.762,1952,3.762,2235,3.89,2269,2.582,2282,3.572,2337,4.39,2356,3.646,2473,1.377,2968,2.393,2971,5.516,2997,4.803,3028,0.639,3116,6.581,3367,4.39,3390,2.866,3545,2.77,3715,7.671,3719,4.198,3724,6.677,3740,2.642,3837,4.91,3838,7.933,3839,9.094,3840,5.885,3841,5.885,3842,5.885,3843,5.885,3844,5.297,3845,5.885,3846,8.775,3847,3.89,3848,5.885,3849,5.885,3850,5.885,3851,9.164,3852,5.885,3853,7.729,3854,5.885,3855,5.885,3856,5.885,3857,5.885,3858,5.885,3859,5.885,3860,5.885]],["description//tracks/algorithms-101/leetcode/medium/166",[49,1.047,226,0.457,990,0.563,1238,0.955,2983,2.413,3028,0.41,3715,2.965,3724,2.495,3836,3.398,3837,3.15]],["title//tracks/algorithms-101/leetcode/medium/1657",[232,0.707,528,0.97,1324,1.708,1447,2.016,3065,3.856]],["content//tracks/algorithms-101/leetcode/medium/1657",[1,1.298,16,0.726,35,2.356,51,1.416,60,1.425,65,1.189,120,1.969,144,3.826,171,2.348,174,1.416,207,2.148,226,1.002,229,2.687,232,1.622,278,1.73,345,2.457,381,1.114,394,2.826,447,4.208,462,2.515,508,3.227,528,2.359,557,2.819,583,2.687,591,0.233,597,2.457,625,2.018,626,2.325,696,3.483,719,2.915,734,2.406,754,2.764,756,3.932,777,3.248,802,4.048,811,1.18,990,1.354,1024,3.535,1109,4.661,1193,2.687,1303,1.066,1324,2.606,1335,1.298,1343,4.234,1447,4.269,1514,2.529,1635,4.176,1642,3.728,1660,2.966,1700,3.86,1721,4.478,1832,3.258,1927,3.201,2282,3.02,2358,2.493,2608,3.297,2744,7.278,2996,4.048,3028,0.709,3042,5.048,3230,3.932,3329,5.881,3378,2.729,3497,4.661,3739,4.661,3740,2.826,3743,3.728,3861,6.534,3862,6.534,3863,6.534,3864,5.881,3865,6.534,3866,6.534,3867,6.534,3868,6.534,3869,6.534,3870,6.534,3871,6.534,3872,6.534]],["description//tracks/algorithms-101/leetcode/medium/1657",[232,0.941,528,1.292,1324,2.276,1447,2.686]],["title//tracks/algorithms-101/leetcode/medium/152",[484,2.09,1091,1.767,3012,2.376,3873,4.289]],["content//tracks/algorithms-101/leetcode/medium/152",[11,1.33,16,0.688,30,2.923,35,2.165,60,1.035,65,1.093,76,2.785,187,2.59,207,1.973,210,1.489,214,2.257,226,1.056,232,0.99,256,1.766,286,2.156,311,2.934,330,2.725,345,2.257,369,1.59,380,3.837,381,1.486,382,1.724,394,2.052,396,2.195,413,3.493,429,1.637,433,1.948,462,2.171,478,1.981,484,4.309,563,3.122,591,0.253,601,4.127,625,1.854,696,2.025,811,1.201,823,2.878,829,2.197,873,2.394,890,4.07,990,1.466,1011,3.837,1050,2.51,1091,3.71,1114,1.315,1238,1.981,1278,4.467,1303,0.979,1316,3.378,1335,1.192,1441,2.195,1709,4.478,1727,4.16,1798,2.903,1927,3.031,2004,3.967,2294,3.341,2645,1.665,2720,5.008,2968,1.665,3010,1.519,3012,4.989,3028,0.651,3229,4.179,3347,5.722,3365,2.59,3503,6.842,3520,5.403,3541,3.341,3598,5.269,3636,3.515,3740,2.676,3743,3.424,3874,4.478,3875,7.048,3876,6.002,3877,10.593,3878,10.426,3879,6.002,3880,4.282,3881,6.002,3882,5.403,3883,7.829,3884,6.002,3885,6.002,3886,6.002]],["description//tracks/algorithms-101/leetcode/medium/152",[484,1.993,583,1.869,990,0.678,1091,1.685,3012,2.266,3028,0.493,3873,4.09]],["title//tracks/algorithms-101/leetcode/medium/151",[528,1.079,2986,2.163,3041,3.976,3042,2.652]],["content//tracks/algorithms-101/leetcode/medium/151",[1,1.6,16,0.899,38,4.093,56,3.582,60,1.081,65,1.142,66,2.618,90,2.062,137,0.606,226,1.177,232,1.034,256,1.845,295,2.464,345,2.358,381,1.069,382,1.801,385,2.358,414,3.201,462,2.234,478,2.038,487,2.464,501,4.279,524,2.798,528,2.289,567,5.995,591,0.235,597,2.358,625,1.936,632,3.127,641,2.428,694,4.099,742,6.419,779,3.578,811,1.293,820,4.734,885,5.148,990,1.401,1010,2.358,1065,3.127,1158,2.539,1231,4.008,1238,1.587,1303,1.314,1311,3.847,1335,1.245,1343,2.501,1354,3.672,1375,5.746,1514,2.428,1651,7.424,2065,6.002,2366,4.924,2473,1.885,2645,1.739,2986,4.648,3028,0.68,3042,5.999,3378,2.619,3545,4.419,3639,5.323,3740,2.753,3887,7.25,3888,8.054,3889,6.271,3890,6.271,3891,6.271,3892,6.271]],["description//tracks/algorithms-101/leetcode/medium/151",[528,1.292,2986,2.591,3041,4.761,3042,3.176]],["title//tracks/algorithms-101/leetcode/medium/15",[831,3.128,2989,5.129]],["content//tracks/algorithms-101/leetcode/medium/15",[49,2.266,51,1.39,54,1.139,70,1.39,71,2.777,98,4.1,108,1.66,137,1.041,223,1.843,226,0.99,289,1.821,387,3.034,394,2.192,414,2.555,433,2.082,478,1.623,591,0.262,601,3.259,811,1.063,814,4.548,929,1.659,990,0.957,1050,1.569,1114,2.275,1166,2.912,1303,1.047,1311,2.483,1335,1.274,2214,5.748,2444,5.266,2473,1.501,2626,3.974,2645,2.266,2966,2.447,2968,1.779,3028,0.696,3045,7.295,3052,4.075,3186,4.075,3205,3.57,3229,3.955,3347,5.063,3350,3.198,3351,4.239,3365,2.767,3432,3.486,3497,4.576,3503,6.417,3882,7.356,3893,8.171,3894,8.171,3895,6.414,3896,8.171,3897,8.171,3898,8.171,3899,8.171,3900,6.414,3901,6.414,3902,6.414,3903,6.414,3904,6.414,3905,8.171]],["description//tracks/algorithms-101/leetcode/medium/15",[831,3.175,2989,5.205,3028,0.677]],["title//tracks/algorithms-101/leetcode/medium/1493",[60,0.614,140,1.563,1203,1.157,2970,1.852,3012,1.777,3057,2.973,3058,2.355]],["content//tracks/algorithms-101/leetcode/medium/1493",[16,0.551,38,2.539,54,0.874,60,1.534,62,1.804,65,1.142,137,0.938,140,4.26,154,2.55,160,2.705,170,4.491,174,1.359,210,1.192,226,0.976,232,1.034,247,1.78,289,1.78,330,2.847,381,1.069,385,2.358,413,3.594,429,1.012,445,2.995,462,2.468,478,2.038,508,2.231,511,2.619,591,0.248,600,3.672,625,1.936,719,2.798,734,1.971,777,2.464,811,1.157,817,2.798,829,2.26,861,1.671,873,2.501,973,4.378,983,5.513,989,3.408,990,1.328,1050,2.177,1065,4.016,1091,2.325,1114,2.214,1168,3.113,1172,4.924,1193,2.579,1203,3.048,1303,1.023,1317,3.578,1335,1.245,1362,3.49,1440,2.662,1441,2.945,1514,2.428,1639,4.145,1647,4.924,1751,3.97,1777,3.774,1925,4.008,1980,6.72,1981,3.603,2149,3.774,2269,4.26,2282,2.898,2379,5.232,2486,2.798,2515,5.232,2871,3.578,2970,4.186,3012,4.437,3028,0.68,3057,5.232,3058,5.881,3229,2.619,3230,3.774,3338,4.678,3366,4.678,3378,2.619,3425,4.924,3426,4.924,3728,4.298,3740,2.143,3743,3.578,3906,4.145,3907,5.232,3908,5.232,3909,6.271,3910,5.645,3911,10.238,3912,4.924,3913,6.271,3914,8.898,3915,6.271]],["description//tracks/algorithms-101/leetcode/medium/1493",[11,0.886,140,1.755,385,1.505,583,1.645,990,0.597,1203,1.299,2970,2.08,3012,1.995,3058,2.644]],["title//tracks/algorithms-101/leetcode/medium/148",[1,1.066,2358,2.048,3916,4.832]],["content//tracks/algorithms-101/leetcode/medium/148",[1,2.085,7,1.444,8,1.839,16,0.69,56,2.3,64,2.347,137,0.759,146,2.394,159,2.368,171,1.56,174,1.306,185,2.786,210,1.146,214,3.284,221,2.06,226,1.192,227,2.559,337,3.984,381,1.028,382,1.732,437,4.3,445,3.094,495,1.492,508,2.145,566,4.612,567,3.53,591,0.257,601,3.131,694,3.068,777,2.368,811,1.279,820,3.565,885,3.853,974,4.3,990,0.9,1151,1.752,1168,3.21,1238,1.525,1303,1.425,1352,5.03,1441,2.871,1462,3.459,1585,5.019,1601,5.41,1624,2.644,1665,3.877,1722,2.786,1751,2.69,1869,2.518,1887,2.3,2131,3.984,2358,3.98,2473,1.837,2982,3.203,2997,4.37,3010,1.525,3013,7.067,3028,0.654,3189,5.03,3190,4.734,3198,4.497,3243,4.865,3541,4.37,3542,3.53,3740,2.06,3762,6.165,3764,6.179,3808,6.551,3874,4.497,3917,4.734,3918,7.851,3919,6.028,3920,6.551,3921,6.028,3922,6.028,3923,8.731,3924,6.028,3925,5.426,3926,7.86,3927,5.426,3928,6.028,3929,6.028,3930,7.851,3931,6.028,3932,6.028,3933,6.028,3934,6.028]],["description//tracks/algorithms-101/leetcode/medium/148",[1,0.71,6,2.666,49,0.991,178,0.991,226,0.433,990,0.533,1238,0.904,2358,1.364,2983,2.284,3028,0.388,3916,3.217]],["title//tracks/algorithms-101/leetcode/medium/146",[92,2.988,3935,4.832,3936,4.832]],["content//tracks/algorithms-101/leetcode/medium/146",[1,1.361,7,0.769,16,0.885,30,2.835,38,3.754,48,2.407,53,1.802,54,0.687,62,1.103,64,2.549,70,1.485,92,5.551,120,1.485,128,1.103,131,2.811,137,0.823,146,1.275,154,2.835,171,2.318,174,1.485,178,1.366,210,0.937,221,2.343,224,2.374,226,0.83,255,2.507,286,1.95,340,2.319,381,0.84,414,2.664,431,3.684,435,5.926,442,5.109,462,1.366,495,1.219,508,3.298,511,2.058,557,2.126,565,2.374,576,1.777,591,0.257,597,1.853,607,2.561,696,1.662,719,2.198,734,2.191,811,1.262,826,4.013,829,1.923,990,0.735,1015,3.4,1039,2.363,1114,1.502,1151,1.992,1238,1.247,1287,2.091,1303,1.607,1318,4.496,1335,0.979,1346,4.013,1353,3.418,1422,2.678,1462,2.472,1624,3.457,1660,2.237,1663,3.149,1665,3.902,1710,3.515,1825,4.889,2096,4.526,2466,5.041,2473,1.994,3028,0.535,3238,4.496,3390,3.321,3432,2.678,3542,4.013,3803,3.869,3920,5.719,3937,4.927,3938,4.927,3939,4.927,3940,6.854,3941,8.955,3942,4.927,3943,7.881,3944,4.927,3945,4.927,3946,4.927,3947,8.52,3948,7.881,3949,6.854,3950,6.854,3951,6.854,3952,6.854,3953,4.927,3954,4.927,3955,4.927,3956,4.111,3957,4.927,3958,7.881,3959,3.676,3960,6.854,3961,6.854,3962,6.169,3963,7.881,3964,6.854,3965,7.881,3966,6.854,3967,6.854,3968,6.854,3969,4.927,3970,4.927,3971,4.927,3972,4.927,3973,4.111,3974,4.927,3975,4.927,3976,6.69,3977,6.854,3978,6.169,3979,4.927,3980,4.927]],["description//tracks/algorithms-101/leetcode/medium/146",[49,1.18,92,2.368,591,0.101,1238,1.077,3028,0.462,3582,3.342,3935,3.83,3936,3.83]],["title//tracks/algorithms-101/leetcode/medium/1456",[429,0.575,1091,1.321,1335,0.708,1441,1.303,2984,1.742,3040,2.442,3054,2.973]],["content//tracks/algorithms-101/leetcode/medium/1456",[16,0.757,51,1.272,64,1.888,65,1.068,66,1.726,70,1.272,120,1.769,125,1.609,146,2.231,170,4.429,171,1.519,174,1.272,187,2.532,207,1.929,210,1.467,213,3.631,214,2.207,221,2.006,224,2.033,226,1.152,232,0.968,239,1.373,278,1.554,286,1.452,340,2.762,341,2.27,345,2.901,381,1.561,394,2.006,396,2.146,413,2.618,429,1.575,462,2.139,495,1.452,528,2.153,563,2.34,565,2.672,591,0.235,625,1.812,721,4.78,734,1.436,811,1.121,817,2.618,829,1.647,861,1.217,890,3.05,937,4.186,983,6.049,989,3.19,990,1.366,1030,3.19,1091,3.196,1131,5.503,1190,3.596,1230,3.565,1303,0.957,1311,3.544,1335,1.166,1343,4.073,1345,4.01,1417,3.532,1441,3.348,1514,2.272,1700,4.233,1838,2.814,1981,3.49,2325,3.348,2337,5.755,2356,3.636,2495,4.378,2871,3.348,2968,1.627,2982,3.118,2984,4.213,3010,1.485,3028,0.637,3040,7.296,3052,5.093,3054,4.896,3126,5.282,3230,5.875,3267,5.755,3365,2.532,3378,2.451,3705,3.879,3710,5.503,3740,2.637,3814,4.896,3906,3.879,3907,4.896,3908,4.896,3981,4.608,3982,4.896,3983,8.618,3984,9.762,3985,7.758,3986,5.868,3987,5.868,3988,5.868,3989,5.868,3990,5.868,3991,5.868]],["description//tracks/algorithms-101/leetcode/medium/1456",[11,0.715,207,1.062,429,0.521,583,1.328,870,0.928,884,2.134,990,0.482,1091,1.197,1335,0.641,1441,1.181,2984,1.579,3028,0.35,3040,2.213]],["title//tracks/algorithms-101/leetcode/medium/139",[1048,2.79,3042,2.988,3992,4.832]],["content//tracks/algorithms-101/leetcode/medium/139",[1,1.284,8,2.505,16,0.721,30,2.857,41,3.082,54,0.901,70,1.401,137,1.005,165,1.177,188,2.046,226,1.151,252,3.223,309,3.831,341,1.901,381,1.102,394,2.209,401,2.835,433,3.182,444,3.36,462,1.792,495,2.032,528,1.859,591,0.258,626,3.564,734,2.208,772,3.223,811,1.068,826,4.808,860,2.502,861,1.97,990,0.965,998,4.822,1048,4.268,1230,2.987,1278,3.687,1303,1.34,1311,3.494,1316,3.543,1343,2.578,1660,2.935,1695,2.431,1727,3.434,1960,2.431,2113,4.272,2473,1.922,2608,3.275,2984,4.975,3010,2.535,3028,0.701,3042,3.597,3143,7.697,3177,4.942,3186,3.223,3187,5.393,3705,5.427,3710,4.611,3993,10.017,3994,6.463,3995,8.211,3996,6.126,3997,6.463,3998,5.818,3999,7.391,4000,5.818,4001,8.211,4002,6.463,4003,6.463,4004,6.463,4005,6.463,4006,6.463,4007,6.463,4008,6.463]],["description//tracks/algorithms-101/leetcode/medium/139",[49,1.18,591,0.101,1048,2.212,1238,1.077,3028,0.462,3042,2.368,3582,3.342,3992,3.83]],["title//tracks/algorithms-101/leetcode/medium/138",[1,0.851,13,2.508,1279,1.708,1751,1.911,4009,3.856]],["content//tracks/algorithms-101/leetcode/medium/138",[1,2.106,7,1.465,13,5.916,16,0.55,42,2.794,62,1.402,66,1.842,70,1.357,146,2.649,160,2.701,210,1.191,214,2.355,226,1.176,239,1.465,256,1.842,269,4.508,286,1.991,298,3.666,341,2.367,381,1.516,414,1.958,458,3.163,535,4.434,591,0.254,608,4.671,696,2.112,754,1.697,811,1.157,829,1.757,990,1.201,1012,2.787,1078,2.169,1151,2.339,1279,4.082,1303,1.022,1335,1.244,1462,3.501,1489,2.701,1624,3.53,1660,2.843,1665,4.162,1751,4.508,1960,3.026,2473,1.465,2691,5.515,3028,0.679,3413,6.566,3540,4.292,3740,2.75,3764,5.842,3771,6.633,4010,5.224,4011,8.004,4012,6.261,4013,7.243,4014,8.046,4015,8.046,4016,8.046,4017,8.046,4018,6.261,4019,6.261,4020,6.261,4021,6.261,4022,6.261,4023,6.261]],["description//tracks/algorithms-101/leetcode/medium/138",[1,0.75,13,2.211,49,1.047,591,0.089,1238,0.955,1279,1.506,1751,1.685,3028,0.41,3582,2.965,4009,3.398]],["title//tracks/algorithms-101/leetcode/medium/134",[4024,5.368,4025,4.216,4026,4.479]],["content//tracks/algorithms-101/leetcode/medium/134",[16,0.635,42,3.226,137,0.699,161,3.282,226,1.227,341,2.127,381,1.501,413,3.226,427,4.831,462,2.005,495,2.178,508,2.572,563,2.883,591,0.252,734,1.769,785,4.024,890,3.758,990,1.314,1034,5.028,1094,4.621,1114,2.165,1151,2.76,1193,3.62,1303,1.18,1887,2.758,1927,2.799,1960,2.719,2188,2.572,2252,4.621,2473,1.692,2988,3.341,3028,0.784,3390,2.681,3740,3.009,4025,8.323,4026,8.594,4027,7.23,4028,7.23,4029,8.804,4030,7.23,4031,8.804,4032,9.493,4033,7.23,4034,9.493,4035,7.23,4036,8.804,4037,8.804]],["description//tracks/algorithms-101/leetcode/medium/134",[3028,0.619,4025,4.481,4026,4.761,4038,4.481]],["title//tracks/algorithms-101/leetcode/medium/131",[415,3.326,2985,2.988,4038,4.216]],["content//tracks/algorithms-101/leetcode/medium/131",[1,1.84,8,1.656,11,1.836,16,0.643,30,3.022,43,1.985,48,2.645,64,1.328,65,1.334,66,1.597,70,1.177,137,0.801,154,1.719,223,2.104,224,3.307,226,1.004,239,2.077,247,2.08,256,1.597,283,1.856,286,1.343,341,2.439,381,1.249,382,2.662,394,3.033,415,6.402,429,0.876,455,1.56,458,1.932,462,2.031,487,2.133,495,2.293,511,3.06,528,2.322,531,5.226,532,4.134,565,2.537,591,0.244,700,3.873,734,2.336,777,2.133,811,1.154,829,1.523,860,2.836,861,2.188,978,4.05,990,0.81,1010,2.755,1082,4.05,1114,1.605,1151,2.129,1287,2.304,1303,1.353,1311,2.102,1335,1.455,1343,3.539,1430,4.409,1440,3.109,1490,5.314,1528,2.763,1660,2.465,1697,5.137,1798,3.855,1859,3.179,1869,2.268,1960,3.118,2473,1.271,2600,3.588,2645,2.031,2891,5.226,2968,1.506,2984,5.135,2985,5.818,2991,6.118,3028,0.589,3293,3.588,3417,4.887,3705,4.841,3740,2.504,3743,3.097,3998,4.887,4039,7.325,4040,7.325,4041,9.759,4042,5.429,4043,7.325,4044,5.429,4045,5.429,4046,5.429,4047,5.429,4048,5.429,4049,5.429]],["description//tracks/algorithms-101/leetcode/medium/131",[415,3.865,2985,3.472,4038,4.898]],["title//tracks/algorithms-101/leetcode/medium/130",[611,2.437,4050,4.479,4051,4.479]],["content//tracks/algorithms-101/leetcode/medium/130",[29,2.264,38,2.299,39,2.106,41,1.843,48,1.437,66,1.67,70,1.231,120,1.711,137,0.934,154,1.797,157,2.022,175,2.389,182,2.076,186,2.491,191,3.519,210,1.08,214,2.136,223,2.168,224,1.967,226,1.095,278,1.504,341,2.768,345,2.136,381,1.446,385,2.136,387,3.174,394,2.58,445,2.555,462,1.575,473,2.299,478,1.437,495,1.405,554,3.63,580,2.491,591,0.254,671,1.374,734,1.847,748,3.63,785,3.16,811,1.103,826,5.509,861,1.566,990,1.266,1010,2.136,1012,1.967,1049,3.204,1114,2.119,1131,7.565,1164,2.776,1168,2.718,1195,3.325,1239,3.427,1303,1.232,1374,4.051,1448,3.086,1449,5.259,1489,2.45,1490,3.16,1544,8.551,1564,5.509,1660,2.578,1697,4.677,1701,3.892,1960,3.399,1981,2.299,2217,3.753,2325,4.306,2473,1.329,2664,2.673,2691,3.892,2983,3.63,2991,3.418,3010,1.91,3028,0.616,3084,6.9,3162,6.013,3273,5.111,3300,7.422,3315,7.872,3316,4.236,3324,6.795,3357,4.201,3463,6.658,3468,6.795,3652,7.633,3740,2.58,4051,4.738,4052,5.678,4053,9.036,4054,4.459,4055,5.678,4056,7.548,4057,7.548,4058,9.87,4059,7.548,4060,8.479,4061,5.678,4062,7.548]],["description//tracks/algorithms-101/leetcode/medium/130",[611,2.832,4050,5.205,4051,5.205]],["title//tracks/algorithms-101/leetcode/medium/128",[1065,2.376,2225,2.79,2970,2.477,3711,3.742]],["content//tracks/algorithms-101/leetcode/medium/128",[51,1.67,133,3.325,137,0.996,174,1.67,226,0.934,365,3.169,381,1.314,387,3.292,394,2.634,429,1.476,508,2.742,591,0.255,601,4.025,811,1.003,990,1.15,1114,1.688,1130,5.282,1203,2.97,1294,5.093,1303,1.257,1927,2.983,2473,1.804,3028,0.836,3229,3.219,3350,3.843,3390,2.858,3413,6.449,3542,4.513,4063,7.706,4064,7.706,4065,10.093,4066,7.706,4067,8.235,4068,6.937]],["description//tracks/algorithms-101/leetcode/medium/128",[1065,2.845,2225,3.341,2970,2.966,3711,4.481]],["title//tracks/algorithms-101/leetcode/medium/122",[206,1.647,210,0.678,2185,2.442,2278,2.542,3156,2.145,3157,2.145,4069,3.208]],["content//tracks/algorithms-101/leetcode/medium/122",[16,0.691,120,2.37,137,0.895,207,2.586,221,2.688,226,0.953,462,2.181,563,3.136,591,0.24,673,4.813,778,5.027,811,1.023,861,1.632,990,1.382,1054,3.235,1114,1.723,1151,2.286,1303,1.283,1415,6.562,2050,5.027,2473,1.841,2988,3.635,3028,1.005,3177,4.734,3350,3.922,3365,3.393,3390,2.916,3421,6.908,4070,10.362,4071,7.865,4072,7.865,4073,10.16]],["description//tracks/algorithms-101/leetcode/medium/122",[206,2.1,210,0.864,2185,3.115,2278,3.242,3156,2.735,3157,2.735,4069,4.09]],["title//tracks/algorithms-101/leetcode/medium/116",[381,0.608,445,1.074,1151,1.036,1292,2.542,1665,1.379,1751,1.59,4074,3.208]],["content//tracks/algorithms-101/leetcode/medium/116",[137,0.77,226,0.966,513,5.193,557,3.438,591,0.249,597,2.997,811,1.214,899,5.616,990,1.189,1303,1.3,1665,3.085,2473,1.865,3028,1.013,3236,6.649,3247,7.173,3248,7.173,3250,7.173,3251,7.173,3252,7.173,3253,7.173,3421,6.961,3920,6.649,4013,8.4,4075,7.969,4076,9.331,4077,7.969,4078,7.969,4079,7.969]],["description//tracks/algorithms-101/leetcode/medium/116",[381,0.775,445,1.369,1151,1.321,1292,3.242,1665,1.759,1751,2.028,4074,4.09]],["title//tracks/algorithms-101/leetcode/medium/735/",[3069,4.832,3070,4.216,3071,4.216]],["content//tracks/algorithms-101/leetcode/medium/735/",[1,1.085,11,1.21,16,0.731,60,1.434,64,2.53,65,0.995,128,1.224,132,2.358,137,0.86,154,3.094,203,2.438,207,1.797,222,2.781,226,0.891,232,1.468,244,3.041,247,1.551,252,3.669,278,1.447,289,1.551,307,1.533,341,1.608,345,2.055,369,1.447,381,1.583,396,1.998,414,1.708,426,4.559,429,0.882,445,2.217,458,1.944,460,4.267,462,2.307,511,2.283,516,5.043,563,2.179,565,1.893,576,1.971,591,0.235,597,2.055,625,1.687,641,2.115,696,2.806,700,3.898,719,2.438,754,2.592,777,2.147,778,3.493,788,4.703,811,0.711,817,3.711,820,2.481,829,1.533,861,2.062,890,2.84,915,3.612,990,1.241,1015,2.358,1050,2.035,1086,2.671,1114,1.822,1146,3.963,1168,2.358,1190,3.268,1203,1.774,1287,3.777,1303,0.892,1324,2.179,1335,1.461,1354,3.2,1392,3.283,1435,5.933,1449,2.781,1514,2.115,1564,4.87,1612,6.009,1639,3.612,1663,3.493,1664,3.2,1695,2.055,1777,3.289,1798,3.685,1869,2.283,1952,3.493,1960,3.128,2020,3.898,2140,3.612,2225,3.2,2294,3.041,2356,3.386,2558,6.348,2791,7.136,2814,4.291,2982,3.909,2991,3.289,3028,0.593,3070,8.527,3071,5.777,3180,3.898,3378,3.073,3432,2.97,3598,5.457,3740,1.868,3743,3.118,3745,5.777,3815,3.289,3906,3.612,4080,9.566,4081,5.464,4082,5.464,4083,7.357]],["description//tracks/algorithms-101/leetcode/medium/735/",[153,1.899,207,1.399,583,1.75,870,1.222,990,0.635,3028,0.462,3070,3.342,3071,3.342]],["title//tracks/algorithms-101/leetcode/medium/443/",[528,1.216,3047,4.479,3048,3.83]],["content//tracks/algorithms-101/leetcode/medium/443/",[1,2.047,16,0.699,29,2.457,30,1.95,35,2.222,56,2.35,65,1.122,90,2.025,121,2.317,137,0.933,144,3.607,146,1.595,147,3.435,154,2.521,185,3.68,210,1.514,214,2.317,226,0.965,232,1.016,256,2.343,278,1.631,327,2.42,345,2.317,353,2.457,369,2.109,378,2.615,381,1.504,420,4.722,429,0.994,434,4.72,450,2.192,462,2.447,495,2.183,501,3.273,528,1.998,530,2.703,567,3.607,591,0.228,625,1.902,696,2.078,795,2.9,803,7.168,811,1.036,829,2.234,861,1.278,888,4.231,890,4.139,989,3.348,990,1.188,1000,3.708,1114,1.933,1168,1.975,1191,4.395,1287,2.615,1303,1.005,1311,3.416,1335,1.224,1343,4.22,1353,3.072,1392,2.749,1421,4.543,1441,3.532,1515,4.231,1528,3.135,1691,3.273,1700,4.13,1751,4.552,1813,4.848,1869,2.573,1887,2.35,1960,2.317,1981,3.224,2050,3.938,2065,3.938,2225,5.166,2282,2.847,2645,1.708,2871,3.515,3028,0.668,3048,5.68,3651,5.545,3653,5.14,3710,7.181,3740,2.106,4010,5.14,4084,6.161,4085,6.161,4086,6.161]],["description//tracks/algorithms-101/leetcode/medium/443/",[528,1.412,3047,5.205,3048,4.45]],["title//tracks/algorithms-101/leetcode/medium/394/",[528,1.216,3072,4.832,3073,4.216]],["content//tracks/algorithms-101/leetcode/medium/394/",[16,0.685,33,2.858,42,2.659,43,2.85,62,1.335,65,1.085,90,1.959,128,1.335,146,1.543,159,2.341,182,2.179,207,1.959,210,1.751,226,1.052,234,3.098,256,2.293,289,1.692,321,3.693,327,3.062,330,2.706,340,2.805,345,2.242,365,2.451,369,1.578,381,1.329,396,2.179,429,1.612,460,3.737,462,2.554,474,2.972,478,1.508,511,2.49,528,2.406,576,2.149,591,0.256,625,1.84,750,4.33,777,2.341,778,3.81,811,0.775,829,1.672,861,2.125,873,2.377,888,4.164,924,2.89,965,4.236,990,1.375,1095,3.939,1190,3.062,1287,2.53,1297,2.413,1303,0.972,1311,2.307,1335,1.184,1343,3.463,1345,3.098,1435,4.252,1447,3.668,1514,2.307,1515,4.14,1612,5.701,1700,2.413,1714,4.085,1813,3.098,1952,5.887,1960,2.931,2004,3.939,2204,4.973,2558,6.195,2645,1.653,2871,4.446,3028,0.647,3052,3.886,3073,6.819,3180,4.252,3229,3.255,3378,2.49,3432,4.236,3545,3.668,3710,6.818,3740,2.664,3745,4.68,3815,3.587,4087,7.793,4088,5.96,4089,5.96,4090,6.478,4091,8.547,4092,6.502,4093,5.96,4094,5.96,4095,9.803,4096,8.683,4097,5.96,4098,5.96,4099,5.96,4100,7.793]],["description//tracks/algorithms-101/leetcode/medium/394/",[207,1.729,528,1.191,583,2.162,990,0.785,3073,4.129]],["title//tracks/algorithms-101/leetcode/medium/334/",[213,2.243,3044,3.976,3045,3.555,3046,2.79]],["content//tracks/algorithms-101/leetcode/medium/334/",[1,1.738,11,1.585,62,1.603,70,2.048,76,3.701,213,4.448,232,1.18,286,2.165,289,2.032,396,2.617,413,3.193,429,1.718,478,1.811,511,4.113,591,0.243,625,2.21,626,2.546,631,4.196,696,2.414,788,5.593,811,1.229,829,2.008,861,1.961,890,4.548,990,1.306,1203,2.323,1324,2.854,1335,1.421,1441,2.617,1489,3.775,1695,2.691,1751,3.193,2188,3.113,2608,3.489,3010,2.555,3028,0.776,3045,6.527,3046,5.534,3052,3.568,3128,6.557,3186,3.568,3229,2.989,3293,5.783,3432,3.889,3499,4.434,4101,7.156]],["description//tracks/algorithms-101/leetcode/medium/334/",[213,2.686,3044,4.761,3045,4.257,3046,3.341]],["title//tracks/algorithms-101/leetcode/medium/2844/",[171,1.007,174,0.843,311,1.902,429,0.628,958,2.571,4102,3.246]],["content//tracks/algorithms-101/leetcode/medium/2844/",[8,1.639,12,4.906,16,0.472,30,2.797,54,1.288,60,1.523,65,0.978,90,2.711,137,0.854,140,4.051,171,2.464,174,1.787,187,3.138,191,4.507,203,2.398,207,1.767,210,1.022,214,2.021,226,0.881,232,1.2,245,2.734,286,1.33,311,4.514,330,2.44,341,2.426,365,2.21,369,1.423,378,3.088,381,1.507,382,2.09,387,1.813,393,1.938,394,3.156,410,2.855,413,3.68,414,1.68,429,1.619,433,1.744,445,1.619,462,2.017,496,3.147,512,2.44,528,2.272,563,2.901,591,0.25,625,1.659,641,2.08,719,3.246,734,2.162,746,2.793,811,1.266,829,2.041,860,2.816,958,6.103,965,4.482,984,3.435,990,1.231,1012,1.861,1022,3.683,1109,3.833,1114,2.199,1158,2.176,1168,1.722,1190,2.111,1193,2.21,1248,3.833,1303,0.877,1335,1.067,1440,2.281,1441,1.965,1490,2.991,1514,2.08,1642,3.066,1700,3.339,1777,3.234,1813,4.948,1859,3.147,1960,2.021,2188,1.912,2253,3.833,2269,2.357,2282,2.484,2595,6.04,2608,2.901,2645,2.017,2713,6.152,2968,2.017,2982,4.906,2984,2.627,2986,4.012,3010,2.463,3022,6.329,3028,0.583,3116,5.841,3205,2.991,3229,3.857,3357,2.991,3365,2.318,3378,2.245,3390,1.993,3545,2.529,3598,3.066,3740,2.486,4102,4.484,4103,4.837,4104,5.374,4105,8.312,4106,4.009,4107,8.837,4108,5.374,4109,9.234,4110,9.519,4111,9.519]],["description//tracks/algorithms-101/leetcode/medium/2844/",[171,1.262,174,1.056,311,2.383,429,0.787,958,3.222,4102,4.068]],["title//tracks/algorithms-101/leetcode/medium/2841/",[1024,1.588,1091,1.588,2966,1.634,3012,2.136,4112,3.574]],["content//tracks/algorithms-101/leetcode/medium/2841/",[8,1.91,11,1.387,16,0.824,30,1.982,48,2.036,51,1.357,60,1.079,65,1.14,66,1.842,137,0.605,170,3.901,182,2.29,187,2.701,226,1.137,232,1.033,286,1.549,289,1.778,341,2.367,345,2.355,381,1.372,394,2.14,396,2.29,413,3.59,462,2.232,478,2.036,495,1.549,508,2.228,511,2.616,563,3.209,591,0.248,625,1.934,734,2.176,811,1.314,817,2.794,829,1.757,861,1.299,887,2.322,934,2.29,983,5.509,989,4.373,990,1.201,1010,2.355,1024,3.747,1050,1.969,1091,3.297,1114,2.177,1203,2.886,1239,4.587,1303,1.313,1335,1.598,1353,3.122,1441,3.251,1514,2.424,1798,2.322,1832,3.122,1981,3.258,2282,2.894,2626,4.986,2871,3.572,2891,4.467,2966,3.703,2968,2.232,3010,1.584,3012,5.155,3028,0.679,3052,5.155,3205,3.485,3229,3.92,3293,4.138,3350,3.122,3357,3.485,3378,2.616,3390,3.297,3740,2.75,4067,9.095,4068,5.636,4112,5.224,4113,6.261,4114,5.636,4115,8.046,4116,6.261,4117,6.261,4118,6.261,4119,6.261,4120,6.261,4121,6.261,4122,6.261]],["description//tracks/algorithms-101/leetcode/medium/2841/",[1024,1.95,1091,1.95,2966,2.006,3012,2.622,4112,4.387]],["title//tracks/algorithms-101/leetcode/medium/2840/",[171,0.922,512,1.618,528,0.807,734,0.872,2188,1.268,2278,2.542,4123,2.973]],["content//tracks/algorithms-101/leetcode/medium/2840/",[1,1.915,9,2.573,60,1.162,65,1.535,96,3.234,171,2.183,174,1.461,226,1.022,232,1.638,256,1.984,307,2.366,345,2.536,381,1.569,394,2.883,462,2.552,478,1.706,486,3.583,528,2.183,557,2.909,591,0.246,597,2.536,625,2.082,632,4.808,694,4.292,696,2.845,734,1.65,756,5.076,780,4.31,811,0.877,829,1.892,894,3.753,990,1.259,1065,4.808,1136,3.583,1193,2.773,1287,2.862,1292,4.81,1303,1.1,1327,4.413,1335,1.339,1343,4.038,1344,4.81,1345,3.505,1441,2.466,1514,2.61,1524,4.457,1695,3.461,1798,3.127,2188,3,2282,3.116,2358,3.218,2744,6.016,3010,1.706,3028,0.732,3080,6.308,3186,4.205,3230,4.058,3378,2.817,3499,4.178,3545,3.969,3740,2.883,3743,3.847,3981,5.295,4123,5.626,4124,7.226,4125,8.045,4126,6.743,4127,7.591,4128,6.07,4129,7.591,4130,6.07,4131,7.591,4132,6.07,4133,7.591,4134,6.07]],["description//tracks/algorithms-101/leetcode/medium/2840/",[171,1.176,512,2.063,528,1.029,734,1.112,2188,1.617,2278,3.242,4123,3.792]],["title//tracks/algorithms-101/leetcode/medium/238/",[484,1.879,755,2.016,1050,1.048,2256,2.831,3043,3.574]],["content//tracks/algorithms-101/leetcode/medium/238/",[1,1.157,11,1.291,16,0.754,35,2.102,43,2.131,60,1.005,64,2.101,65,1.061,70,1.263,76,2.073,90,1.916,125,1.598,137,0.941,146,1.508,171,1.988,174,1.263,178,1.616,187,2.514,207,2.525,210,1.108,214,2.888,226,1.204,232,1.506,246,2.557,247,1.654,255,3.908,256,1.714,286,2.125,327,3.587,341,1.714,381,1.618,382,2.467,385,2.192,387,2.591,401,2.557,404,3.369,429,1.239,445,2.751,462,2.13,484,4.474,591,0.248,601,4.068,625,1.8,755,2.743,772,4.552,811,1.117,820,3.487,829,1.635,861,1.968,873,2.324,885,3.725,990,1.454,1034,2.966,1050,2.556,1168,2.926,1203,3.464,1287,2.474,1297,2.36,1303,0.951,1335,1.157,1514,2.256,1515,3.096,1691,3.096,1887,2.223,1927,3.325,1950,3.412,1960,3.434,2004,6.271,2096,3.096,2269,2.557,2294,4.274,2473,1.364,2645,2.13,2968,1.616,2997,3.243,3028,0.632,3116,5.076,3146,5.246,3229,3.963,3338,4.348,3347,3.611,3350,3.829,3378,2.434,3541,3.243,3542,3.412,3649,5.246,3739,4.157,3740,2.625,3880,4.157,4092,4.863,4135,9.341,4136,5.828,4137,5.828,4138,5.828,4139,5.828]],["description//tracks/algorithms-101/leetcode/medium/238/",[484,2.307,755,2.475,1050,1.287,2256,3.475,3043,4.387]],["title//tracks/algorithms-101/leetcode/medium/2352/",[1015,1.848,1449,2.18,1517,2.18,2188,1.524,3066,3.574]],["content//tracks/algorithms-101/leetcode/medium/2352/",[1,1.19,7,0.936,16,0.687,38,2.427,41,1.946,51,1.299,65,1.091,72,2.629,83,3.267,90,1.971,137,0.579,216,2.989,226,1.118,256,1.763,282,3.42,289,1.702,290,3.607,318,3.336,341,1.763,378,2.544,381,1.705,382,1.722,401,2.629,414,2.446,431,2.049,433,1.946,441,2.076,462,2.415,508,2.783,510,3.607,530,3.82,533,1.785,563,2.39,583,2.465,591,0.243,607,3.116,625,1.851,655,2.162,719,2.674,734,1.914,754,2.12,802,3.714,811,0.78,823,2.874,873,2.39,934,2.192,990,1.167,1000,3.607,1015,3.757,1024,2.223,1065,2.989,1114,2.022,1190,2.355,1203,1.946,1303,0.978,1324,2.39,1327,4.176,1335,1.554,1362,3.336,1377,2.721,1448,3.258,1449,5.43,1456,3.258,1517,5.39,1642,3.42,1700,4.107,1736,4.276,1776,4.58,1838,2.874,1960,2.254,2143,4.276,2188,2.132,2325,3.42,2481,7.866,2968,2.169,2982,4.156,2996,5.719,3002,5.17,3010,1.517,3028,0.65,3062,4.108,3315,4.707,3351,3.962,3357,4.353,3390,2.223,3429,3.258,3463,7.71,3541,4.846,3739,4.276,3740,2.674,3743,3.42,3847,6.49,4090,4.472,4106,4.472,4140,5.994,4141,5.994,4142,5.994,4143,5.994,4144,5.994,4145,5.994,4146,4.707,4147,4.276,4148,5.994,4149,5.994,4150,5.994,4151,5.994,4152,5.994,4153,5.994,4154,5.994,4155,5.994,4156,5.994,4157,5.994]],["description//tracks/algorithms-101/leetcode/medium/2352/",[1015,2.269,1449,2.676,1517,2.676,2188,1.871,3066,4.387]],["title//tracks/algorithms-101/leetcode/medium/11/",[478,1.358,1673,2.527,2987,4.005]],["content//tracks/algorithms-101/leetcode/medium/11/",[11,1.803,16,0.46,30,2.264,51,1.136,60,1.233,65,1.302,66,1.542,68,2.261,70,1.136,76,1.864,115,4.491,137,0.884,154,3.16,165,0.954,188,1.659,210,1.36,211,1.701,213,3.366,226,1.109,232,1.559,278,2.156,286,1.296,295,2.809,304,3.349,309,2.224,311,2.562,337,3.463,345,2.689,381,1.491,387,1.768,393,1.89,394,2.782,400,2.155,413,2.338,445,3.043,462,1.453,478,2.555,495,2.014,563,2.09,578,3.566,591,0.245,597,1.971,625,1.618,711,3.591,719,3.191,727,3.198,754,1.42,762,2.784,791,2.916,811,0.682,829,2.284,860,2.028,861,1.087,868,3.463,887,2.652,890,2.724,894,2.916,929,1.064,977,3.591,989,2.848,990,1.215,1015,3.085,1030,3.887,1050,2.24,1091,3.019,1094,3.349,1114,1.567,1168,3.267,1187,4.187,1203,1.701,1303,0.855,1324,2.09,1353,2.613,1362,2.916,1392,3.632,1417,4.304,1440,2.224,1514,2.028,1545,7.492,1625,4.717,1639,3.463,1655,3.591,1673,2.466,1706,4.372,1722,3.305,1751,4.762,1798,2.652,1927,3.151,1952,3.349,2005,7.603,2149,3.154,2188,1.864,2253,5.807,2282,2.422,2325,2.989,2366,7.419,2478,3.349,2539,4.115,2894,4.372,2968,1.453,2987,6.524,3028,0.569,3032,3.463,3158,4.717,3366,3.909,3378,2.189,3540,3.591,3740,2.444,4158,5.24,4159,7.872,4160,7.151,4161,5.24,4162,9.448,4163,4.717,4164,5.24,4165,5.24,4166,7.151,4167,8.14,4168,5.24,4169,5.24,4170,8.14,4171,7.151,4172,5.24,4173,5.24]],["description//tracks/algorithms-101/leetcode/medium/11/",[11,1.007,211,1.475,478,1.15,1335,0.903,2005,3.39,2987,3.39,3880,3.242]],["title//tracks/algorithms-101/leetcode/medium/1004/",[60,0.738,1115,2.654,2225,2.508,3055,3.574,3056,3.574]],["content//tracks/algorithms-101/leetcode/medium/1004/",[11,1.309,29,3.091,65,1.076,114,2.357,137,0.887,154,2.453,170,4.528,203,3.458,210,1.124,226,0.939,229,2.43,232,0.975,255,3.944,278,1.565,289,1.678,341,1.739,345,2.223,381,1.008,394,2.02,396,2.834,408,3.662,413,4.096,429,1.578,445,3.004,455,2.226,462,2.546,511,3.612,591,0.248,625,1.825,734,1.446,777,3.397,811,1.008,829,2.175,861,1.608,973,4.212,978,4.409,983,4.802,989,3.212,990,1.157,1004,3.14,1050,2.332,1065,3.864,1091,3.404,1114,2.143,1136,3.14,1168,3.195,1193,2.43,1203,1.918,1303,0.964,1335,1.174,1362,3.289,1440,2.508,1441,2.161,1514,2.288,1542,6.466,1585,3.777,1744,6.169,1751,3.859,1777,3.557,1869,2.469,1927,2.288,1960,2.223,1980,6.466,1981,3.501,2225,5.064,2269,4.487,2282,2.731,2486,2.637,2871,3.372,2968,1.639,2970,4.495,2984,2.889,3012,2.947,3028,0.641,3052,5.147,3055,4.931,3058,6.299,3162,5.528,3229,2.469,3230,3.557,3302,5.529,3338,4.409,3363,4.641,3366,4.409,3378,2.469,3425,4.641,3426,4.641,3740,2.02,3815,3.557,3874,5.782,3907,4.931,3908,4.931,3910,5.32,3912,4.641,4174,5.91,4175,5.32,4176,4.931,4177,5.91,4178,10.112,4179,5.91,4180,5.91,4181,5.91,4182,8.648,4183,5.91]],["description//tracks/algorithms-101/leetcode/medium/1004/",[11,0.792,60,0.616,394,1.222,583,1.47,990,0.533,1050,0.874,1091,1.325,2225,2.093,2269,1.568,2486,1.595,3162,2.284]],["title//tracks/algorithms-101/leetcode/hard/_index",[74,5.129]],["content//tracks/algorithms-101/leetcode/hard/_index",[]],["description//tracks/algorithms-101/leetcode/hard/_index",[]],["title//tracks/algorithms-101/leetcode/hard/2842/",[528,0.807,1091,1.321,1700,1.443,3046,2.087,3052,1.777,4184,3.563,4185,2.798]],["content//tracks/algorithms-101/leetcode/hard/2842/",[8,2.576,11,1.248,16,0.791,54,0.785,65,1.757,66,1.657,69,2.651,70,1.221,108,1.458,137,0.816,165,1.025,207,1.852,210,1.428,223,2.157,226,1.137,229,3.704,243,3.214,245,1.618,286,1.394,318,3.135,345,2.118,381,1.6,393,3.046,394,1.925,396,2.06,404,3.294,413,3.35,429,1.453,462,2.342,528,1.912,557,2.43,563,2.994,591,0.251,597,2.824,625,1.739,671,1.363,727,2.213,734,1.378,780,3.6,811,1.221,823,2.701,856,4.018,873,2.246,990,1.26,1024,3.132,1034,2.867,1086,3.67,1091,3.479,1114,1.645,1231,3.6,1303,0.919,1311,3.922,1327,2.701,1335,1.119,1343,4.081,1377,4.09,1420,3.861,1441,2.06,1514,2.181,1700,4.102,1724,3.135,1927,3.269,2140,3.723,2147,5.07,2247,4.423,2252,3.6,2294,3.135,2416,4.018,2473,1.757,2478,3.6,2495,4.202,2645,1.562,2744,6.426,2896,4.7,2966,2.865,2968,1.562,3020,5.146,3028,0.611,3046,5.992,3052,5.239,3230,4.519,3293,3.723,3378,2.353,3390,2.784,3466,6.758,3545,2.651,3713,6.632,3740,2.566,3982,4.7,4185,8.287,4186,8.445,4187,4.423,4188,5.896,4189,5.633,4190,5.633,4191,5.633,4192,5.633,4193,5.07,4194,5.633,4195,5.633,4196,5.633,4197,5.633,4198,5.633,4199,5.633,4200,8.445,4201,9.007,4202,5.633,4203,5.633]],["description//tracks/algorithms-101/leetcode/hard/2842/",[528,1.104,1091,1.808,1700,1.974,3046,2.855,3052,2.431,4185,3.828]],["title//tracks/algorithms-101/leetcode/easy/_index",[281,3.052]],["content//tracks/algorithms-101/leetcode/easy/_index",[]],["description//tracks/algorithms-101/leetcode/easy/_index",[]],["title//tracks/algorithms-101/leetcode/easy/94",[2486,1.911,2664,2.016,2980,3.574,2981,3.364,2982,2.276]],["content//tracks/algorithms-101/leetcode/easy/94",[29,2.769,49,1.926,54,1.358,57,2.283,62,1.555,64,2.101,70,2.021,71,2.88,137,1.009,165,1.774,226,1.041,239,2.01,330,4.234,382,2.467,445,2.588,473,2.811,513,5.095,578,3.462,583,2.855,591,0.252,652,3.689,811,1.117,873,2.769,929,1.893,990,1.036,1087,3.609,1166,3.152,1168,2.989,1303,1.521,1335,1.379,1369,6.957,1665,3.61,1981,2.811,2473,2.01,2486,3.832,2645,2.586,2664,4.042,2981,5.452,2982,4.563,3028,0.932,3237,6.25,3238,3.961,3239,5.452,3240,5.793,3241,5.793,3242,5.18,3243,4.302,3244,5.452,3245,5.452,3350,3.462,3380,5.793,3764,4.179,4204,6.943,4205,6.943,4206,6.943,4207,6.943,4208,6.943,4209,6.943,4210,6.943,4211,6.943,4212,6.943,4213,6.943,4214,6.943,4215,6.943]],["description//tracks/algorithms-101/leetcode/easy/94",[2486,2.175,2664,2.295,2980,4.068,2981,3.828,2982,2.59,3028,0.529]],["title//tracks/algorithms-101/leetcode/easy/88",[566,2.376,1050,1.166,2358,1.818,2979,3.976]],["content//tracks/algorithms-101/leetcode/easy/88",[70,1.743,137,0.777,185,3.718,226,0.975,353,3.208,591,0.25,633,4.478,811,1.047,990,1.201,1166,3.653,1239,3.653,1303,1.313,1624,3.529,1838,3.858,2473,1.883,3010,2.374,3028,0.873,3186,4.679,3350,4.679,3390,3.48,3483,7.242,4216,8.446,4217,8.446,4218,8.045,4219,8.045,4220,8.045]],["description//tracks/algorithms-101/leetcode/easy/88",[566,2.622,1050,1.287,2358,2.006,2979,4.387,3028,0.571]],["title//tracks/algorithms-101/leetcode/easy/724",[11,1.055,433,1.547,3061,3.976,3062,3.266]],["content//tracks/algorithms-101/leetcode/easy/724",[11,1.347,16,0.694,65,1.107,70,1.318,137,0.847,174,1.318,187,3.406,210,1.501,214,2.287,221,2.699,226,1.062,278,1.61,286,2.296,289,1.726,327,3.445,381,1.582,396,2.223,401,2.667,413,2.713,429,1.274,430,6.588,433,3.489,445,2.971,462,2.432,508,2.163,511,2.54,563,2.425,591,0.233,598,3.23,625,1.878,626,2.163,734,2.145,811,1.305,829,2.215,861,2.082,990,1.178,1010,2.287,1034,5.017,1050,2.353,1114,1.73,1168,2.975,1203,3.367,1303,0.992,1335,1.208,1514,2.354,1521,4.623,1691,3.23,1777,3.66,1927,3.723,1960,3.298,2188,3.422,2645,1.686,2966,4.119,2968,1.686,3028,0.66,3062,6.361,3229,3.877,3378,2.54,3510,5.073,3540,4.168,3541,3.384,3720,6.588,3728,5.412,3740,2.699,3743,3.469,4221,6.08,4222,10.447,4223,6.08,4224,7.892,4225,6.08]],["description//tracks/algorithms-101/leetcode/easy/724",[11,1.264,433,1.852,3061,4.761,3062,3.911]],["title//tracks/algorithms-101/leetcode/easy/70",[2975,3.83,2976,4.005,2977,4.216]],["content//tracks/algorithms-101/leetcode/easy/70",[49,2.367,54,1.49,65,1.946,66,2.023,70,1.49,71,2.636,120,2.798,137,1.037,165,1.554,210,1.307,226,0.833,232,1.134,378,2.918,381,1.172,591,0.258,631,3.297,811,1.208,861,2.014,873,2.742,929,1.733,986,3.826,990,1.026,1065,3.428,1146,3.872,1166,3.122,1193,2.827,1303,1.122,1528,3.499,1927,2.662,2473,1.609,2626,4.26,2645,2.367,2976,7.448,3010,2.638,3028,0.746,3365,2.966,3390,3.165,4226,6.875,4227,6.189,4228,6.875,4229,9.284,4230,9.709]],["description//tracks/algorithms-101/leetcode/easy/70",[2975,4.071,2976,4.257,2977,4.481,3028,0.619]],["title//tracks/algorithms-101/leetcode/easy/69",[2973,4.827,2974,5.129]],["content//tracks/algorithms-101/leetcode/easy/69",[16,0.767,48,1.805,49,2.421,54,1.45,70,1.545,71,2.696,108,2.26,137,0.689,171,1.846,226,0.864,384,3.296,387,3.541,400,3.59,513,4.803,524,3.182,591,0.254,811,1.335,929,1.915,990,1.064,1049,3.706,1158,3.535,1166,3.238,1238,1.805,1303,1.164,1311,3.38,1335,1.416,1377,3.238,2227,5.984,2473,1.669,2645,2.421,2968,2.727,3009,5.32,3028,0.774,3119,7.859,3390,3.238,3598,4.981,4090,7.04,4124,8.164,4231,7.132,4232,8.731,4233,7.132,4234,7.132,4235,7.132,4236,6.229,4237,7.132]],["description//tracks/algorithms-101/leetcode/easy/69",[2973,4.898,2974,5.205,3028,0.677]],["title//tracks/algorithms-101/leetcode/easy/66",[60,0.925,872,2.852,2972,4.216]],["content//tracks/algorithms-101/leetcode/easy/66",[49,2.387,54,0.971,60,1.61,70,1.51,71,2.658,137,1,226,0.844,381,1.188,382,2.683,412,2.737,414,2.691,445,2.099,478,1.763,501,3.701,591,0.256,811,1.215,823,4.478,929,1.747,990,1.04,1050,2.387,1114,2.046,1166,3.163,1168,2.233,1303,1.137,1335,1.384,1362,5.197,1440,3.964,1639,5.688,1691,4.572,1813,5.476,2145,6.42,2473,1.63,2645,2.387,2968,2.869,3028,0.756,3350,4.291,3363,5.47,3391,5.197,3452,6.42,4238,10.021,4239,6.966,4240,7.747,4241,6.966,4242,6.966,4243,8.606,4244,8.606,4245,6.966,4246,6.966,4247,6.966]],["description//tracks/algorithms-101/leetcode/easy/66",[60,0.984,872,3.032,2972,4.481,3028,0.619]],["title//tracks/algorithms-101/leetcode/easy/643",[1091,1.767,1741,2.285,3012,2.376,3053,3.976]],["content//tracks/algorithms-101/leetcode/easy/643",[11,1.387,16,0.707,60,1.533,64,2.176,65,1.14,66,1.842,70,1.927,96,3.003,120,1.887,146,1.621,154,2.547,161,2.843,170,4.573,210,1.53,223,1.799,226,1.077,239,1.465,245,1.799,289,1.778,345,3.026,360,2.947,381,1.068,382,1.799,394,2.14,404,2.747,413,2.794,429,1.652,439,3.061,450,2.228,458,3.339,462,2.232,486,4.275,495,1.991,563,2.497,578,3.122,591,0.239,607,3.255,625,1.934,700,4.467,754,1.697,755,2.947,811,1.047,817,3.59,823,3.003,860,2.424,983,6.342,989,4.833,990,1.401,1050,2.176,1091,2.984,1151,2.585,1168,2.007,1203,2.033,1303,1.022,1324,2.497,1335,1.244,1354,3.666,1441,2.942,1514,2.424,1635,4.002,1691,3.327,1741,4.264,1798,2.322,1927,3.442,2188,2.228,2247,4.917,2279,5.636,2645,1.736,2966,3.79,2968,2.232,3010,2.036,3012,4.434,3028,0.679,3052,5.263,3168,5.224,3229,2.616,3338,4.671,3347,3.88,3365,2.701,3378,2.616,3724,4.138,3728,4.292,3740,2.75,3814,5.224,3875,5.636,3906,4.138,4248,5.636,4249,5.636,4250,5.224,4251,6.261,4252,9.707,4253,6.261,4254,8.891,4255,6.261,4256,6.261]],["description//tracks/algorithms-101/leetcode/easy/643",[226,0.485,583,1.645,990,0.597,1091,1.484,1741,1.919,2983,2.557,3012,1.995,3028,0.434,3053,3.338]],["title//tracks/algorithms-101/leetcode/easy/26",[98,2.738,565,1.484,1050,1.048,2358,1.634,2596,2.578]],["content//tracks/algorithms-101/leetcode/easy/26",[35,2.364,39,2.43,69,3.085,70,2.068,75,1.484,89,2.332,98,5.295,137,1.015,157,1.756,159,2.575,185,3.029,224,2.27,226,0.794,278,1.736,289,1.861,316,3.648,353,3.806,369,1.736,381,1.117,382,2.609,407,1.756,410,3.482,414,2.59,565,2.869,591,0.257,754,1.776,779,3.739,811,1.242,820,2.976,885,5.295,990,0.978,1024,2.43,1050,2.46,1114,1.815,1158,2.654,1203,3.195,1258,3.268,1286,3.204,1316,2.828,1335,1.302,1417,3.945,1441,3.029,1464,3.648,1728,5.147,1838,3.143,1896,4.889,2221,5.147,2294,4.611,2358,2.501,2645,2.297,2725,3.739,2808,5.469,2968,1.818,3010,2.299,3028,0.711,3052,5.296,3205,4.611,3229,4.199,3347,5.133,3390,3.728,3497,4.675,3542,3.838,3805,5.147,3806,6.505,3880,4.675,4257,6.554,4258,6.554,4259,8.284,4260,6.554,4261,6.554,4262,5.9,4263,6.554]],["description//tracks/algorithms-101/leetcode/easy/26",[98,3.116,565,1.689,1050,1.193,2358,1.86,2596,2.934,3028,0.529]],["title//tracks/algorithms-101/leetcode/easy/234",[1,0.946,1462,1.719,2985,2.652,4264,4.289]],["content//tracks/algorithms-101/leetcode/easy/234",[1,2.086,11,1.453,16,0.407,30,2.077,54,1.331,60,0.798,62,1.037,64,1.605,65,1.387,66,1.93,70,1.896,76,3.455,108,2.674,121,1.741,132,1.997,137,0.922,154,1.465,157,1.24,159,1.819,165,1.654,207,1.522,210,1.576,215,5.342,226,1.06,232,1.257,245,2.913,256,1.93,340,2.179,353,2.616,365,1.903,381,1.118,382,1.33,390,3.8,429,0.747,455,1.33,458,3.503,462,1.284,473,1.874,480,1.819,495,1.145,591,0.259,625,1.429,626,2.711,635,3.841,762,2.459,811,1.138,820,3.459,829,2.138,989,2.516,990,1.237,991,3.059,1050,1.864,1151,2.544,1174,4.336,1178,2.697,1230,2.139,1303,0.755,1327,3.975,1335,0.919,1353,3.271,1454,2.71,1462,3.551,1528,2.356,1585,6.102,1601,5.631,1624,4.448,1642,4.347,1654,2.641,1665,3.855,1751,3.4,1960,3.418,1981,2.656,2282,2.139,2473,1.083,2608,3.039,2982,3.485,2985,4.241,2986,4.409,3010,1.171,3028,0.502,3190,7.625,3198,3.453,3215,3.635,3413,6.701,3499,2.868,3541,4.241,3542,2.71,3740,1.582,3764,5.469,3771,6.528,3800,3.453,3801,3.635,3808,3.862,3925,4.167,3926,4.167,3927,4.167,3976,8.068,3978,4.167,4265,4.629,4266,9.547,4267,4.629,4268,4.629,4269,4.629,4270,4.629,4271,4.629]],["description//tracks/algorithms-101/leetcode/easy/234",[1,1.133,1462,2.058,2985,3.176,4264,5.136]],["title//tracks/algorithms-101/leetcode/easy/2215",[11,0.949,232,0.707,307,1.202,1050,1.048,3063,3.574]],["content//tracks/algorithms-101/leetcode/easy/2215",[1,2.06,11,1.985,16,0.559,51,2.162,54,0.888,65,1.159,66,1.873,69,2.996,70,1.942,76,3.188,128,1.426,171,1.648,207,2.093,210,1.546,214,2.394,226,0.985,232,1.478,247,1.807,278,1.686,295,3.52,307,2.514,327,3.195,345,3.058,381,1.386,382,2.336,414,1.99,433,2.066,462,2.485,524,2.84,530,4.28,557,2.746,576,2.296,591,0.231,625,1.966,641,2.464,696,2.743,734,1.99,811,1.269,817,4.213,823,3.053,984,5.198,990,1.337,1024,2.36,1050,2.513,1114,1.395,1190,3.195,1203,3.167,1231,4.069,1239,2.89,1303,1.039,1335,1.264,1514,2.464,1564,3.727,1663,4.069,1691,4.32,1832,4.055,1960,3.058,2626,5.039,2645,1.765,2877,5.311,2968,2.619,3010,1.611,3028,0.691,3378,2.659,3542,3.727,3740,2.78,4216,8.499,4217,8.782,4272,6.366,4273,6.366,4274,6.366,4275,6.366,4276,10.142,4277,10.142,4278,6.366,4279,6.366,4280,6.366,4281,8.132,4282,6.366,4283,8.132,4284,6.366]],["description//tracks/algorithms-101/leetcode/easy/2215",[11,1.165,232,0.867,307,1.475,1050,1.287,3063,4.387]],["title//tracks/algorithms-101/leetcode/easy/21",[1,0.851,232,0.707,566,2.136,2358,1.634,2576,2.508]],["content//tracks/algorithms-101/leetcode/easy/21",[1,2.061,30,1.93,54,0.85,60,1.513,61,4.796,64,2.148,70,2.013,71,2.443,137,0.589,154,1.93,161,2.769,174,1.714,226,0.739,232,1.588,286,1.509,408,3.779,495,1.509,512,2.769,566,4.633,591,0.257,601,3.705,652,3.24,756,3.67,788,5.612,811,1.252,861,1.641,929,1.606,990,0.91,1087,3.17,1114,1.733,1151,2.3,1160,2.981,1166,2.769,1303,1.571,1335,1.211,1462,3.167,1489,2.631,1490,3.394,1624,2.675,1635,3.898,1665,2.361,1777,3.67,1981,3.203,2131,4.03,2358,3.35,2473,1.851,2576,3.571,2645,2.194,3028,0.662,3128,3.779,3238,3.479,3239,4.789,3242,4.549,3243,3.779,3365,2.631,3753,9.341,3755,9.341,3762,8.079,3764,5.284,3788,7.903,3790,5.489,3795,5.489,3800,4.549,3801,6.895,3802,5.489,3803,4.789,3846,5.088,4240,5.489,4285,8.78,4286,8.78,4287,6.098,4288,6.098,4289,6.098,4290,9.291,4291,6.098,4292,6.098,4293,7.91,4294,7.91,4295,7.91,4296,6.098,4297,6.098]],["description//tracks/algorithms-101/leetcode/easy/21",[1,0.968,232,0.804,566,2.431,2358,1.86,2576,2.855,3028,0.529]],["title//tracks/algorithms-101/leetcode/easy/202",[429,0.866,4298,5.368,4299,4.216]],["content//tracks/algorithms-101/leetcode/easy/202",[5,2.413,16,0.714,30,2.258,41,2.315,43,1.909,48,1.321,51,1.546,54,0.728,60,0.9,65,1.479,120,1.573,128,1.169,132,2.252,137,0.992,154,2.258,160,2.252,161,2.37,174,1.131,188,1.653,203,2.329,210,1.545,214,1.963,223,1.5,226,1.058,232,1.34,247,1.482,252,3.557,256,1.536,278,1.889,285,2.774,289,1.482,307,1.465,330,3.238,345,2.683,369,1.889,381,0.89,429,1.733,450,1.857,455,2.626,462,1.448,495,1.292,576,1.883,591,0.247,625,1.612,626,2.538,734,1.988,777,2.802,811,1.228,820,2.37,829,2.001,860,2.021,888,2.503,990,1.303,1010,1.963,1048,2.713,1065,4.354,1078,1.808,1114,1.563,1151,2.362,1190,2.802,1223,3.337,1297,3.29,1303,1.164,1316,2.252,1324,2.082,1335,1.037,1379,7.115,1411,4.099,1422,2.837,1456,3.877,1489,3.077,1514,2.021,1540,3.45,1582,7.179,1585,6.51,1601,6.53,1695,1.963,1724,2.905,1751,4.211,1798,1.936,1813,5.021,1832,2.603,1869,2.979,1887,3.331,1927,2.021,1952,3.337,1960,1.963,1981,3.29,2096,3.789,2140,3.45,2188,2.891,2217,5.771,2262,3.724,2314,4.699,2337,6.061,2539,4.099,2608,2.844,2655,4.699,2811,4.699,2966,3.601,2968,1.448,3010,2.524,3028,0.566,3229,2.979,3302,5.088,3378,2.181,3653,4.356,3740,2.438,3874,3.895,4090,6.82,4224,7.313,4299,7.722,4300,5.22,4301,5.22,4302,5.22,4303,7.133,4304,7.133,4305,7.133,4306,5.22,4307,5.22,4308,5.22,4309,8.124,4310,5.22,4311,5.22,4312,5.22]],["description//tracks/algorithms-101/leetcode/easy/202",[16,0.428,429,0.787,926,2.481,1238,1.234,1324,1.944,4299,3.828]],["title//tracks/algorithms-101/leetcode/easy/20",[532,2.677,2575,2.79,2971,3.432]],["content//tracks/algorithms-101/leetcode/easy/20",[54,0.873,70,1.357,71,2.485,137,0.859,226,1.077,239,1.883,255,3.187,341,1.842,410,3.327,414,1.958,478,1.584,528,2.249,532,4.012,534,2.206,565,2.787,591,0.261,626,2.863,754,2.18,811,1.221,860,3.633,861,1.669,924,3.747,929,1.633,990,0.935,1087,3.255,1166,2.843,1190,3.493,1249,4.292,1303,1.313,1311,3.911,1324,2.497,1335,1.244,1343,2.497,1447,4.756,1612,5.902,1624,3.901,1715,4.467,1981,2.535,2473,1.883,2608,3.209,2645,2.602,2840,6.319,3028,0.679,3365,2.701,3432,3.403,3499,4.986,3545,3.787,3710,6.343,3745,6.319,4091,8.806,4313,8.046,4314,8.891,4315,8.891,4316,8.046,4317,6.261,4318,6.261,4319,6.261,4320,6.261]],["description//tracks/algorithms-101/leetcode/easy/20",[226,0.637,532,2.622,2575,2.733,2971,3.361,3028,0.571]],["title//tracks/algorithms-101/leetcode/easy/191",[137,0.46,429,0.769,2743,2.532,4321,4.289]],["content//tracks/algorithms-101/leetcode/easy/191",[16,0.706,33,2.449,43,1.867,54,1.12,60,0.88,62,1.144,64,1.249,66,1.502,75,1.591,137,1.052,154,1.616,165,0.93,171,2.6,175,1.616,187,3.031,226,1.164,245,2.018,286,2.14,327,2.006,330,4.118,382,2.018,401,3.082,429,1.744,441,1.769,445,2.948,450,2.857,455,2.485,474,2.546,495,1.263,528,1.591,530,2.24,534,1.4,580,2.24,591,0.251,625,1.577,696,1.723,734,1.249,777,2.006,785,2.842,811,1.125,829,1.971,888,3.852,929,1.036,990,1.291,1000,4.834,1114,2.257,1143,2.99,1151,1.484,1178,3.855,1202,2.546,1238,1.778,1303,0.833,1327,2.449,1335,1.014,1360,2.278,1362,5.048,1374,3.643,1440,2.167,1448,2.775,1489,2.203,1539,5.623,1660,2.318,1673,3.307,1700,3.252,1798,1.894,1869,2.133,1887,1.948,1960,1.921,1981,2.845,2076,2.449,2145,5.241,2188,3.078,2235,3.375,2282,2.36,2473,1.195,2486,4.564,2743,5.694,2968,1.416,3010,2.623,3028,0.554,3058,3.375,3230,5.888,3370,6.307,3390,2.605,3724,6.196,3740,2.401,4105,4.596,4322,5.798,4323,3.073,4324,5.106,4325,5.106,4326,7.025,4327,6.324,4328,7.025,4329,4.261]],["description//tracks/algorithms-101/leetcode/easy/191",[16,0.298,137,0.328,171,0.878,207,1.115,429,0.547,583,1.395,990,0.506,1238,0.859,2743,1.803,3028,0.368,4321,3.054,4322,2.169]],["title//tracks/algorithms-101/leetcode/easy/190",[2743,2.852,2986,2.437,4330,4.832]],["content//tracks/algorithms-101/leetcode/easy/190",[16,0.43,29,1.951,30,1.549,43,2.494,48,1.238,54,0.951,60,1.353,64,1.197,65,1.429,70,1.478,75,1.108,76,1.741,92,2.723,115,2.895,120,1.474,137,0.972,145,2.723,146,1.765,159,1.922,161,3.565,171,2.457,174,1.478,210,1.699,221,1.672,222,2.49,224,2.362,226,1.121,229,2.012,232,1.125,239,1.838,245,1.405,277,2.945,283,1.672,314,2.261,330,3.565,340,3.21,341,1.439,345,1.84,353,2.72,369,1.296,378,2.077,381,1.523,382,3.09,396,1.789,400,3.493,401,2.992,404,2.146,429,1.639,431,1.672,445,2.56,450,1.741,455,1.959,458,1.741,462,1.891,473,1.981,512,2.221,528,1.544,530,2.992,583,2.805,591,0.244,696,1.651,727,1.922,811,0.887,823,2.346,829,2.203,860,3.458,887,1.814,888,3.271,929,0.993,934,1.789,990,1.172,1000,4.105,1087,2.543,1114,1.957,1151,1.983,1158,1.981,1168,2.863,1169,2.303,1287,2.077,1303,0.798,1327,2.346,1396,2.723,1425,3.65,1440,2.077,1448,2.659,1539,5.669,1639,3.234,1648,2.543,1691,2.599,1722,2.261,1776,2.865,1798,1.814,1813,2.543,1838,2.346,1960,2.953,1981,1.981,2004,3.234,2007,3.842,2067,3.842,2076,2.346,2145,5.858,2230,3.842,2269,2.146,2282,3.152,2473,1.145,2486,4.127,2645,2.177,2743,5.705,2968,2.565,2986,3.856,2997,2.723,3010,2.634,3015,5.614,3028,0.531,3106,6.166,3180,3.49,3182,4.082,3302,3.49,3390,2.529,3451,6.139,3598,2.791,3700,4.082,3724,4.508,3740,2.331,3815,2.945,3874,3.65,4322,4.36,4327,7.068,4331,4.893,4332,4.893,4333,4.893,4334,4.893,4335,4.893,4336,7.852,4337,8.494,4338,8.494,4339,10.299,4340,4.893,4341,6.82,4342,4.893]],["description//tracks/algorithms-101/leetcode/easy/190",[2743,3.314,2986,2.832,4330,5.615]],["title//tracks/algorithms-101/leetcode/easy/171",[429,0.691,1517,2.18,2717,3.196,3174,2.508,4343,3.856]],["content//tracks/algorithms-101/leetcode/easy/171",[7,0.997,16,0.561,48,1.616,54,1.136,60,1.101,61,2.951,70,1.384,91,3.005,137,1.01,146,1.653,172,2.241,211,2.645,226,1.145,246,2.801,287,2.71,298,3.739,381,1.089,382,1.834,401,2.801,410,3.392,429,1.525,433,3.068,495,1.58,528,1.446,530,3.574,591,0.258,597,2.401,772,4.063,811,1.167,859,4.081,862,3.843,873,2.546,887,2.368,929,1.654,990,1.216,1114,1.785,1151,1.856,1303,1.329,1311,3.929,1340,5.747,1345,4.913,1440,2.71,1441,2.979,1489,2.755,1517,4.567,1720,5.385,1899,4.763,2096,3.392,2188,2.272,2214,5.208,2473,1.907,2596,6.108,2717,4.763,3028,0.693,3155,7.334,3174,3.739,3390,3.021,3545,3.835,3606,8.989,3724,4.22,3981,5.014,4147,4.555,4344,6.385,4345,6.398,4346,10.149,4347,8.509,4348,6.385,4349,8.148,4350,6.385,4351,8.148,4352,6.385,4353,6.385,4354,6.385,4355,6.385,4356,6.385,4357,6.385,4358,6.385,4359,8.148,4360,6.385]],["description//tracks/algorithms-101/leetcode/easy/171",[429,0.848,1517,2.676,2717,3.923,3174,3.079,4343,4.733]],["title//tracks/algorithms-101/leetcode/easy/160",[1,0.851,232,0.707,1462,1.545,3296,2.936,4361,4.283]],["content//tracks/algorithms-101/leetcode/easy/160",[1,2.119,16,0.497,30,3.059,51,1.633,54,1.051,60,1.46,61,2.617,65,1.031,125,1.552,137,0.547,149,3.613,154,2.857,159,2.225,165,1.031,210,1.077,214,2.13,226,1.139,232,1.594,252,4.819,309,2.404,381,1.648,387,2.542,408,3.509,429,1.216,431,1.936,458,3.013,495,2.095,508,2.681,520,2.716,591,0.247,652,3.009,696,3.171,754,2.295,777,3.693,811,1.174,829,1.589,872,3.009,888,2.716,889,3.231,990,0.845,1022,3.881,1034,3.835,1095,3.743,1151,2.462,1239,2.571,1303,1.382,1411,4.447,1441,3.097,1462,3.39,1489,3.251,1504,4.225,1528,4.783,1624,3.96,1665,3.926,1722,2.617,1751,4.691,1832,2.824,1869,3.147,1981,3.655,2293,5.164,2473,1.982,2982,4.796,3010,1.907,3028,0.614,3238,3.231,3242,4.225,3296,7.021,3413,6.622,3764,3.408,3771,5.621,3800,4.225,3801,7.381,3803,4.447,4011,5.098,4362,7.535,4363,9.399,4364,9.399,4365,5.663,4366,9.665,4367,9.399,4368,5.663,4369,5.663,4370,4.725,4371,5.663,4372,5.663,4373,5.098]],["description//tracks/algorithms-101/leetcode/easy/160",[1,0.968,11,1.08,232,0.804,1462,1.758,3296,3.341,3800,3.637]],["title//tracks/algorithms-101/leetcode/easy/1431",[429,0.691,3032,2.831,3034,3.856,3035,3.364,3036,2.738]],["content//tracks/algorithms-101/leetcode/easy/1431",[1,1.907,7,0.944,11,2.051,16,0.813,38,2.448,48,2.213,65,1.592,70,1.31,90,2.586,174,1.895,182,2.211,204,2.955,207,1.988,210,1.496,214,2.958,221,2.689,226,1.192,232,0.997,239,2.167,277,3.639,278,1.601,327,3.772,337,3.996,340,2.845,345,3.288,381,1.341,382,2.512,385,2.274,407,1.619,425,2.151,429,1.617,439,2.955,462,2.568,524,3.51,580,2.652,583,2.486,591,0.219,598,3.212,625,1.867,626,2.799,642,2.525,734,1.925,772,3.015,795,2.845,811,0.786,861,1.632,873,3.137,884,5.199,885,6.137,890,4.089,990,1.496,994,3.864,1050,2.349,1091,3.56,1115,3.746,1169,2.845,1177,3.015,1190,2.375,1231,5.028,1238,1.991,1303,0.986,1328,3.077,1335,1.562,1353,3.922,1360,2.698,1887,3.001,1960,3.288,1981,3.185,2188,2.799,2282,2.794,2473,1.415,2608,3.137,2871,4.488,3028,0.656,3032,5.199,3035,8.066,3036,6.923,3350,3.015,3390,2.242,3540,4.144,3541,3.365,3740,2.989,4370,5.044,4374,6.045,4375,6.045,4376,7.866,4377,6.045,4378,7.866,4379,6.045,4380,6.045,4381,6.045]],["description//tracks/algorithms-101/leetcode/easy/1431",[11,1.08,429,0.787,994,3.116,3032,3.222,3035,3.828,3036,3.116]],["title//tracks/algorithms-101/leetcode/easy/141",[1,0.946,1379,3.399,1462,1.719,4382,4.289]],["content//tracks/algorithms-101/leetcode/easy/141",[51,1.777,226,0.994,591,0.244,626,2.918,811,1.234,990,1.224,1303,1.338,2217,6.272,2473,1.92,2608,3.271,3028,0.89,3413,6.618,3499,5.082,3762,6.441,3764,5.711,3771,7.079,4383,8.202,4384,8.202]],["description//tracks/algorithms-101/leetcode/easy/141",[1,1.133,1379,4.071,1462,2.058,4382,5.136]],["title//tracks/algorithms-101/leetcode/easy/14",[999,2.329,1124,2.376,1521,2.79,2970,2.477]],["content//tracks/algorithms-101/leetcode/easy/14",[11,1.647,39,2.757,48,1.881,49,2.062,54,1.037,70,1.611,71,2.765,137,0.865,226,0.901,420,3.317,528,2.258,591,0.255,601,3.977,671,1.799,811,1.297,929,1.818,990,1.11,999,4.697,1050,1.819,1166,3.375,1287,3.155,1303,1.213,1521,5.627,2473,1.74,2645,2.665,2970,3.864,3028,0.807,3365,3.207,3428,5.783,3429,4.867,3545,4.804,3588,6.203,4385,7.434,4386,7.434,4387,7.434,4388,7.434,4389,7.434,4390,7.434,4391,7.434,4392,7.434,4393,7.434,4394,8.954,4395,7.434]],["description//tracks/algorithms-101/leetcode/easy/14",[999,2.57,1124,2.622,1521,3.079,2970,2.733,3028,0.571]],["title//tracks/algorithms-101/leetcode/easy/13",[1675,2.732,2967,3.68,2968,1.489]],["content//tracks/algorithms-101/leetcode/easy/13",[12,4.227,16,0.54,34,6.535,39,2.281,41,3.026,49,2.206,54,1.109,60,1.371,64,1.505,70,1.333,71,2.457,108,2.059,137,0.769,156,2.103,165,1.448,174,2.02,191,5.463,221,2.103,226,0.745,232,1.015,245,2.285,307,1.726,353,3.516,387,3.257,412,2.417,429,1.423,445,1.854,450,2.83,474,3.067,530,2.699,591,0.255,671,1.488,754,1.667,792,4.388,811,0.8,862,3.702,929,1.79,990,0.918,1114,1.743,1116,2.895,1136,3.268,1166,2.793,1168,1.972,1239,4.232,1254,5.307,1293,3.51,1303,1.004,1311,3.413,1335,1.222,1377,4.383,1423,4.427,1424,5.03,1440,2.611,1742,5.453,1765,6.247,1838,2.95,2131,4.066,2249,5.675,2278,6.29,2451,5.537,2473,1.44,2645,2.206,2918,6.161,2967,6.389,2968,1.706,3010,2.502,3028,0.667,3056,6.638,3097,4.388,3127,4.216,3128,3.812,3221,6.638,3390,2.281,3428,5.307,3545,2.895,3654,5.537,3728,5.453,3838,7.58,3959,4.589,3976,6.924,4396,6.151,4397,6.151,4398,6.151,4399,6.151,4400,6.151,4401,7.955,4402,5.537,4403,6.151,4404,6.151,4405,6.151,4406,6.151,4407,6.151,4408,6.151,4409,6.151,4410,6.151,4411,8.817,4412,6.151,4413,6.151,4414,6.151,4415,6.151,4416,6.151,4417,6.151]],["description//tracks/algorithms-101/leetcode/easy/13",[226,0.637,1675,2.676,2967,3.604,2968,1.458,3028,0.571]],["title//tracks/algorithms-101/leetcode/easy/1207",[429,0.769,1024,1.767,2996,2.953,3064,3.976]],["content//tracks/algorithms-101/leetcode/easy/1207",[7,1.453,16,0.697,48,1.55,51,2.208,54,1.106,64,2.416,65,1.115,90,2.014,137,0.766,165,1.444,207,2.014,210,1.165,214,2.304,226,0.961,256,2.588,327,2.406,345,2.983,381,1.587,429,0.988,431,2.093,462,2.44,524,2.733,530,4.333,557,4.015,591,0.228,597,2.983,625,1.891,626,3.311,655,3.625,811,1.325,817,4.594,823,2.937,990,1.313,1024,2.271,1050,2.46,1190,2.406,1203,1.988,1231,3.915,1303,0.999,1327,4.623,1335,1.216,1353,4.64,1441,2.24,1514,2.371,1700,3.999,1847,5.071,1960,2.304,2188,3.13,2294,3.409,2473,2.059,2608,3.711,2645,2.673,2968,2.581,2996,4.915,3010,1.55,3028,0.665,3230,6.295,3378,2.558,3540,4.198,3740,2.711,3847,7.069,4418,7.933,4419,6.125,4420,6.125,4421,7.933,4422,7.933,4423,6.125,4424,6.125,4425,6.125,4426,6.125,4427,6.125]],["description//tracks/algorithms-101/leetcode/easy/1207",[429,0.921,1024,2.116,2996,3.536,3064,4.761]],["title//tracks/algorithms-101/leetcode/easy/1",[137,0.519,232,0.886,2966,2.048]],["content//tracks/algorithms-101/leetcode/easy/1",[1,1.139,11,1.683,16,0.829,60,0.988,64,2.084,65,1.044,75,1.298,118,4.923,128,1.284,207,1.885,210,1.62,214,2.857,223,2.447,226,1.175,232,1.496,239,2.209,247,1.627,255,3.866,256,2.506,278,1.518,295,3.347,307,2.819,341,2.506,345,2.857,381,1.547,395,5.454,396,2.096,407,1.536,414,1.792,429,1.713,431,2.596,433,2.466,441,1.985,462,2.363,511,2.395,534,1.571,535,2.858,576,2.067,591,0.229,597,2.156,625,1.77,643,3.046,734,2.219,754,1.553,811,1.228,829,1.608,861,2.052,990,1.408,1015,3.277,1024,2.126,1050,2.421,1094,4.855,1095,3.789,1143,3.357,1203,2.466,1228,7.037,1238,1.922,1285,3.664,1287,2.433,1303,0.935,1335,1.139,1441,2.096,1514,2.219,1583,3.929,1695,3.721,1722,3.511,1741,2.749,1927,2.941,1960,3.204,1981,2.321,2096,4.526,2188,2.039,2282,2.649,2337,6.767,2645,2.516,2871,3.27,2966,2.187,2968,2.107,3010,1.451,3028,0.622,3217,4.501,3229,3.559,3233,5.667,3293,5.021,3302,6.078,3350,3.788,3378,2.395,3390,2.126,3510,4.783,3540,3.929,3541,3.19,3542,3.357,3740,2.596,3847,3.789,4323,5.459,4428,5.732,4429,5.732,4430,5.732]],["description//tracks/algorithms-101/leetcode/easy/1",[137,0.551,232,0.941,2966,2.177,3028,0.619]],["title//tracks/algorithms-101/leetcode/easy/9/",[412,2.109,429,0.866,2985,2.988]],["content//tracks/algorithms-101/leetcode/easy/9/",[16,0.578,54,0.918,65,1.657,66,2.444,70,1.427,120,1.984,125,2.278,137,0.636,156,2.251,165,1.199,171,1.704,187,2.841,207,2.165,221,2.251,226,1.103,239,1.541,245,1.892,269,4.266,289,1.869,387,2.803,429,1.734,434,2.99,450,3.239,462,1.826,528,2.061,530,3.993,565,2.281,591,0.249,625,2.033,696,2.221,734,1.611,754,1.784,811,0.857,829,1.848,860,3.524,861,1.724,990,1.24,1034,4.229,1078,2.878,1190,3.576,1303,1.074,1324,3.313,1327,4.365,1514,2.549,1539,4.865,1630,5.927,1813,5.232,1832,3.283,1838,3.158,2024,5.001,2143,4.697,2188,2.343,2294,3.665,2478,4.209,2660,4.352,2968,2.304,2985,5.486,2986,4.694,3028,0.714,3180,4.697,3378,2.751,3390,2.442,3452,4.912,3453,5.927,3499,4.08,3598,4.74,3640,4.912,3739,4.697,3740,2.251,3906,4.352,4323,3.963,4431,6.585,4432,5.927,4433,6.585,4434,9.56,4435,9.103,4436,6.585,4437,6.585]],["description//tracks/algorithms-101/leetcode/easy/9/",[429,0.787,583,2.005,870,1.4,1324,1.944,2985,2.713,4438,4.388]],["title//tracks/algorithms-101/leetcode/easy/605/",[353,2.141,3037,4.479,3038,4.216]],["content//tracks/algorithms-101/leetcode/easy/605/",[16,0.582,48,2.31,62,1.484,65,1.206,137,0.882,146,1.715,187,2.859,207,2.742,224,2.889,226,1.011,232,1.093,234,3.444,286,1.64,341,2.454,381,1.422,455,1.904,462,2.313,591,0.239,626,2.357,734,2.234,777,2.603,811,1.188,829,1.859,861,1.73,888,3.178,895,5.965,990,1.43,1010,2.492,1050,1.621,1078,2.295,1114,2.242,1151,1.926,1230,3.062,1287,4.344,1303,1.361,1324,2.642,1335,1.316,1353,4.159,1392,2.957,1440,3.875,1960,3.137,2188,2.357,2356,5.657,2608,2.642,2793,5.203,2891,4.727,2968,1.838,2988,3.062,3010,2.619,3028,0.719,3037,5.529,3038,8.036,3740,2.265,4010,5.529,4054,6.55,4439,9.318,4440,8.945,4441,8.889,4442,9.129,4443,8.342,4444,6.626,4445,6.626,4446,6.626,4447,9.129]],["description//tracks/algorithms-101/leetcode/easy/605/",[234,1.531,281,1.25,429,0.475,894,1.639,990,0.44,1078,1.02,1324,1.174,1709,2.197,1832,1.469,2793,2.313,3038,3.666,4054,2.313,4439,2.651,4441,2.651]],["title//tracks/algorithms-101/leetcode/easy/392/",[3046,3.599,3050,5.129]],["content//tracks/algorithms-101/leetcode/easy/392/",[8,2.448,11,1.381,16,0.705,30,1.973,42,2.781,60,1.075,62,1.396,65,1.135,129,2.989,137,0.775,154,3.141,226,0.972,232,1.637,330,2.83,341,2.61,365,2.563,414,1.949,458,2.855,462,2.225,495,1.985,509,2.881,511,2.604,528,2.195,565,2.159,583,2.563,591,0.242,625,1.925,626,2.855,696,2.707,727,2.449,734,1.525,811,1.219,823,2.989,829,2.49,861,1.664,984,3.984,989,3.388,990,1.398,1078,2.159,1114,1.944,1151,2.332,1303,1.017,1311,4.148,1324,3.2,1335,1.238,1343,4.154,1362,3.469,1441,3.245,1489,3.462,1514,2.413,1528,3.172,1642,5.345,1751,4.563,1981,2.524,2188,3.157,2419,5.693,2495,4.65,2608,2.486,2740,5.201,2982,3.312,3028,0.676,3046,5.81,3050,5.201,3112,5.611,3186,4.948,3367,4.65,3378,2.604,3556,5.611,3705,5.303,3740,2.742,3815,3.752,3982,5.201,3985,7.222,4448,6.234,4449,8.023,4450,6.234]],["description//tracks/algorithms-101/leetcode/easy/392/",[35,1.758,60,0.84,528,1.104,1697,3.021,1832,2.431,3046,2.855]],["title//tracks/algorithms-101/leetcode/easy/345/",[528,1.079,2986,2.163,3039,3.976,3040,3.266]],["content//tracks/algorithms-101/leetcode/easy/345/",[1,1.294,11,1.443,16,0.572,30,3.014,56,2.485,60,1.123,65,1.186,90,2.141,137,0.629,154,2.062,159,2.559,207,2.713,210,1.239,226,1.097,232,1.621,239,1.931,277,3.92,278,2.185,345,3.103,382,2.602,387,3.315,396,2.382,445,2.487,462,2.512,474,3.248,495,2.241,528,2.39,530,2.857,565,2.256,591,0.25,601,3.797,625,2.011,671,1.576,696,2.197,721,4.036,734,1.594,756,3.92,811,1.073,829,2.541,861,1.712,989,3.54,990,1.421,1114,1.808,1131,4.647,1151,1.893,1168,3.052,1238,1.648,1258,3.248,1287,2.765,1311,3.686,1335,1.639,1343,3.797,1514,2.521,1657,4.464,1701,4.464,1736,4.647,1751,4.384,2982,4.384,2986,2.957,3028,0.707,3040,7.191,3267,4.859,3378,2.721,3545,3.884,3705,4.305,3740,2.82,3743,3.716,4000,5.863,4451,6.513,4452,6.513,4453,6.513,4454,6.513,4455,6.513,4456,6.513,4457,6.513,4458,6.513,4459,6.513,4460,6.513,4461,6.513]],["description//tracks/algorithms-101/leetcode/easy/345/",[528,1.292,2986,2.591,3039,4.761,3040,3.911]],["title//tracks/algorithms-101/leetcode/easy/2839/",[171,1.007,512,1.766,528,0.881,734,0.952,2188,1.384,4462,3.502]],["content//tracks/algorithms-101/leetcode/easy/2839/",[11,1.515,54,0.954,65,1.246,96,3.281,108,1.771,174,1.483,182,3.112,226,1.174,229,2.813,232,1.404,309,2.904,345,2.573,381,1.167,394,2.909,429,1.104,441,2.37,462,2.36,486,3.635,528,2.333,591,0.248,625,2.113,632,4.619,655,2.468,694,3.482,696,3.27,756,5.575,811,0.89,823,3.281,894,3.808,990,1.383,1015,2.952,1190,2.688,1193,2.813,1303,1.116,1327,4.081,1335,1.359,1343,4.11,1344,4.881,1345,3.556,1354,4.006,1441,2.502,1514,2.649,1695,3.645,1798,2.537,2188,2.434,2282,3.162,2358,3.804,2473,1.601,2742,5.709,3005,4.522,3028,0.742,3080,6.349,3186,3.412,3378,2.858,3499,4.239,3545,4.006,3740,2.909,3743,3.903,3815,4.118,3981,5.373,4124,7.611,4125,8.087,4127,7.661,4128,6.159,4129,7.661,4130,6.159,4131,7.661,4132,6.159,4133,7.661,4134,6.159,4463,6.842]],["description//tracks/algorithms-101/leetcode/easy/2839/",[171,1.262,512,2.213,528,1.104,734,1.193,2188,1.734,4462,4.388]],["title//tracks/algorithms-101/leetcode/easy/283/",[154,1.699,2269,2.355,3049,4.479]],["content//tracks/algorithms-101/leetcode/easy/283/",[1,1.994,7,1.235,30,2.779,51,1.903,60,1.051,65,1.44,70,1.903,76,2.17,90,2.601,97,3.571,137,0.848,146,2.405,154,1.93,171,1.578,174,1.321,178,1.691,207,2.005,215,4.936,224,2.112,226,1.217,232,1.006,239,1.427,291,3.394,298,3.571,327,3.449,341,1.794,353,3.705,381,1.04,385,2.293,387,2.962,413,2.721,414,2.473,429,1.276,431,2.084,462,2.194,474,3.041,509,2.818,563,2.432,591,0.247,607,4.112,625,1.883,754,1.652,762,3.24,772,4.8,777,2.396,778,3.898,829,1.711,887,2.261,888,2.924,990,1.437,1034,3.103,1050,2.273,1078,2.112,1114,2.036,1151,1.773,1158,4.122,1178,2.508,1203,3.393,1238,1.543,1279,2.432,1303,0.995,1362,4.887,1514,2.361,1528,3.103,1624,2.675,1700,3.203,1751,2.721,1798,3.57,1952,3.898,1960,3.494,2076,2.924,2141,3.479,2269,4.716,2473,1.427,2725,4.513,2968,1.691,3028,0.662,3205,3.394,3229,4.021,3347,5.757,3350,3.041,3367,4.549,3378,2.547,3740,2.704,4464,6.098,4465,6.098,4466,6.098]],["description//tracks/algorithms-101/leetcode/easy/283/",[154,1.975,2269,2.736,3049,5.205]],["title//tracks/algorithms-101/leetcode/easy/1768/",[528,1.079,566,2.376,1055,2.163,3030,4.289]],["content//tracks/algorithms-101/leetcode/easy/1768/",[1,1.772,16,0.827,30,3.151,38,3.274,41,2.048,48,2.381,60,1.767,65,1.624,66,1.856,70,1.752,76,2.244,144,5.51,159,2.478,160,2.722,161,4.273,226,1.179,232,1.605,247,1.791,278,1.671,291,3.511,345,3.356,381,1.521,382,2.703,396,2.307,401,2.767,407,1.69,462,2.475,524,2.815,528,2.436,530,2.767,566,4.692,580,2.767,591,0.239,601,3.224,607,3.279,625,1.948,671,1.526,734,1.543,742,4.169,777,3.505,811,0.821,873,3.224,884,4.169,990,1.207,1015,2.722,1055,3.671,1169,2.969,1183,3.694,1203,2.048,1238,2.258,1303,1.029,1316,3.85,1343,3.753,1360,2.815,1362,3.511,1515,5.289,1528,3.21,1751,2.815,1755,7.39,1887,3.085,2282,3.737,2356,3.909,2366,4.954,2473,1.476,3028,0.684,3545,4.429,3740,2.764,3864,7.278,4467,6.308,4468,6.308,4469,6.308,4470,6.308,4471,8.085,4472,8.085,4473,6.308,4474,6.308,4475,6.308,4476,6.308,4477,6.308]],["description//tracks/algorithms-101/leetcode/easy/1768/",[528,1.412,566,3.11,1055,2.832]],["title//tracks/algorithms-101/leetcode/easy/1732/",[11,1.055,2431,3.046,3059,3.976,3060,3.742]],["content//tracks/algorithms-101/leetcode/easy/1732/",[11,1.236,16,0.49,51,1.209,54,0.778,65,1.016,69,2.627,75,1.264,90,1.835,96,2.676,108,2.323,120,1.682,125,2.46,137,1.002,165,1.358,187,3.219,203,2.49,210,1.061,213,2.627,214,3.161,221,2.55,226,1.019,232,0.921,245,2.905,256,2.195,286,2.08,295,2.931,307,1.566,341,2.473,381,1.272,385,2.099,390,2.129,393,3.032,396,2.041,413,3.329,458,3.692,462,2.331,474,2.783,495,1.381,563,3.352,591,0.252,625,2.304,696,1.883,811,1.167,820,3.388,829,1.566,861,1.158,887,2.069,929,1.133,990,1.396,1021,8.755,1030,3.033,1050,2.355,1091,2.767,1114,2.273,1143,4.369,1238,1.412,1303,0.91,1335,1.482,1417,3.359,1440,2.369,1441,2.041,1455,4.382,1514,2.16,1528,2.84,1695,2.806,1798,2.069,1838,2.676,1952,3.567,1960,2.806,1981,3.021,2076,2.676,2188,1.985,2253,3.981,2274,8.332,2431,5.736,2673,4.656,2966,3.424,2968,1.548,3010,2.127,3028,0.606,3060,8.366,3293,3.688,3378,2.331,3541,4.153,3542,3.268,3598,3.184,3740,2.55,3743,3.184,4478,8.406,4479,8.406,4480,8.974,4481,8.406,4482,9.624,4483,9.828,4484,5.58,4485,5.58]],["description//tracks/algorithms-101/leetcode/easy/1732/",[11,1.264,2431,3.647,3059,4.761,3060,4.481]],["title//tracks/algorithms-101/leetcode/easy/1071/",[528,0.97,999,2.094,3031,3.856,3032,2.831,3033,3.196]],["content//tracks/algorithms-101/leetcode/easy/1071/",[8,1.68,11,2.17,16,0.65,34,3.64,38,2.995,54,0.768,56,2.101,61,4.71,65,1.346,70,1.193,91,3.93,96,2.641,108,1.426,207,1.811,210,1.047,226,1.128,232,1.536,247,1.564,311,2.692,380,3.52,387,3.403,390,2.101,394,1.882,407,1.981,429,1.503,462,2.051,486,3.929,508,1.959,528,2.308,580,2.416,591,0.256,625,1.701,671,1.333,696,1.858,727,2.906,734,1.348,739,3.775,740,2.803,754,2.004,811,1.274,873,3.33,929,1.118,934,2.014,990,1.39,999,4.552,1078,1.907,1114,1.207,1169,2.592,1238,1.394,1285,3.52,1286,2.692,1287,3.139,1303,1.207,1316,2.376,1353,2.746,1360,2.457,1430,3.315,1441,3.405,1456,2.993,1515,2.926,1521,4.331,1660,2.5,1887,3.658,1927,2.132,2141,4.219,2188,3.411,2253,3.929,2258,4.325,2282,2.545,2473,1.289,2720,4.595,2984,4.082,2997,3.065,3028,0.598,3032,4.888,3033,6.947,3127,5.069,3128,3.413,3180,3.929,3182,4.595,3365,2.376,3545,3.93,3713,5.808,3740,2.528,3846,4.595,4432,4.957,4486,10.419,4487,10.669,4488,10.638,4489,4.957,4490,8.926,4491,5.507,4492,5.507,4493,5.507,4494,7.396,4495,5.507,4496,5.507,4497,5.507,4498,5.507,4499,5.507,4500,5.507]],["description//tracks/algorithms-101/leetcode/easy/1071/",[11,1.08,232,0.804,528,1.104,999,2.383,3032,3.222,3033,3.637]],["title//tracks/algorithms-101/data-structures/segment-tree",[998,4.586,2664,2.893]],["content//tracks/algorithms-101/data-structures/segment-tree",[7,0.563,8,1.1,9,1.376,11,1.75,16,0.816,25,1.874,38,1.46,41,1.17,48,1.861,51,1.429,53,1.318,54,1.395,60,0.941,62,1.223,64,2.229,66,1.607,69,2.571,70,0.781,81,1.916,108,1.904,114,1.438,121,1.356,128,1.476,137,1.013,146,1.414,157,0.966,165,1.809,171,2.442,174,0.781,175,2.328,207,1.796,210,1.254,223,1.569,227,1.53,232,0.901,245,1.036,247,2.088,256,2.164,269,2.437,279,1.46,283,2.514,286,1.82,287,4.005,289,1.024,293,1.53,305,3.198,309,1.53,311,2.67,327,2.146,333,3.61,345,2.054,353,1.438,365,1.483,369,1.948,381,1.553,385,1.356,390,1.376,393,3.403,396,2.689,400,3.88,407,2.117,412,1.416,420,1.609,429,1.275,433,2.699,442,2.057,444,1.874,445,1.646,455,1.569,478,0.912,495,1.631,509,1.666,513,1.835,527,5.312,576,2.85,591,0.256,598,1.916,622,2.057,652,1.916,671,0.872,702,1.763,719,1.609,755,1.697,785,4.093,795,2.571,811,0.957,823,1.729,824,2.69,846,2.572,860,2.114,861,0.748,882,3.008,883,2.17,929,1.109,990,0.815,998,7.715,1002,2.305,1012,1.249,1037,2.057,1050,2.448,1114,2.177,1168,1.751,1203,3.303,1278,2.057,1286,1.763,1293,3.761,1303,1.357,1335,1.461,1392,1.609,1421,2.057,1440,3.529,1462,1.3,1477,2.234,1490,3.669,1608,2.572,1665,3.702,1695,1.356,1700,1.46,1708,5.512,1710,2.572,1927,2.114,1981,1.46,2024,4.426,2065,2.305,2076,1.729,2165,4.916,2282,1.666,2422,2.831,2473,1.278,2486,2.942,2510,2.831,2582,5.246,2664,4.995,2697,3.008,2722,3.008,2966,3.863,2982,3.907,3010,2.305,3087,4.557,3128,2.234,3190,4.289,3218,3.245,3238,2.057,3296,2.471,3334,2.69,3428,5.004,3429,4.295,3541,2.007,3677,3.008,4147,2.572,4322,2.305,4501,3.245,4502,5.461,4503,2.831,4504,3.605,4505,3.605,4506,5.461,4507,3.605,4508,3.605,4509,2.69,4510,3.605,4511,3.605,4512,3.245,4513,3.605,4514,3.605,4515,3.605,4516,3.605,4517,3.605,4518,3.605,4519,3.605,4520,3.605,4521,3.605,4522,3.605,4523,5.461,4524,3.605,4525,3.605,4526,3.605,4527,3.605,4528,3.605,4529,3.605,4530,4.916,4531,6.136,4532,3.605,4533,5.461,4534,3.605,4535,3.008,4536,3.605,4537,3.605,4538,3.605,4539,3.605,4540,3.605,4541,3.605,4542,3.605,4543,3.605,4544,3.605,4545,3.605,4546,3.605,4547,3.605,4548,5.461,4549,3.605,4550,5.461,4551,3.605,4552,5.461,4553,3.605,4554,3.605,4555,3.605,4556,3.605]],["description//tracks/algorithms-101/data-structures/segment-tree",[]],["title//tracks/algorithms-101/data-structures/binary-tree",[2486,2.743,2664,2.893]],["content//tracks/algorithms-101/data-structures/binary-tree",[7,1.287,11,1.611,48,1.36,51,1.165,54,0.749,62,1.203,64,2.587,65,0.978,72,3.618,108,1.391,128,1.203,129,3.488,137,0.519,146,2.464,154,2.303,159,2.111,165,0.978,221,2.819,224,1.861,232,0.886,239,1.93,340,2.529,365,2.21,381,1.406,407,1.949,410,2.855,445,2.869,455,1.544,495,1.8,513,4.197,576,2.624,591,0.257,626,1.912,777,2.111,811,1.15,861,1.833,888,2.577,890,2.793,929,1.477,1000,3.234,1143,4.26,1168,3.051,1238,1.841,1303,1.507,1327,2.577,1346,3.147,1392,2.398,1440,3.5,1462,1.938,1553,2.921,1624,4.554,1665,4.131,1798,2.697,1950,3.147,2256,5.841,2356,3.33,2473,2.068,2486,4.527,2608,2.143,2664,4.886,3087,4.484,3238,4.15,3240,4.484,3241,4.484,3244,7.88,3245,8.197,3334,5.427,3432,3.954,3917,6.939,3956,8.373,4509,6.152,4557,6.791,4558,5.374,4559,5.374,4560,5.374,4561,4.484,4562,5.374,4563,5.374,4564,5.374,4565,5.374,4566,9.519,4567,8.247,4568,5.374,4569,5.374,4570,5.374,4571,5.374,4572,5.374,4573,5.374,4574,8.247,4575,7.274,4576,5.374,4577,7.274,4578,5.374]],["description//tracks/algorithms-101/data-structures/binary-tree",[2486,3.069,2664,3.238]],["title//tracks/algorithms-101/data-structures/_index",[128,1.377,576,2.217]],["content//tracks/algorithms-101/data-structures/_index",[57,2.175,60,1.14,64,2.039,66,1.946,128,1.866,129,3.173,137,0.954,188,2.094,387,3.078,433,2.705,519,4.936,576,3.006,591,0.258,601,3.638,811,1.284,861,1.372,925,3.982,981,3.682,1089,3.173,1114,2.098,1203,2.705,1303,1.644,1311,3.226,1343,2.638,1375,4.72,1540,4.373,1580,5.52,1665,2.561,1727,4.427,1887,2.524,2214,6.442,2269,2.902,2473,1.95,2486,2.952,2582,7.449,2664,4.646,2736,4.373,2743,3.515,2966,3.179,3010,2.109,3238,4.754,3243,4.099,3368,6.544,3428,5.015,3429,4.529,3705,4.373,3823,5.195,3956,5.52,3996,4.936,4531,5.52,4561,5.52,4579,5.955,4580,6.616,4581,6.616,4582,6.616,4583,8.62,4584,5.955,4585,5.955,4586,7.501,4587,5.955,4588,5.955,4589,5.52,4590,5.955,4591,5.955,4592,5.955,4593,5.955,4594,5.52,4595,7.501,4596,7.501,4597,5.955,4598,5.955,4599,6.616]],["description//tracks/algorithms-101/data-structures/_index",[]],["title//tracks/algorithms-101/codeforces/plan",[538,4.455]],["content//tracks/algorithms-101/codeforces/plan",[11,1.548,54,0.975,59,2.592,60,1.205,128,1.565,137,0.675,163,2.629,192,5.19,222,3.557,232,1.153,239,1.636,241,3.29,407,2.842,528,1.953,576,2.521,872,4.582,1012,2.421,1050,1.71,1297,2.83,1328,3.557,1398,4.331,1424,3.988,1742,4.791,1859,4.093,1887,3.568,1900,5.214,2024,5.629,2358,2.667,2466,3.633,2486,3.119,2966,2.667,2969,5.381,2988,4.871,3020,5.911,3036,4.468,3162,4.468,3455,5.911,3539,4.986,3738,5.214,4600,5.214,4601,5.214,4602,3.735,4603,5.214,4604,5.214,4605,4.986,4606,5.214,4607,5.214,4608,5.214,4609,5.214,4610,5.214,4611,5.214,4612,5.214,4613,5.214,4614,5.214,4615,5.832,4616,5.489,4617,5.489,4618,5.214,4619,5.214,4620,5.214,4621,5.214,4622,5.214,4623,5.214,4624,5.214,4625,5.214,4626,5.214,4627,6.292,4628,6.292,4629,6.292,4630,6.292,4631,5.489]],["description//tracks/algorithms-101/codeforces/plan",[226,0.756,3025,3.559,4632,2.736]],["title//tracks/algorithms-101/codeforces/cp-template",[59,1.991,1238,1.358,3025,3.063]],["content//tracks/algorithms-101/codeforces/cp-template",[41,1.731,59,2.684,62,1.194,64,2.155,66,2.129,70,1.156,76,1.897,108,1.38,115,3.072,125,2.252,128,1.194,137,1.017,157,1.429,171,1.38,207,2.896,210,1.376,211,1.731,226,0.877,239,1.248,256,1.569,283,1.823,287,2.264,295,2.095,314,3.345,412,2.095,433,1.731,434,4,528,1.639,533,1.588,557,3.122,576,1.923,591,0.26,597,3.987,601,2.127,652,3.845,746,2.772,811,1.303,885,3.409,899,4.356,981,4.028,1050,1.305,1114,1.8,1233,3.042,1303,1.692,1311,2.801,1346,3.123,1430,3.21,1498,4.188,1648,2.772,1665,3.677,1695,2.006,1876,3.804,1927,2.801,2269,2.339,2292,4.96,2468,6.514,2473,1.248,2645,2.443,2664,2.51,2755,6.514,2966,3.514,2968,2.007,2969,3.762,3010,2.331,3213,4.8,3230,4.356,3263,6.514,3343,3.655,3357,4.028,3428,5.302,3429,5.006,3541,4.028,3917,4.188,3976,4.188,4509,3.978,4512,4.8,4530,4.8,4557,3.804,4633,8.809,4634,7.237,4635,7.237,4636,7.237,4637,7.237,4638,7.237,4639,7.237,4640,7.237,4641,7.237,4642,7.394,4643,7.237,4644,6.514,4645,6.514,4646,6.514,4647,5.429,4648,6.514,4649,7.237,4650,7.237,4651,3.409,4652,3.409,4653,7.237,4654,5.333,4655,5.333,4656,5.333,4657,5.333,4658,5.333,4659,5.333,4660,8.214,4661,5.333,4662,5.333,4663,5.333,4664,5.333,4665,5.333,4666,5.333,4667,7.237,4668,5.333,4669,7.237,4670,5.333,4671,5.333,4672,5.333,4673,7.237,4674,7.237,4675,5.333]],["description//tracks/algorithms-101/codeforces/cp-template",[59,2.313,1238,1.579,3025,3.559]],["title//tracks/algorithms-101/codeforces/_index",[4632,3.154]],["content//tracks/algorithms-101/codeforces/_index",[59,3.03,75,1.85,226,0.99,352,5.03,591,0.224,981,4.547,1013,6.095,1173,4.074,1238,2.53,1462,2.947,1698,6.416,1727,5.311,2891,5.829,3025,4.661,3368,7.85,3385,5.4,4632,4.153,4676,8.17,4677,8.17,4678,8.17]],["description//tracks/algorithms-101/codeforces/_index",[226,0.756,3025,3.559,4632,2.736]],["title//tracks/algorithms-101/codeforces/contests/_index",[3025,4.102]],["content//tracks/algorithms-101/codeforces/contests/_index",[]],["description//tracks/algorithms-101/codeforces/contests/_index",[3025,3.924,4632,3.018]],["title//tracks/algorithms-101/codeforces/contests/867-div-3-1822",[165,0.867,2227,3.266,4236,3.399,4679,4.765]],["content//tracks/algorithms-101/codeforces/contests/867-div-3-1822",[1,1.663,16,0.586,56,2.544,60,1.444,64,2.507,68,3.613,137,0.809,174,1.445,206,3.871,207,2.753,210,1.881,226,0.808,286,1.65,314,3.082,341,2.694,381,1.137,396,2.438,433,2.719,441,2.31,487,2.62,591,0.249,720,3.139,734,2.049,762,3.543,861,1.383,887,2.473,976,6.302,990,0.995,1048,4.992,1114,1.461,1115,4.132,1134,6.831,1303,1.088,1335,1.324,1392,2.975,1660,3.028,1724,3.711,1744,4.757,1758,8.255,1960,3.15,2050,4.262,2188,2.372,2241,4.975,2419,3.543,2431,5.852,2654,6.532,3010,1.687,3025,3.804,3357,3.711,4647,5.535,4651,5.852,4652,4.262,4680,8.375,4681,4.975,4682,8.375,4683,8.375,4684,10.364,4685,10.364,4686,6.668,4687,5.564,4688,9.156,4689,8.375,4690,6.668,4691,6.668,4692,6.668]],["description//tracks/algorithms-101/codeforces/contests/867-div-3-1822",[165,0.827,591,0.108,2227,3.115,4236,3.242,4632,1.993,4693,4.544,4694,4.544]],["title//tracks/algorithms-101/codeforces/contests/849-div-4-1791",[108,1.233,2227,3.266,4236,3.399,4695,4.765]],["content//tracks/algorithms-101/codeforces/contests/849-div-4-1791",[1,1.152,16,0.888,29,2.313,30,1.581,39,0.877,48,1.468,49,1.084,54,1.14,56,0.902,59,1.852,60,1.446,61,2.681,62,1.778,64,1.693,65,1.333,66,1.706,68,1.02,69,1.113,70,1.772,71,0.73,72,1.037,75,0.885,86,0.987,108,1.791,115,2.936,120,1.505,125,1.071,127,0.83,129,1.134,133,1.686,137,0.992,154,2.513,157,1.853,159,1.535,160,1.02,161,1.073,163,2.182,165,1.445,171,1.501,174,1.082,175,1.237,178,0.656,182,0.864,187,1.686,188,1.581,207,2.112,210,1.392,213,1.113,221,0.808,223,0.679,226,0.962,232,1.141,239,1.169,243,1.349,244,1.316,245,1.435,247,0.671,278,1.536,281,1.658,286,0.585,289,1.109,291,1.316,307,0.663,311,1.91,314,2.681,327,2.523,344,3.192,365,0.972,369,1.322,378,2.462,381,1.394,382,1.435,387,2.759,390,1.491,393,0.853,394,1.983,400,1.607,401,1.037,404,1.714,407,1.338,412,1.535,413,1.743,414,1.561,416,1.562,420,1.055,424,1.686,427,5.004,429,1.57,431,0.808,433,1.621,436,2.582,444,1.229,445,1.177,450,2.064,458,3.312,462,1.084,478,0.598,480,1.535,495,1.811,514,1.092,519,1.763,528,1.94,534,0.648,557,1.686,563,2.313,565,0.819,567,2.924,578,1.948,591,0.258,597,0.889,601,3.053,625,1.542,631,2.395,632,1.948,633,1.316,641,1.512,652,1.256,671,1.674,696,0.797,719,2.228,734,1.419,752,4.138,762,2.076,795,1.113,811,1.115,814,1.316,829,1.628,848,1.763,860,2.486,861,1.036,873,1.991,888,1.134,890,1.229,894,1.316,925,2.351,929,1.304,990,1.093,998,2.915,1012,1.353,1034,2.952,1039,1.134,1048,1.229,1050,1.791,1070,1.91,1078,0.819,1087,1.229,1089,1.134,1091,2.565,1114,2.164,1124,1.179,1136,1.256,1152,3.921,1160,1.156,1168,1.859,1187,2.924,1203,2.085,1233,2.849,1254,2.351,1285,1.511,1303,1.447,1311,3.528,1316,2.771,1328,1.203,1335,0.992,1343,0.943,1345,4.251,1362,1.316,1375,1.686,1377,3.808,1392,1.055,1398,1.465,1417,1.423,1420,1.62,1421,2.849,1423,3.228,1424,1.349,1441,1.429,1454,1.384,1489,1.02,1491,2.582,1502,1.686,1515,1.256,1521,2.288,1528,1.203,1540,1.562,1564,1.384,1580,1.972,1581,2.678,1585,2.497,1639,1.562,1654,1.349,1667,1.972,1675,1.988,1700,2.601,1713,2.128,1724,2.779,1744,1.686,1751,1.055,1797,1.972,1798,2.715,1813,1.229,1847,1.511,1887,1.905,1927,2.486,1950,1.384,1960,1.878,1981,1.582,2076,1.134,2119,1.62,2129,1.562,2149,1.423,2188,1.777,2207,1.562,2214,4.422,2234,1.256,2252,1.511,2269,1.037,2294,1.316,2321,1.972,2358,3.028,2419,3.413,2444,3.397,2463,2.128,2473,0.553,2486,2.588,2582,4.582,2626,3.98,2645,1.609,2664,3.446,2729,3.068,2736,1.562,2743,1.256,2791,2.915,2863,1.316,2966,3.12,2968,1.084,2988,2.969,2997,1.316,3010,2.332,3015,2.582,3025,2.229,3080,1.62,3104,1.856,3128,1.465,3131,3.26,3134,2.128,3143,1.856,3229,0.987,3236,3.26,3238,1.349,3243,1.465,3267,1.763,3302,2.787,3357,2.174,3370,1.856,3404,5.772,3413,2.582,3421,1.763,3428,4.164,3429,4.161,3432,2.714,3539,1.686,3598,3.947,3639,1.562,3689,3.517,3692,3.068,3705,1.562,3719,1.686,3823,1.856,3996,1.763,4147,1.686,4187,1.856,4345,1.856,4531,1.972,4535,6.388,4583,5.221,4584,2.128,4585,2.128,4586,3.517,4587,2.128,4588,2.128,4589,1.972,4590,2.128,4591,2.128,4592,2.128,4593,2.128,4594,1.972,4595,4.495,4596,3.517,4597,3.517,4598,2.128,4602,1.353,4617,1.856,4632,2.545,4642,5.221,4644,2.128,4645,4.495,4646,2.128,4647,3.301,4648,6.227,4687,4.167,4696,2.128,4697,2.364,4698,2.128,4699,2.364,4700,3.907,4701,3.907,4702,3.907,4703,4.994,4704,4.495,4705,2.364,4706,2.364,4707,3.517,4708,2.364,4709,2.364,4710,2.364,4711,2.364,4712,2.364,4713,2.364,4714,2.364,4715,2.364,4716,3.907,4717,2.364,4718,2.364,4719,2.364,4720,2.364,4721,2.364,4722,2.364,4723,2.364,4724,2.364,4725,2.364,4726,2.364,4727,2.364,4728,2.364,4729,2.128,4730,2.364,4731,2.364,4732,2.364,4733,2.364,4734,2.364,4735,2.364,4736,2.364,4737,2.364,4738,2.364,4739,2.364,4740,2.364,4741,2.364,4742,2.364,4743,3.907,4744,2.128,4745,2.128,4746,2.364,4747,2.364,4748,2.364,4749,2.364,4750,2.128,4751,6.227,4752,3.907,4753,3.907,4754,2.364,4755,2.364,4756,1.62,4757,2.364,4758,2.364,4759,3.907,4760,2.364,4761,2.364,4762,2.364,4763,2.364,4764,2.364,4765,2.364,4766,2.364,4767,2.364,4768,3.517,4769,2.364,4770,2.364,4771,10.071,4772,2.364,4773,7.858,4774,4.994,4775,3.907,4776,4.994,4777,2.364,4778,2.364,4779,3.907,4780,2.364,4781,2.364,4782,7.55]],["description//tracks/algorithms-101/codeforces/contests/849-div-4-1791",[108,1.176,591,0.108,2227,3.115,4236,3.242,4632,1.993,4783,4.544,4784,4.544]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index",[591,0.113,3020,3.266,4617,3.742,4698,4.289]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index",[8,1.266,11,1.343,12,2.205,16,0.736,25,3.724,29,1.655,51,2.155,54,1.387,60,1.359,61,3.642,70,1.314,76,2.157,114,2.857,120,2.159,132,1.79,137,0.81,147,4.146,165,1.722,174,1.553,182,1.517,188,1.314,210,0.789,221,2.073,222,2.112,226,0.503,229,3.812,231,3.199,232,1.182,239,0.971,241,1.953,247,1.178,278,1.897,307,1.701,330,2.753,378,2.574,381,1.222,390,2.313,394,2.694,401,1.82,412,2.382,414,2.621,429,1.666,441,1.437,442,3.459,450,2.804,478,1.813,479,2.743,487,3.294,508,1.476,578,2.069,591,0.255,598,2.205,655,3.466,671,1.004,696,2.828,719,4.035,752,2.96,754,1.124,816,4.884,826,2.43,872,2.205,873,1.655,882,3.462,890,2.157,894,2.309,929,1.6,990,0.905,1012,1.437,1015,1.79,1034,3.647,1050,1.015,1078,2.482,1112,3.647,1146,1.655,1168,1.33,1178,1.706,1203,2.842,1239,3.253,1269,6.255,1318,2.367,1328,2.112,1335,0.824,1392,1.852,1499,5.345,1700,3.754,1724,3.375,1742,2.844,1777,2.497,1798,1.539,1859,2.43,1880,7.628,1887,2.734,1900,3.096,1927,2.347,1950,2.43,2004,2.743,2024,4.312,2076,1.99,2141,2.367,2188,1.476,2282,3.312,2346,5.059,2486,1.852,2525,3.258,2575,3.724,2600,2.743,2626,2.571,2814,4.761,2966,1.583,2968,1.151,2969,4.358,2988,3.312,3005,5.209,3010,2.556,3020,5.402,3097,4.326,3106,3.258,3140,6.995,3217,3.258,3296,6.002,3429,5.353,3455,2.844,3497,2.96,3636,4.615,3719,2.96,3728,4.156,3815,2.497,3823,6.583,4187,3.258,4402,8.866,4503,5.627,4589,6.995,4602,2.904,4618,3.096,4619,3.096,4620,3.096,4621,3.096,4622,3.096,4623,3.096,4624,3.096,4625,3.096,4626,3.096,4627,3.735,4628,3.735,4629,3.735,4630,3.735,4631,3.258,4785,6.063,4786,4.149,4787,3.735,4788,7.165,4789,7.165,4790,7.165,4791,8.14,4792,7.881,4793,6.063,4794,4.149,4795,6.063,4796,4.149,4797,3.462,4798,8.384,4799,8.384,4800,8.384,4801,9.271,4802,9.271,4803,3.735,4804,3.735]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index",[226,0.756,3025,3.559,4632,2.736]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A",[1859,2.79,4602,1.65,4621,3.555,4622,3.555]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A",[51,1.991,54,1.383,56,2.564,60,1.159,121,2.528,137,1.019,171,2.179,187,2.9,207,2.767,211,2.182,213,3.164,226,1.167,243,3.835,273,6.156,314,3.106,387,3.346,429,1.483,591,0.257,632,3.352,671,1.626,696,2.268,755,3.164,823,3.223,846,4.795,890,4.375,934,2.458,1114,1.844,1193,2.764,1233,3.835,1249,4.607,1303,1.097,1335,1.335,1354,4.928,1430,4.045,1648,4.375,1660,3.052,1859,5.381,1887,2.564,2024,4.045,2146,5.014,2207,4.443,2269,2.949,2444,6.011,2467,6.004,2740,5.608,2968,2.334,2969,3.494,3010,2.668,3080,4.607,3432,3.653,3880,4.795,4602,2.328,4621,5.014,4622,7.659,4652,4.296,4805,6.05,4806,6.721,4807,6.721,4808,6.721,4809,6.721,4810,6.721,4811,4.045,4812,7.576,4813,6.721]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A",[1859,2.492,1887,1.624,2024,2.561,2969,2.212,4602,1.474,4621,3.175,4622,3.175,4632,1.867]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B",[1742,3.68,4623,4.005,4624,4.005]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B",[7,1.331,11,1.889,62,1.537,86,2.867,90,2.257,137,0.824,207,2.804,226,0.832,229,2.823,269,3.063,314,3.172,385,2.582,393,2.476,394,2.346,414,2.146,429,1.641,431,2.346,511,2.867,576,2.476,591,0.254,601,2.737,625,2.12,754,2.311,817,3.063,894,3.82,990,1.024,1010,2.582,1015,3.679,1022,4.705,1034,4.34,1050,2.27,1303,1.12,1441,3.118,1504,5.121,1660,3.116,1722,3.172,1742,4.705,1927,3.301,2004,5.636,2253,4.897,2346,7.115,2966,3.254,2969,3.568,2986,3.872,2988,3.172,3005,6.945,3010,2.659,3020,4.705,3177,4.131,3343,4.705,3639,4.537,3713,7.285,3996,5.121,4185,7.987,4188,5.39,4193,6.179,4623,6.362,4624,5.121,4652,4.388,4811,4.131,4814,9.703,4815,8.528,4816,8.734,4817,6.864]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B",[1742,3.115,2969,2.362,2988,2.1,3020,3.115,4623,3.39,4624,3.39,4632,1.993]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A",[1050,0.952,1328,1.98,4602,1.347,4618,2.902,4619,2.902,4620,2.902]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A",[30,2.012,54,1.36,60,1.4,62,1.423,65,1.157,114,2.535,137,0.98,157,2.528,165,1.157,171,2.524,174,1.377,175,2.572,207,2.671,210,1.545,226,0.984,269,3.625,295,3.192,307,2.513,314,2.938,341,1.87,378,2.698,382,1.826,387,3.021,401,2.788,429,1.574,484,2.788,591,0.258,601,3.763,625,1.963,632,4.051,696,2.741,734,1.988,754,2.201,777,2.497,811,1.057,861,1.319,888,3.048,1015,3.505,1050,2.512,1114,1.962,1203,2.637,1230,2.938,1297,2.574,1303,1.326,1328,4.557,1335,1.262,1362,3.537,1441,2.971,1624,2.788,1660,2.886,1700,3.626,1981,2.574,2969,3.304,2988,2.938,3010,2.056,3080,5.568,3230,4.89,3343,4.356,3973,5.303,4054,6.38,4602,2.201,4618,4.742,4619,4.742,4620,4.742,4647,4.201,4651,4.063,4652,4.063,4704,5.721,4744,9.241,4811,3.825,4818,7.032,4819,6.356,4820,8.978,4821,8.954,4822,8.954]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A",[1050,0.979,1328,2.036,2969,2.08,2988,1.849,4602,1.386,4618,2.985,4619,2.985,4620,2.985,4632,1.755]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F",[4602,1.859,4625,4.005,4626,4.005]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F",[61,4.776,137,1.044,207,2.821,226,0.84,314,3.204,429,1.119,591,0.261,811,0.902,875,5.443,1114,2.321,1303,1.131,1642,5.957,1660,3.147,1887,2.645,2024,4.172,2149,5.164,3010,2.532,3177,5.164,3332,7.159,3357,3.858,3421,5.171,4602,2.401,4625,5.171,4626,5.171,4632,3.041,4811,5.608,4812,6.24,4823,6.932,4824,6.932,4825,6.932,4826,6.932,4827,8.58,4828,6.932,4829,9.318,4830,6.932,4831,8.58,4832,6.932,4833,6.932,4834,5.443]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F",[1887,1.86,2024,2.934,4602,1.689,4625,3.637,4626,3.637,4632,2.139]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index",[407,1.276,591,0.113,2988,2.202,4329,3.976]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index",[1,0.93,5,2.163,11,1.845,12,4.845,16,0.411,39,2.452,41,2.852,42,3.921,43,1.711,51,1.014,54,1.225,59,1.736,60,1.14,61,3.056,62,1.717,65,1.707,68,4.306,75,1.497,90,1.539,127,1.643,128,1.048,137,0.954,161,4.256,163,1.76,165,1.204,174,1.805,206,3.056,207,2.739,211,1.519,224,1.621,226,1.105,232,0.772,245,2.393,307,1.313,311,3.232,369,2.03,381,1.632,393,2.384,396,3.784,401,3.363,407,2.721,420,2.95,429,1.237,431,1.6,434,2.125,441,1.621,450,2.727,487,1.839,495,1.158,501,2.487,528,1.497,576,1.688,583,2.719,591,0.222,625,1.445,642,2.762,671,2.126,673,4.873,719,2.088,749,3.437,762,5.243,788,2.992,872,2.487,929,1.691,989,2.544,990,1.504,991,3.093,1033,2.433,1034,3.365,1048,2.433,1049,1.987,1070,2.288,1078,1.621,1081,2.67,1091,2.452,1112,3.901,1114,1.025,1159,3.675,1160,2.288,1171,3.208,1183,2.741,1190,3.012,1297,1.895,1328,2.382,1335,1.745,1377,3.002,1388,3.093,1392,4.069,1398,2.9,1420,4.531,1424,2.67,1482,3.297,1514,2.968,1553,2.544,1655,3.208,1722,2.163,1887,3.352,2069,6.9,2076,2.244,2188,3.335,2252,2.992,2266,3.675,2282,3.056,2358,1.786,2431,5.324,2466,2.433,2575,2.433,2966,1.786,2969,3.437,2988,4.756,3036,2.992,3097,5.469,3127,6.251,3159,6.9,3162,2.992,3454,3.905,3455,3.208,3539,3.339,3738,3.492,3839,7.909,3906,3.093,4176,3.905,4600,3.492,4601,3.492,4602,3.372,4603,3.492,4604,3.492,4605,3.339,4606,3.492,4607,3.492,4608,3.492,4609,3.492,4610,3.492,4611,3.492,4612,3.492,4613,3.492,4614,3.492,4615,3.905,4616,3.675,4773,8.883,4797,3.905,4804,4.213,4835,4.213,4836,9.869,4837,10.229,4838,4.68,4839,4.68]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index",[226,0.756,3025,3.559,4632,2.736]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A",[4600,4.005,4601,4.005,4602,1.859]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A",[49,1.955,60,1.494,66,2.55,76,2.508,108,2.244,137,0.837,165,1.709,171,2.43,175,2.231,226,0.854,307,2.748,314,3.257,390,3.307,407,1.888,591,0.238,635,4.127,670,4.367,671,2.097,754,2.725,811,1.221,1065,3.514,1078,2.441,1233,4.021,1285,4.505,1303,1.15,1311,3.356,1377,3.2,1477,6.54,1711,6.824,1896,5.258,2225,4.127,2293,4.831,2419,3.745,2645,1.955,2793,5.535,3432,3.831,4600,5.258,4601,5.258,4602,2.441,4707,6.344,4756,4.831,4811,4.242,4840,9.61,4841,10.676,4842,7.048,4843,7.048,4844,7.048,4845,7.048,4846,7.048]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A",[407,1.408,4600,3.923,4601,3.923,4602,1.821,4632,2.307]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C",[11,1.055,1297,1.929,4602,1.65,4606,3.555]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C",[11,1.729,137,0.948,226,0.946,314,3.608,407,2.091,528,1.768,591,0.257,1048,4.058,1114,2.02,1297,3.161,1311,3.569,1377,3.544,1624,3.425,2419,4.148,2645,2.165,2988,3.608,3010,1.975,3243,6.408,4602,2.704,4606,5.824,4756,5.351,4811,5.548,4847,7.806,4848,10.136,4849,7.806,4850,7.806,4851,7.027,4852,7.806,4853,7.806,4854,6.514]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C",[11,0.943,407,1.14,528,0.964,1297,1.723,2988,1.967,4602,1.474,4606,3.175,4632,1.867]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B",[3036,3.046,4602,1.65,4604,3.555,4605,3.399]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B",[1,1.474,49,2.058,54,1.247,61,4.438,71,2.762,137,0.717,226,0.899,278,1.965,314,3.43,387,3.363,429,1.443,434,3.369,591,0.256,632,4.46,694,3.777,762,5.101,1034,4.552,1114,2.184,1239,4.359,1327,3.559,1353,3.7,1825,5.294,1927,2.873,2419,3.943,2988,3.43,3010,2.263,3036,6.521,3080,6.131,3720,6.192,4602,2.57,4604,5.536,4605,5.294,4647,4.905,4651,4.743,4756,5.086,4811,5.383,4818,7.024,4854,7.463,4855,8.944,4856,7.421,4857,7.421,4858,6.68]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B",[2988,2.253,3036,3.116,4602,1.689,4604,3.637,4605,3.478,4632,2.139]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A",[872,2.532,3455,3.266,4602,1.65,4603,3.555]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A",[61,4.405,226,1.002,314,3.821,407,2.214,591,0.251,872,4.392,1233,4.716,1377,4.328,2419,4.392,3455,5.666,4602,2.863,4603,6.167,4651,5.284,4687,6.898,4756,5.666,4811,4.975]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A",[407,1.306,872,2.59,3455,3.341,4602,1.689,4603,3.637,4632,2.139]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A",[163,1.792,2466,2.477,4602,1.65,4609,3.555]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A",[11,1.095,39,1.833,49,1.371,51,1.711,54,1.353,60,1.184,62,1.107,70,1.071,71,2.122,108,2.67,128,1.107,132,2.133,137,1.015,139,5.454,154,2.838,161,3.119,163,4.019,165,1.69,183,4.928,207,1.626,210,1.306,221,2.699,236,5.19,239,1.157,245,3.03,314,2.285,330,3.585,341,1.455,378,2.099,381,0.843,382,1.42,393,1.783,407,1.324,413,2.206,414,1.546,429,1.377,433,2.23,444,2.57,496,2.895,511,2.065,516,3.389,563,1.972,565,3.493,576,1.783,591,0.248,633,2.752,641,2.66,671,1.196,719,2.206,817,2.206,829,2.604,860,3.303,861,1.026,929,1.603,1050,2.088,1114,1.73,1146,3.871,1151,1.437,1164,4.171,1177,2.465,1203,2.77,1239,3.874,1353,2.465,1489,2.133,1491,3.268,1539,2.895,1660,2.245,1798,3.655,1937,7.032,1960,1.86,2096,4.533,2466,5.555,2645,1.905,2968,1.371,2969,2.57,2988,2.285,3010,2.269,3129,4.451,3391,3.689,3805,5.395,3806,5.395,3996,5.891,4602,1.712,4609,3.689,4632,2.169,4652,3.16,4859,4.944,4860,3.527,4861,4.451,4862,4.451,4863,4.944,4864,4.451,4865,4.944,4866,4.944,4867,4.944,4868,9.519,4869,4.944,4870,4.944,4871,4.944]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A",[128,0.845,163,1.42,407,1.011,576,1.362,2466,1.962,2969,1.962,2988,1.745,4602,1.308,4609,2.817,4632,1.656]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A",[4602,1.859,4607,4.005,4608,4.005]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A",[61,4.745,120,2.289,137,0.876,226,0.92,286,1.879,289,2.156,314,3.51,407,2.034,591,0.256,811,1.18,1303,1.239,1318,4.333,1722,3.51,1825,5.418,2358,2.898,2419,4.035,2988,3.51,3010,2.295,3127,5.206,3128,4.706,3357,4.227,4535,6.337,4602,2.631,4607,5.666,4608,5.666,4647,5.995,4651,5.797,4756,5.206,4811,5.459,4872,7.595,4873,9.697,4874,6.837,4875,9.697,4876,7.595,4877,9.697,4878,9.07,4879,7.595,4880,7.595,4881,7.595,4882,7.595]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A",[407,1.217,2358,1.734,2988,2.1,4602,1.574,4607,3.39,4608,3.39,4632,1.993]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B",[60,0.821,232,0.786,4602,1.65,4615,3.976]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B",[7,1.483,35,2.612,54,1.229,59,3.757,61,4.683,70,1.91,96,4.556,137,0.955,207,2.898,226,0.878,314,3.347,341,2.131,369,2.334,407,1.94,500,5.287,511,3.682,528,2.294,591,0.234,696,2.973,734,1.772,754,2.574,811,0.942,860,3.412,999,4.309,1233,4.132,1258,3.611,1303,1.182,1343,4.159,1424,4.132,1642,4.132,1960,2.724,2645,2.444,2984,4.309,3432,3.936,3738,7.559,4345,5.687,4616,5.687,4652,4.629,4851,6.519,4854,7.927,4874,6.519,4883,7.242,4884,7.242,4885,7.242,4886,7.242,4887,7.242,4888,7.242]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B",[59,1.685,407,1.217,528,1.029,1424,2.593,3738,3.39,4616,3.568,4632,1.993]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A",[60,0.821,232,0.786,4602,1.65,4610,3.555]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A",[11,1.564,54,1.461,60,1.217,137,0.989,157,1.891,226,0.855,232,1.617,289,2.004,314,3.263,381,1.204,382,2.493,387,2.927,407,1.891,429,1.139,433,2.817,441,2.445,445,2.128,475,5.036,484,4.299,508,2.512,591,0.257,632,3.52,698,4.161,811,1.129,990,1.054,1050,1.727,1065,3.52,1114,2.058,1168,2.263,1174,4.666,1203,3.05,1303,1.152,1324,2.815,1335,1.402,1398,4.375,1700,3.513,1832,3.52,1950,4.134,2149,4.249,2188,3.342,2419,3.751,2968,2.406,2969,3.67,3010,1.787,3420,5.891,3539,5.036,4602,2.445,4610,5.267,4647,4.666,4651,4.513,4756,4.839,4811,5.222,4818,5.544,4889,7.06,4890,7.06,4891,7.06,4892,9.394,4893,8.677,4894,7.06,4895,7.06]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A",[60,0.69,232,0.66,407,1.072,1398,2.479,2969,2.08,3539,2.854,4602,1.386,4610,2.985,4632,1.755]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A",[2966,1.634,3162,2.738,4602,1.484,4611,3.196,4612,3.196]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A",[54,1.425,60,1.137,108,2.646,137,1.039,157,1.767,207,3.145,226,1.008,307,1.85,309,3.53,314,3.844,330,3.776,394,2.254,401,2.893,407,1.767,591,0.26,601,3.633,626,2.346,631,3.988,671,1.596,811,0.858,872,3.504,1114,1.996,1303,1.357,1311,3.818,1798,2.446,2582,4.705,2608,2.63,2966,3.763,2988,3.048,3010,2.421,3162,4.216,3177,3.969,3233,6.796,3343,5.7,3357,3.67,3432,4.52,3598,3.763,4602,2.284,4611,4.92,4612,4.92,4647,5.497,4651,5.316,4652,5.316,4811,5.006,4818,6.531,4820,5.937,4858,5.937,4896,9.11,4897,9.565,4898,9.565,4899,9.565,4900,6.595,4901,6.595,4902,6.595]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A",[407,1.14,2966,1.624,2988,1.967,3162,2.72,4602,1.474,4611,3.175,4612,3.175,4632,1.867]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A",[4602,1.859,4613,4.005,4614,4.005]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A",[61,3.851,207,3.148,226,1.01,314,3.851,407,2.232,591,0.238,601,3.323,1303,1.359,3343,5.711,4602,2.886,4613,6.216,4614,6.216,4651,5.326,4652,5.326,4903,8.332,4904,8.332]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A",[407,1.408,4602,1.821,4613,3.923,4614,3.923,4632,2.307]],["title//stories/_index",[4905,6.472]],["content//stories/_index",[]],["description//stories/_index",[]],["title//stories/004-trading-bot-refactor-orders",[280,1.042,1940,2.666,4906,1.831,4907,2.666,4908,3.055,4909,3.246]],["content//stories/004-trading-bot-refactor-orders",[16,0.557,38,3.817,43,2.965,48,1.604,56,2.418,60,1.092,75,2.025,120,1.91,125,2.223,146,1.64,156,2.772,157,2.395,171,2.099,174,2.043,175,2.006,183,3.816,211,2.057,221,2.166,228,2.734,278,2.496,286,2.332,309,2.69,319,4.188,345,3.363,375,3.16,396,2.965,407,1.697,414,3.305,439,4.371,441,2.808,487,2.49,512,2.877,531,4.521,576,2.285,591,0.236,607,3.294,655,2.924,694,3.225,698,3.888,734,1.55,743,4.521,746,4.215,839,4.051,894,3.527,929,1.286,1036,4.521,1039,3.039,1078,2.195,1081,3.615,1086,4.371,1119,3.615,1166,2.877,1178,2.606,1194,3.294,1244,4.343,1303,1.323,1335,1.259,1360,2.828,1448,3.444,1655,5.558,1724,3.527,1832,3.16,1838,3.039,1925,4.051,1940,5.558,1951,5.704,1981,2.566,2149,3.814,2263,5.287,2467,4.521,2473,2.28,2542,5.359,2658,4.976,3156,3.814,3157,3.814,4106,4.727,4906,2.983,4907,5.558,4908,7.402,4909,7.461,4910,8.108,4911,8.108,4912,6.337,4913,6.337,4914,9.426,4915,5.704,4916,4.976,4917,6.337,4918,6.337,4919,6.337,4920,6.337,4921,8.108,4922,6.337,4923,6.337,4924,6.337,4925,6.337,4926,6.337,4927,8.108,4928,6.337,4929,8.108,4930,6.337,4931,6.337,4932,6.337,4933,6.337,4934,6.337,4935,6.337,4936,5.704,4937,6.337]],["description//stories/004-trading-bot-refactor-orders",[75,0.589,171,0.673,175,0.824,345,0.979,401,1.141,407,0.697,414,0.813,576,0.938,597,0.979,738,1.783,977,1.783,1086,1.272,1316,1.122,1940,1.783,4146,2.043,4906,1.225,4907,1.783,4908,2.043]],["title//stories/002-openvpn-aws-ec2-setup",[32,0.834,169,1.366,372,1.625,537,1.736,4938,3.246,4939,2.775]],["content//stories/002-openvpn-aws-ec2-setup",[1,1.79,7,1.407,8,2.292,10,3.042,11,1.664,16,0.848,23,1.492,32,1.932,51,1.628,54,1.048,58,4.898,59,2.786,66,2.21,72,3.296,82,2.084,96,3.603,156,2.568,165,1.368,168,3.536,169,2.637,178,2.084,205,4.966,223,2.158,226,1.092,229,3.09,231,2.867,240,2.47,281,3.189,305,4.4,321,4.656,342,5.9,361,3.932,372,3.139,427,3.824,498,4.803,624,4.966,749,3.906,832,3.747,873,2.996,1054,3.174,1074,6.269,1178,3.09,1486,6.763,1782,5.605,1788,5.9,2658,5.9,2830,6.269,4938,6.269,4939,6.429,4940,7.514,4941,6.763,4942,7.514,4943,7.514,4944,9.012,4945,7.514,4946,7.514,4947,7.514,4948,7.514,4949,7.514,4950,4.803]],["description//stories/002-openvpn-aws-ec2-setup",[32,1.223,169,2.003,537,2.546,4938,4.761]],["title//stories/001-rediscovering-backtracking-algo",[129,2.285,1887,1.818,2991,2.868,4951,3.976]],["content//stories/001-rediscovering-backtracking-algo",[7,1.192,8,1.763,10,2.34,11,1.692,16,0.831,21,1.95,30,2.418,37,2.579,43,2.113,51,1.252,53,2.113,62,1.294,65,1.557,66,1.7,75,1.729,82,1.603,83,2.414,86,2.414,114,2.305,120,2.302,127,2.029,129,3.663,159,2.271,174,2.051,182,2.113,188,1.83,207,2.511,214,2.174,218,2.34,226,0.925,230,3.961,232,0.953,240,1.9,247,1.641,282,3.297,289,1.641,305,3.384,316,3.217,351,1.584,360,2.72,369,1.531,381,0.985,406,3.004,415,3.581,420,2.579,455,1.66,460,2.772,474,2.882,495,1.43,498,4.882,509,2.671,520,3.663,524,2.579,529,4.649,534,1.584,591,0.249,597,2.174,598,3.071,642,3.19,711,3.961,728,4.631,732,2.882,734,1.414,743,4.123,783,2.34,827,3.961,829,1.622,839,3.694,855,3.694,883,3.479,926,3.887,942,1.95,953,4.312,961,3.694,969,5.203,976,6.02,978,4.312,990,1.451,991,3.82,1078,2.002,1081,3.297,1156,5.203,1159,4.539,1173,2.882,1190,2.271,1193,2.377,1216,3.581,1222,2.941,1223,3.694,1244,3.961,1259,3.384,1263,4.312,1279,2.305,1288,3.82,1316,2.494,1324,2.305,1350,4.539,1358,3.581,1406,4.822,1479,2.941,1593,4.597,1635,3.694,1650,4.123,1660,3.468,1697,3.581,1720,6.425,1724,3.217,1727,3.071,1756,4.312,1788,4.539,1832,2.882,1887,3.472,2241,4.312,2282,2.671,2325,3.297,2327,4.123,2462,5.203,2483,7.146,2658,4.539,2742,4.822,2867,5.203,2888,3.694,2985,3.217,2991,3.479,3028,0.829,3311,5.203,3380,4.822,3739,4.123,3764,3.479,3844,5.203,3906,3.82,4038,4.539,4147,4.123,4176,4.822,4950,3.694,4951,4.822,4952,5.78,4953,5.78,4954,7.637,4955,5.78,4956,5.78,4957,5.78,4958,5.78,4959,5.78,4960,5.78,4961,5.78,4962,4.353,4963,5.78,4964,7.637,4965,6.934,4966,5.78,4967,5.78,4968,6.789,4969,5.78,4970,5.78,4971,4.123,4972,5.78,4973,5.78,4974,5.78,4975,5.78,4976,5.78,4977,5.78]],["description//stories/001-rediscovering-backtracking-algo",[129,2.736,1887,2.177,2991,3.434,4951,4.761]],["title//stories/003-trading-bot-gui-init-tkinter/",[7,0.744,4906,2.243,4907,3.266,4978,3.046]],["content//stories/003-trading-bot-gui-init-tkinter/",[7,1.301,21,2.232,28,4.332,33,3.173,37,2.952,38,2.679,48,1.674,59,3.09,62,1.482,65,1.204,70,1.434,82,2.311,90,2.175,112,5.195,121,2.488,127,2.322,154,2.094,168,3.922,171,1.712,178,2.311,231,2.524,241,3.114,246,2.902,247,1.878,264,3.982,275,3.982,280,2.232,283,2.261,286,1.637,293,2.808,295,2.599,307,1.856,363,3.299,365,3.427,375,3.299,384,3.058,394,2.261,407,1.772,408,5.164,437,5.945,441,2.291,452,3.058,465,3.299,486,4.427,509,3.851,524,2.952,536,4.535,563,2.638,576,2.386,653,3.682,700,4.72,732,3.299,740,3.367,743,4.72,746,3.439,829,1.856,855,4.229,861,1.372,927,5.955,965,4.958,981,3.682,1050,1.619,1054,2.74,1084,4.535,1086,3.234,1109,4.72,1178,2.72,1203,2.148,1209,5.955,1231,4.229,1238,1.674,1648,3.439,1795,4.936,1796,5.955,1940,4.535,2149,3.982,2207,4.373,2293,4.535,2326,5.955,2422,5.195,2542,6.03,2722,5.52,2725,3.774,2884,5.955,2896,5.52,2993,5.52,3175,5.52,3906,4.373,4106,4.936,4146,5.195,4681,4.936,4745,7.501,4797,5.52,4840,5.955,4906,4.646,4907,6.907,4916,5.195,4941,7.501,4978,6.615,4979,6.616,4980,7.52,4981,6.616,4982,6.616,4983,5.164,4984,6.616,4985,5.955,4986,6.616,4987,6.616,4988,6.616,4989,6.616,4990,5.955]],["description//stories/003-trading-bot-gui-init-tkinter/",[7,0.891,4906,2.686,4907,3.911,4978,3.647]],["title//search/_index",[10,2.489,1012,2.129]],["content//search/_index",[]],["description//search/_index",[]],["title//posts/python-groovy-lint-format-setup",[537,1.467,591,0.078,1238,0.832,1479,1.673,3385,2.173,4991,2.743,4992,2.345,4993,2.743]],["content//posts/python-groovy-lint-format-setup",[1,1.073,2,3.728,3,3.374,7,1.139,16,0.475,25,1.847,38,1.439,41,1.154,48,0.899,51,2.211,53,1.299,54,1.095,62,1.463,65,1.774,68,1.533,75,2.345,81,2.87,83,3.28,86,2.256,94,3.04,108,1.398,115,3.333,120,1.071,122,4.22,125,2.356,127,1.247,133,3.821,137,0.705,142,2.79,149,3.134,157,0.952,165,1.19,168,3.892,172,1.896,174,0.77,175,1.125,178,0.986,182,1.299,185,1.642,188,2.069,189,3.195,210,1.027,214,3.11,218,2.956,223,1.552,229,1.461,231,2.996,232,0.586,234,2.808,239,1.708,245,1.552,247,1.009,283,1.846,304,2.272,351,2.769,352,4.566,353,1.417,369,2.45,381,0.606,390,1.356,394,1.215,395,3.472,400,2.221,424,2.535,429,0.573,441,1.231,453,1.978,480,3.479,513,3.326,534,0.974,537,2.41,591,0.257,613,2.331,626,3.291,637,2.59,702,3.195,714,1.931,733,3.57,734,2.103,737,1.704,754,0.963,783,1.439,822,2.349,865,4.96,887,2.423,891,2.349,924,2.003,929,0.721,1003,2.641,1005,1.809,1010,2.032,1012,3.067,1017,4.123,1037,2.027,1038,2.458,1086,1.737,1091,1.318,1115,4.049,1135,2.349,1136,1.888,1143,2.081,1145,1.737,1153,2.965,1154,8.271,1173,1.772,1178,2.687,1190,1.396,1196,4.662,1202,4.613,1238,2.508,1260,3.347,1294,2.349,1296,2.202,1320,4.03,1339,2.791,1364,4.862,1369,5.446,1392,1.586,1441,2.669,1476,3.082,1479,2.749,1645,2.349,1648,1.847,1657,2.436,1660,1.613,1665,1.376,1714,2.436,1721,3.702,1722,1.642,1732,3.163,1768,3.199,1776,2.081,1905,2.965,2002,2.965,2007,2.791,2020,2.535,2141,2.027,2186,2.791,2236,1.888,2262,4.662,2325,2.027,2473,0.832,2557,1.847,2560,2.791,2574,3.968,2604,2.272,2608,2.911,2638,2.791,2660,2.349,2699,3.199,2702,3.854,3027,4.862,3125,2.965,3128,2.202,3233,2.651,3385,2.349,3912,5.131,4050,4.507,4991,2.965,4992,6.131,4993,6.899,4994,9.746,4995,6.535,4996,3.554,4997,4.862,4998,3.554,4999,3.554,5000,3.554,5001,3.554,5002,3.554,5003,3.554,5004,3.554,5005,3.554,5006,4.507,5007,3.554,5008,3.554,5009,3.554,5010,3.554,5011,3.554,5012,3.554,5013,3.554,5014,3.199,5015,3.554,5016,3.554,5017,3.554,5018,3.554,5019,3.554,5020,3.554,5021,3.554,5022,3.199,5023,6.571,5024,5.402,5025,3.554,5026,3.554,5027,3.554,5028,3.554,5029,3.554,5030,3.554,5031,3.554,5032,8.269,5033,3.199,5034,3.554,5035,3.554,5036,3.554,5037,5.402,5038,3.554,5039,3.554,5040,3.554,5041,3.554,5042,8.049,5043,8.773,5044,3.554,5045,4.862,5046,4.862,5047,3.554,5048,3.554,5049,2.965,5050,3.554,5051,4.862,5052,3.554,5053,3.554,5054,3.554,5055,3.554,5056,3.554,5057,7.852,5058,7.852,5059,3.554,5060,3.554,5061,3.554,5062,3.554,5063,3.854,5064,3.554]],["description//posts/python-groovy-lint-format-setup",[51,0.867,75,0.906,129,1.919,223,1.149,1238,1.012,2327,2.854,4991,3.338,4992,2.854,4993,3.338]],["title//posts/python-docstring-templates",[59,1.991,1238,1.358,5065,4.479]],["content//posts/python-docstring-templates",[2,4.604,5,4.344,16,0.552,48,2.042,49,2.238,54,1.125,56,2.4,57,2.068,59,2.332,62,1.408,64,1.974,70,1.749,71,1.942,76,2.871,115,2.67,127,2.208,153,2.806,178,1.744,232,1.331,239,2.328,245,2.792,248,3.683,278,1.666,294,3.269,306,2.856,309,2.67,420,2.806,429,1.605,441,2.178,487,2.471,511,2.627,515,4.939,534,2.773,591,0.252,598,3.342,755,2.96,779,3.588,804,2.856,811,1.316,870,2.318,929,1.908,939,4.939,988,4.939,1011,4.02,1038,3.035,1056,3.269,1078,2.178,1238,2.46,1303,1.454,1328,3.201,1339,6.337,1388,4.157,1664,3.683,1940,4.311,2131,5.334,2467,5.757,2510,4.939,2861,5.248,2966,3.079,3378,3.927,3390,3.837,4114,5.661,4250,5.248,4997,8.021,5065,7.435,5066,6.289,5067,8.07,5068,8.91,5069,8.07,5070,8.07,5071,8.021,5072,8.07,5073,6.289,5074,6.289,5075,6.289,5076,8.07,5077,10.114,5078,9.946,5079,8.07,5080,6.289,5081,6.289,5082,6.289]],["description//posts/python-docstring-templates",[59,2.313,1238,1.579,5065,5.205]],["title//posts/python-bitwise-operators",[171,1.39,1238,1.358,4322,3.432]],["content//posts/python-bitwise-operators",[12,3.56,54,1.41,57,2.203,60,1.155,64,1.639,137,0.991,165,1.22,171,2.174,210,1.274,245,2.846,382,1.925,429,1.081,445,2.899,450,2.384,458,2.384,591,0.262,613,2.891,862,5.523,1075,4.78,1114,2.293,1116,3.154,1181,3.729,1423,5.627,1477,4.152,1539,5.633,1722,3.097,1798,2.485,2237,4.792,2347,7.009,2486,3.748,2589,5.523,2595,4.033,2743,4.463,2968,1.858,3010,1.695,3116,6.065,3189,5.59,3532,4.78,3636,4.919,4322,4.283,5083,6.7,5084,6.031,5085,6.7,5086,6.7,5087,5.59,5088,6.7,5089,6.031,5090,6.7,5091,8.4,5092,8.4,5093,6.7]],["description//posts/python-bitwise-operators",[171,1.615,1238,1.579,4322,3.987]],["title//posts/other-snippets",[75,1.392,2863,3.421]],["content//posts/other-snippets",[1,1.571,7,0.952,11,1.351,14,3.571,42,3.53,54,0.85,56,2.327,75,1.381,90,2.005,94,2.361,122,4.195,137,0.898,187,3.788,189,4.823,340,2.87,341,1.794,351,2.865,352,3.24,355,3.041,478,1.543,482,3.571,511,2.547,530,3.852,533,2.355,591,0.257,734,1.935,861,2.046,872,4.936,976,5.776,1012,2.112,1078,2.112,1114,1.336,1131,4.35,1146,2.432,1236,5.592,1239,4.218,1252,5.088,1311,2.361,1360,2.721,1421,3.479,1454,4.632,1656,5.088,1720,4.03,1973,4.789,1981,2.469,2222,5.088,2256,4.03,2753,4.18,2918,5.228,3640,5.901,4345,4.789,4834,6.895,5094,7.91,5095,6.098,5096,6.098,5097,7.886,5098,6.098,5099,6.098,5100,9.039,5101,6.098,5102,6.6,5103,7.12,5104,6.931,5105,6.098,5106,6.098,5107,7.91,5108,6.098,5109,6.098,5110,6.098,5111,6.098,5112,6.098,5113,6.098,5114,6.098,5115,6.098,5116,6.098,5117,6.098,5118,6.098,5119,6.098,5120,6.098,5121,6.098,5122,6.098,5123,6.098,5124,8.363,5125,8.666,5126,6.098,5127,6.098,5128,6.098,5129,6.098,5130,9.627,5131,6.098,5132,6.098,5133,6.098,5134,6.098,5135,6.098,5136,6.098,5137,6.098]],["description//posts/other-snippets",[75,1.557,2863,3.828]],["title//posts/js-snippets",[75,1.216,1479,2.732,2863,2.988]],["content//posts/js-snippets",[1,1.292,5,1.924,7,0.494,8,1.698,16,0.631,28,4.199,30,1.318,33,1.518,35,0.664,38,1.281,40,1.547,41,0.598,43,1.522,44,0.918,47,1.225,48,2.124,53,1.157,54,1.189,57,0.605,59,1.832,60,0.717,62,0.412,64,1.018,70,0.399,72,0.808,75,0.717,81,0.978,83,0.769,108,1.44,115,2.097,127,1.111,128,1.106,131,1.051,132,2.132,135,2.375,137,0.866,146,2.091,148,1.374,149,0.883,154,2.059,157,0.493,165,1.307,170,0.808,171,1.077,174,0.686,175,0.583,178,0.878,187,0.794,188,1.002,197,2.092,201,0.867,210,0.35,211,0.598,214,0.693,215,1.682,219,1.025,222,0.937,223,0.909,224,1.096,232,0.304,233,1.761,239,0.741,242,1.19,245,1.599,247,0.523,248,1.853,256,0.542,258,2.092,269,0.822,276,0.673,278,0.488,279,0.746,285,0.978,308,0.723,327,1.243,328,2.167,351,0.505,360,1.49,365,0.757,369,1.102,378,0.782,382,0.529,385,0.693,387,1.404,390,1.208,393,1.501,396,2.222,397,1.682,400,1.301,407,1.115,412,0.723,414,1.545,416,4.922,419,1.806,429,1.585,431,0.629,434,2.527,444,0.957,450,1.481,452,0.851,458,1.126,460,0.883,473,0.746,478,0.466,489,4.158,495,0.783,508,1.126,528,2.239,529,1.72,530,1.388,532,0.918,533,2.499,534,2.594,557,0.794,563,0.734,576,1.141,591,0.264,593,1.314,597,1.858,613,0.794,614,1.314,625,1.285,626,2.162,633,1.025,652,2.211,655,2.477,671,1.007,679,1.051,694,0.937,754,0.858,755,0.867,772,0.918,773,1.141,779,1.051,811,1.245,819,4.534,823,1.518,826,1.853,829,0.517,854,0.822,863,1.108,870,0.529,873,0.734,894,1.025,920,2.751,929,0.845,932,1.374,958,1.217,975,1.72,1002,2.023,1003,0.9,1005,1.611,1009,1.536,1010,1.19,1011,1.177,1015,1.365,1017,4.028,1030,1.001,1038,1.565,1040,3.814,1050,1.822,1055,0.836,1112,0.937,1114,1.77,1116,1.49,1123,1.446,1145,2.035,1173,0.918,1190,0.723,1203,1.351,1222,3.911,1249,1.262,1254,1.905,1263,5.732,1287,0.782,1294,2.751,1305,1.374,1315,1.72,1318,1.051,1327,1.996,1355,3.747,1358,1.141,1361,1.536,1377,0.836,1383,1.446,1392,0.822,1422,1.001,1424,1.051,1437,1.262,1438,2.023,1441,0.673,1448,4.048,1476,1.051,1478,1.536,1479,1.611,1482,2.075,1489,0.794,1545,1.314,1581,2.169,1592,1.657,1665,0.713,1673,0.867,1682,1.374,1688,3.88,1711,2.023,1720,2.751,1732,1.078,1749,2.361,1750,1.446,1807,6.036,1835,4.534,1838,0.883,1847,3.158,1849,1.314,1894,2.849,1896,1.374,1960,2.093,2002,1.536,2045,2.485,2063,2.092,2067,1.446,2080,2.485,2123,1.177,2137,5.108,2141,1.051,2151,1.262,2186,1.446,2188,0.655,2214,1.177,2226,2.641,2230,3.268,2252,1.177,2272,1.446,2358,0.703,2362,2.092,2408,4.64,2419,2.625,2444,3.259,2473,1.847,2481,2.361,2514,1.657,2529,3.747,2575,1.645,2578,1.108,2580,4.122,2581,3.105,2595,1.108,2604,1.177,2608,3.148,2689,2.485,2743,2.211,2829,1.536,2840,1.446,2864,1.536,2918,1.217,2968,0.511,2984,0.9,3015,1.217,3042,1.025,3068,2.361,3101,3.88,3110,1.536,3116,2.092,3131,1.536,3154,1.446,3173,2.092,3174,1.853,3179,2.849,3186,0.918,3188,2.849,3215,1.446,3243,1.961,3276,1.374,3330,1.657,3390,0.683,3452,2.361,3532,1.314,3639,1.217,3690,2.641,3805,2.485,3806,3.88,3999,1.657,4090,1.374,4124,1.446,4125,1.536,4188,1.446,4262,3.747,4322,2.023,4323,1.108,4329,1.536,4503,1.446,4509,2.361,4557,2.258,4617,2.485,4787,1.657,4860,2.258,4864,1.657,4909,5.427,4915,1.657,4968,1.374,5014,2.849,5063,2.969,5089,1.657,5138,1.841,5139,1.841,5140,1.841,5141,1.841,5142,1.841,5143,1.841,5144,1.841,5145,1.841,5146,1.841,5147,1.841,5148,1.841,5149,1.841,5150,1.841,5151,1.841,5152,1.841,5153,1.841,5154,1.841,5155,1.841,5156,1.841,5157,1.841,5158,1.841,5159,1.841,5160,1.841,5161,1.841,5162,3.165,5163,1.841,5164,1.841,5165,1.841,5166,1.841,5167,1.841,5168,1.841,5169,1.841,5170,3.165,5171,1.841,5172,1.841,5173,1.841,5174,1.841,5175,1.841,5176,3.165,5177,1.841,5178,1.841,5179,1.841,5180,1.841,5181,1.841,5182,1.841,5183,3.165,5184,1.841,5185,1.841,5186,1.841,5187,4.162,5188,3.165,5189,3.165,5190,1.841,5191,1.841,5192,1.841,5193,1.841,5194,1.841,5195,1.841,5196,1.841,5197,3.165,5198,3.165,5199,3.165,5200,1.841,5201,1.841,5202,3.165,5203,1.841,5204,4.162,5205,1.841,5206,1.841,5207,1.841,5208,1.841,5209,1.841,5210,1.841,5211,3.165,5212,1.841,5213,1.841,5214,1.841,5215,1.841,5216,1.841,5217,1.841,5218,4.941,5219,6.505,5220,1.841,5221,4.941,5222,1.841,5223,1.841,5224,1.841,5225,1.841,5226,1.841,5227,3.165,5228,1.841,5229,1.841,5230,1.841,5231,1.841,5232,1.841,5233,1.841,5234,1.841,5235,1.841,5236,1.841,5237,1.841,5238,1.841,5239,1.841,5240,1.841,5241,1.841,5242,3.165,5243,3.165,5244,3.165,5245,1.841,5246,1.841,5247,1.841,5248,1.841,5249,1.841,5250,1.841,5251,1.841,5252,1.841,5253,1.841,5254,1.841,5255,1.841,5256,1.841,5257,1.841,5258,1.841,5259,1.841,5260,1.841,5261,1.536,5262,1.841,5263,1.841,5264,1.841,5265,3.165,5266,2.849,5267,1.657,5268,1.841,5269,1.841,5270,1.841,5271,1.841,5272,1.841,5273,1.841,5274,3.165,5275,1.841,5276,1.841,5277,1.657,5278,1.841,5279,1.841,5280,1.841,5281,1.841,5282,1.841,5283,1.841,5284,1.841,5285,1.841,5286,3.165,5287,3.165,5288,3.165,5289,3.747,5290,3.165,5291,1.841,5292,2.641,5293,4.162,5294,1.841,5295,3.747,5296,3.165,5297,1.841,5298,1.841,5299,1.841,5300,4.162,5301,1.841,5302,1.841,5303,1.841,5304,1.841,5305,1.841,5306,4.941,5307,6.077,5308,1.841,5309,1.841,5310,1.841,5311,1.841,5312,1.841,5313,1.841,5314,1.841,5315,1.841,5316,4.162,5317,1.841,5318,1.841,5319,3.165,5320,3.165,5321,1.841,5322,5.47,5323,1.841,5324,1.841,5325,1.841,5326,3.165,5327,3.165,5328,1.841,5329,3.165,5330,1.841,5331,1.841,5332,1.841,5333,1.841,5334,1.536,5335,1.841,5336,1.841,5337,1.657,5338,1.841,5339,1.841,5340,3.165,5341,3.165,5342,1.841,5343,1.841,5344,1.841,5345,1.841,5346,4.162,5347,1.841,5348,4.162,5349,1.841,5350,3.165,5351,1.841,5352,1.841,5353,1.841,5354,1.841,5355,3.165,5356,1.841,5357,1.657,5358,6.077,5359,3.165,5360,1.657,5361,4.162,5362,1.841,5363,1.841,5364,1.841,5365,1.841,5366,3.165,5367,1.841,5368,3.165,5369,1.841,5370,1.841,5371,1.841,5372,3.165,5373,1.841,5374,1.657,5375,3.165,5376,1.841,5377,1.841,5378,3.165,5379,2.849,5380,3.165,5381,4.162,5382,3.165,5383,1.841,5384,1.841,5385,1.841,5386,1.841,5387,3.165,5388,1.841,5389,3.165,5390,1.841,5391,5.47,5392,3.165,5393,3.165,5394,4.162,5395,1.657]],["description//posts/js-snippets",[75,1.412,1479,3.175,2863,3.472]],["title//posts/js-convert-array-to-dict",[530,1.879,655,1.545,1050,1.048,1479,2.18,3847,2.831]],["content//posts/js-convert-array-to-dict",[16,0.688,64,1.917,178,2.173,381,1.336,431,3.158,528,2.092,534,2.148,591,0.259,601,3.684,655,3.66,779,4.47,802,4.855,811,1.019,1024,2.906,1050,2.261,1807,6.107,3959,6.893,5396,9.826,5397,9.826,5398,7.836,5399,7.836,5400,7.836,5401,7.053]],["description//posts/js-convert-array-to-dict",[530,2.307,655,1.896,1050,1.287,1479,2.676,3847,3.475]],["title//posts/hugo-add-copy-button-on-highlight-block",[75,1.152,239,0.769,363,1.639,375,1.639,1279,1.311,4962,1.673,5402,3.287]],["content//posts/hugo-add-copy-button-on-highlight-block",[7,1.132,48,1.836,75,2.362,228,3.13,239,2.225,286,1.795,363,5.14,375,5.055,381,1.237,459,3.415,591,0.261,750,4.399,1041,5.175,1148,2.581,1203,2.355,1279,4.161,1464,4.038,1695,2.728,1807,6.284,2242,5.175,2473,1.698,4631,5.697,5403,7.255,5404,8.823,5405,7.255,5406,7.255,5407,7.255,5408,7.255,5409,7.255,5410,9.508,5411,7.255,5412,7.255,5413,7.255,5414,7.255,5415,7.255,5416,7.255]],["description//posts/hugo-add-copy-button-on-highlight-block",[75,1.021,82,0.782,174,0.611,239,0.66,243,1.609,363,1.407,375,1.407,520,1.353,926,1.436,1081,1.609,1279,1.125,1593,1.698,1656,2.354,2863,1.57,4962,1.436]],["title//posts/howto-render-notebook-in-hugo",[89,1.384,4962,1.98,4965,2.775,5417,2.775,5418,3.055,5419,3.055]],["content//posts/howto-render-notebook-in-hugo",[7,1.445,8,2.397,10,2.444,11,1.741,16,0.768,41,1.96,54,0.842,60,1.041,62,1.352,65,1.849,70,1.308,75,1.978,89,2.796,108,1.563,114,3.134,122,3.866,125,1.655,128,1.76,129,3.769,130,5.023,134,3.842,137,0.583,146,2.262,157,2.105,163,3.609,165,1.099,174,1.308,188,2.488,189,4.271,223,1.734,245,1.734,247,2.231,275,3.633,283,2.063,286,1.494,295,2.372,341,1.776,351,2.154,352,3.207,353,2.407,360,2.841,382,1.734,390,2.303,420,3.899,455,2.258,460,3.769,480,2.372,495,1.494,514,2.79,520,2.895,530,3.833,533,2.602,565,2.091,591,0.227,613,2.605,637,2.895,728,4.71,778,3.859,797,3.01,820,2.741,870,2.258,942,2.037,943,4.138,953,4.504,975,3.281,981,3.36,982,4.74,1062,4.085,1078,2.091,1151,1.755,1160,2.951,1202,3.01,1238,1.528,1279,3.134,1297,3.182,1593,3.633,1648,3.138,1900,4.504,2005,4.504,2181,4.138,2340,5.434,2438,3.741,2630,5.715,2702,5.606,2888,6.134,3327,5.037,4323,3.633,4440,5.037,4962,5.098,4965,6.602,5417,4.307,5418,8.135,5419,8.194,5420,6.037,5421,6.037,5422,6.037,5423,4.74,5424,6.037,5425,9.255,5426,6.037,5427,6.037,5428,6.037,5429,7.859,5430,6.037,5431,6.037,5432,6.037,5433,6.037,5434,6.037,5435,6.037,5436,6.037,5437,6.037,5438,6.037]],["description//posts/howto-render-notebook-in-hugo",[16,0.298,65,0.949,89,1.207,163,1.276,870,0.975,2630,1.936,4962,1.727,4965,2.42,5417,2.42,5418,2.664,5419,2.664]],["title//posts/howto-publish-ts-npm-project",[356,2.016,640,2.18,901,2.508,2574,2.328,5063,3.056]],["content//posts/howto-publish-ts-npm-project",[7,1.263,16,0.711,43,2.959,59,3.692,75,1.832,125,2.218,146,2.095,149,3.88,286,2.002,591,0.191,640,4.791,734,1.98,737,3.88,758,5.014,924,3.001,1148,2.879,1462,3.396,2557,4.206,2574,5.573,4950,6.018,5439,7.284,5440,7.284,5441,7.284,5442,8.475,5443,7.284]],["description//posts/howto-publish-ts-npm-project",[356,2.475,640,2.676,901,3.079,2574,2.858,5063,3.751]],["title//posts/howto-publish-js-npm-project",[356,2.016,640,2.18,901,2.508,1479,2.18,2574,2.328]],["content//posts/howto-publish-js-npm-project",[1,1.334,5,3.104,7,1.472,16,0.739,28,2.488,39,3.781,41,2.18,43,2.456,48,1.211,51,1.456,59,2.878,62,1.072,65,1.223,72,2.1,75,2.006,86,3.701,94,1.853,115,2.032,122,2,124,4.043,125,2.683,130,5.664,134,3.794,142,2.982,146,1.239,149,2.296,157,1.282,159,2.639,163,2.919,168,3.96,174,1.682,176,2.881,186,2.1,189,3.284,208,2.664,223,1.93,234,2.488,235,3.832,236,2.296,280,1.282,283,2.876,286,2.273,289,1.359,293,2.851,303,1.938,307,1.343,341,1.976,351,2.83,355,4.195,356,4.831,369,1.779,381,0.816,410,2.543,455,1.375,458,2.761,460,3.221,478,1.211,480,3.305,512,2.173,524,2.136,533,1.425,576,2.799,591,0.251,597,1.8,613,2.898,637,2.296,640,5.046,642,2,671,1.878,702,3.284,734,1.171,737,3.221,746,4.775,758,2.966,772,2.387,781,4.544,783,3.588,796,3.832,870,1.375,887,1.775,901,4.544,924,1.775,942,1.615,1037,2.731,1124,2.387,1148,1.703,1160,3.284,1193,1.968,1194,3.491,1202,3.349,1204,2.881,1405,4.67,1462,2.423,1479,4.509,1590,7.02,1664,2.803,1721,3.281,1732,3.933,1847,4.293,2020,4.792,2076,2.296,2113,3.164,2212,3.994,2234,2.543,2236,2.543,2413,4.604,2483,3.759,2542,3.164,2551,4.792,2553,4.67,2557,3.491,2559,3.994,2571,6.61,2572,6.985,2574,5.667,2630,4.8,3002,3.164,4146,3.759,4323,4.043,4950,4.293,4968,5.011,4990,4.309,4992,3.415,5023,7.573,5042,5.604,5043,6.046,5045,6.046,5046,6.046,5439,4.309,5440,4.309,5441,4.309,5442,6.046,5443,6.046,5444,3.994,5445,6.717,5446,6.717,5447,6.046,5448,6.717,5449,4.787,5450,6.717,5451,6.717,5452,6.717,5453,6.717,5454,4.787,5455,4.787,5456,4.787,5457,4.787,5458,6.717,5459,4.787,5460,4.787,5461,4.787,5462,4.787,5463,4.787,5464,6.717,5465,6.717,5466,4.787,5467,4.787,5468,4.787]],["description//posts/howto-publish-js-npm-project",[7,0.624,153,1.785,356,1.883,576,1.443,640,2.036,870,1.149,901,2.343,1479,2.036,2574,2.175]],["title//posts/git-snippets",[2557,3.195,2863,3.421]],["content//posts/git-snippets",[1,1.399,2,4.018,7,0.8,16,0.619,43,1.874,54,0.982,57,1.685,61,2.369,62,1.148,65,0.933,72,3.09,74,6.181,81,3.742,94,2.726,108,2.083,114,2.809,125,2.49,134,3.443,137,0.777,140,3.09,141,3.823,146,1.823,157,2.155,163,1.928,165,1.282,182,1.874,233,3.92,240,1.685,269,2.287,278,1.357,286,1.991,306,2.327,327,2.013,341,2.072,348,3.823,349,5.024,350,3.276,351,2.206,355,2.556,401,2.248,429,0.827,445,1.544,460,4.155,533,2.396,565,3.25,566,3.512,570,3.387,591,0.253,626,1.823,629,5.495,640,3.584,641,1.984,665,6.003,687,6.714,714,2.785,734,1.254,820,2.327,860,2.726,864,4.591,931,2.664,950,2.458,999,2.505,1005,2.608,1032,3.656,1037,2.924,1114,1.763,1158,2.075,1177,2.556,1236,3.085,1248,5.024,1255,5.024,1297,2.075,1346,3.001,1435,5.024,1490,4.478,1700,2.852,1876,5.024,1878,5.74,2050,3.276,2060,4.613,2096,2.723,2184,3.513,2255,4.613,2266,4.024,2325,2.924,2413,4.827,2438,6.643,2452,3.387,2551,5.74,2557,5.667,2564,4.613,2599,5.877,2609,5.254,2630,2.924,2668,8.176,2759,4.613,2806,4.276,3331,4.276,3461,4.613,3714,4.613,3764,4.843,4092,7.229,4489,4.613,4594,4.276,4860,3.656,4907,3.513,4939,3.656,4950,5.806,5292,4.276,5469,9.613,5470,5.125,5471,5.125,5472,5.125,5473,5.125,5474,7.043,5475,5.125,5476,7.043,5477,6.34,5478,5.125,5479,5.125,5480,5.125,5481,5.125,5482,7.043,5483,5.125,5484,7.043,5485,7.043,5486,5.125,5487,5.125,5488,8.664,5489,8.047,5490,7.043,5491,7.043,5492,7.043,5493,7.043,5494,7.043,5495,5.125,5496,5.125,5497,6.34,5498,5.125,5499,5.125,5500,7.043,5501,5.125,5502,5.125,5503,4.276,5504,5.125]],["description//posts/git-snippets",[2557,3.576,2863,3.828]],["title//posts/code-style",[2,3.063,75,1.216,641,2.078]],["content//posts/code-style",[2,5.512,5,2.851,16,0.542,22,2.851,27,2.04,37,2.753,38,2.498,39,3.274,48,1.561,59,2.288,75,2.31,83,2.577,128,1.382,142,2.587,146,2.063,153,2.753,157,2.805,172,2.166,175,1.953,185,2.851,188,1.953,208,3.434,209,2.959,221,2.109,233,4.436,239,1.865,242,2.32,248,3.613,279,2.498,280,1.653,283,3.018,286,2.185,335,4.401,345,2.32,351,1.691,356,2.904,360,2.904,375,3.076,386,5.946,396,2.915,401,2.706,439,4.316,452,3.684,473,2.498,500,5.507,508,2.836,533,1.837,534,2.185,565,2.761,576,2.225,622,3.52,641,2.388,654,4.603,690,3.353,702,3.016,727,2.424,737,2.959,755,2.904,807,4.845,863,4.797,870,1.772,929,1.252,942,2.081,988,4.845,999,3.016,1037,5.324,1040,4.229,1078,2.137,1158,2.498,1202,3.974,1230,2.851,1238,1.561,1241,4.401,1441,2.256,1462,2.225,1479,3.14,1489,2.662,1553,3.353,1594,5.507,1835,4.603,1869,2.577,1887,2.354,2362,5.268,2438,4.939,2553,3.713,2557,3.207,2567,5.554,2571,4.603,2632,5.148,2634,5.946,2640,5.554,2659,7.174,2894,7.367,3331,6.65,5033,5.554,5051,5.554,5379,5.554,5505,6.17,5506,6.17,5507,6.17,5508,6.17,5509,6.17,5510,6.17,5511,6.17,5512,7.97,5513,6.17,5514,6.17,5515,6.17,5516,6.17,5517,6.17,5518,6.17,5519,7.97,5520,6.17,5521,6.17,5522,6.17,5523,6.17,5524,7.174,5525,7.97,5526,5.554,5527,6.17,5528,6.17,5529,6.17,5530,4.845,5531,6.17,5532,6.17,5533,7.174,5534,6.17,5535,6.17,5536,6.17]],["description//posts/code-style",[2,3.559,75,1.412,641,2.415]],["title//posts/bash-snippets",[75,1.216,1948,3.548,2863,2.988]],["content//posts/bash-snippets",[41,2.647,92,3.559,113,3.189,186,2.805,188,2.024,189,4.624,239,2.213,327,2.512,340,4.702,351,2.915,381,1.09,442,5.921,460,3.911,478,1.618,508,2.275,533,1.904,565,2.215,591,0.257,714,3.476,721,3.962,734,1.565,861,1.962,965,3.476,1136,3.397,1154,5.336,1236,5.692,1238,1.618,1239,3.703,1254,6.336,1653,6.406,1960,2.405,1973,7.427,2113,4.226,2249,5.818,2413,5.59,2438,5.054,2452,6.71,2453,6.805,2557,5.527,2604,4.087,2753,6.483,2763,5.336,2964,5.021,2984,3.126,3385,4.226,3429,3.476,4950,4.087,4992,5.818,5503,7.493,5524,5.756,5537,6.395,5538,8.156,5539,5.336,5540,6.395,5541,5.021,5542,9.458,5543,6.395,5544,6.395,5545,6.395,5546,6.395,5547,6.395,5548,5.756,5549,5.336,5550,6.395]],["description//posts/bash-snippets",[56,0.78,75,0.463,134,1,171,0.529,175,0.647,351,0.561,396,0.748,441,0.708,442,1.167,537,0.913,557,0.882,629,1.198,925,1.231,926,1.041,965,1.112,1647,1.606,1653,1.459,1727,1.087,1948,1.352,2442,1.167,2496,1.841,2557,1.799,2863,1.138,5503,1.707]],["title//posts/_index",[641,2.783]],["content//posts/_index",[1,1.709,2,4.909,3,3.977]],["description//posts/_index",[]],["title//posts/vps-docker-subdomains-setup/",[537,2.126,5551,3.976,5552,4.289,5553,3.742]],["content//posts/vps-docker-subdomains-setup/",[7,1.28,10,2.154,16,0.467,27,1.361,35,1.918,39,2.679,44,2.652,45,3.516,54,1.007,62,1.618,70,1.153,75,1.204,76,1.893,94,2.059,122,4.055,125,2.914,128,1.191,137,0.793,165,1.315,168,4.713,184,2.6,228,2.295,239,1.92,279,2.154,283,2.469,286,1.316,293,2.258,351,1.458,353,2.121,360,2.504,361,2.09,365,2.187,372,3.964,387,1.795,408,3.296,477,4.683,478,1.346,495,2.277,513,2.707,537,3.224,576,1.918,583,2.187,591,0.261,631,2.551,739,4.952,811,0.692,829,1.493,830,3.968,842,5.673,854,3.661,891,5.816,924,1.973,929,1.08,1003,2.6,1010,2.001,1037,3.035,1041,5.852,1143,3.115,1151,1.546,1173,2.652,1279,2.881,1410,4.438,1421,4.68,1665,3.176,1732,4.23,1948,3.516,2276,8.543,2419,2.826,2443,6.564,2444,5.388,2450,4.788,2452,3.516,2553,3.201,2557,2.765,2568,4.438,2569,6.503,2571,5.39,2574,3.927,2845,3.968,2888,3.4,2986,2.415,3276,5.39,3403,4.788,4323,3.201,4860,6.278,5261,4.438,5444,4.438,5530,6.442,5541,4.177,5551,4.438,5553,4.177,5554,8.204,5555,8.204,5556,5.319,5557,5.319,5558,5.319,5559,5.319,5560,8.204,5561,5.319,5562,7.224,5563,5.319,5564,5.319,5565,5.319,5566,8.204,5567,5.319,5568,6.503,5569,5.319,5570,5.319,5571,5.319,5572,5.319,5573,5.319,5574,5.319,5575,7.224,5576,5.319,5577,7.224,5578,5.319,5579,6.503,5580,5.319,5581,5.319,5582,5.319,5583,5.319,5584,5.319,5585,7.385,5586,8.204,5587,5.319,5588,7.224,5589,8.204,5590,5.319,5591,5.319,5592,8.204,5593,5.319,5594,5.319,5595,5.319,5596,7.224,5597,7.224,5598,5.319]],["description//posts/vps-docker-subdomains-setup/",[361,1.785,477,2.313,537,2.028,929,0.922,5551,3.792,5552,4.09,5553,3.568]],["title//posts/tree-vs-trie-data-structures/",[295,1.872,307,1.337,1193,1.959,2664,2.243]],["content//posts/tree-vs-trie-data-structures/",[1,0.976,7,0.767,8,1.499,11,1.089,16,0.691,33,2.357,54,0.685,62,1.101,64,2.372,66,1.446,70,1.065,72,3.734,91,2.314,95,2.502,121,2.574,128,2.205,129,2.357,131,2.804,137,0.475,140,2.156,156,1.68,165,0.895,171,2.037,174,1.065,178,1.363,186,3.002,210,1.762,211,1.596,214,2.574,224,2.726,232,1.298,246,2.156,255,2.502,256,2.632,278,1.812,280,1.317,287,2.086,295,1.931,307,2.209,316,3.808,318,2.736,320,2.272,339,4.24,345,3.201,366,2.672,381,1.653,391,2.502,396,1.797,429,0.793,431,1.68,441,1.702,445,1.481,473,1.99,478,1.244,487,1.931,508,1.749,513,4.837,520,2.357,528,1.927,532,2.451,533,1.464,534,1.347,557,2.952,563,2.729,576,3.341,578,2.451,583,2.021,591,0.246,607,2.555,626,1.749,643,2.612,655,2.468,671,1.189,727,1.931,734,1.203,755,2.314,822,3.249,823,2.357,824,3.667,846,3.507,861,1.02,865,2.502,873,1.96,894,2.736,929,1.389,958,3.249,986,2.736,1012,2.948,1049,2.086,1050,1.674,1065,3.412,1078,1.702,1143,2.878,1146,1.96,1158,1.99,1164,2.403,1168,1.576,1193,3.809,1203,1.596,1238,1.732,1239,3.107,1286,2.403,1293,2.804,1303,1.389,1324,1.96,1343,2.729,1378,4.101,1388,3.249,1396,2.736,1420,3.369,1422,2.672,1440,2.904,1441,2.502,1448,2.672,1521,4.984,1540,3.249,1553,2.672,1588,4.425,1601,3.046,1602,3.86,1624,3.002,1665,4.126,1974,4.101,2066,4.425,2076,2.357,2357,3.86,2473,1.842,2486,3.512,2608,1.96,2664,4.977,2713,3.667,2717,3.667,2823,4.101,2877,5.709,3010,1.732,3042,5.479,3163,8.974,3238,4.491,3244,3.86,3245,3.86,3255,4.425,3257,4.425,3334,6.349,3639,3.249,3677,4.101,3719,3.507,3815,2.958,3847,5.202,3880,4.881,4106,3.667,4347,4.425,4373,6.159,4557,6.609,4561,4.101,4579,4.425,5087,5.709,5599,6.843,5600,4.425,5601,4.915,5602,4.425,5603,4.915,5604,4.915,5605,4.915,5606,4.915,5607,4.915,5608,4.915,5609,7.871,5610,4.915,5611,6.159,5612,6.843,5613,4.915,5614,6.843,5615,4.915,5616,4.915,5617,4.915,5618,4.915,5619,4.915]],["description//posts/tree-vs-trie-data-structures/",[295,2.242,307,1.601,1193,2.346,2664,2.686]],["title//posts/trading-indicators/stochastic_oscillator",[1695,1.792,5620,3.742,5621,3.399,5622,3.399]],["content//posts/trading-indicators/stochastic_oscillator",[4,3.324,8,1.951,16,0.831,21,2.157,51,1.386,64,1.565,87,3.126,115,3.812,121,2.405,154,2.024,165,1.164,178,1.773,203,2.853,209,3.067,210,1.216,249,3.067,263,2.853,287,2.714,289,1.815,309,3.462,327,2.512,368,3.559,369,1.693,378,2.714,406,3.324,407,1.713,419,3.648,429,1.032,433,2.647,501,3.397,580,2.805,591,0.24,605,3.911,673,4.239,749,4.668,754,1.733,861,1.327,929,1.298,994,4.087,996,5.054,1022,4.383,1054,2.952,1124,4.067,1169,3.01,1177,3.189,1230,2.955,1238,1.618,1254,5.405,1280,5.021,1316,2.759,1325,3.189,1377,2.903,1389,4.909,1421,3.648,1447,3.839,1456,3.476,1553,3.476,1610,4.909,1695,3.377,1741,3.067,1927,3.157,2000,4.562,2271,4.771,2362,4.226,2431,4.087,2436,5.336,2466,3.324,2539,5.021,2608,2.55,2725,4.653,2895,6.634,3052,4.478,3156,4.909,3157,4.909,3636,4.776,3640,4.771,4906,4.702,4983,3.962,5620,8.071,5621,7.333,5622,4.562,5623,6.395,5624,6.395,5625,6.395,5626,6.395,5627,8.98,5628,8.156,5629,5.59,5630,7.052,5631,7.052,5632,6.155,5633,6.395,5634,5.756,5635,4.383,5636,5.021,5637,5.021,5638,4.226,5639,4.087,5640,5.021,5641,5.756]],["description//posts/trading-indicators/stochastic_oscillator",[1695,2.146,4906,2.686,5620,4.481,5621,4.071]],["title//posts/trading-indicators/sma",[121,1.792,154,1.508,1741,2.285,5642,3.399]],["content//posts/trading-indicators/sma",[4,4.451,8,1.521,11,1.104,16,0.79,54,0.695,60,1.191,87,2.437,108,1.29,121,2.599,128,1.918,137,0.668,146,1.789,154,2.711,156,1.704,157,2.294,165,0.908,174,1.08,176,3,182,2.527,210,0.948,211,1.618,221,1.704,223,1.432,224,1.727,232,0.822,243,2.844,245,2.837,249,3.314,263,3.821,281,2.116,287,2.116,292,2.919,327,2.715,330,2.263,382,1.432,406,2.591,407,1.335,419,2.844,429,0.804,433,1.618,441,2.393,458,1.774,487,2.715,580,2.187,583,2.05,591,0.261,605,4.106,626,1.774,642,2.082,713,3.417,719,2.224,720,2.346,749,2.591,783,2.019,832,4.64,860,2.675,868,3.295,924,1.849,929,1.403,939,3.915,974,3.556,996,5.306,1015,2.151,1020,3.089,1054,3.349,1087,2.591,1143,2.919,1169,3.733,1181,2.775,1190,3.364,1191,3.556,1238,1.262,1325,2.486,1328,2.537,1335,0.99,1389,5.413,1447,4.03,1456,5.286,1489,2.151,1564,2.919,1585,3.187,1610,4.159,1655,3.417,1691,2.649,1695,3.382,1741,4.462,1798,2.562,1832,2.486,1869,2.082,1907,3,1925,3.187,1927,3.315,1950,2.919,2000,3.556,2076,2.391,2188,1.774,2206,3.295,2290,3.915,2466,3.592,2537,4.488,2602,4.488,2608,2.756,2725,2.844,2806,4.16,2895,5.748,2966,2.636,2997,2.775,3010,1.749,3156,4.773,3157,3,3636,2.919,4248,4.488,4249,4.488,4906,3.252,4983,6.027,5629,4.736,5630,3.915,5631,3.915,5635,4.736,5636,3.915,5637,3.915,5638,3.295,5639,4.417,5642,7.531,5643,6.416,5644,3.719,5645,3.719,5646,3.719,5647,3.719,5648,6.388,5649,3.719,5650,3.719,5651,5.916,5652,5.155,5653,3.719,5654,6.388,5655,3.719,5656,3.719,5657,5.916,5658,7.139,5659,4.985,5660,4.985,5661,6.91,5662,4.985,5663,4.488,5664,4.985,5665,4.16,5666,4.985,5667,4.985,5668,4.488]],["description//posts/trading-indicators/sma",[1695,2.346,4906,2.936,5642,4.45]],["title//posts/trading-indicators/rsi",[433,1.547,2725,2.718,5638,3.149,5639,3.046]],["content//posts/trading-indicators/rsi",[16,0.789,21,1.51,41,1.453,51,1.388,54,0.624,65,0.815,87,2.188,108,1.159,137,0.723,156,1.53,157,1.199,161,2.032,163,1.683,165,0.815,203,2.858,213,3.52,245,1.286,249,3.072,287,1.9,304,2.861,309,3.667,327,1.759,365,1.841,369,1.696,384,2.069,390,1.708,393,1.614,400,1.841,404,1.964,406,2.327,407,1.199,412,1.759,433,1.453,450,1.593,487,1.759,564,3.068,580,1.964,591,0.264,605,3.915,626,1.593,713,3.068,740,2.278,749,3.329,780,2.861,783,1.812,826,2.621,831,3.26,832,4.308,924,1.66,929,1.3,965,2.433,994,2.861,996,3.969,1021,6.241,1048,2.327,1054,2.955,1112,2.278,1116,2.107,1124,3.73,1151,1.862,1181,2.491,1238,1.133,1293,2.554,1315,2.433,1325,2.232,1354,2.621,1360,1.997,1405,2.694,1423,4.544,1447,2.107,1482,3.194,1610,3.855,1654,2.554,1673,2.107,1675,2.278,1695,3.249,1741,4.31,1744,3.193,1746,3.735,1798,2.375,1869,1.87,1927,3.16,2076,2.147,2140,2.958,2141,2.554,2192,4.029,2232,6.241,2234,3.403,2236,2.378,2237,2.554,2575,2.327,2576,2.621,2595,2.694,2596,2.694,2608,2.983,2725,4.267,2895,5.744,2955,4.029,2975,3.193,2986,2.032,3017,3.339,3156,2.694,3157,2.694,3186,2.232,3636,3.751,3815,2.694,4906,3.015,4916,3.515,4983,4.635,5417,3.193,5621,3.193,5622,3.193,5629,4.39,5630,5.873,5631,5.873,5632,3.068,5635,3.068,5638,4.943,5639,6.444,5643,5.336,5644,3.339,5645,3.339,5646,3.339,5647,3.339,5648,4.778,5649,3.339,5650,3.339,5651,5.58,5652,5.58,5653,3.339,5654,4.778,5655,3.339,5656,6.091,5657,5.58,5669,4.029,5670,4.029,5671,8.164,5672,4.029,5673,4.476,5674,4.476,5675,3.515,5676,6.411,5677,5.873,5678,3.515,5679,6.411,5680,5.873,5681,3.735,5682,6.241,5683,3.735,5684,3.735,5685,6.241,5686,6.812,5687,6.812,5688,6.241,5689,3.735,5690,5.344,5691,5.344,5692,5.344,5693,5.344,5694,5.344,5695,5.344,5696,5.344,5697,3.735,5698,5.344,5699,3.735,5700,3.735,5701,4.029,5702,4.029,5703,4.476,5704,4.476,5705,4.476]],["description//posts/trading-indicators/rsi",[433,1.381,870,1.222,884,2.813,1695,1.6,2725,2.428,4906,2.003,5638,2.813,5639,2.72]],["title//posts/trading-indicators/macd",[154,1.356,1741,2.054,5632,2.936,5706,3.056,5707,3.196]],["content//posts/trading-indicators/macd",[13,1.919,16,0.615,43,1.198,48,0.829,54,0.457,66,0.964,67,3.787,87,1.602,90,1.077,97,1.919,108,0.848,115,4.11,120,0.988,137,0.317,154,1.967,165,0.597,178,1.408,188,1.037,223,1.458,224,1.135,232,0.541,235,1.87,245,0.941,249,2.434,287,1.391,295,1.287,305,1.919,309,1.391,369,1.645,384,1.514,390,1.25,393,1.182,400,1.347,406,3.229,407,0.878,412,2.749,433,1.064,440,2.445,450,1.166,458,1.166,487,1.287,495,1.981,564,4.258,580,2.227,591,0.264,597,1.909,605,4.005,626,1.806,628,2.03,673,1.703,711,2.246,713,2.246,719,1.462,727,1.287,749,1.703,781,1.919,816,2.03,831,1.668,832,2.531,859,2.095,862,1.972,873,2.79,887,1.882,924,1.215,929,1.261,965,1.781,994,3.245,996,4.69,1049,2.155,1054,2.745,1112,2.583,1116,2.924,1124,1.634,1143,1.919,1146,1.307,1147,1.438,1158,1.327,1169,2.924,1177,1.634,1190,1.287,1238,1.284,1325,2.531,1328,1.668,1389,4.556,1447,2.924,1454,1.919,1482,1.634,1517,1.668,1553,1.781,1610,3.055,1635,2.095,1654,1.87,1673,1.542,1675,1.668,1691,1.741,1695,3.332,1714,2.246,1741,2.979,1798,2.807,1859,1.919,1892,2.338,1927,2.93,1938,2.246,2000,3.621,2131,2.166,2206,2.166,2234,1.741,2236,1.741,2237,1.87,2266,2.573,2575,1.703,2576,1.919,2578,1.972,2589,1.972,2595,1.972,2596,4.211,2598,2.166,2608,3.019,2725,1.87,2744,2.338,2823,2.734,2895,6.556,3084,2.338,3156,4.556,3157,3.739,3294,4.235,3636,2.972,3728,2.246,4250,2.734,4323,1.972,4440,2.734,4906,3.768,4916,2.573,4983,3.85,5622,2.338,5629,3.479,5631,2.573,5632,2.246,5635,4.796,5636,2.573,5637,2.573,5638,2.166,5639,3.245,5643,4.432,5644,2.445,5645,2.445,5646,2.445,5647,2.445,5648,3.787,5649,2.445,5650,2.445,5651,4.635,5652,4.635,5653,2.445,5654,3.787,5655,2.445,5656,5.22,5657,4.635,5669,2.95,5675,2.573,5676,5.494,5677,4.879,5678,2.573,5679,5.494,5680,4.879,5681,2.734,5682,5.184,5683,2.734,5684,2.734,5685,5.184,5686,5.838,5687,5.838,5688,5.184,5689,2.734,5690,4.235,5691,4.235,5692,4.235,5693,4.235,5694,4.235,5695,4.235,5696,4.235,5697,4.235,5698,4.235,5699,4.235,5700,4.235,5706,7.317,5707,2.445,5708,3.277,5709,3.277,5710,6.23,5711,3.277,5712,3.277,5713,3.277,5714,3.277,5715,4.569,5716,4.569,5717,4.569,5718,4.569,5719,4.569,5720,4.569,5721,4.569,5722,4.569,5723,4.569,5724,4.569,5725,4.569,5726,4.569,5727,4.569,5728,4.569,5729,2.95,5730,4.569,5731,2.95,5732,2.95,5733,3.277,5734,3.277,5735,3.277,5736,5.076,5737,3.277,5738,6.213,5739,5.076,5740,3.277,5741,3.277,5742,3.277,5743,3.277,5744,3.277,5745,3.277,5746,3.277,5747,2.95]],["description//posts/trading-indicators/macd",[154,1.267,870,1.149,884,2.644,1695,1.505,1741,1.919,4906,1.883,5632,2.742,5706,2.854,5707,2.985]],["title//posts/trading-indicators/ema",[154,1.508,1741,2.285,1859,2.79,5710,3.555]],["content//posts/trading-indicators/ema",[4,4.731,8,1.293,16,0.775,29,1.69,54,1.011,56,1.617,60,1.061,64,1.037,70,1.725,87,2.071,108,1.097,115,1.799,128,1.379,137,0.817,144,2.481,154,1.341,156,1.448,157,1.649,165,0.771,174,1.334,176,2.55,210,0.806,213,1.994,214,2.727,223,1.769,229,2.532,232,0.699,245,2.429,249,2.952,263,4.242,278,2.336,289,1.203,290,2.55,292,2.481,330,1.924,331,3.535,365,1.742,369,1.63,390,2.349,393,2.22,400,1.742,406,3.2,407,1.135,410,2.251,412,1.665,419,2.417,501,2.251,580,2.701,591,0.262,605,4.472,626,1.508,671,1.025,690,2.303,693,3.161,822,2.801,829,1.189,832,4.538,839,2.708,873,2.455,924,1.571,929,1.472,996,3.815,1049,1.799,1054,3.216,1147,1.859,1151,1.232,1169,3.979,1172,4.835,1177,2.113,1178,1.742,1190,3.127,1230,4.207,1238,1.072,1325,3.07,1327,2.032,1328,2.156,1335,0.842,1389,5.478,1447,4.284,1456,5.248,1549,4.835,1610,3.705,1655,2.904,1673,1.994,1691,3.271,1695,1.594,1741,2.032,1798,2.952,1892,3.023,1925,2.708,1927,3.61,2004,5.588,2076,2.032,2206,4.069,2466,3.2,2608,3.174,2653,4.593,2744,3.023,2895,6.253,3010,1.835,3046,2.481,3156,4.364,3157,4.364,3294,3.535,3636,3.605,3815,3.705,4906,3.413,4983,4.493,5622,4.392,5629,4.22,5632,2.904,5635,4.22,5636,3.327,5637,3.327,5642,6.031,5643,5.678,5644,3.161,5645,3.161,5646,3.161,5647,3.161,5648,5.41,5649,3.161,5650,3.161,5651,6.307,5652,5.41,5653,3.161,5654,5.41,5655,3.161,5656,5.938,5657,5.938,5658,6.528,5665,3.535,5668,3.814,5675,3.327,5676,5.694,5677,3.327,5678,3.327,5679,3.327,5680,3.327,5701,3.814,5702,3.814,5706,4.392,5707,3.161,5710,8.017,5748,4.237,5749,4.237,5750,7.252,5751,4.237,5752,4.237,5753,6.157,5754,4.237,5755,4.237,5756,4.237,5757,6.157,5758,4.237,5759,7.252,5760,4.237,5761,4.237,5762,4.237,5763,4.237,5764,4.237,5765,4.237,5766,4.237,5767,4.237,5768,3.161,5769,3.161]],["description//posts/trading-indicators/ema",[1695,2.346,4906,2.936,5710,4.654]],["title//posts/trading-indicators/bollinger_bands",[1054,1.279,1360,1.736,1695,1.463,2206,2.571,5768,2.902,5769,2.902]],["content//posts/trading-indicators/bollinger_bands",[7,0.892,16,0.796,21,1.929,54,1.057,87,2.795,96,2.742,115,3.218,120,1.723,121,2.852,154,2.868,161,2.596,176,3.441,178,2.103,182,2.091,203,2.551,209,2.742,210,1.087,229,2.351,232,0.943,249,2.742,263,2.551,287,2.427,295,2.246,304,3.654,309,3.218,378,2.427,407,1.531,419,3.262,437,4.078,458,2.034,487,2.246,501,4.028,564,3.918,580,2.508,591,0.214,605,2.742,626,2.034,628,3.542,631,2.742,652,3.037,673,4.901,713,3.918,740,4.611,749,2.972,811,0.744,816,3.542,843,4.77,929,1.539,937,4.078,961,3.654,974,4.078,984,3.654,994,5.438,996,5.272,999,3.707,1054,3.424,1087,2.972,1174,3.779,1190,2.246,1238,1.447,1316,2.467,1325,2.851,1328,3.859,1378,4.77,1417,3.441,1454,4.44,1594,3.182,1610,4.564,1657,6.462,1695,3.645,1701,6.642,1741,4.521,1798,3.155,1927,2.213,2000,4.078,2141,3.262,2185,3.918,2206,3.779,2271,4.265,2362,3.779,2363,5.146,2391,4.77,2573,4.77,2575,4.901,2608,3.393,2725,3.262,2786,7.61,2895,6.657,3156,5.832,3157,5.951,3636,3.348,3640,4.265,4175,5.146,4906,2.691,4983,6.005,5360,5.146,5629,5.197,5630,4.489,5634,5.146,5635,5.197,5639,4.847,5640,4.489,5642,6.464,5663,5.146,5665,4.77,5768,7.581,5769,7.968,5770,5.717,5771,8.156,5772,5.146,5773,5.146,5774,5.717,5775,5.717,5776,5.717,5777,5.717,5778,5.146]],["description//posts/trading-indicators/bollinger_bands",[1695,2.146,4906,2.686,5768,4.257,5769,4.257]],["title//posts/trading-indicators/atr",[287,1.651,626,1.384,1695,1.463,1741,1.866,2206,2.571,5779,3.055]],["content//posts/trading-indicators/atr",[16,0.799,21,1.95,33,2.772,60,0.996,64,2.093,70,1.252,87,4.182,146,1.496,154,1.83,157,2.046,172,2.681,178,2.372,182,2.793,203,4.06,211,1.876,213,4.283,247,1.641,249,3.663,280,1.548,287,3.863,289,2.168,304,4.882,309,2.453,327,3.001,353,3.046,369,2.023,384,2.671,394,1.976,407,1.548,419,3.297,458,2.056,474,2.882,487,2.271,498,3.694,501,3.071,519,4.312,556,4.123,580,3.752,591,0.181,598,3.071,605,4.661,626,3.043,713,3.961,781,3.384,783,2.34,785,5.41,817,2.579,861,1.963,929,1.55,974,5.448,977,3.961,979,5.203,988,4.539,996,4.732,1030,3.141,1054,3.111,1087,3.004,1091,2.143,1190,3.001,1230,3.953,1238,1.463,1324,2.305,1325,2.882,1335,1.148,1388,3.82,1392,3.817,1417,3.479,1447,3.595,1477,3.581,1541,5.203,1564,4.472,1594,3.217,1610,4.597,1695,3.217,1741,4.364,1753,5.203,1798,2.832,1925,3.694,1927,3.523,2185,3.961,2205,5.203,2206,6.651,2207,5.048,2232,7.895,2290,4.539,2325,3.297,2389,4.822,2573,4.822,2608,3.046,2791,5.698,2895,5.468,3010,1.463,3046,3.384,3186,2.882,3636,3.384,4906,4.454,4983,6.31,5621,4.123,5629,5.235,5635,3.961,5639,3.694,5640,4.539,5670,5.203,5706,4.123,5772,5.203,5773,5.203,5779,8.344,5780,5.78,5781,4.312,5782,5.78,5783,9.1,5784,5.78,5785,5.78,5786,5.78,5787,5.78,5788,5.78,5789,7.637,5790,5.78,5791,5.78,5792,5.78,5793,5.78,5794,7.637,5795,5.78]],["description//posts/trading-indicators/atr",[1695,2.346,4906,2.936,5779,4.898]],["title//posts/trading-indicators/_index",[1695,2.312,4906,2.893]],["content//posts/trading-indicators/_index",[12,2.807,17,1.317,54,0.737,87,1.687,108,0.893,115,2.242,121,1.298,128,0.773,137,0.62,154,2.848,157,1.415,165,0.628,245,0.992,287,1.465,371,4.596,390,1.317,391,1.757,393,1.245,400,1.419,412,1.356,433,2.849,444,1.794,450,1.228,458,1.228,580,1.514,591,0.264,626,1.88,692,2.88,740,1.757,831,2.689,832,1.721,846,2.462,859,2.206,862,2.077,886,2.88,924,1.28,975,1.876,989,1.876,992,2.318,996,3.274,1013,3.941,1054,2.11,1112,1.757,1116,1.625,1124,1.721,1142,2.575,1160,1.687,1280,5.04,1316,2.279,1317,1.969,1379,2.462,1447,1.625,1482,1.721,1549,2.71,1564,2.021,1581,2.366,1673,1.625,1675,1.757,1695,1.298,1741,4.542,1859,3.094,1882,2.462,1925,2.206,1938,2.366,2000,2.462,2234,2.807,2236,1.834,2237,1.969,2269,1.514,2382,2.71,2575,1.794,2576,2.021,2578,2.077,2589,2.077,2595,2.077,2596,2.077,2598,2.281,2725,1.969,2998,2.575,2999,2.575,3000,2.575,3003,2.575,3004,2.462,3006,2.366,3007,2.575,3011,2.71,3015,2.281,3023,2.88,3062,2.366,3091,3.107,3095,3.107,3097,2.462,3099,3.107,3101,2.71,3104,2.71,3107,3.107,3110,2.88,3117,3.107,3429,1.876,4227,3.107,4803,3.107,4983,2.139,5620,2.71,5621,5.832,5622,2.462,5632,2.366,5638,4.242,5639,2.206,5640,2.71,5641,3.107,5642,2.462,5643,4.579,5644,2.575,5645,2.575,5646,2.575,5647,2.575,5648,3.941,5649,2.575,5650,2.575,5651,4.788,5652,4.788,5653,2.575,5654,3.941,5655,2.575,5656,5.365,5657,4.788,5675,2.71,5676,5.647,5677,5.04,5678,2.71,5679,5.647,5680,5.04,5681,2.88,5682,5.355,5683,2.88,5684,2.88,5685,5.355,5686,6,5687,6,5688,5.355,5689,2.88,5690,4.408,5691,4.408,5692,4.408,5693,4.408,5694,4.408,5695,4.408,5696,4.408,5697,4.408,5698,4.408,5699,4.408,5700,4.408,5706,2.462,5707,2.575,5710,3.941,5715,4.756,5716,4.756,5717,4.756,5718,4.756,5719,4.756,5720,4.756,5721,4.756,5722,4.756,5723,4.756,5724,4.756,5725,4.756,5726,4.756,5727,4.756,5728,4.756,5729,4.756,5730,4.756,5731,4.756,5732,4.756,5768,2.575,5769,2.575,5771,3.107,5779,2.71,5796,3.452,5797,5.283,5798,5.283,5799,5.283,5800,5.283,5801,5.283,5802,5.283,5803,5.283,5804,5.283,5805,5.283,5806,5.283,5807,5.283,5808,5.283,5809,5.283,5810,5.283,5811,5.283,5812,5.283,5813,5.283,5814,5.283,5815,5.283,5816,5.283,5817,5.283,5818,5.283,5819,5.283,5820,5.283,5821,5.283,5822,5.283,5823,5.283,5824,5.283,5825,5.283,5826,5.283,5827,5.283,5828,5.283,5829,5.283,5830,5.283,5831,5.283,5832,5.283,5833,3.452,5834,5.283,5835,3.452,5836,3.452,5837,3.452,5838,3.452,5839,3.452,5840,4.756,5841,3.452,5842,3.452,5843,3.452,5844,3.452,5845,3.452,5846,3.452,5847,3.452,5848,3.452,5849,5.283,5850,3.452,5851,3.452,5852,3.452,5853,3.452,5854,3.452,5855,3.452,5856,3.452,5857,3.452,5858,3.452,5859,3.452,5860,3.452,5861,5.283,5862,3.452,5863,3.452,5864,3.452,5865,3.452,5866,3.452,5867,3.452,5868,3.452,5869,3.452,5870,3.452,5871,3.452,5872,3.452,5873,3.452,5874,2.88,5875,3.452,5876,3.452,5877,3.452,5878,3.452,5879,3.452,5880,3.452,5881,3.452]],["description//posts/trading-indicators/_index",[1695,2.587,4906,3.238]],["title//posts/serverless-flask-lambda-api-gateway-mongodb/",[113,2.677,5882,5.368,5883,5.368]],["content//posts/serverless-flask-lambda-api-gateway-mongodb/",[1,0.867,7,1.335,16,0.383,21,2.122,22,2.907,27,1.61,31,2.24,32,1.581,47,1.69,48,1.105,51,0.946,57,1.435,62,1.651,70,0.946,71,1.348,72,1.915,82,2.471,89,1.553,90,1.435,91,2.054,94,2.435,113,4.775,116,3.486,117,2.176,122,3.836,125,2.022,128,0.977,134,2.134,137,0.608,163,1.642,165,0.795,168,2.054,175,1.382,178,1.21,192,2.627,203,1.948,217,3.137,228,1.883,239,1.021,247,1.239,251,2.627,255,2.221,279,2.547,293,1.853,303,2.547,310,2.372,339,2.705,355,2.176,356,2.054,358,2.556,366,2.372,369,1.666,384,2.017,394,1.492,414,1.365,431,1.492,441,1.512,450,1.553,458,1.553,480,1.715,511,2.628,513,2.221,533,2.547,537,2.807,576,1.574,591,0.25,597,3.351,611,1.982,625,1.348,626,1.553,702,3.945,800,2.992,811,1.113,854,4.273,865,2.221,931,2.269,934,1.596,942,1.473,965,2.372,1003,2.134,1004,3.342,1005,4.107,1017,2.176,1039,2.093,1071,3.114,1184,2.49,1238,2.042,1239,1.982,1279,1.741,1303,1.396,1396,2.429,1404,5.248,1410,5.248,1481,3.256,1482,2.176,1483,3.642,1500,4.021,1502,3.114,1564,2.556,1565,3.114,1597,2.992,1599,3.427,1612,2.429,1624,1.915,1645,4.157,1765,3.427,1911,3.929,1941,5.662,2063,2.885,2096,2.319,2292,2.992,2408,3.114,2557,2.269,2560,3.427,2574,2.372,2604,4.714,2608,2.508,2630,2.49,2638,4.939,2702,5.261,3385,2.885,3429,3.419,3700,5.248,3711,3.427,3730,3.642,4968,3.256,5006,6.153,5423,3.427,5548,3.929,5549,3.642,5884,3.642,5885,4.365,5886,4.365,5887,4.365,5888,7.7,5889,6.29,5890,4.365,5891,4.365,5892,4.365,5893,4.365,5894,4.365,5895,4.365,5896,4.365,5897,4.365,5898,4.365,5899,4.365,5900,4.365,5901,4.365,5902,4.365,5903,4.365,5904,4.365,5905,4.365,5906,4.365,5907,4.365,5908,4.365,5909,4.365,5910,4.365,5911,4.365,5912,4.365,5913,4.365,5914,4.365,5915,4.365,5916,4.365,5917,4.365,5918,4.365,5919,4.365,5920,4.365,5921,4.365,5922,4.365,5923,4.365,5924,4.365,5925,4.365,5926,4.365,5927,4.365,5928,4.365,5929,4.365,5930,4.365,5931,4.365,5932,4.365,5933,4.365,5934,4.365,5935,4.365,5936,4.365,5937,4.365,5938,4.365,5939,4.365,5940,4.365,5941,4.365,5942,4.365,5943,4.365,5944,4.365,5945,4.365,5946,4.365,5947,4.365,5948,4.365,5949,4.365,5950,4.365,5951,4.365,5952,4.365,5953,4.365,5954,4.365,5955,4.365,5956,4.365,5957,4.365,5958,4.365,5959,4.365,5960,4.365,5961,4.365,5962,4.365,5963,4.365,5964,4.365,5965,4.365,5966,4.365,5967,4.365,5968,4.365,5969,4.365,5970,4.365,5971,4.365,5972,4.365,5973,4.365,5974,4.365,5975,4.365,5976,4.365,5977,4.365,5978,4.365,5979,4.365,5980,4.365,5981,4.365,5982,4.365,5983,4.365,5984,4.365,5985,4.365,5986,4.365,5987,4.365,5988,4.365,5989,4.365,5990,4.365,5991,4.365,5992,4.365,5993,4.365,5994,4.365,5995,8.554,5996,4.365,5997,4.365,5998,4.365,5999,5.662,6000,4.365,6001,4.365,6002,4.365,6003,4.365,6004,4.365,6005,4.365,6006,7.375,6007,4.365,6008,7.375,6009,4.365,6010,7.264,6011,3.929,6012,4.365,6013,4.365,6014,3.929,6015,4.365,6016,4.365,6017,4.365,6018,6.29,6019,4.365,6020,4.365,6021,4.365,6022,4.365,6023,7.375,6024,4.365,6025,4.365,6026,4.365,6027,4.365,6028,6.29,6029,4.365,6030,4.365,6031,4.365,6032,4.365,6033,4.365,6034,4.365,6035,4.365,6036,4.365,6037,4.365,6038,4.365,6039,4.365,6040,4.365,6041,4.365,6042,4.365,6043,4.365,6044,4.365,6045,4.365,6046,6.29,6047,4.365,6048,4.365,6049,4.365,6050,4.365,6051,4.365,6052,4.365,6053,4.365,6054,4.365,6055,4.365,6056,4.365,6057,4.365,6058,4.365,6059,4.365,6060,4.365,6061,4.365,6062,4.365,6063,4.365,6064,4.365,6065,4.365,6066,4.365,6067,4.365,6068,4.365,6069,4.365,6070,4.365,6071,4.365,6072,4.365,6073,4.365,6074,4.365,6075,4.365,6076,4.365,6077,4.365,6078,4.365,6079,4.365,6080,4.365,6081,4.365,6082,4.365,6083,6.29]],["description//posts/serverless-flask-lambda-api-gateway-mongodb/",[7,0.53,22,1.568,24,1.987,27,0.868,32,0.727,47,1.313,113,1.692,591,0.15,5884,2.831,6010,3.054]],["title//posts/python-snippets/",[1238,1.358,3173,3.548,3174,3.144]],["content//posts/python-snippets/",[1,1.773,7,0.775,8,1.237,11,0.459,16,0.757,28,0.593,29,0.455,30,1.571,34,0.753,35,1.463,38,3.568,41,0.37,43,0.757,47,0.801,48,1.941,51,1.689,53,0.417,54,1.423,56,1.334,60,1.248,61,3.546,62,0.783,64,2.109,66,1.029,70,0.879,71,0.639,72,1.534,75,0.644,76,0.406,81,1.511,82,0.316,86,0.476,91,0.537,98,0.729,108,2.521,115,0.484,120,1.054,121,0.429,126,1.818,127,0.727,128,0.908,131,1.181,132,1.227,133,0.492,137,0.996,139,1.323,140,0.908,146,0.905,148,0.85,156,2.038,157,0.762,159,0.813,160,1.509,161,0.518,165,1.819,171,1.381,174,1.076,175,0.361,181,0.686,182,1.815,185,0.527,187,2.792,188,1.284,191,1.283,201,0.537,211,0.672,215,1.511,221,0.708,222,0.58,223,1.005,224,2.906,229,0.469,231,0.435,232,1.103,238,1.054,239,1.162,240,0.935,241,1.338,245,2.701,247,1.289,248,1.212,252,1.032,256,1.029,263,0.924,264,0.686,274,0.706,278,0.753,279,0.462,281,0.484,285,0.606,286,0.704,287,1.927,289,0.807,290,0.686,307,0.798,308,0.813,310,0.62,316,0.634,327,1.117,341,0.335,345,0.429,347,0.484,351,1.361,352,0.606,353,0.455,355,1.032,360,1.338,365,2.452,369,0.302,375,0.568,381,0.194,382,0.595,384,2.098,385,0.429,387,3.029,390,3.06,393,2.044,399,0.557,400,1.668,407,0.305,412,0.448,414,1.552,420,0.924,429,0.655,431,2.212,433,1.732,434,0.94,441,0.717,442,1.181,444,0.593,445,0.624,450,1.899,455,0.327,458,1.443,473,0.838,480,0.448,487,0.448,489,2.902,495,0.865,501,0.606,508,1.766,509,0.527,510,0.686,511,0.476,520,1.677,524,1.269,528,1.601,529,1.125,530,0.5,531,5.045,533,2.388,534,1.554,535,1.032,557,0.492,565,1.405,591,0.262,597,2.591,607,0.593,613,0.492,625,0.878,626,3.332,627,0.951,631,2.86,632,0.568,641,2.309,652,2.155,655,2.611,671,0.688,693,0.85,696,1.368,720,0.537,721,3.075,734,1.524,737,0.993,739,1.419,746,2.108,750,0.568,754,1.616,755,1.338,756,0.686,772,1.418,777,0.448,779,0.65,781,0.667,783,0.462,788,0.729,811,1.168,816,0.706,819,0.85,820,0.518,823,0.547,829,0.798,860,0.801,861,0.236,865,0.58,873,1.134,884,3.001,896,1.026,926,0.58,929,0.231,934,1.04,942,0.385,958,0.753,973,1.125,975,1.125,978,0.85,981,0.634,984,0.729,992,0.908,1005,1.054,1010,2.007,1012,0.717,1020,0.706,1024,0.768,1029,1.026,1034,0.58,1038,1.708,1039,1.677,1048,0.593,1049,0.484,1050,0.279,1065,0.568,1078,1.405,1086,0.557,1112,0.58,1114,1.466,1116,0.974,1135,0.753,1151,1.017,1158,0.838,1160,0.557,1167,0.606,1168,0.664,1169,1.338,1178,3.298,1187,0.667,1188,0.813,1190,0.448,1195,0.667,1202,1.418,1203,1.732,1204,4.618,1223,0.729,1228,0.781,1231,0.729,1233,3.233,1238,2.002,1239,0.518,1249,0.781,1254,2.987,1255,2.894,1278,1.181,1279,0.826,1286,0.557,1287,0.879,1294,0.753,1297,0.462,1303,1.428,1311,0.441,1318,1.181,1327,0.547,1335,0.226,1339,1.626,1341,1.026,1343,1.134,1353,0.568,1374,0.813,1375,0.813,1377,1.842,1423,1.152,1430,0.686,1441,1.279,1448,3.08,1459,1.863,1477,1.283,1478,0.951,1498,0.895,1502,1.477,1505,0.895,1515,0.606,1553,0.62,1581,0.781,1594,1.152,1602,0.895,1624,2.616,1642,0.65,1644,2.918,1648,2.108,1660,0.518,1663,0.729,1668,0.813,1673,1.338,1675,1.447,1722,0.527,1727,0.606,1736,2.495,1754,2.233,1776,0.667,1795,0.85,1798,0.768,1832,0.568,1838,1.364,1847,3.812,1859,0.667,1870,0.951,1875,0.813,1876,0.813,1882,1.477,1886,1.026,1892,0.813,1905,0.951,1922,0.895,1960,2.591,1981,0.838,1996,1.026,2024,0.686,2050,0.729,2076,1.364,2137,2.746,2141,1.181,2143,1.477,2145,0.85,2188,1.443,2222,0.951,2226,0.951,2227,0.781,2230,2.746,2234,1.1,2241,0.85,2247,0.895,2249,1.477,2256,0.753,2262,0.813,2265,1.026,2269,0.5,2271,0.85,2316,0.951,2321,1.727,2347,0.951,2360,1.026,2362,0.753,2408,3.541,2416,0.813,2425,4.087,2444,4.141,2467,4.444,2473,2.165,2481,4.648,2491,1.026,2521,1.026,2558,0.813,2575,0.593,2580,0.951,2581,1.544,2608,3.69,2645,0.316,2691,1.419,2709,1.727,2721,1.026,2743,0.606,2864,0.951,2871,0.65,2966,1.085,2968,0.316,2969,2.36,2971,1.323,2982,0.606,2986,0.518,2996,0.706,3010,0.72,3011,1.626,3042,0.634,3093,2.56,3101,1.626,3104,1.626,3115,2.56,3116,1.368,3125,0.951,3156,1.712,3186,1.744,3214,1.026,3215,0.895,3229,0.865,3238,1.995,3296,0.781,3313,1.026,3316,0.85,3334,0.85,3360,0.951,3390,0.768,3391,0.85,3393,0.951,3432,0.62,3452,0.85,3497,0.813,3499,3.695,3532,2.029,3545,0.537,3598,0.65,3599,1.863,3600,1.863,3639,1.368,3692,0.895,3719,0.813,3798,1.863,3838,0.895,3847,3.527,3887,2.56,3912,1.626,3959,2.609,3973,3.788,4103,1.026,4187,0.895,4188,0.895,4322,0.729,4323,0.686,4503,0.895,4509,4.449,4557,3.541,4605,0.813,4729,1.026,4750,1.026,4805,1.026,4816,1.026,4835,1.026,4936,5.824,5049,0.951,5071,4.087,5267,1.026,5289,3.148,5292,1.727,5295,3.651,5322,3.148,5334,6.041,5337,4.087,5357,1.026,5477,1.026,5539,0.951,5638,1.368,5643,0.813,5778,1.863,6084,2.07,6085,1.14,6086,1.14,6087,2.07,6088,2.56,6089,1.14,6090,1.14,6091,1.14,6092,1.14,6093,1.026,6094,1.14,6095,2.07,6096,2.844,6097,2.07,6098,1.14,6099,2.844,6100,1.14,6101,2.07,6102,1.14,6103,1.14,6104,1.14,6105,1.14,6106,1.026,6107,2.844,6108,1.14,6109,1.14,6110,1.14,6111,1.14,6112,1.14,6113,2.56,6114,1.14,6115,1.14,6116,1.14,6117,1.14,6118,4.54,6119,1.14,6120,1.14,6121,1.14,6122,1.14,6123,1.14,6124,1.14,6125,2.07,6126,7.539,6127,2.07,6128,2.844,6129,1.14,6130,1.14,6131,1.14,6132,2.07,6133,1.14,6134,1.14,6135,2.07,6136,1.14,6137,1.14,6138,1.14,6139,1.14,6140,2.07,6141,1.14,6142,1.14,6143,1.14,6144,2.844,6145,2.07,6146,2.07,6147,1.14,6148,1.14,6149,1.14,6150,1.14,6151,1.14,6152,2.844,6153,2.07,6154,3.497,6155,1.14,6156,2.07,6157,1.14,6158,1.14,6159,3.497,6160,1.14,6161,2.844,6162,1.14,6163,2.07,6164,1.14,6165,1.14,6166,2.07,6167,2.07,6168,1.14,6169,2.844,6170,2.07,6171,2.07,6172,2.07,6173,1.14,6174,2.07,6175,2.07,6176,1.14,6177,1.14,6178,1.14,6179,1.14,6180,1.14,6181,3.497,6182,1.14,6183,1.14,6184,5.667,6185,2.07,6186,2.844,6187,1.14,6188,1.14,6189,1.14,6190,1.14,6191,3.497,6192,2.844,6193,1.14,6194,2.07,6195,3.497,6196,2.07,6197,1.14,6198,2.07,6199,1.14,6200,1.14,6201,1.14,6202,1.14,6203,1.14,6204,1.14,6205,1.14,6206,1.14,6207,1.14,6208,1.14,6209,1.14,6210,1.14,6211,1.14,6212,1.14,6213,2.07,6214,1.14,6215,1.14,6216,2.844,6217,2.07,6218,2.844,6219,1.14,6220,1.14,6221,1.14,6222,1.14,6223,2.07,6224,2.844,6225,1.14,6226,1.14,6227,3.497,6228,1.14,6229,1.14,6230,1.14,6231,1.14,6232,1.14,6233,1.14,6234,1.14,6235,1.14,6236,1.14,6237,2.07,6238,1.14,6239,1.14,6240,1.14,6241,1.14,6242,1.14,6243,1.14,6244,1.14,6245,1.14,6246,1.14,6247,1.14,6248,2.07,6249,1.14,6250,1.14,6251,1.14,6252,1.14,6253,1.14,6254,1.14,6255,1.14,6256,1.14,6257,2.07,6258,5.824,6259,3.497,6260,2.07,6261,1.863,6262,1.14,6263,1.14,6264,1.14,6265,1.14,6266,2.07,6267,3.497,6268,2.07,6269,5.336,6270,1.14,6271,1.14,6272,1.14,6273,2.844,6274,2.07,6275,1.14,6276,1.14,6277,1.14,6278,1.14,6279,1.14,6280,4.056,6281,2.07,6282,1.14,6283,1.14,6284,2.844,6285,1.14,6286,1.14,6287,1.14,6288,1.14,6289,1.14,6290,3.497,6291,1.14,6292,1.14,6293,2.844,6294,2.07,6295,1.14,6296,2.844,6297,1.14,6298,1.14,6299,1.14,6300,2.844,6301,1.14,6302,1.14,6303,1.14,6304,1.14,6305,5.667,6306,2.07,6307,1.14,6308,1.14,6309,1.14,6310,1.14,6311,3.497,6312,2.844,6313,2.07,6314,2.07,6315,1.14,6316,1.14,6317,2.07,6318,1.14,6319,1.14,6320,2.07,6321,3.497,6322,1.14,6323,4.54,6324,1.14,6325,2.844,6326,1.14,6327,1.863,6328,1.14,6329,1.14,6330,2.07,6331,1.14,6332,2.07,6333,1.14,6334,2.07,6335,2.07,6336,1.14,6337,1.026,6338,1.14,6339,1.14,6340,2.07,6341,2.07,6342,1.14,6343,1.14,6344,1.14,6345,1.14,6346,1.14,6347,1.14,6348,4.963,6349,1.14,6350,1.14,6351,1.14,6352,1.14,6353,1.14,6354,1.14,6355,1.14,6356,1.14,6357,3.497,6358,1.14,6359,1.14,6360,1.14,6361,1.14,6362,1.14,6363,1.14,6364,1.14,6365,1.14,6366,1.14,6367,1.14,6368,1.14,6369,2.07,6370,2.07,6371,5.963,6372,1.14,6373,1.14,6374,2.07,6375,1.14,6376,1.14,6377,2.07,6378,1.14,6379,1.14,6380,1.14,6381,1.14,6382,1.14,6383,1.14,6384,1.14,6385,1.14,6386,1.14,6387,1.14,6388,1.026,6389,2.07,6390,3.497,6391,1.14,6392,1.14,6393,1.14,6394,1.14,6395,1.14,6396,1.14,6397,1.14,6398,1.14,6399,2.844,6400,1.14,6401,1.14]],["description//posts/python-snippets/",[1238,1.579,3173,4.123,3174,3.653]],["title//posts/markdown-syntax/",[3173,3.548,3174,3.144,4971,3.83]],["content//posts/markdown-syntax/",[1,1.884,2,1.69,4,1.54,6,2.211,7,1.126,16,0.732,30,2.64,35,2.1,39,2.159,41,2.15,47,2.254,49,0.822,54,1.163,57,0.974,60,1.323,62,0.664,64,0.725,70,1.564,75,2.032,76,3.055,83,1.96,96,1.421,114,1.182,115,3.063,118,2.25,120,0.893,127,1.647,128,1.304,131,1.69,137,0.83,146,1.214,157,1.257,163,1.114,174,1.262,191,2.907,203,1.322,210,1.107,221,1.013,223,0.851,232,0.489,239,0.693,247,0.841,255,1.508,256,0.872,272,3.165,279,1.2,289,0.841,294,2.438,310,2.55,316,2.611,322,1.894,333,1.958,353,2.322,361,2.835,368,1.649,375,3.827,381,0.8,387,1.583,410,1.574,414,2.07,429,0.757,434,1.345,436,1.958,441,1.026,442,5.797,445,1.755,458,1.054,459,4.139,473,1.2,478,1.187,489,1.894,495,1.161,509,2.691,520,2.25,528,0.671,529,1.61,533,1.734,552,3.914,576,1.069,591,0.263,597,1.114,605,2.25,635,4.226,653,1.649,694,1.508,696,1,698,2.25,711,2.031,750,2.339,752,2.114,781,3.41,792,2.114,817,1.322,819,4.344,820,2.644,825,2.472,826,2.747,860,1.147,862,2.823,929,1.743,942,1.965,961,3.722,975,2.55,1002,4.613,1009,2.472,1011,1.894,1040,5.261,1056,2.438,1065,1.477,1078,1.625,1144,3.027,1147,1.3,1168,1.867,1169,1.395,1177,1.477,1192,2.907,1202,2.904,1203,2.342,1204,1.783,1269,2.211,1287,1.258,1318,4.117,1343,1.182,1344,2.114,1345,2.438,1360,3.721,1431,4.724,1440,1.258,1449,2.387,1462,2.1,1463,4.223,1499,2.211,1517,4.092,1644,2.472,1695,1.114,1699,3.347,1710,2.114,1720,1.958,1813,1.54,1832,1.477,1849,2.114,1870,2.472,2086,2.667,2137,3.684,2186,6.906,2236,1.574,2249,4.724,2333,2.327,2427,4.573,2498,2.667,2518,2.667,2589,2.823,2718,2.667,2871,2.676,2888,1.894,2956,5.242,2957,4.859,2966,2.222,2969,2.438,2997,1.649,3042,1.649,3140,2.472,3217,2.327,3300,3.347,3303,6.909,3390,2.159,3583,2.667,4091,5.525,4135,5.242,4236,4.154,4438,2.667,4557,2.114,4791,2.667,4861,5.242,4862,5.242,4962,1.508,4971,4.154,5049,5.525,5266,2.667,5602,2.667,5781,2.211,6093,2.667,6327,2.667,6388,2.667,6402,2.472,6403,4.691,6404,4.691,6405,4.691,6406,4.691,6407,4.691,6408,4.691,6409,8.337,6410,4.223,6411,4.223,6412,4.691,6413,4.691,6414,4.691,6415,4.691,6416,4.691,6417,4.691,6418,2.963,6419,2.963,6420,2.963,6421,2.963,6422,4.691,6423,2.963,6424,2.963,6425,2.963,6426,2.963,6427,2.963,6428,2.963,6429,2.963,6430,2.963,6431,2.963,6432,2.963,6433,2.963,6434,2.667,6435,2.963,6436,2.963,6437,8.972,6438,8.215,6439,2.963,6440,4.691,6441,2.963,6442,4.691,6443,2.667,6444,2.963,6445,2.963,6446,2.963,6447,2.963,6448,2.963,6449,2.963,6450,2.963,6451,2.963,6452,2.963,6453,2.963,6454,2.963,6455,4.691,6456,2.963,6457,2.963,6458,2.963,6459,2.667,6460,4.691,6461,8.338,6462,4.691,6463,2.963,6464,5.823,6465,2.963,6466,2.963,6467,4.223,6468,2.963,6469,2.963,6470,2.963,6471,2.963,6472,2.963,6473,2.963,6474,2.667,6475,2.963,6476,2.963,6477,2.963,6478,2.963,6479,2.963,6480,2.963,6481,4.691,6482,4.691,6483,2.963,6484,2.963,6485,2.963,6486,2.963,6487,2.963,6488,2.963,6489,4.691,6490,4.691,6491,4.691,6492,4.691,6493,7.675,6494,5.823,6495,7.675,6496,5.823,6497,7.675,6498,7.675,6499,5.823,6500,5.823,6501,5.823,6502,5.823,6503,5.823,6504,5.823,6505,5.823]],["description//posts/markdown-syntax/",[4971,4.907,5395,6.192]],["title//posts/mac-setup-development/",[537,2.395,1821,4.216,6506,4.005]],["content//posts/mac-setup-development/",[1,1.329,2,1.722,5,1.395,6,2.252,7,0.471,13,1.767,16,0.777,21,2.732,26,1.929,27,2.073,40,1.476,42,1.347,51,1.677,56,1.152,60,0.821,62,1.498,65,1.073,66,0.888,71,1.47,75,1.649,76,1.074,81,1.604,85,1.536,89,1.074,94,2.819,97,1.767,110,1.68,114,2.35,115,1.281,119,2.153,120,1.435,122,4.297,125,1.616,126,3.767,127,1.059,129,3.492,142,0.98,146,1.232,149,4.142,154,0.955,157,0.809,170,1.324,172,1.059,177,2.252,182,1.104,205,1.995,211,0.98,218,2.386,219,3.28,223,0.867,227,1.281,238,1.536,239,1.566,242,2.91,262,1.476,264,1.817,278,1.561,279,3.132,280,2.313,281,2.02,286,2.302,293,1.281,294,1.569,295,1.186,307,0.847,318,1.68,320,2.2,351,0.827,352,1.604,355,2.939,356,3.427,368,1.68,369,1.561,387,1.988,434,2.161,439,2.327,441,1.045,450,1.074,452,2.2,459,3.149,465,1.505,476,1.64,477,3.706,478,0.764,480,3.543,482,2.787,495,0.747,498,3.043,500,2.649,520,2.283,521,1.995,530,2.088,533,0.899,534,1.616,537,2.63,578,2.374,591,0.256,597,1.135,613,1.302,637,3.209,656,2.587,665,3.551,728,1.536,734,0.739,737,2.283,758,1.87,774,2.069,797,2.374,809,1.324,839,1.929,861,0.987,863,1.817,864,3.363,868,1.995,870,0.867,872,1.604,920,4.422,924,2.186,934,1.104,942,1.018,946,2.252,947,4.285,950,2.826,953,2.252,957,1.767,976,4.914,981,1.68,1002,1.929,1003,1.476,1004,2.529,1012,2.522,1017,1.505,1038,2.738,1039,2.283,1055,1.37,1056,3.785,1077,2.37,1078,1.045,1086,1.476,1088,2.153,1112,1.536,1148,1.074,1167,2.529,1169,1.421,1170,2.423,1173,3.336,1175,3.738,1176,5.305,1177,2.374,1178,1.241,1184,2.716,1189,2.069,1196,4.205,1222,3,1230,2.2,1236,4.382,1238,1.693,1239,1.37,1269,2.252,1296,2.95,1311,1.168,1315,1.64,1331,2.37,1351,3.551,1354,2.787,1377,2.161,1396,1.68,1422,1.64,1433,2.153,1462,1.089,1476,1.722,1477,1.87,1521,1.767,1527,4.991,1545,2.153,1569,2.518,1585,1.929,1601,1.87,1610,2.865,1648,2.474,1665,2.819,1675,1.536,1722,2.2,1732,3.451,1749,5.432,1750,3.738,1767,5.194,1788,2.37,1832,2.374,1907,1.817,2001,2.37,2063,1.995,2096,1.604,2113,3.895,2129,3.146,2151,2.069,2167,2.518,2184,2.069,2234,1.604,2235,1.995,2242,2.153,2300,2.717,2327,4.205,2419,1.604,2428,2.717,2444,2.787,2466,2.474,2542,1.995,2557,2.474,2574,5.056,2589,1.817,2600,1.995,2604,1.929,2638,3.738,2653,2.252,2700,4.628,2702,5.519,2746,2.717,2753,2.069,2863,3.28,2918,4.422,2967,2.069,3010,0.764,3048,2.153,3135,2.717,3276,4.397,3327,3.972,3360,2.518,3429,2.587,4681,2.252,4834,2.37,4939,2.153,4978,4.277,4992,2.153,5006,4.918,5022,2.717,5097,7.201,5100,6.023,5102,3.972,5103,4.285,5104,4.397,5124,2.717,5125,6.964,5418,4.628,5419,4.628,5447,2.717,5497,5.305,5526,5.305,5579,4.285,5672,2.717,5874,2.518,5884,3.972,5888,4.285,6011,2.717,6402,2.518,6467,2.717,6474,2.717,6506,3.551,6507,2.518,6508,3.018,6509,3.972,6510,4.76,6511,3.018,6512,3.018,6513,3.018,6514,6.964,6515,3.018,6516,4.991,6517,4.76,6518,3.018,6519,3.018,6520,3.018,6521,3.018,6522,2.252,6523,4.76,6524,3.018,6525,3.018,6526,6.554,6527,3.018,6528,4.76,6529,3.018,6530,3.018,6531,3.018,6532,3.018,6533,5.894,6534,3.018,6535,4.76,6536,5.894,6537,5.894,6538,3.018,6539,3.018,6540,5.894,6541,5.305,6542,3.018,6543,5.894,6544,4.76,6545,2.518,6546,5.894,6547,8.842,6548,5.894,6549,3.018,6550,6.691,6551,3.018,6552,3.018,6553,3.018,6554,3.018,6555,3.018,6556,3.018,6557,3.018,6558,3.018,6559,4.76,6560,3.018,6561,3.018,6562,3.018,6563,3.018,6564,3.018,6565,3.018,6566,3.018,6567,2.153,6568,3.018,6569,2.717,6570,3.018,6571,4.76,6572,4.76,6573,4.76,6574,3.018,6575,3.972,6576,3.018,6577,3.018,6578,3.018,6579,3.018,6580,3.018,6581,3.018,6582,3.018,6583,4.76,6584,4.76,6585,2.37,6586,3.018,6587,3.018,6588,3.018,6589,3.018,6590,3.018,6591,3.018,6592,4.76,6593,3.018,6594,3.018,6595,3.018,6596,3.018,6597,3.018,6598,3.018,6599,3.018,6600,3.018,6601,5.894,6602,4.76,6603,2.717,6604,3.018,6605,3.018,6606,3.018,6607,5.894,6608,3.018,6609,3.018,6610,3.018,6611,3.018,6612,3.018,6613,3.018,6614,3.018,6615,3.018,6616,3.018,6617,3.018,6618,3.018,6619,3.018,6620,3.018,6621,3.018,6622,3.018,6623,3.018,6624,3.018,6625,3.018,6626,6.691,6627,3.018,6628,3.018,6629,3.018,6630,2.518,6631,3.018,6632,3.018,6633,3.018,6634,3.018,6635,3.018,6636,3.018,6637,7.281,6638,7.736,6639,6.964,6640,2.717,6641,3.018,6642,3.018,6643,3.018,6644,3.018,6645,3.018,6646,3.018,6647,3.018,6648,3.018,6649,5.894,6650,3.018,6651,3.018,6652,3.018,6653,3.018,6654,3.018,6655,5.894,6656,4.76,6657,3.018,6658,3.018,6659,3.018,6660,3.018,6661,3.018,6662,3.018,6663,3.018,6664,3.018,6665,3.018,6666,3.018,6667,3.018,6668,3.018,6669,3.018,6670,3.018,6671,2.717,6672,3.018,6673,3.018]],["description//posts/mac-setup-development/",[21,1.533,51,0.985,223,1.305,656,2.47,1610,2.735,6507,3.792,6509,3.792]],["title//posts/linux-interactive-non-interactive-users/",[82,1.079,736,3.005,865,1.98,1158,1.575,2442,2.219]],["content//posts/linux-interactive-non-interactive-users/",[7,1.473,8,1.594,11,1.158,16,0.714,28,3.711,31,1.869,51,1.133,82,2.994,89,3.254,94,2.763,97,3.061,122,2.183,125,2.697,149,2.507,157,2.34,171,1.848,172,3.21,175,1.655,188,2.26,189,4.98,215,2.777,227,2.219,238,2.66,246,2.293,276,2.61,283,2.44,289,2.48,295,2.053,303,3.822,307,2.003,318,3.973,321,4.423,337,3.455,339,3.239,341,1.538,351,2.507,361,2.053,381,1.217,396,3.195,404,2.293,425,1.86,441,2.816,473,2.116,474,2.606,477,4.654,508,1.86,514,4.038,525,4.104,588,3.455,591,0.243,600,3.061,613,2.255,632,2.606,642,2.982,649,3.061,652,2.777,656,2.841,670,5.038,736,5.582,791,2.909,809,2.293,861,1.481,929,1.061,957,3.061,994,3.341,1078,2.472,1157,2.555,1158,4.086,1177,2.606,1189,6.838,1197,3.455,1249,3.583,1260,3.239,1293,2.982,1311,2.023,1317,2.982,1346,3.061,1377,3.691,1422,3.88,1433,3.729,1553,2.841,1564,3.061,1566,4.104,1583,3.583,1594,2.909,1691,2.777,1776,3.061,1875,6.232,1948,3.455,1974,4.361,2187,4.705,2245,4.104,2419,2.777,2442,4.073,2449,5.326,2604,4.563,2626,4.423,2660,3.455,2753,3.583,2887,4.705,3233,3.899,4939,6.524,5530,4.104,5747,4.705,6258,4.705,6674,5.227,6675,5.227,6676,5.227,6677,5.227,6678,5.227,6679,5.227,6680,5.227,6681,7.139,6682,9.146,6683,5.227,6684,9.44,6685,5.227,6686,8.855,6687,7.139,6688,5.227,6689,5.227,6690,5.227,6691,5.227,6692,7.139,6693,5.227,6694,5.227,6695,5.227,6696,5.227,6697,5.227,6698,7.139,6699,7.139,6700,5.227]],["description//posts/linux-interactive-non-interactive-users/",[82,1.18,295,1.672,736,3.21,1158,1.723,2143,3.036,2442,2.428,2983,2.72]],["title//posts/interactivebrokers-deposit/",[731,2.902,736,2.022,6701,3.246,6702,3.502,6703,3.055,6704,3.246]],["content//posts/interactivebrokers-deposit/",[7,1.232,16,0.693,38,3.196,60,1.361,62,1.768,128,1.768,146,2.043,174,1.711,181,4.751,209,3.786,242,2.969,429,1.497,461,3.649,508,2.809,514,4.289,591,0.241,594,7.743,703,6.587,727,3.101,731,6.923,1148,3.619,1151,2.295,1170,4.723,2063,6.133,2235,5.218,5840,7.106,6701,7.743,6704,8.654,6705,7.894,6706,7.894]],["description//posts/interactivebrokers-deposit/",[731,3.637,736,2.534,6701,4.068,6702,4.388,6703,3.828,6704,4.068]],["title//posts/hugo-shortcode-examples/img",[6434,6.472]],["content//posts/hugo-shortcode-examples/img",[161,4.183,162,7.688,174,1.997,188,2.917,278,2.44,361,3.463,445,2.183,459,4.813,474,4.594,478,2.332,480,3.62,534,2.778,591,0.234,640,4.689,656,5.008,740,4.689,792,6.573,1168,1.712,1233,5.257,1946,7.235,2057,8.294,2466,4.789,2553,5.545,2801,8.294,3174,5.395,3532,5.864,3690,7.688,3962,9.121,4147,6.573,4631,7.235,5084,4.806,5087,6.043,5600,6.52,5781,6.874,6410,9.6,6411,9.6,6707,8.814,6708,5.34,6709,5.34,6710,10.133,6711,9.214,6712,9.214,6713,9.214,6714,9.214,6715,9.214,6716,9.214,6717,9.214,6718,9.214,6719,7.235,6720,9.214,6721,9.214,6722,9.214,6723,9.214,6724,9.214,6725,9.214,6726,7.243]],["description//posts/hugo-shortcode-examples/img",[131,3.255,236,2.736,361,2.242,6585,4.481]],["title//posts/hugo-shortcode-examples/chart",[1702,4.928]],["content//posts/hugo-shortcode-examples/chart",[54,1.176,108,1.94,115,3.181,127,2.96,128,2.159,137,1.027,165,1.535,279,2.275,383,3.763,534,2.312,591,0.262,626,3.001,732,2.801,824,6.292,1116,2.644,1124,2.801,1145,3.664,1437,5.137,1438,4.791,1499,5.591,1507,6.687,1675,2.859,1702,5.137,2123,4.791,2234,2.985,2236,2.985,2237,3.205,2608,3.363,3081,8.438,3137,8.099,3154,7.361,5277,9.533,6337,7.592,6727,5.057,6728,5.618,6729,7.495,6730,7.495,6731,8.434,6732,10.549,6733,9.374,6734,9.374,6735,8.998,6736,8.998,6737,9.374,6738,9.374,6739,10.229,6740,8.998,6741,8.998,6742,8.998,6743,9.374,6744,7.495,6745,7.495,6746,8.434,6747,8.434,6748,8.434,6749,5.618,6750,5.618,6751,5.618,6752,5.618]],["description//posts/hugo-shortcode-examples/chart",[4962,3.175,4965,4.45,6727,5.615]],["title//posts/hugo-shortcode-examples/_index",[929,1.09,4962,2.732,4965,3.83]],["content//posts/hugo-shortcode-examples/_index",[75,1.921,131,4.84,236,4.068,279,3.435,361,3.801,511,3.544,929,1.722,4950,5.423,6585,6.662]],["description//posts/hugo-shortcode-examples/_index",[]],["title//posts/hugo-add-search-lunr-popup/",[239,0.834,360,1.677,1012,1.234,1593,2.145,4962,1.813,6567,2.542,6753,2.798]],["content//posts/hugo-add-search-lunr-popup/",[1,1.519,5,3.047,7,1.461,8,2.445,10,3.367,11,1.033,16,0.41,30,2.538,31,1.221,35,1.06,40,1.437,41,1.514,43,2.119,48,1.819,51,1.01,54,0.808,59,1.729,62,1.918,66,0.865,71,1.789,83,2.754,97,1.722,108,1.5,120,0.886,128,1.044,137,0.637,146,1.207,154,1.476,159,1.832,165,0.535,170,1.29,174,0.637,186,3.154,203,2.08,209,1.41,228,2.845,236,2.236,239,1.946,245,0.845,283,1.594,286,0.728,287,2.459,307,0.825,320,3.047,339,1.822,351,2.454,360,1.384,365,2.382,375,3.288,381,0.795,382,2.879,386,3.478,390,1.122,407,1.249,433,3.04,440,2.194,450,1.659,459,2.195,460,2.236,473,1.191,491,4.834,527,1.598,566,3.288,591,0.263,626,1.659,671,0.711,694,1.496,716,3.478,721,2.889,727,3.518,737,3.448,754,0.797,759,1.677,781,5.334,809,2.893,811,0.858,829,1.626,852,2.453,863,2.806,887,1.09,929,0.597,942,1.573,1003,2.279,1012,3.502,1038,1.106,1040,2.015,1084,3.971,1114,1.269,1151,0.855,1177,1.466,1178,1.209,1193,1.209,1202,2.325,1222,4.232,1316,2.012,1408,3.89,1456,3.584,1462,2.09,1464,3.225,1489,1.269,1527,2.194,1593,4.327,1624,2.045,1651,2.453,1660,1.335,1720,4.752,1807,6.835,2149,1.77,2272,3.661,2427,5.178,2449,3.478,2524,5.935,2548,3.89,2581,6.204,2608,1.859,2645,1.829,2879,2.647,2888,3.703,3959,5.707,4681,2.194,4696,4.197,4962,2.373,5417,3.326,5568,4.197,6014,4.197,6443,5.935,6567,2.098,6569,5.215,6754,2.94,6755,8.017,6756,5.794,6757,4.663,6758,2.94,6759,4.663,6760,4.663,6761,7.65,6762,5.794,6763,7.65,6764,4.663,6765,6.594,6766,5.794,6767,4.663,6768,5.794,6769,2.94,6770,2.94,6771,4.663,6772,6.594,6773,5.794,6774,4.663,6775,4.663,6776,8.316,6777,4.663,6778,4.663,6779,4.663,6780,4.663,6781,4.663,6782,6.594,6783,4.663,6784,4.663,6785,4.663,6786,4.663,6787,4.663,6788,4.663,6789,4.663,6790,4.663,6791,4.663,6792,4.663,6793,4.663,6794,4.663,6795,6.594,6796,4.663,6797,4.663,6798,4.663,6799,4.663,6800,4.663,6801,4.663,6802,4.663,6803,4.663,6804,4.663,6805,4.663,6806,4.663,6807,4.663,6808,4.663,6809,4.663,6810,6.594,6811,4.663,6812,4.663,6813,4.663,6814,4.663,6815,6.594,6816,6.594,6817,5.794,6818,4.663,6819,4.663,6820,4.663,6821,4.663,6822,4.663,6823,4.663,6824,4.663,6825,4.663,6826,4.663,6827,4.663,6828,4.663,6829,4.663,6830,4.663,6831,4.663,6832,4.663,6833,4.663,6834,4.663,6835,4.663,6836,4.663,6837,4.663,6838,6.594,6839,6.594,6840,4.663,6841,4.663,6842,4.663,6843,4.663,6844,4.663,6845,2.94,6846,2.94,6847,2.94,6848,2.94,6849,2.94,6850,2.94,6851,2.94,6852,2.647,6853,2.94,6854,2.94,6855,2.94,6856,5.794,6857,2.94,6858,2.94]],["description//posts/hugo-add-search-lunr-popup/",[40,1.846,174,0.818,360,1.777,433,1.226,698,1.811,1012,1.308,1593,2.272,1620,3.398,4962,1.921,6567,2.693]],["title//posts/hugo-add-image-zoomin/",[1148,1.695,4962,2.425,6575,3.976,6585,3.742]],["content//posts/hugo-add-image-zoomin/",[2,3.933,7,1.076,11,1.527,16,0.789,34,3.283,43,2.521,48,1.744,53,1.817,59,3.17,60,0.856,62,1.773,75,1.792,93,3.544,108,1.286,115,2.109,146,1.784,157,1.331,159,1.952,168,2.338,175,1.573,178,1.378,186,2.179,210,1.626,221,2.356,227,2.109,228,2.974,232,0.819,235,4.878,239,2.175,247,1.41,256,1.461,278,1.316,285,3.662,289,1.41,308,1.952,320,3.951,351,2.462,355,4.479,356,3.244,360,3.726,361,3.925,363,3.437,369,1.316,382,1.427,384,2.296,394,1.698,407,1.331,412,1.952,414,2.475,420,2.217,434,2.255,455,1.427,459,2.338,474,2.477,486,2.639,513,2.528,567,2.909,583,2.834,591,0.26,637,2.382,694,2.528,699,2.382,728,3.508,736,2.582,737,4.919,742,3.283,774,3.405,796,2.834,809,3.472,950,2.382,961,3.175,976,2.909,1038,3.378,1089,2.382,1114,1.088,1136,2.639,1148,2.452,1151,1.444,1158,2.011,1173,2.477,1177,2.477,1261,6.378,1358,3.078,1366,3.544,1396,2.765,1448,2.7,1462,2.486,1466,3.283,1489,2.143,1593,2.99,1599,3.901,1647,3.901,1660,3.13,1664,2.909,1724,2.765,1761,5.751,1807,6.729,1940,3.405,2076,2.382,2236,2.639,2595,2.99,2609,5.905,2736,3.283,2831,4.472,2888,3.175,3006,3.405,3404,4.145,4962,4.028,4971,5.647,5042,4.145,5417,4.917,6409,6.205,6545,8.66,6852,6.205,6859,6.893,6860,4.968,6861,4.968,6862,4.968,6863,7.916,6864,4.968,6865,7.916,6866,7.916,6867,7.696,6868,6.893,6869,4.968,6870,6.893,6871,9.295,6872,6.893,6873,6.893,6874,4.968,6875,6.893,6876,4.968,6877,6.893,6878,4.968,6879,4.968,6880,4.968,6881,6.893,6882,4.968,6883,4.968,6884,4.968,6885,4.968,6886,4.968,6887,4.968,6888,6.893,6889,6.893,6890,6.893,6891,4.968,6892,4.968,6893,4.968,6894,4.968,6895,4.968,6896,4.968,6897,4.968,6898,4.968,6899,4.968,6900,4.968,6901,4.968,6902,6.893,6903,4.968,6904,4.968,6905,4.968,6906,4.968]],["description//posts/hugo-add-image-zoomin/",[737,2.522,1148,1.871,4962,2.676,6545,4.387,6575,4.387]],["title//posts/howto-tkinter-interactive-plotly-chart/",[7,0.556,16,0.313,736,1.852,1702,2.442,4980,2.798,6907,2.973,6908,2.973]],["content//posts/howto-tkinter-interactive-plotly-chart/",[1,1.028,7,1.504,8,2.78,13,4.736,16,0.764,27,2.512,37,2.309,41,1.68,48,1.31,51,1.122,54,0.722,62,1.159,65,1.584,71,1.598,75,1.172,76,1.841,86,2.162,108,1.34,122,3.379,125,2.385,128,2.108,129,3.4,137,0.685,146,1.34,160,2.233,165,0.942,168,2.436,170,3.11,210,0.984,225,3.031,228,2.233,242,2.667,247,1.469,249,2.482,256,1.523,283,1.769,286,2.001,287,2.197,350,3.308,356,2.436,369,1.371,381,0.882,387,1.746,452,2.392,456,3.861,458,1.841,476,2.813,495,2.153,513,4.428,533,1.541,556,3.692,564,3.547,591,0.255,597,3.744,694,3.609,732,3.536,736,4.522,737,2.482,740,2.634,746,3.686,748,5.17,797,2.581,811,0.673,829,1.989,854,4.3,860,2.003,887,2.629,924,1.919,925,3.115,981,2.88,1039,2.482,1054,2.86,1173,2.581,1177,2.581,1216,3.207,1231,4.532,1238,2.202,1287,2.197,1303,1.487,1316,2.233,1423,2.88,1424,2.953,1464,2.88,1702,5.544,1706,4.318,1721,3.547,1981,2.096,2141,2.953,2184,3.547,2249,5.77,2294,2.88,2350,7.259,2473,2.203,2542,3.421,2645,1.435,2654,3.692,2702,5.058,2888,3.308,3010,1.794,3238,4.045,3454,5.916,4299,4.064,4323,3.115,4501,4.659,4681,3.861,4978,4.532,4980,7.909,4985,4.659,5334,4.318,5423,4.064,5611,4.659,6106,4.659,6261,4.659,6907,7.259,6908,7.259,6909,5.175,6910,10.169,6911,5.175,6912,5.175,6913,5.175,6914,5.175,6915,5.175,6916,5.175,6917,5.175,6918,5.175,6919,5.175,6920,7.09,6921,5.175,6922,7.09,6923,5.175,6924,5.175,6925,5.175,6926,5.175,6927,5.175,6928,5.175,6929,5.175,6930,5.175,6931,5.175,6932,5.175,6933,5.175,6934,5.175,6935,5.175,6936,5.175,6937,5.175,6938,5.175,6939,5.175,6940,5.175,6941,5.175,6942,7.09,6943,7.09,6944,5.175,6945,5.175,6946,5.175,6947,5.175,6948,5.175,6949,5.175,6950,5.175,6951,5.175,6952,5.175,6953,5.175,6954,5.175,6955,7.09,6956,7.09,6957,5.175,6958,5.175,6959,5.175,6960,5.175,6961,5.175,6962,5.175,6963,5.175,6964,5.175,6965,5.175]],["description//posts/howto-tkinter-interactive-plotly-chart/",[7,0.53,16,0.298,27,0.868,65,0.949,736,1.764,870,0.975,925,2.042,1702,2.325,4980,2.664,6907,2.831,6908,2.831]],["title//posts/howto-rename-files-in-python/",[351,1.472,1238,1.358,1653,3.83]],["content//posts/howto-rename-files-in-python/",[16,0.764,48,1.793,53,2.59,120,2.135,146,2.251,171,2.251,178,1.964,186,3.814,211,2.299,229,3.575,240,2.329,307,1.988,351,2.941,352,3.763,429,1.143,430,5.91,525,5.562,533,2.801,557,3.056,565,2.453,580,3.107,591,0.246,597,3.539,653,3.942,655,2.555,754,1.919,926,3.605,929,1.438,934,2.59,1238,1.793,1255,5.053,1279,2.825,1360,3.161,1653,6.712,1847,6.271,2065,4.528,2245,5.562,2292,6.724,2478,4.528,6966,10.069,6967,7.084,6968,7.084,6969,9.811,6970,7.084,6971,8.695,6972,7.084,6973,7.084,6974,7.084,6975,7.084,6976,7.084,6977,7.084,6978,7.084,6979,7.084,6980,7.084,6981,8.695,6982,7.084,6983,7.084,6984,8.695,6985,8.695,6986,8.695,6987,7.084,6988,7.084]],["description//posts/howto-rename-files-in-python/",[351,1.71,1238,1.579,1653,4.45]],["title//posts/howto-install-rhel-9-free/",[122,1.625,412,1.528,931,2.022,950,1.866,2442,2.219,6989,3.246]],["content//posts/howto-install-rhel-9-free/",[1,1.174,5,1.852,7,1.396,10,1.623,11,0.888,14,2.346,16,0.726,21,2.788,27,2.289,30,1.268,42,1.788,51,1.522,60,0.691,62,0.897,65,1.076,66,1.179,68,2.55,70,1.874,72,1.758,75,1.59,82,2.874,89,1.426,94,1.551,96,1.922,97,4.538,110,2.23,114,2.357,122,4.384,125,1.925,127,1.407,128,1.572,129,1.922,134,3.433,142,1.919,146,1.818,147,1.729,149,3.367,157,1.073,160,1.729,165,0.73,168,1.886,170,2.593,172,2.721,174,1.281,180,2.23,181,3.557,182,2.161,183,1.886,184,1.959,188,1.268,189,1.959,203,1.788,212,3.662,221,1.37,223,1.151,227,3.508,239,1.814,240,2.548,246,1.758,275,2.412,276,2.161,278,1.061,286,1.737,289,1.138,301,4.641,306,1.819,307,1.124,320,1.852,328,1.758,340,3.305,351,1.62,356,2.782,361,3.045,363,4.312,369,1.061,377,2.99,378,2.509,384,2.732,406,2.083,412,3.973,439,1.959,445,1.781,455,1.151,465,1.998,473,1.623,480,3.045,484,1.758,495,1.462,508,1.426,509,1.852,513,4.672,514,4.243,517,2.99,533,1.193,537,2.637,541,3.14,545,6.13,578,1.998,579,3.147,591,0.14,597,1.507,653,2.23,656,3.816,707,2.23,721,2.483,734,1.896,746,3.65,754,1.086,795,1.886,797,4.121,816,2.483,826,2.346,854,1.788,856,2.859,864,2.286,873,2.357,887,3.065,894,2.23,924,2.192,931,3.65,934,1.465,950,4.402,961,2.561,1012,1.388,1038,2.223,1105,2.99,1119,2.286,1137,2.859,1147,3.08,1148,3.077,1160,1.959,1168,1.284,1169,1.886,1175,4.641,1177,1.998,1178,2.887,1182,2.561,1184,4.934,1185,2.23,1187,2.346,1190,1.574,1192,2.483,1236,2.412,1238,1.014,1258,2.947,1279,1.598,1297,1.623,1317,2.286,1331,3.147,1346,2.346,1374,2.859,1377,1.819,1415,3.344,1431,2.859,1454,2.346,1466,2.649,1525,3.344,1551,4.051,1638,3.344,1652,3.607,1664,3.461,1673,1.886,1678,2.99,1691,3.14,1699,5.009,1701,2.747,1727,3.14,1732,2.346,1733,3.147,1767,2.859,1795,2.99,1821,3.147,1869,2.933,1892,2.859,1946,3.147,2065,2.561,2076,2.834,2096,2.129,2117,5.859,2123,6.598,2124,8.105,2171,3.607,2181,2.747,2183,3.607,2234,2.129,2236,2.129,2263,5.859,2268,3.147,2275,3.344,2293,4.051,2327,4.216,2442,5.347,2443,2.859,2444,2.346,2553,4.226,2754,3.607,2791,2.99,2813,3.607,2957,3.344,3379,3.607,3385,2.649,4025,3.147,4370,3.344,4782,6.321,4978,2.561,5097,3.147,5104,2.99,5533,3.607,5553,4.641,5874,3.344,6088,3.607,6459,3.607,6507,3.344,6509,4.931,6516,2.99,6541,7.44,6603,6.977,6640,3.607,6686,3.607,6989,8.437,6990,4.007,6991,4.007,6992,4.007,6993,4.007,6994,4.007,6995,4.007,6996,4.007,6997,4.007,6998,4.007,6999,4.007,7000,4.007,7001,4.007,7002,4.007,7003,4.007,7004,4.007,7005,4.007,7006,4.007,7007,4.007,7008,4.007,7009,4.007,7010,4.007,7011,7.022,7012,4.007,7013,5.91,7014,4.007,7015,4.007,7016,4.007,7017,4.007,7018,4.007,7019,4.007,7020,4.007,7021,4.007,7022,4.007,7023,4.007,7024,4.007,7025,5.91,7026,4.007,7027,4.007]],["description//posts/howto-install-rhel-9-free/",[122,2.036,412,1.915,931,2.534,950,2.338,2442,2.781,6989,4.068]],["title//posts/howto-create-react-electron-app-ts/",[7,0.669,27,1.096,1288,2.831,2151,2.936,6719,3.364]],["content//posts/howto-create-react-electron-app-ts/",[7,1.327,16,0.642,21,2.465,27,2.05,28,2.232,41,1.394,48,1.573,51,1.736,54,0.599,59,2.709,65,1.763,75,2.069,82,1.191,83,3.55,94,2.406,108,1.111,121,1.615,122,3.701,125,2.429,126,2.744,129,2.059,133,2.682,137,0.415,142,2.018,146,2.073,149,3.504,165,0.782,168,4.489,170,1.883,172,1.507,174,0.93,186,2.727,188,1.968,189,3.039,201,2.021,223,2.301,239,1.005,242,1.615,245,1.233,247,1.765,283,3.124,286,1.062,289,1.219,319,4.108,328,2.727,351,2.33,356,2.021,369,2.565,372,1.793,390,1.638,393,1.548,395,2.281,400,1.765,447,2.185,455,1.786,476,2.334,480,1.687,484,1.883,489,3.973,495,2.192,500,2.39,513,2.185,576,2.635,591,0.259,597,3.333,626,3.49,637,2.059,694,2.185,702,3.039,732,2.141,737,4.382,746,3.231,770,4.168,776,3.973,804,1.949,811,0.559,829,1.744,854,4.501,887,1.592,924,1.592,925,3.741,934,1.57,981,2.39,1038,1.615,1114,0.941,1116,2.021,1148,1.528,1151,1.248,1153,3.582,1160,2.099,1178,2.556,1179,2.584,1194,2.232,1283,2.449,1288,2.838,1296,2.66,1297,3.243,1389,4.397,1405,2.584,1447,2.021,1479,3.163,1583,2.943,1664,2.514,1665,1.662,1732,3.64,1807,2.838,1835,3.203,1847,2.744,1876,3.063,1946,3.371,2005,3.203,2151,7.136,2184,2.943,2327,3.063,2408,4.434,2444,2.514,2452,2.838,2542,2.838,2560,5.737,2571,5.451,2574,4.816,2604,3.973,2689,3.371,2700,6.674,2786,5.737,2845,3.203,2888,2.744,4159,3.865,4323,2.584,4602,1.487,4860,6.063,4950,3.973,4968,5.451,5063,4.434,5261,3.582,5423,3.371,5444,3.582,5541,3.371,5585,5.595,6402,3.582,6506,3.203,6719,8.319,7028,4.293,7029,4.293,7030,4.293,7031,6.216,7032,6.216,7033,6.216,7034,6.216,7035,4.293,7036,4.293,7037,4.293,7038,7.306,7039,7.306,7040,7.306,7041,4.293,7042,4.293,7043,4.293,7044,4.293,7045,6.216,7046,4.293,7047,4.293,7048,4.293,7049,4.293,7050,4.293,7051,4.293,7052,4.293,7053,4.293,7054,4.293,7055,4.293,7056,6.216,7057,4.293,7058,4.293,7059,4.293,7060,6.216,7061,6.216,7062,6.216,7063,4.293,7064,4.293,7065,4.293,7066,4.293,7067,4.293,7068,4.293,7069,4.293,7070,4.293,7071,4.293,7072,4.293,7073,4.293,7074,4.293,7075,4.293,7076,4.293,7077,4.293,7078,6.216,7079,6.216,7080,4.293,7081,6.216,7082,8.009,7083,4.293,7084,4.293,7085,4.293]],["description//posts/howto-create-react-electron-app-ts/",[7,0.709,27,1.163,848,3.39,1288,3.003,2151,3.115,5063,3.242,6719,3.568]],["title//posts/howto-create-deepclone-js/",[7,0.669,655,1.545,758,2.654,1479,2.18,2691,2.936]],["content//posts/howto-create-deepclone-js/",[7,1.152,16,0.842,54,1.029,61,4.427,62,1.653,64,1.806,137,0.713,269,3.294,431,3.048,591,0.261,655,3.216,758,6.165,811,0.96,1015,3.185,1145,3.609,1287,3.133,1324,2.944,1490,4.108,1807,6.332,2691,5.06,5391,6.645,5401,8.623,7086,8.916,7087,7.382,7088,7.382,7089,7.382,7090,7.382,7091,7.382,7092,7.382,7093,7.382,7094,8.916,7095,7.382,7096,8.916,7097,8.916,7098,7.382,7099,7.382,7100,7.382,7101,7.382,7102,7.382,7103,7.382]],["description//posts/howto-create-deepclone-js/",[7,0.821,655,1.896,758,3.258,1479,2.676,2691,3.604]],["title//posts/how-to-upload-app-to-sourceforge/",[27,1.219,699,2.285,7104,4.765,7105,3.976]],["content//posts/how-to-upload-app-to-sourceforge/",[1,1.092,4,2.859,5,2.542,7,1.554,10,3.612,11,1.218,25,2.859,37,3.297,51,1.808,53,2.011,54,0.767,60,0.948,62,1.232,65,1.745,68,3.849,72,2.413,82,2.049,90,2.744,108,1.424,114,2.947,127,2.594,133,2.373,137,0.531,142,2.709,146,2.576,165,1.001,168,5.034,171,1.424,172,1.931,178,2.474,181,4.447,183,4.381,188,1.741,200,4.589,204,2.689,206,2.542,212,3.408,219,4.113,223,2.397,227,2.335,231,3.184,239,1.729,241,2.589,245,1.58,279,3.379,280,1.473,289,1.561,351,2.551,355,4.161,363,4.882,364,3.924,366,2.989,369,1.457,429,0.888,445,2.227,455,1.58,487,2.903,495,2.463,500,3.061,514,4.123,524,2.454,533,2.485,591,0.175,600,3.221,654,4.103,698,2.638,699,4.278,727,2.161,728,2.799,742,3.635,746,3.841,873,2.193,887,3.094,924,3.094,934,2.011,939,4.319,950,4.002,1008,4.589,1024,2.04,1145,3.612,1146,3.328,1147,3.242,1148,3.726,1151,1.599,1164,2.689,1165,4.589,1167,2.922,1168,2.369,1178,3.039,1179,3.31,1185,4.644,1192,4.579,1222,3.761,1320,5.513,1325,3.685,1358,3.408,1462,2.665,1464,3.061,1551,3.77,1583,3.77,1590,6.963,1597,3.77,1696,4.319,1727,2.922,2416,3.924,2486,2.454,2550,4.951,2553,5.369,2557,2.859,2559,7.444,2600,4.884,2630,4.216,2644,4.951,2660,3.635,2689,4.319,2830,4.589,2990,3.924,3372,4.951,6522,4.103,7105,8.17,7106,5.5,7107,5.5,7108,5.5,7109,7.389,7110,5.5,7111,5.5,7112,5.5,7113,5.5,7114,5.5]],["description//posts/how-to-upload-app-to-sourceforge/",[27,0.666,65,1.119,86,1.087,153,1.161,168,1.225,240,0.855,279,1.053,280,0.697,699,1.248,870,1.214,924,0.965,1091,0.965,1111,2.043,7105,2.171]],["title//posts/docker-commands/",[94,2.078,477,2.732,1146,2.141]],["content//posts/docker-commands/",[1,1.77,3,2.907,7,1.391,11,0.6,16,0.732,27,1.117,30,1.382,31,2.485,40,2.134,41,0.879,57,0.89,60,1.189,66,0.797,71,1.694,85,3.511,92,2.429,94,2.671,95,1.378,108,0.701,116,2.034,124,1.63,125,2.808,127,2.208,128,0.606,134,2.134,140,2.406,141,4.693,142,0.879,145,2.429,146,0.701,153,2.447,165,0.493,171,0.701,172,1.925,174,1.363,177,3.256,178,0.751,180,1.507,184,1.324,186,1.915,211,0.879,223,1.575,227,3.782,233,1.507,238,2.221,240,0.89,242,1.642,256,0.797,262,1.324,263,1.208,264,1.63,278,0.717,283,2.989,286,1.08,295,1.064,309,1.149,344,2.79,351,2.022,355,1.35,361,4.083,368,3.501,369,1.156,371,5.159,383,2.807,384,1.251,385,1.018,396,0.99,398,1.472,399,1.324,455,1.254,460,1.298,477,5.598,478,2.682,495,2.117,511,1.131,532,1.35,533,0.806,534,0.742,535,2.177,557,1.168,563,1.741,565,3.389,585,4.306,591,0.257,608,2.02,613,1.168,616,3.428,626,0.963,629,1.585,632,2.177,641,1.69,696,0.913,699,2.093,732,3.137,742,2.885,750,2.177,754,0.734,770,1.545,773,2.705,776,3.505,783,2.986,785,4.492,789,6.091,795,2.581,797,4.935,809,3.753,820,1.229,854,2.447,861,0.562,863,4.857,885,1.731,891,2.885,892,2.437,901,4.04,924,2.034,929,1.113,934,2.523,950,2.093,958,2.885,975,1.472,1005,2.791,1020,3.398,1032,3.114,1038,1.642,1039,1.298,1043,3.114,1049,2.67,1077,7.212,1111,2.126,1146,1.741,1147,1.188,1177,4.024,1184,1.545,1197,5.334,1202,1.35,1232,2.437,1233,2.49,1241,3.114,1252,3.642,1253,2.437,1254,4.439,1255,5.944,1261,3.256,1279,1.741,1286,3.075,1315,1.472,1317,1.545,1352,2.259,1353,1.35,1358,4.806,1377,1.982,1398,4.806,1405,2.627,1454,2.556,1494,2.437,1514,1.048,1515,1.438,1528,1.378,1583,2.992,1594,1.507,1612,4.317,1624,1.188,1665,2.671,1682,3.256,1710,1.932,1722,1.251,1767,3.114,1948,3.625,1998,3.642,2063,1.79,2116,6.153,2293,1.856,2352,2.259,2406,3.929,2413,5.055,2419,4.121,2442,1.545,2449,2.02,2460,2.437,2568,6.153,2604,1.731,2645,0.751,2753,2.992,2763,7.297,2779,2.437,2786,2.126,2863,1.507,2918,1.79,3084,1.932,3173,2.885,3174,2.556,3387,5.662,3838,3.428,3917,2.126,4163,2.437,4751,7.872,4768,2.437,4860,4.487,4939,3.114,5530,5.791,5541,2.126,6506,2.02,6671,2.437,6867,6.21,7115,8.332,7116,8.911,7117,4.365,7118,5.484,7119,4.365,7120,8.07,7121,2.708,7122,2.708,7123,2.708,7124,5.484,7125,7.375,7126,4.365,7127,2.708,7128,4.365,7129,4.365,7130,4.365,7131,2.708,7132,2.708,7133,2.708,7134,2.708,7135,8.745,7136,6.899,7137,2.708,7138,4.365,7139,2.708,7140,2.708,7141,7.375,7142,2.708,7143,2.708,7144,2.708,7145,2.708,7146,4.365,7147,2.708,7148,2.708,7149,2.708,7150,4.365,7151,4.365,7152,4.365,7153,2.708,7154,2.708,7155,2.708,7156,2.708,7157,2.708,7158,2.708,7159,2.708,7160,2.708,7161,2.708,7162,2.708,7163,2.708,7164,2.708]],["description//posts/docker-commands/",[94,2.415,477,3.175,1405,3.754]],["title//posts/diploma/",[932,4.586,946,4.586]],["content//posts/diploma/",[210,1.613,315,4.611,455,2.437,767,5.257,946,6.329,1187,4.967,3398,7.636,7165,8.483,7166,8.483,7167,8.483]],["description//posts/diploma/",[614,4.071,847,4.257,946,4.257,953,4.257]],["title//posts/cloud-exam-quizz/amplify-setup-project",[32,0.918,168,2.016,537,1.911,907,2.936,2630,2.444]],["content//posts/cloud-exam-quizz/amplify-setup-project",[8,2.187,16,0.63,29,2.859,68,3.093,92,3.989,94,3.39,116,2.658,122,2.994,125,1.965,133,3.093,134,3.504,137,0.846,146,2.267,159,2.816,160,3.093,168,4.838,184,3.504,186,3.145,231,2.735,239,1.678,240,3.239,242,2.696,283,3.513,286,1.774,288,5.114,328,3.145,340,3.374,351,1.965,397,3.808,455,2.059,480,2.816,495,1.774,537,4.22,578,3.574,591,0.233,611,3.254,854,3.908,907,7.045,924,2.658,1148,2.55,1151,2.546,1193,2.948,1194,3.726,1222,4.457,1315,3.896,1450,6.452,1500,6.045,1732,4.197,2315,5.981,2398,4.913,2630,5.864,2700,6.878,3680,6.452,4950,6.045,5549,5.981,5999,6.452,7168,7.168,7169,7.168,7170,7.168,7171,7.168,7172,7.168,7173,7.168]],["description//posts/cloud-exam-quizz/amplify-setup-project",[32,1.127,537,2.346,829,1.475,907,3.604,2630,3]],["title//posts/cloud-exam-quizz/amplify-custom-domain",[32,0.918,51,0.928,89,1.524,679,2.444,907,2.936]],["content//posts/cloud-exam-quizz/amplify-custom-domain",[3,3.048,15,4.087,16,0.579,17,2.516,18,5.937,32,1.414,35,2.379,51,1.974,57,2.168,62,1.863,65,1.201,89,3.782,120,1.988,128,2.04,133,3.588,142,2.957,159,3.267,163,2.48,178,2.306,192,3.969,221,2.254,223,1.895,239,2.488,280,1.767,286,1.632,340,3.104,347,2.799,365,2.712,372,3.474,410,3.504,420,3.711,455,1.895,495,2.058,514,3.048,533,1.964,537,2.943,541,3.504,591,0.216,666,5.935,671,1.596,679,6.221,734,2.34,757,5.937,770,3.763,772,3.289,854,2.943,887,3.084,907,7.367,1004,4.419,1038,2.48,1112,3.356,1113,4.52,1119,3.763,1148,2.346,1151,1.917,1222,4.233,1279,2.63,1380,6.796,1551,5.7,1904,6.939,2113,4.359,2235,4.359,2834,5.937,2871,3.763,7174,8.317]],["description//posts/cloud-exam-quizz/amplify-custom-domain",[32,1.127,51,1.139,89,1.871,679,3,907,3.604]],["title//posts/cheat-sheet-command-tar/",[94,1.845,3173,3.149,3174,2.79,7175,3.976]],["content//posts/cheat-sheet-command-tar/",[1,1.431,7,1.54,83,3.67,127,2.529,189,3.522,211,2.339,255,3.667,290,4.336,351,2.883,352,3.828,385,2.71,478,1.823,533,2.616,732,3.593,999,3.522,1082,7.072,1255,5.14,1279,2.873,1324,2.873,1377,3.271,1515,3.828,1522,6.762,2184,4.938,2214,5.616,2918,4.762,3048,7.341,3267,5.375,3639,4.762,5539,6.012,7175,9.052,7176,9.479,7177,7.205,7178,7.205,7179,7.205,7180,7.205,7181,10.291,7182,8.786,7183,9.868,7184,7.205,7185,9.479,7186,7.205,7187,7.205,7188,8.786,7189,7.205,7190,8.786,7191,7.205,7192,7.205]],["description//posts/cheat-sheet-command-tar/",[94,2.209,3173,3.771,3174,3.341,7175,4.761]],["title//posts/archive/",[236,2.948,1522,4.385]],["content//posts/archive/",[236,4.085,591,0.229,863,5.126,2963,8.729,2964,7.615]],["description//posts/archive/",[]],["title//photos/_index",[361,2.824]],["content//photos/_index",[]],["description//photos/_index",[]],["title//photos/midjourney/",[8,1.638,2129,3.548,7193,4.832]],["content//photos/midjourney/",[2,5.542,591,0.26,727,3.817,827,6.658,1711,6.833,1813,5.05,2382,7.628,2664,3.241,3532,6.93,4908,7.628,5374,8.745,6438,8.745,7194,9.715,7195,9.715,7196,6.886,7197,9.715,7198,9.715,7199,9.387,7200,9.715,7201,9.715,7202,9.715,7203,9.715,7204,9.715,7205,9.715,7206,6.886,7207,6.886]],["description//photos/midjourney/",[8,1.903,2129,4.123,7193,5.615]],["title//photos/ai/",[8,1.875,2129,4.063]],["content//photos/ai/",[]],["description//photos/ai/",[8,2.098,2129,4.546]],["title//photos/22-07-02-israel-haifa-bahai-gardens/",[6703,3.742,7208,4.289,7209,4.289,7210,4.289]],["content//photos/22-07-02-israel-haifa-bahai-gardens/",[100,4.658,535,4.273,591,0.23,1056,4.454]],["description//photos/22-07-02-israel-haifa-bahai-gardens/",[6703,4.481,7208,5.136,7209,5.136,7210,5.136]],["title//p/supportme",[53,2.629]],["content//p/supportme",[]],["description//p/supportme",[]],["title//p/links",[1462,2.593]],["content//p/links",[1,1.514,7,1.419,8,2.325,69,3.588,120,2.297,121,2.867,129,3.655,137,0.736,351,2.09,352,4.05,361,3.571,375,3.801,396,2.787,450,2.712,622,4.349,630,5.687,637,3.655,673,3.962,863,4.588,929,1.547,931,5.048,962,5.438,976,5.322,1263,5.687,1335,1.514,1338,6.36,1443,5.986,1601,4.723,1648,3.962,1686,5.986,2129,6.892,2185,5.225,2600,5.038,3157,4.588,4905,6.861,4983,4.723,5781,6.781,6113,6.861,6526,6.861,6639,6.861,7199,6.861,7211,7.623,7212,7.623,7213,7.623,7214,9.089,7215,7.623,7216,7.623,7217,7.623,7218,7.623,7219,7.623,7220,7.623,7221,7.623,7222,7.623,7223,7.623]],["description//p/links",[]],["title//homepage/pages",[236,3.448]],["content//homepage/pages",[]],["description//homepage/pages",[]],["title//homepage/",[]],["content//homepage/",[]],["description//homepage/",[]],["title//homepage/experience",[498,4.596]],["content//homepage/experience",[]],["description//homepage/experience",[]],["title//homepage/education",[7224,7.189]],["content//homepage/education",[]],["description//homepage/education",[]],["title//homepage/about",[2967,4.213,6630,5.129]],["content//homepage/about",[]],["description//homepage/about",[]],["title//authors/roman-kurnovskii/_index",[2967,4.213,6630,5.129]],["content//authors/roman-kurnovskii/_index",[]],["description//authors/roman-kurnovskii/_index",[]],["title//apps/_index",[854,3.208]],["content//apps/_index",[7,1.428,14,4.513,15,4.775,17,2.94,32,1.961,38,3.12,134,3.767,168,3.627,199,5.669,242,2.898,280,2.064,312,3.767,351,2.508,360,3.627,368,4.289,433,2.502,486,4.094,530,3.381,576,2.779,773,5.669,861,1.599,918,5.749,1233,4.397,1238,1.95,1259,4.513,1593,4.638,2130,5.749,2292,5.282,2466,4.006,2473,1.804,2574,4.189,2664,3.627,2696,8.235,3636,4.513,4834,7.184,4962,4.656,4971,6.527,4978,4.926,5104,5.749,5781,6.825,6506,5.749,6516,7.279,6522,5.749,6567,5.498,6753,7.184,7225,7.706,7226,6.937]],["description//apps/_index",[]],["title//apps/npm/hugo-lunr-ml/",[2130,4.005,4962,2.732,6753,4.216]],["content//apps/npm/hugo-lunr-ml/",[]],["description//apps/npm/hugo-lunr-ml/",[7,0.664,351,1.167,360,2.003,433,1.381,1593,2.561,4962,2.166,6567,3.036,6753,3.342]],["title//apps/npm/cognito-token-observer/",[199,3.326,486,2.852,773,3.326]],["content//apps/npm/cognito-token-observer/",[]],["description//apps/npm/cognito-token-observer/",[23,0.71,178,0.991,199,2.215,240,1.175,312,1.747,416,2.362,773,2.215,809,1.568,1259,2.093,1878,3.87]],["title//apps/cloud-exam-quizz/",[15,3.326,17,2.048,7226,4.832]],["content//apps/cloud-exam-quizz/",[9,3.808,15,5.043,17,3.105,27,2.083,41,2.642,43,2.976,60,1.403,62,1.823,69,4.446,210,1.548,248,4.766,381,1.388,673,4.23,734,1.991,754,2.205,772,4.71,855,5.202,1113,5.578,1194,4.23,1366,5.806,1462,2.935,1667,6.791,1927,3.151,2149,4.898,2575,4.23,2729,6.391,7227,8.139]],["description//apps/cloud-exam-quizz/",[15,3.258,17,2.006,734,1.287,772,2.622,1194,2.733]],["title//apps/brewmate/",[6522,5.364]],["content//apps/brewmate/",[10,3.048,16,0.661,27,2.472,53,3.299,122,4.184,171,1.948,172,2.642,174,1.631,246,3.302,281,3.195,286,1.862,351,2.473,355,4.498,476,4.091,480,2.957,853,5.616,854,4.569,860,2.914,864,4.294,924,2.791,931,4.689,934,2.753,950,4.633,1012,2.607,1146,3.002,1148,2.678,1294,4.975,1434,5.37,1825,5.37,1933,6.281,2184,5.159,2553,4.53,4978,4.811,5097,7.864,5102,6.281,5104,7.472,6514,8.696,6516,5.616,6522,7.472,7228,7.527,7229,9.021,7230,7.527,7231,7.527,7232,7.527,7233,7.527,7234,7.527]],["description//apps/brewmate/",[280,1.529,854,2.546,4978,3.647,6516,4.257]]],"invertedIndex":[["",{"_index":591,"title":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/archive/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/posts/archive/":{},"/photos/midjourney/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["0",{"_index":1114,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["0'",{"_index":3363,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["0).wordcount",{"_index":6855,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["0,0,0,0],[0,4,5,0],[0,3,1,0",{"_index":3437,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["0,0000133334",{"_index":1789,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0,1",{"_index":3622,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["0,1,1",{"_index":3901,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["0,1,2,0],[3,4,5,2],[1,3,1,5",{"_index":3436,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["0,1],[1,0",{"_index":3623,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["0,2",{"_index":4772,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["0,20",{"_index":1786,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0.(3",{"_index":3843,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["0.0.0.0/0",{"_index":2210,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["0.000016667",{"_index":1784,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0.0047/hour",{"_index":4946,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["0.1",{"_index":5276,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["0.10",{"_index":2112,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["0.2",{"_index":5277,"title":{},"content":{"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["0.25",{"_index":3530,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["0.25000",{"_index":3527,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["0.30000000000000004",{"_index":5278,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["0.33",{"_index":5757,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["0.3333",{"_index":3842,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["0.5",{"_index":4232,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["00",{"_index":4105,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["0000",{"_index":4339,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["00000001011",{"_index":4325,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["0001",{"_index":4327,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["000644",{"_index":2924,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["001",{"_index":4328,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["0011",{"_index":4341,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["00:00:00.000",{"_index":6618,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["00:00:10.000",{"_index":6622,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["01",{"_index":4329,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/js-snippets":{}},"description":{}}],["01.01",{"_index":3396,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["01.png",{"_index":2070,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["0101",{"_index":4338,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["0110",{"_index":4336,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["02",{"_index":4698,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["02.png",{"_index":2295,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["03",{"_index":4699,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["03.png",{"_index":2296,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["03:24:00",{"_index":5175,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["04.png",{"_index":2297,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["05.png",{"_index":2298,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["06.png",{"_index":2299,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["07.png",{"_index":2301,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["08.png",{"_index":2303,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["09",{"_index":2900,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["09.png",{"_index":2310,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["0](2n",{"_index":4657,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["0fd18c8deb52983d5",{"_index":2945,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["0s",{"_index":3448,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["1",{"_index":137,"title":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{}}}],["1'",{"_index":3058,"title":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["1,0,1",{"_index":3897,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["1,0,1,2",{"_index":3895,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["1,0,1],[0,0,0],[1,0,1",{"_index":3435,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["1,000",{"_index":7213,"title":{},"content":{"/p/links":{}},"description":{}}],["1,095",{"_index":1823,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["1,1,1],[1,0,1],[1,1,1",{"_index":3434,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["1,1,2,3,4,4",{"_index":4289,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["1,10,100",{"_index":4414,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["1,2",{"_index":3896,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["1,2,1",{"_index":3514,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["1,2,3",{"_index":3391,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-snippets/":{}},"description":{}}],["1,2,3):[1,2,3",{"_index":6165,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["1,2,3,4,5",{"_index":3798,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/posts/python-snippets/":{}},"description":{}}],["1,2,3,4,5,6",{"_index":4270,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["1,2,3,4,5,6,7",{"_index":3816,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["1,2,3,5",{"_index":3799,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1",{"_index":3621,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["1,2,3],[4,5,6],[7,8,9",{"_index":3613,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["1,2,4",{"_index":4240,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["1,2,5,7,8,9,10",{"_index":4206,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["1,3",{"_index":3476,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,3,2",{"_index":4205,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["1,3,4",{"_index":4288,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["1,3],[2,6],[8,10],[15,18",{"_index":3474,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,4",{"_index":3481,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,4],[4,5",{"_index":3479,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,5",{"_index":3480,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,6",{"_index":3478,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,6],[8,10],[15,18",{"_index":3475,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,7,8",{"_index":3516,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["1,8,6,2,5,4,8,3,7",{"_index":4165,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["1,8c1",{"_index":6700,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["1,null,2,3",{"_index":4204,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["1,𝑎_2",{"_index":4889,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["1..i",{"_index":3559,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["1.0",{"_index":896,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-snippets/":{}},"description":{}}],["1.12(345",{"_index":3856,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["1.14.0.jar",{"_index":5476,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["1.2.2.zip",{"_index":2762,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["1.5",{"_index":5274,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["1.console.aws.amazon.com/amplify/home?region=eu",{"_index":7169,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["1.next",{"_index":4267,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["1/22",{"_index":3528,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["1/3",{"_index":3841,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["1/4",{"_index":3529,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["10",{"_index":450,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/p/links":{}},"description":{}}],["10**9",{"_index":4193,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["10.0",{"_index":5643,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["10.0.0.0/16",{"_index":2304,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.1.0/24",{"_index":2309,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.100.0/24(u",{"_index":2305,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.101.0/24",{"_index":2307,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.1",{"_index":5646,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["10.15",{"_index":7233,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["10.png",{"_index":2311,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10/3",{"_index":3721,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["100",{"_index":1423,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["1000",{"_index":1424,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["1000000007(109+7",{"_index":4817,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["10011",{"_index":5093,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["1004",{"_index":3055,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["100[(c",{"_index":5626,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["100k",{"_index":5481,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["100kb",{"_index":5478,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["101",{"_index":3370,"title":{"/tracks/algorithms-101/_index":{}},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/_index":{}}}],["1010",{"_index":4337,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["1011",{"_index":4326,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["10111",{"_index":5092,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["102",{"_index":6741,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["1024",{"_index":5558,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["1024.00000",{"_index":3524,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["104",{"_index":3085,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["107",{"_index":4778,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["1071",{"_index":3031,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["10^9",{"_index":3466,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["10tb",{"_index":2839,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["11",{"_index":1673,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["11.0",{"_index":5644,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["11.png",{"_index":2313,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["1100",{"_index":4743,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["11011",{"_index":5091,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["116",{"_index":4074,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["1161",{"_index":3098,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["12",{"_index":1116,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["12.0",{"_index":5648,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["12.1",{"_index":5647,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["12.2",{"_index":5649,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["12.png",{"_index":2317,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["120",{"_index":3454,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["1200",{"_index":5433,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["1207",{"_index":3064,"title":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1207":{}}}],["1211",{"_index":3642,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["122",{"_index":4069,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["123",{"_index":3452,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["1234",{"_index":4437,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["12345",{"_index":1630,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["1234567890ab",{"_index":1843,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["1234abcd",{"_index":1839,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["124",{"_index":4241,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["128",{"_index":3711,"title":{"/tracks/algorithms-101/leetcode/medium/128":{}},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/128":{}}}],["128k",{"_index":5136,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["12ab",{"_index":1840,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["13",{"_index":1675,"title":{"/tracks/algorithms-101/leetcode/easy/13":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{"/tracks/algorithms-101/leetcode/easy/13":{}}}],["13.4",{"_index":5658,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["13.4(sma",{"_index":5755,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["13.9",{"_index":5653,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["13.png",{"_index":2318,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["130",{"_index":4050,"title":{"/tracks/algorithms-101/leetcode/medium/130":{}},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{"/tracks/algorithms-101/leetcode/medium/130":{}}}],["131",{"_index":4038,"title":{"/tracks/algorithms-101/leetcode/medium/131":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{}}}],["132",{"_index":6734,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["134",{"_index":4024,"title":{"/tracks/algorithms-101/leetcode/medium/134":{}},"content":{},"description":{}}],["136",{"_index":3161,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1372",{"_index":3090,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["138",{"_index":4009,"title":{"/tracks/algorithms-101/leetcode/medium/138":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/138":{}}}],["139",{"_index":3992,"title":{"/tracks/algorithms-101/leetcode/medium/139":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/139":{}}}],["14",{"_index":1124,"title":{"/tracks/algorithms-101/leetcode/easy/14":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{"/tracks/algorithms-101/leetcode/easy/14":{}}}],["14.0",{"_index":5654,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["14.1",{"_index":5655,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["14.13",{"_index":5762,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["14.9",{"_index":5675,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["14.png",{"_index":2320,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["140",{"_index":1845,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["141",{"_index":4382,"title":{"/tracks/algorithms-101/leetcode/easy/141":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/141":{}}}],["1431",{"_index":3034,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1433",{"_index":1574,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["1448.count",{"_index":3088,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1456",{"_index":3054,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["146",{"_index":3935,"title":{"/tracks/algorithms-101/leetcode/medium/146":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/146":{}}}],["1466",{"_index":3111,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["148",{"_index":3916,"title":{"/tracks/algorithms-101/leetcode/medium/148":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/148":{}}}],["1493",{"_index":3057,"title":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["15",{"_index":831,"title":{"/tracks/algorithms-101/leetcode/medium/15":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/15":{}}}],["15,13,2,5],[14,3,4,1],[12,6,8,9],[16,7,10,11",{"_index":3616,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["15.0",{"_index":5651,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.1",{"_index":5652,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.2",{"_index":5650,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.67",{"_index":5756,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["15.9",{"_index":5678,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.png",{"_index":2319,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["150",{"_index":3027,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["1500",{"_index":4631,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["151",{"_index":3041,"title":{"/tracks/algorithms-101/leetcode/medium/151":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["1510",{"_index":3381,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["152",{"_index":3873,"title":{"/tracks/algorithms-101/leetcode/medium/152":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/152":{}}}],["1521",{"_index":1573,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["159",{"_index":6743,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["15from",{"_index":2781,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["16",{"_index":2234,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["16.0",{"_index":5657,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["16.1",{"_index":5656,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["16.9",{"_index":5681,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["16.png",{"_index":2322,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["16.x",{"_index":1793,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["160",{"_index":4361,"title":{"/tracks/algorithms-101/leetcode/easy/160":{}},"content":{},"description":{}}],["1602162242",{"_index":5185,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["162",{"_index":3137,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["1657",{"_index":3065,"title":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["166",{"_index":3836,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["1679",{"_index":3051,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["168",{"_index":1939,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["169.254/latest/meta",{"_index":798,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["16:10",{"_index":6590,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["17",{"_index":1482,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["17.0",{"_index":5677,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["17.06.1",{"_index":7128,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["17.1",{"_index":5676,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["17.9",{"_index":5684,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["17.png",{"_index":2324,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["171",{"_index":4343,"title":{"/tracks/algorithms-101/leetcode/easy/171":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/171":{}}}],["1728x1080",{"_index":6591,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["1732",{"_index":3059,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["1768",{"_index":3030,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1772a",{"_index":4613,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["1773f",{"_index":4625,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}}}],["1774a",{"_index":4627,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["1776a",{"_index":4628,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["1776l",{"_index":4630,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["1777a",{"_index":4618,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["1777b",{"_index":4623,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["1778a",{"_index":4611,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["1787a",{"_index":4621,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}}}],["1788a",{"_index":4610,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["1791",{"_index":4784,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["1796b",{"_index":4615,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["1798a",{"_index":4607,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}}}],["1799a",{"_index":4609,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}}}],["17t03:24:00",{"_index":5177,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["18",{"_index":2236,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["18.0",{"_index":5680,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["18.1",{"_index":5679,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["18.5",{"_index":5280,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["1807a",{"_index":4603,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}}}],["1807b",{"_index":4604,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}}}],["1807c",{"_index":4606,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}}}],["1809a",{"_index":4600,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}}}],["182",{"_index":6081,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["1822",{"_index":4694,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}}}],["1822a",{"_index":4686,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["189",{"_index":3813,"title":{"/tracks/algorithms-101/leetcode/medium/189":{}},"content":{},"description":{}}],["19",{"_index":2237,"title":{"/tracks/algorithms-101/leetcode/medium/19":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{}}}],["19.0",{"_index":5683,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["19.1",{"_index":5682,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["19.9",{"_index":5689,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["190",{"_index":4330,"title":{"/tracks/algorithms-101/leetcode/easy/190":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/190":{}}}],["1900",{"_index":4781,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["191",{"_index":4321,"title":{"/tracks/algorithms-101/leetcode/easy/191":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/191":{}}}],["192",{"_index":6739,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["192.168.1.1",{"_index":1508,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["1926",{"_index":3118,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["192k",{"_index":6614,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["1950",{"_index":5625,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["1960",{"_index":6721,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["1978",{"_index":5782,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["1980",{"_index":5770,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["199",{"_index":3096,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1994",{"_index":4406,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["1995",{"_index":5174,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["1^i",{"_index":4807,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["1d",{"_index":3144,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1m",{"_index":5110,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["1mb",{"_index":1928,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["1p",{"_index":5107,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["1s",{"_index":2711,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["1st",{"_index":1797,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["1w",{"_index":2733,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["2",{"_index":54,"title":{"/tracks/algorithms-101/leetcode/medium/2":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2":{}}}],["2'",{"_index":3364,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["2)(2",{"_index":6239,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2)(3",{"_index":6238,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2**3",{"_index":6092,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2**31",{"_index":3735,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2*n",{"_index":4512,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["2,1",{"_index":3512,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["2,3,1,1,4",{"_index":3495,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["2,4,3",{"_index":3754,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["2,6",{"_index":3477,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["2...henc",{"_index":4656,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["2.0",{"_index":2316,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/python-snippets/":{}},"description":{}}],["2.00000",{"_index":3523,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["2.1",{"_index":895,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["2.10000",{"_index":3525,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["2.2",{"_index":4444,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["2.33333",{"_index":3723,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2.5",{"_index":5089,"title":{},"content":{"/posts/python-bitwise-operators":{},"/posts/js-snippets":{}},"description":{}}],["2.7335",{"_index":3717,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2.82842",{"_index":4233,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["2.amazonaws.com/v1/repos/lab",{"_index":2685,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["2.console.aws.amazon.com/lambda/home?region=u",{"_index":1791,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["2/(n+1",{"_index":5752,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["20",{"_index":2575,"title":{"/tracks/algorithms-101/leetcode/easy/20":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/20":{}}}],["20.0",{"_index":5686,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["20.1",{"_index":5685,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["200",{"_index":1408,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["2000",{"_index":1044,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["2010",{"_index":2899,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["2012",{"_index":1481,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["2015",{"_index":2498,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["2018",{"_index":5364,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["2019",{"_index":6995,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["202",{"_index":4298,"title":{"/tracks/algorithms-101/leetcode/easy/202":{}},"content":{},"description":{}}],["2020",{"_index":946,"title":{"/posts/diploma/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/mac-setup-development/":{},"/posts/diploma/":{}},"description":{"/posts/diploma/":{}}}],["2021",{"_index":1652,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2022",{"_index":1821,"title":{"/posts/mac-setup-development/":{}},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2022:22",{"_index":7131,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["2023",{"_index":848,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["206",{"_index":3081,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["208",{"_index":3164,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["2095",{"_index":3078,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["21",{"_index":2576,"title":{"/tracks/algorithms-101/leetcode/easy/21":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/21":{}}}],["21.0",{"_index":5688,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["21.1",{"_index":5687,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["21.99",{"_index":1210,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["212530",{"_index":6874,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["2130",{"_index":3082,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["2147483647",{"_index":3410,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2147483648",{"_index":3409,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["21th",{"_index":5703,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["22",{"_index":2578,"title":{"/tracks/algorithms-101/leetcode/medium/22":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/22":{}}}],["22.0",{"_index":5692,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["22.1",{"_index":5690,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["2215",{"_index":3063,"title":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/2215":{}}}],["225",{"_index":6556,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["23",{"_index":2589,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["23.0",{"_index":5694,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["23.1",{"_index":5691,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["231",{"_index":3450,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["234",{"_index":4264,"title":{"/tracks/algorithms-101/leetcode/easy/234":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/234":{}}}],["235",{"_index":6736,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["2352",{"_index":3066,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["236",{"_index":3092,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["238",{"_index":3043,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["2390",{"_index":3067,"title":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["24",{"_index":1938,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["24.0",{"_index":5696,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["24.1",{"_index":5693,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["25",{"_index":2595,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["25.0",{"_index":5698,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["25.1",{"_index":5695,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["255",{"_index":6742,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["256",{"_index":1371,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["257",{"_index":5081,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["26",{"_index":2596,"title":{"/tracks/algorithms-101/leetcode/easy/26":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/26":{}}}],["26.0",{"_index":5700,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["26.1",{"_index":5697,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["26th",{"_index":5711,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["27",{"_index":862,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["27.0",{"_index":5716,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["27.1",{"_index":5699,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["28",{"_index":859,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["28.0",{"_index":5718,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["28.1",{"_index":5715,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["283",{"_index":3049,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["2839",{"_index":4462,"title":{"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/2839/":{}}}],["2840",{"_index":4123,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{}}}],["2841",{"_index":4112,"title":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2841/":{}}}],["2842",{"_index":4184,"title":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{},"description":{}}],["2844",{"_index":4102,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["2880x1800",{"_index":6589,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["29",{"_index":2598,"title":{"/tracks/algorithms-101/leetcode/medium/29":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/29":{}}}],["29.0",{"_index":5720,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["29.1",{"_index":5717,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["2:(bestcent",{"_index":3571,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["2>&1",{"_index":5127,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["2^0",{"_index":4331,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["2^31",{"_index":4332,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["2a",{"_index":2546,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["2a)and",{"_index":2306,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2b",{"_index":2308,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2c6a45b",{"_index":5490,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["2d",{"_index":3610,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["2mb",{"_index":1929,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["2n",{"_index":4511,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["2nd",{"_index":2321,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["2y",{"_index":4809,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["3",{"_index":165,"title":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}}}],["3,2,1,0,4",{"_index":3496,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["3,4",{"_index":3513,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["3.0",{"_index":6088,"title":{},"content":{"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.1",{"_index":3999,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/posts/js-snippets":{}},"description":{}}],["3.33333",{"_index":3722,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["3.3333333333333335",{"_index":6089,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.5",{"_index":6177,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.6",{"_index":6106,"title":{},"content":{"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["3.7",{"_index":6167,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.8",{"_index":1289,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["3.8/month",{"_index":4947,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["3.9",{"_index":7003,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.x",{"_index":2027,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["30",{"_index":1112,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["30.0",{"_index":5722,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["30.1",{"_index":5719,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["3000",{"_index":1959,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["31",{"_index":3011,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["31.0",{"_index":5724,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["31.1",{"_index":5721,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["32",{"_index":3015,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{}},"description":{}}],["32.0",{"_index":5726,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["32.1",{"_index":5723,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["321",{"_index":3453,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["3231",{"_index":6749,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["328",{"_index":3079,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["33",{"_index":2998,"title":{"/tracks/algorithms-101/leetcode/medium/33":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/33":{}}}],["33.0",{"_index":5728,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["33.1",{"_index":5725,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["3306",{"_index":1570,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["331",{"_index":6751,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["3322251",{"_index":3641,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["334",{"_index":3044,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["34",{"_index":2999,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["34.0",{"_index":5730,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["34.1",{"_index":5727,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["342",{"_index":3758,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["345",{"_index":3039,"title":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["34cd",{"_index":1841,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["35",{"_index":1581,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["35.0",{"_index":5732,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["35.1",{"_index":5729,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["36",{"_index":3000,"title":{"/tracks/algorithms-101/leetcode/medium/36":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/36":{}}}],["36.0",{"_index":5798,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["36.1",{"_index":5731,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["365",{"_index":1824,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["37",{"_index":3023,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["37.0",{"_index":5800,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["37.1",{"_index":5797,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["38",{"_index":3003,"title":{"/tracks/algorithms-101/leetcode/medium/38":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/38":{}}}],["38.0",{"_index":5802,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["38.1",{"_index":5799,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["39",{"_index":3095,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["39.0",{"_index":5804,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["39.1",{"_index":5801,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["392",{"_index":3050,"title":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["394",{"_index":3072,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["399",{"_index":3114,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["3sum",{"_index":2989,"title":{"/tracks/algorithms-101/leetcode/medium/15":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/medium/15":{}}}],["3x3",{"_index":3668,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["4",{"_index":108,"title":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["4\",\".\",\".\",\"8\",\".\",\"3\",\".\",\".\",\"1",{"_index":3661,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["4\",\"1\",\"9\",\".\",\".\",\"5",{"_index":3664,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["4,000",{"_index":1072,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["4,3,2,1",{"_index":4242,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4,3,2,2",{"_index":4243,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4,5",{"_index":3482,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["4.0",{"_index":6248,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["4.1",{"_index":4179,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["4.2",{"_index":4180,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["4.5",{"_index":5281,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["40",{"_index":3097,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["40.0",{"_index":5806,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["40.1",{"_index":5803,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["400",{"_index":2451,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["4000",{"_index":7119,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["4000:80",{"_index":7118,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["403",{"_index":1402,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["404",{"_index":1410,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["4096",{"_index":4641,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["41",{"_index":3099,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["41.0",{"_index":5808,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["41.1",{"_index":5805,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["42",{"_index":3101,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["42.0",{"_index":5810,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["42.1",{"_index":5807,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["43",{"_index":3104,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["43.0",{"_index":5812,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["43.1",{"_index":5809,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["4321",{"_index":4244,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4322",{"_index":4245,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4324",{"_index":6750,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["435",{"_index":3167,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["437.path",{"_index":3089,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["44",{"_index":3107,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["44.0",{"_index":5814,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["44.1",{"_index":5811,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["443",{"_index":3047,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["45",{"_index":3110,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{}},"description":{}}],["45.0",{"_index":5816,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["45.1",{"_index":5813,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["450",{"_index":3102,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["46",{"_index":3004,"title":{"/tracks/algorithms-101/leetcode/medium/46":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/46":{}}}],["46.0",{"_index":5818,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["46.1",{"_index":5815,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["465",{"_index":3759,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["47",{"_index":3117,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["47.0",{"_index":5820,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["47.1",{"_index":5817,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["48",{"_index":3006,"title":{"/tracks/algorithms-101/leetcode/medium/48":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/posts/trading-indicators/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/48":{}}}],["48.0",{"_index":5822,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["48.1",{"_index":5819,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["484",{"_index":5082,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["49",{"_index":3007,"title":{"/tracks/algorithms-101/leetcode/medium/49":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/49":{}}}],["49.0",{"_index":5824,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["49.1",{"_index":5821,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["4922",{"_index":5509,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["4956",{"_index":5523,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["4kb",{"_index":1833,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["4xxerror",{"_index":2951,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["5",{"_index":245,"title":{"/tracks/algorithms-101/leetcode/medium/5":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{}}}],["5\",\"3\",\".\",\".\",\"7",{"_index":3657,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["5,1,9,11],[2,4,8,10],[13,3,6,7],[15,14,12,16",{"_index":3615,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["5,4",{"_index":3515,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["5,500",{"_index":1856,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["5,6,4",{"_index":3756,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["5,6,7,1,2,3,4",{"_index":3819,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["5,6,7,4,3,2,1",{"_index":3818,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["5,7,7,8,8,10",{"_index":3678,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["5.0",{"_index":6087,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["5.14",{"_index":6999,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.32",{"_index":7005,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.99",{"_index":1213,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["50",{"_index":12,"title":{"/tracks/algorithms-101/leetcode/medium/50":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/50":{}}}],["50,000",{"_index":1857,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["50.0",{"_index":5826,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["50.1",{"_index":5823,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["500",{"_index":1765,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["502",{"_index":1760,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["5022",{"_index":5513,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["503",{"_index":2417,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["504",{"_index":2179,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["51",{"_index":3130,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["51.0",{"_index":5828,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["51.1",{"_index":5825,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["512",{"_index":6511,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["5139",{"_index":5518,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5151",{"_index":5507,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5159",{"_index":5528,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["52",{"_index":3131,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{}},"description":{}}],["52.0",{"_index":5830,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["52.1",{"_index":5827,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["53",{"_index":101,"title":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/53":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/53":{}}}],["53.0",{"_index":5832,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["53.1",{"_index":5829,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["5306",{"_index":5516,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5307",{"_index":5527,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5308",{"_index":5521,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["54",{"_index":3134,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["54.0",{"_index":5834,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["54.1",{"_index":5831,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["5432",{"_index":1568,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["547",{"_index":3108,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["55",{"_index":3016,"title":{"/tracks/algorithms-101/leetcode/medium/55":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/55":{}}}],["55.0",{"_index":5836,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["55.1",{"_index":5833,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["5500",{"_index":7167,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["56",{"_index":3018,"title":{"/tracks/algorithms-101/leetcode/medium/56":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/56":{}}}],["56.1",{"_index":5835,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["56ef",{"_index":1842,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["57",{"_index":3141,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["5759e988",{"_index":1027,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["58",{"_index":3142,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["59",{"_index":3145,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["5gb",{"_index":1357,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["5tb",{"_index":1356,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["5th",{"_index":5659,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["5xxerror(serv",{"_index":2952,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["6",{"_index":390,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["6\",\".\",\".\",\".\",\".\",\"2\",\"8",{"_index":3663,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["6\",\".\",\".\",\"1\",\"9\",\"5",{"_index":3658,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["6,5,4,3,2,1",{"_index":4271,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["6.1",{"_index":6304,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["6.2",{"_index":6346,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["6.8under",{"_index":1662,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["60",{"_index":1123,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{}},"description":{}}],["600",{"_index":7064,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["605",{"_index":3037,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["61",{"_index":3148,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["62",{"_index":3019,"title":{"/tracks/algorithms-101/leetcode/medium/62":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{"/tracks/algorithms-101/leetcode/medium/62":{}}}],["63",{"_index":1342,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["64",{"_index":3154,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["64,000",{"_index":2456,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["643",{"_index":3053,"title":{"/tracks/algorithms-101/leetcode/easy/643":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/643":{}}}],["649",{"_index":3075,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["65",{"_index":3155,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["66",{"_index":2972,"title":{"/tracks/algorithms-101/leetcode/easy/66":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/66":{}}}],["67",{"_index":3159,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["68",{"_index":3160,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["69",{"_index":2973,"title":{"/tracks/algorithms-101/leetcode/easy/69":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/69":{}}}],["6th",{"_index":5701,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{}},"description":{}}],["7",{"_index":393,"title":{"/tracks/algorithms-101/leetcode/medium/7":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/7":{}}}],["7\",\".\",\".\",\".\",\"2\",\".\",\".\",\".\",\"6",{"_index":3662,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["7,0,8",{"_index":3757,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["7,2,8,1,9,5,10",{"_index":4207,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["7,4,1],[8,5,2],[9,6,3",{"_index":3614,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["7,6,5,4,3,2,1",{"_index":3817,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["7.0",{"_index":6086,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["70",{"_index":2975,"title":{"/tracks/algorithms-101/leetcode/easy/70":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/rsi":{}},"description":{"/tracks/algorithms-101/leetcode/easy/70":{}}}],["700",{"_index":3100,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["71",{"_index":3165,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["72",{"_index":3166,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["720/1000",{"_index":876,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["724",{"_index":3061,"title":{"/tracks/algorithms-101/leetcode/easy/724":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/724":{}}}],["73",{"_index":3021,"title":{"/tracks/algorithms-101/leetcode/medium/73":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{"/tracks/algorithms-101/leetcode/medium/73":{}}}],["735",{"_index":3069,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["74",{"_index":3171,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["75",{"_index":3022,"title":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/75":{}}}],["75/100",{"_index":880,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["754",{"_index":5270,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["77b9b82",{"_index":5491,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["78",{"_index":3024,"title":{"/tracks/algorithms-101/leetcode/medium/78":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{}},"description":{"/tracks/algorithms-101/leetcode/medium/78":{}}}],["8",{"_index":400,"title":{"/tracks/algorithms-101/leetcode/medium/8":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/8":{}}}],["8\",\".\",\".\",\".\",\"6\",\".\",\".\",\".\",\"3",{"_index":3660,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8\",\".\",\".\",\"7\",\"9",{"_index":3665,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8\",\"3\",\".\",\".\",\"7",{"_index":3666,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8'",{"_index":3667,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8.0",{"_index":7006,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["8.345",{"_index":3716,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["80",{"_index":891,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/docker-commands/":{}},"description":{}}],["800",{"_index":4602,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["807",{"_index":3760,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["8080",{"_index":2663,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["80:80",{"_index":5598,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["841",{"_index":3105,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["849",{"_index":4783,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["849/1791",{"_index":4695,"title":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{},"description":{}}],["85",{"_index":3220,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["86",{"_index":6737,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["867",{"_index":4693,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}}}],["867/1822",{"_index":4679,"title":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"content":{},"description":{}}],["872",{"_index":3086,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["88",{"_index":2979,"title":{"/tracks/algorithms-101/leetcode/easy/88":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/easy/88":{}}}],["9",{"_index":412,"title":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["9\",\"8\",\".\",\".\",\".\",\".\",\"6",{"_index":3659,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["9.26100",{"_index":3526,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["9.5",{"_index":5645,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["90",{"_index":3221,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["900",{"_index":1742,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["900000000",{"_index":6383,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["933",{"_index":3074,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["94",{"_index":2980,"title":{"/tracks/algorithms-101/leetcode/easy/94":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{}}}],["95",{"_index":3219,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["960x540",{"_index":6621,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["99",{"_index":6733,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["99.9",{"_index":2479,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["994",{"_index":3122,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["9>>1",{"_index":4662,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["9✕10",{"_index":5272,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["_",{"_index":314,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["__",{"_index":683,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["_add(self",{"_index":3980,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["_build",{"_index":5012,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["_client",{"_index":5200,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["_cloudacademylab",{"_index":1919,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["_default",{"_index":6904,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_markup",{"_index":6905,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_master_into",{"_index":2662,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["_max",{"_index":4067,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["_note:_th",{"_index":2824,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["_put_into",{"_index":1640,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["_remove(self",{"_index":3975,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["a'",{"_index":3599,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/python-snippets/":{}},"description":{}}],["a(n",{"_index":682,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["a(n)__",{"_index":36,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["a+b",{"_index":4614,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["a.next",{"_index":4294,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["a.obj",{"_index":7102,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["a.sort",{"_index":4780,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a.val",{"_index":4297,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["a/2^n",{"_index":5088,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["a/d",{"_index":5848,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["a2a",{"_index":1262,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["a2p",{"_index":1264,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["a=3",{"_index":6217,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["a[0",{"_index":4874,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["a[i",{"_index":4535,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["a[i:i+2",{"_index":4887,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["a[v.slice(0",{"_index":5153,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["a[x",{"_index":4759,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a_i",{"_index":4774,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a_max",{"_index":4873,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["a_set",{"_index":4739,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a_{ij}b_{kl}=\\delta_{i}^{l",{"_index":6492,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["aa",{"_index":4344,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["aaaaa",{"_index":4721,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["aac",{"_index":6612,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["aarch64",{"_index":7008,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ab",{"_index":4345,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/other-snippets":{}},"description":{}}],["aba",{"_index":3536,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["abab",{"_index":4492,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["ababab",{"_index":4491,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["abandon",{"_index":6996,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abbccc",{"_index":3602,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["abbr",{"_index":6472,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["abbrevi",{"_index":2718,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/markdown-syntax/":{}},"description":{}}],["abc",{"_index":3692,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["abca",{"_index":4724,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcab",{"_index":4723,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcabc",{"_index":4730,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcabcbb",{"_index":3691,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["abcabcd",{"_index":4716,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcd",{"_index":4718,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcddeef",{"_index":6244,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["abil",{"_index":1366,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/_index":{},"/posts/hugo-add-image-zoomin/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["abort",{"_index":5128,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["abov",{"_index":1169,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abs(a[0",{"_index":4749,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abs(denomin",{"_index":3851,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["abs(dividend",{"_index":3725,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["abs(divisor",{"_index":3727,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["abs(n",{"_index":4417,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["abs(numer",{"_index":3852,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["absolut",{"_index":2791,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/atr":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abstract",{"_index":4908,"title":{"/stories/004-trading-bot-refactor-orders":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/photos/midjourney/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["academi",{"_index":1428,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["acalla",{"_index":5250,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["acceler",{"_index":1419,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["accept",{"_index":1166,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["access",{"_index":240,"title":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/npm/cognito-token-observer/":{}}}],["accessdeni",{"_index":2852,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["accesstoken",{"_index":5204,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["accident",{"_index":2178,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["accommod",{"_index":2948,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["accomplish",{"_index":753,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["accord",{"_index":424,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["accordingli",{"_index":4010,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["account",{"_index":514,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["account_id",{"_index":1300,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["accounti",{"_index":1679,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["accumulation/distribut",{"_index":5847,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["accur",{"_index":4248,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/sma":{}},"description":{}}],["ach",{"_index":1418,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["achiev",{"_index":2478,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["acknowledg",{"_index":2844,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["acl",{"_index":1390,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["acm",{"_index":919,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["acodec",{"_index":5134,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["acquir",{"_index":6993,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["act",{"_index":2955,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["action",{"_index":163,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{}}}],["actions/checkout@v2",{"_index":5471,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["actionund",{"_index":2818,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["activ",{"_index":541,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["actual",{"_index":1498,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-snippets/":{}},"description":{}}],["ad",{"_index":221,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["ad\",\"ae\",\"af\",\"bd\",\"be\",\"bf\",\"cd\",\"ce\",\"cf",{"_index":3825,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["adam",{"_index":5158,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["adapt",{"_index":1925,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{}}],["add",{"_index":239,"title":{"/tracks/algorithms-101/leetcode/medium/2":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2":{},"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["add(1",{"_index":5285,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["add(5",{"_index":6202,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add(self",{"_index":4585,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["add(x",{"_index":6199,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add(y=6",{"_index":6203,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add/sync",{"_index":6579,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["add_10",{"_index":6234,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(3",{"_index":6236,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(i",{"_index":6243,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_edge(self",{"_index":3266,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["add_numbers(3",{"_index":5079,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["add_numbers(num1",{"_index":5076,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["addcopybuttontocodeblock",{"_index":5403,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["added/upd",{"_index":2367,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["adder",{"_index":6233,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["adder(i",{"_index":6232,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["addit",{"_index":1039,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["addperm",{"_index":2848,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["address",{"_index":399,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["addtwonumbers(self",{"_index":3761,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["addus",{"_index":6633,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["adf",{"_index":543,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["adher",{"_index":2842,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["adipis",{"_index":6416,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["adjac",{"_index":4054,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["adjust",{"_index":937,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["adjust=false).mean",{"_index":5738,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["adjustidx",{"_index":2588,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["admin",{"_index":2060,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/git-snippets":{}},"description":{}}],["administ",{"_index":1891,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["administr",{"_index":517,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["administratoraccess",{"_index":2084,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["adopt",{"_index":4114,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{},"/posts/python-docstring-templates":{}},"description":{}}],["advanc",{"_index":1882,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["advantag",{"_index":1374,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["advic",{"_index":2082,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["adx",{"_index":5837,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["ae",{"_index":1370,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["aeiouaeiou",{"_index":4452,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["affect",{"_index":2894,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/code-style":{}},"description":{}}],["affleck",{"_index":6370,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["afford",{"_index":4942,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["aforement",{"_index":3820,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["afterward",{"_index":2746,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/mac-setup-development/":{}},"description":{}}],["ag",{"_index":2137,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["again",{"_index":160,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["against",{"_index":1364,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["age(self",{"_index":6284,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.delet",{"_index":6286,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.sett",{"_index":6285,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["agent",{"_index":647,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["aggreg",{"_index":1608,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["aggress",{"_index":5486,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["agre",{"_index":6374,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ahead",{"_index":3175,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["ai",{"_index":2129,"title":{"/photos/midjourney/":{},"/photos/ai/":{}},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/mac-setup-development/":{},"/p/links":{}},"description":{"/photos/midjourney/":{},"/photos/ai/":{}}}],["ai/ml",{"_index":2142,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["aim",{"_index":3700,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["airflow",{"_index":1069,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["airship",{"_index":1268,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["aispl",{"_index":2102,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["ak",{"_index":2126,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["akeyless",{"_index":1818,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["alan",{"_index":617,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["alarm",{"_index":1284,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarm'",{"_index":2794,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarms>al",{"_index":2787,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarmst",{"_index":2819,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarm—th",{"_index":2796,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alb",{"_index":392,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["aldu",{"_index":6724,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["alert",{"_index":561,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["alert(\"i'm",{"_index":5302,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["algo",{"_index":3383,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["algorithm",{"_index":1887,"title":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/code-style":{}},"description":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/stories/001-rediscovering-backtracking-algo":{}}}],["algorithm/idea",{"_index":3374,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["algorithmica",{"_index":4597,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["alia",{"_index":1749,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["alias",{"_index":1750,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["alic",{"_index":552,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/markdown-syntax/":{}},"description":{}}],["align",{"_index":2086,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/markdown-syntax/":{}},"description":{}}],["aliquam",{"_index":6424,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["all(c",{"_index":4843,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["all_the_args(**kwarg",{"_index":6221,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(*arg",{"_index":6220,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(1",{"_index":6216,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(a=3",{"_index":6222,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(arg",{"_index":6213,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["alloc",{"_index":1728,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["allow",{"_index":247,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowj",{"_index":7046,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowsyntheticdefaultimport",{"_index":7049,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowtraff",{"_index":1763,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["alma",{"_index":5881,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["along",{"_index":868,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/trading-indicators/sma":{},"/posts/mac-setup-development/":{}},"description":{}}],["alongsid",{"_index":1953,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["alot",{"_index":2369,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["alow",{"_index":2394,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["alpha",{"_index":2956,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/markdown-syntax/":{}},"description":{}}],["alphabet",{"_index":4347,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["alphabet.index(lett",{"_index":4352,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["alphanumer",{"_index":2855,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["alreadi",{"_index":2096,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["alt",{"_index":1144,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/markdown-syntax/":{}},"description":{}}],["altalt",{"_index":1319,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["alter",{"_index":4148,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["altern",{"_index":1055,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["although",{"_index":1350,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["altitud",{"_index":3060,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["alway",{"_index":1722,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["amazon",{"_index":23,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/apps/npm/cognito-token-observer/":{}}}],["amazon'",{"_index":4944,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["amazon/aw",{"_index":840,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["amazonec2readonlyaccess",{"_index":2072,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["amet",{"_index":6414,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ami",{"_index":624,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["amiid",{"_index":2901,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["amongst",{"_index":4385,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["amount",{"_index":762,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["amplifi",{"_index":907,"title":{"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["amplify.yml",{"_index":7170,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["amz",{"_index":1372,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["amzn",{"_index":1025,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["an",{"_index":3208,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["anaconda",{"_index":6521,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["anagram",{"_index":3008,"title":{"/tracks/algorithms-101/leetcode/medium/49":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{"/tracks/algorithms-101/leetcode/medium/49":{}}}],["analys",{"_index":2670,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["analysi",{"_index":556,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/trading-indicators/atr":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["analyt",{"_index":225,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["analytics_queue_url",{"_index":1224,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["analytics_queue_url=$(aw",{"_index":1218,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["analyz",{"_index":496,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["anamorph",{"_index":7198,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["ancestor",{"_index":3093,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/python-snippets/":{}},"description":{}}],["and",{"_index":4340,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["and/or",{"_index":1505,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-snippets/":{}},"description":{}}],["andaepu",{"_index":6447,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ander",{"_index":5290,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["angl",{"_index":6460,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["anim",{"_index":2597,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["animate=tru",{"_index":6928,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["annot",{"_index":1009,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["announc",{"_index":6992,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["annoy",{"_index":5304,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["anomali",{"_index":2657,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["anonym",{"_index":6237,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["anoth",{"_index":35,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["ans.append(",{"_index":3751,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["ans.append(interv",{"_index":3491,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["ans.valu",{"_index":3608,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["ans[tuple(count)].append(",{"_index":3607,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["answer",{"_index":69,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/p/links":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["answer[0",{"_index":4272,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["answer[1",{"_index":4273,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["ant",{"_index":1382,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["anyon",{"_index":1486,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["anyth",{"_index":633,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["anytim",{"_index":376,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["anywher",{"_index":1425,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["apach",{"_index":588,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["apart",{"_index":2026,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["api",{"_index":22,"title":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["api.mysite.com",{"_index":403,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["api.sharedtodos.com",{"_index":5215,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["apigateway",{"_index":5892,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["apiurl",{"_index":5202,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["app",{"_index":854,"title":{"/apps/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/apps/brewmate/":{}}}],["app(root",{"_index":6962,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["app.errorhandler(404",{"_index":6037,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.j",{"_index":2569,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["app.on('activ",{"_index":7076,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.on('window",{"_index":7072,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.pi",{"_index":5886,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.quit",{"_index":7075,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.register_error_handler(500",{"_index":6041,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.rout",{"_index":6023,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.tsx",{"_index":7036,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.whenready().then(createwindow",{"_index":7071,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["appclean",{"_index":6519,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["appconfig",{"_index":917,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["appear",{"_index":1258,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["append",{"_index":1515,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["appl",{"_index":1269,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["appli",{"_index":1136,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/bash-snippets":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["applic",{"_index":27,"title":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["application'",{"_index":2231,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["application.f",{"_index":2323,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["application/json",{"_index":6779,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["applications/components/aw",{"_index":1019,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["application’",{"_index":2111,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["applic­",{"_index":1068,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["applic­ation’",{"_index":2651,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["approach",{"_index":462,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["appropri",{"_index":2830,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["approv",{"_index":2644,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["approx",{"_index":6502,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["approxim",{"_index":1822,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["appspec",{"_index":2680,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["appspec.yml",{"_index":2570,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["appsync",{"_index":253,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["apt",{"_index":6604,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["ar",{"_index":4818,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar.count(2",{"_index":4891,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["ar[0",{"_index":4858,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar[i",{"_index":4820,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar[i+1",{"_index":4902,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar[idx",{"_index":4899,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["arbitrari",{"_index":1602,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["architect",{"_index":964,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["architectur",{"_index":251,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["archit­ectur",{"_index":2950,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["archiv",{"_index":1522,"title":{"/posts/archive/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["archive.tar",{"_index":7181,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["archive.tar.bz2",{"_index":7190,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["archive.tar.gz",{"_index":7185,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["area",{"_index":1545,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["areachart",{"_index":1704,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["arg",{"_index":5071,"title":{},"content":{"/posts/python-docstring-templates":{},"/posts/python-snippets/":{}},"description":{}}],["args/kwarg",{"_index":6219,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["argument",{"_index":531,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-snippets/":{}},"description":{}}],["aris",{"_index":6679,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["arithmet",{"_index":5275,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["arm",{"_index":1788,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/mac-setup-development/":{}},"description":{}}],["arm64",{"_index":6001,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["arn",{"_index":63,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["arn:aws:s3",{"_index":1912,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["arn:aws:s3:::your_bucket_nam",{"_index":2849,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["arnand",{"_index":1487,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["arnaud",{"_index":5879,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["around",{"_index":827,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/photos/midjourney/":{}},"description":{}}],["arr",{"_index":4418,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["arr[i",{"_index":4659,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["arrang",{"_index":4785,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["array",{"_index":1050,"title":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-convert-array-to-dict":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-convert-array-to-dict":{}}}],["array'",{"_index":3494,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["array.from(clon",{"_index":7099,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.from(obj",{"_index":7100,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.isarray(obj",{"_index":7096,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.length",{"_index":5263,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["array.prototype.foreach",{"_index":7089,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array[:mid",{"_index":3199,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["array[i",{"_index":3179,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{}},"description":{}}],["array[j",{"_index":3188,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{}},"description":{}}],["array[mid",{"_index":3200,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["arrayofanytyp",{"_index":5387,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["arriv",{"_index":1922,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/posts/python-snippets/":{}},"description":{}}],["arrow",{"_index":1688,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{}},"description":{}}],["art",{"_index":7199,"title":{},"content":{"/photos/midjourney/":{},"/p/links":{}},"description":{}}],["artefact",{"_index":2688,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["articl",{"_index":6,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/disser/utils/text_2_short":{},"/tracks/algorithms-101/leetcode/medium/148":{}}}],["artifact",{"_index":2398,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["artifactori",{"_index":2401,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["artifici",{"_index":2805,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ascend",{"_index":3689,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["asg",{"_index":2175,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["asid",{"_index":2710,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["ask",{"_index":298,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["aspect",{"_index":2224,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["assembl",{"_index":2687,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["assert",{"_index":4262,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/js-snippets":{}},"description":{}}],["asset",{"_index":2573,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["asset'",{"_index":5763,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["assign",{"_index":215,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["assist",{"_index":5791,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["associ",{"_index":145,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/docker-commands/":{}},"description":{}}],["assum",{"_index":1654,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["assume/analyze/draw",{"_index":2995,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["assumedroleus",{"_index":2532,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["assumerolewithsaml",{"_index":546,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["assumerolewithwebident",{"_index":548,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["asterisk",{"_index":3738,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["asteroid",{"_index":3070,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["asteroidcollision(asteroid",{"_index":4082,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["asymmetr",{"_index":1864,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["async",{"_index":4909,"title":{"/stories/004-trading-bot-refactor-orders":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{}},"description":{}}],["asynchron",{"_index":738,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["asyncio.create_task",{"_index":4934,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["athena",{"_index":747,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["atlassian",{"_index":2629,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["atoi",{"_index":3402,"title":{"/tracks/algorithms-101/leetcode/medium/8":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/8":{}}}],["atr",{"_index":5779,"title":{"/posts/trading-indicators/atr":{}},"content":{"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/atr":{}}}],["attach",{"_index":1332,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["attain",{"_index":3861,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["attempt",{"_index":1152,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["attribut",{"_index":1204,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["attributeerror",{"_index":6303,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["audienc",{"_index":5256,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["audio",{"_index":5124,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["audit",{"_index":745,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["aurora",{"_index":270,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["aut",{"_index":6425,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["auth0",{"_index":2529,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/js-snippets":{}},"description":{}}],["authent",{"_index":197,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{}},"description":{}}],["author",{"_index":920,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["authoris",{"_index":1812,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["authorship",{"_index":6454,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["auto",{"_index":714,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/git-snippets":{},"/posts/bash-snippets":{}},"description":{}}],["autom",{"_index":1062,"title":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["automat",{"_index":613,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["automa­t",{"_index":2153,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["autosc",{"_index":712,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["autoscal",{"_index":2196,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["autosuggest",{"_index":6649,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["avail",{"_index":642,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["averag",{"_index":1741,"title":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/macd":{}}}],["average(tr",{"_index":5784,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["avoid",{"_index":816,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["aw",{"_index":32,"title":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["await",{"_index":5219,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["awar",{"_index":1668,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-snippets/":{}},"description":{}}],["away",{"_index":519,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/atr":{}},"description":{}}],["awesom",{"_index":5858,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["awk",{"_index":7159,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["aws/lambda/cloudacademylab",{"_index":1676,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["aws/service/ami",{"_index":2903,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::cloudformation::init",{"_index":2892,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::ec2::inst",{"_index":2908,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::ec2::securitygroup",{"_index":2927,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::includ",{"_index":801,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["aws::region",{"_index":2920,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::ssm::parameter::valu",{"_index":2902,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::stacknam",{"_index":2919,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws:km",{"_index":1915,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["aws_",{"_index":2960,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["aws_account_id.dkr.ecr.region.amazonaws.com",{"_index":2407,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["aws_account_id.dkr.ecr.region.amazonaws.com/hello",{"_index":2412,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["aws_proxi",{"_index":1745,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["aws_vpc_k8s_cni_externalsnat",{"_index":2203,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["awslambdabasicexecutionrol",{"_index":1737,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["awslambdadynamodbexecutionrol",{"_index":1757,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["awslambdavpcaccessexecutionrol",{"_index":1774,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["awstemplateformatvers",{"_index":2898,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["awsxraydaemonwriteaccess",{"_index":1738,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["axi",{"_index":1706,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["axio",{"_index":5198,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["axios.cr",{"_index":5208,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["axioserror.from",{"_index":5522,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["axiosinst",{"_index":5199,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["axiosprogressevent.ev",{"_index":5520,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["az",{"_index":660,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["azur",{"_index":1058,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["b",{"_index":61,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b'",{"_index":3600,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/python-snippets/":{}},"description":{}}],["b,c,e,f,w,t4,b9",{"_index":5021,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["b.obj",{"_index":7103,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b.val",{"_index":4293,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["b3d92c5",{"_index":5489,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["b:a",{"_index":6613,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["b=4",{"_index":6218,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["b[0",{"_index":4883,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["b[i",{"_index":4877,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["b_set",{"_index":4741,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["bab",{"_index":3535,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["babad",{"_index":3534,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["back",{"_index":29,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["backbon",{"_index":560,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["backend",{"_index":258,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{}},"description":{}}],["backendurl",{"_index":5211,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["backendurl}/api/v1",{"_index":5216,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["background",{"_index":1261,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["background.j",{"_index":2594,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["backgroundcolor",{"_index":6731,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["backlight",{"_index":6465,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["backoff",{"_index":1860,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["backtick",{"_index":5353,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["backtrack",{"_index":2991,"title":{"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/stories/001-rediscovering-backtracking-algo":{}}}],["backtrack(0",{"_index":4049,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["backtrack([2",{"_index":3344,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(end",{"_index":4047,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["backtrack(first",{"_index":3345,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(i",{"_index":3348,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(num",{"_index":3335,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(nums[:i",{"_index":3340,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(start",{"_index":4044,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["backup",{"_index":521,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["bad",{"_index":2243,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["badg",{"_index":7112,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["bag",{"_index":4855,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["bahai",{"_index":7209,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["balanc",{"_index":391,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}}}],["balancer'",{"_index":2246,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["balloon",{"_index":3169,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["bamboo",{"_index":2639,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["banana",{"_index":3140,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["band",{"_index":5769,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/bollinger_bands":{}}}],["bandwidth",{"_index":1416,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["bank",{"_index":6704,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["bar",{"_index":1145,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["bare",{"_index":2471,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["base",{"_index":211,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["base64",{"_index":2029,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["base64.b64decode(record['data",{"_index":2034,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["base=$(basenam",{"_index":5543,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["basedirectori",{"_index":7172,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["baselin",{"_index":300,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["basenam",{"_index":6777,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["baseof.html",{"_index":6902,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["baseurl",{"_index":5209,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["base}.ru.png",{"_index":5544,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["bash",{"_index":1948,"title":{"/posts/bash-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{"/posts/bash-snippets":{}}}],["basi",{"_index":672,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["basic",{"_index":975,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["basicali",{"_index":4560,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["basictex",{"_index":5098,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["bat",{"_index":6348,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bat\"],[\"nat\",\"tan\"],[\"ate\",\"eat\",\"tea",{"_index":3586,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["bat.init(self",{"_index":6367,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bat.pi",{"_index":6347,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batch",{"_index":467,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["batchelder’",{"_index":5001,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["batchgettrac",{"_index":1053,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["bati",{"_index":6349,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batman",{"_index":6357,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batman(superhero",{"_index":6358,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["baz",{"_index":5394,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bb",{"_index":3538,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["bcabc",{"_index":4731,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["bd862e3f",{"_index":1028,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["be",{"_index":33,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["beamer",{"_index":1270,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["bean",{"_index":2280,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["beanstalk",{"_index":260,"title":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}}}],["bear",{"_index":3333,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bearer",{"_index":5206,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bearish",{"_index":5637,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["beastalk",{"_index":751,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["beauti",{"_index":4185,"title":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/leetcode/hard/2842/":{}}}],["becom",{"_index":330,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["beer",{"_index":6399,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["befor",{"_index":41,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["beforeallowtraff",{"_index":1762,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["beg",{"_index":6389,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["beg(target_funct",{"_index":6392,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["begin",{"_index":509,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["beginatzero",{"_index":6748,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["beginn",{"_index":4381,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["behalf",{"_index":2724,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["behav",{"_index":2288,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["behavior",{"_index":93,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["behind",{"_index":1635,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/macd":{}},"description":{}}],["belong",{"_index":2268,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["below",{"_index":406,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["beneath",{"_index":1917,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["benefit",{"_index":1650,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["bessi",{"_index":2622,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["bessie@cloudacademy.com",{"_index":2623,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["best",{"_index":206,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["bestcent",{"_index":3567,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["beta",{"_index":2957,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["better",{"_index":1087,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["between",{"_index":295,"title":{"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{}}}],["beyond",{"_index":2221,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["bf",{"_index":3094,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bfg",{"_index":5474,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["bfs(self",{"_index":3269,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bfs_tree(root",{"_index":3246,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bia",{"_index":1541,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["bianca",{"_index":4857,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["bid",{"_index":2440,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["big",{"_index":2271,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["bigger",{"_index":5477,"title":{},"content":{"/posts/git-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["bighorriblealert",{"_index":5301,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["biker",{"_index":4478,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["bill",{"_index":2095,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["bin",{"_index":5441,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["bin.j",{"_index":5454,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["bin/bash",{"_index":2753,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["bin/sh",{"_index":5569,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["binanc",{"_index":4912,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["binanceord",{"_index":4918,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["binari",{"_index":2486,"title":{"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-bitwise-operators":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}}}],["binary_valu",{"_index":4848,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["binary_values.append(1",{"_index":4850,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["binary_values.append(v",{"_index":4853,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["bind",{"_index":7153,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["binomi",{"_index":4788,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["binpack",{"_index":2390,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["bisect",{"_index":4633,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bisect_left(num",{"_index":3687,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["bisect_right",{"_index":4637,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bisect_right(num",{"_index":3688,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["bit",{"_index":2743,"title":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{}}}],["bit(n",{"_index":4760,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["bitmap",{"_index":6475,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bitwis",{"_index":4322,"title":{"/posts/python-bitwise-operators":{}},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/python-bitwise-operators":{}}}],["black",{"_index":1154,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/bash-snippets":{}},"description":{}}],["blake2",{"_index":686,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["blame",{"_index":2708,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["blank",{"_index":2769,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["blind",{"_index":492,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["blob",{"_index":5480,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["block",{"_index":375,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/p/links":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["blockquot",{"_index":6442,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["blog",{"_index":982,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["blogs/no",{"_index":6572,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["blue",{"_index":1437,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["blue/green",{"_index":844,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["bluemix",{"_index":2384,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["blueprint",{"_index":651,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["bnbusdt",{"_index":6950,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["board",{"_index":3652,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["boardi",{"_index":3671,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["boardrow",{"_index":4058,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["boast(self",{"_index":6324,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bob",{"_index":6462,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bobbi",{"_index":5316,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bodi",{"_index":774,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["body.classnam",{"_index":2590,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["boiler",{"_index":5324,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["boilerpl",{"_index":7029,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["bold",{"_index":6438,"title":{},"content":{"/posts/markdown-syntax/":{},"/photos/midjourney/":{}},"description":{}}],["bolling",{"_index":5768,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/bollinger_bands":{}}}],["book",{"_index":5781,"title":{},"content":{"/posts/trading-indicators/atr":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{},"/p/links":{},"/apps/_index":{}},"description":{}}],["book.pdf",{"_index":5123,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["bookmark",{"_index":6548,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["bool",{"_index":3499,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/python-snippets/":{}},"description":{}}],["bool(0",{"_index":6096,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(2",{"_index":6101,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(4",{"_index":6098,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(int",{"_index":6100,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(set",{"_index":6097,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["boolean",{"_index":5289,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["boost",{"_index":2190,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["bootstrap",{"_index":1735,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["bootstrappackag",{"_index":2937,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["border",{"_index":1544,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["bordercolor",{"_index":6744,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["borderwidth",{"_index":6745,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["bot",{"_index":4907,"title":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/git-snippets":{}},"description":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{}}}],["bot'",{"_index":4921,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["bot@noreply.github.com",{"_index":5473,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["both",{"_index":696,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["boto3",{"_index":1299,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["boto3.client('dynamodb",{"_index":2031,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["boto3.client('sts').get_caller_identity()[\"account",{"_index":1301,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["boto3.resource('s3",{"_index":1302,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["bottleneck",{"_index":494,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["bottom",{"_index":1164,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["bottom=2cm",{"_index":5112,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["bottommost",{"_index":4520,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["bounc",{"_index":5776,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["bound",{"_index":3316,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/python-snippets/":{}},"description":{}}],["boundari",{"_index":1980,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["box",{"_index":1476,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["boy",{"_index":4629,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["brace",{"_index":6109,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["braceless",{"_index":5314,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bracket",{"_index":4091,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/markdown-syntax/":{}},"description":{}}],["branch",{"_index":2551,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{}},"description":{}}],["breach",{"_index":1472,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["bread",{"_index":1469,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["breadth",{"_index":3235,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["break",{"_index":1048,"title":{"/tracks/algorithms-101/leetcode/medium/139":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/139":{}}}],["breakout",{"_index":5794,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["brew",{"_index":5097,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["brewmat",{"_index":6522,"title":{"/apps/brewmate/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["bridg",{"_index":2714,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["brief",{"_index":939,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/sma":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["briefli",{"_index":1622,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["bring",{"_index":1613,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["broad",{"_index":1811,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["broadli",{"_index":6674,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["broken",{"_index":2642,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["broker",{"_index":6702,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{}}}],["brought",{"_index":2672,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["brows",{"_index":1433,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["browser",{"_index":1173,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["browser=non",{"_index":7080,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow",{"_index":7060,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow.getallwindows().length",{"_index":7077,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["brute",{"_index":3539,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["bst",{"_index":3103,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["btcusd",{"_index":6949,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["bu",{"_index":1110,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["buck",{"_index":5013,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["bucket",{"_index":374,"title":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}}}],["bucket_arn",{"_index":1484,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["buddi",{"_index":6565,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["bufsiz",{"_index":4640,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bug",{"_index":5533,"title":{},"content":{"/posts/code-style":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["build",{"_index":283,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["build.gradl",{"_index":5033,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{}},"description":{}}],["build/index.html",{"_index":7069,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["build_tre",{"_index":4556,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(a",{"_index":4524,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(array",{"_index":4519,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["builder",{"_index":7039,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["buildspec.yml",{"_index":2690,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["built",{"_index":524,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["bulb",{"_index":4841,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["bulletproof",{"_index":6317,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bullish",{"_index":5636,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["bunch",{"_index":3360,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["bundl",{"_index":7030,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["burden",{"_index":2893,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["burger",{"_index":4802,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["burst",{"_index":2493,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["buse",{"_index":2152,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["busi",{"_index":575,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["businesswork",{"_index":2133,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["busine­ss",{"_index":1066,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["button",{"_index":363,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["button.addeventlistener('click",{"_index":6879,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["buy",{"_index":3156,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["byte",{"_index":4342,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["bytesio",{"_index":4635,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bzip2",{"_index":7188,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["c",{"_index":1377,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["c'",{"_index":6122,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["c(3",{"_index":4793,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["c(n",{"_index":4790,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["c01",{"_index":850,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c02",{"_index":851,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c1",{"_index":4471,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["c2",{"_index":4472,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["c:a",{"_index":6611,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["c:v",{"_index":6608,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["c_j",{"_index":4143,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["ca",{"_index":1513,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cabl",{"_index":1212,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["cach",{"_index":92,"title":{"/tracks/algorithms-101/leetcode/medium/146":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/bash-snippets":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/146":{}}}],["cachehitcount",{"_index":2953,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["calab",{"_index":1509,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["calabs.1",{"_index":1512,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["calcul",{"_index":1927,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["calculate_sum(self",{"_index":4539,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["call",{"_index":224,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{}},"description":{}}],["call(step",{"_index":3626,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["calm",{"_index":5787,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["camel",{"_index":2135,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["can",{"_index":1730,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["can't",{"_index":1285,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["can_fli",{"_index":6352,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=fals",{"_index":6368,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=tru",{"_index":6350,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["canari",{"_index":845,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["canbeequal(self",{"_index":4463,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["cancel",{"_index":1898,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cancompletecircuit(self",{"_index":4030,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["candi",{"_index":3036,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}}}],["candid",{"_index":3328,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["canjump(self",{"_index":3498,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["cannnot",{"_index":5284,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["canplaceflowers(flowerb",{"_index":4446,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["canva",{"_index":6588,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["can’t",{"_index":1535,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["capabl",{"_index":1645,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["capac",{"_index":435,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["capit",{"_index":6093,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["cappuccino",{"_index":5382,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["caption",{"_index":4970,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["captur",{"_index":839,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/ema":{},"/posts/mac-setup-development/":{}},"description":{}}],["car",{"_index":5363,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["card",{"_index":1149,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["cardin",{"_index":2488,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["care",{"_index":1651,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["carefulli",{"_index":1159,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["carri",{"_index":2087,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["cascad",{"_index":3422,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["case",{"_index":671,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["cask",{"_index":5104,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["cast",{"_index":6099,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cat",{"_index":2887,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["catalina",{"_index":7234,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["catalog",{"_index":2879,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["catch",{"_index":2655,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["categor",{"_index":6675,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["categori",{"_index":1603,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["categoryand",{"_index":2538,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["caus",{"_index":419,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["cbbd",{"_index":3537,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["cci",{"_index":5641,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/_index":{}},"description":{}}],["cd",{"_index":2452,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["cdk",{"_index":867,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cdn",{"_index":2831,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["ce",{"_index":7129,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ceil",{"_index":6249,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cell",{"_index":3300,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/markdown-syntax/":{}},"description":{}}],["center",{"_index":961,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["cento",{"_index":5553,"title":{"/posts/vps-docker-subdomains-setup/":{}},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["centos:latest",{"_index":5573,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["central",{"_index":2054,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["centuri",{"_index":6717,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["certain",{"_index":894,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["certif",{"_index":918,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/apps/_index":{}},"description":{}}],["certifi",{"_index":847,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/diploma/":{}}}],["certifi==2022.6.15",{"_index":6056,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["certif­",{"_index":1872,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["cf",{"_index":7182,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["cfn",{"_index":2890,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["cft",{"_index":2874,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["ch",{"_index":5612,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["chaikin",{"_index":5839,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["chain",{"_index":1029,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/posts/python-snippets/":{}},"description":{}}],["challeng",{"_index":3739,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["chanc",{"_index":2363,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["chand",{"_index":5856,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["chang",{"_index":157,"title":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}}}],["change/cr",{"_index":6758,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["changebutton",{"_index":2554,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["changelog.md",{"_index":5452,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["changemessagevis",{"_index":1117,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["changes.html",{"_index":724,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["changeset",{"_index":2870,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["channel",{"_index":1280,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/_index":{}},"description":{}}],["chao",{"_index":481,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["chapter",{"_index":2693,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["char",{"_index":3710,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["char(7",{"_index":2011,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["char.isdigit",{"_index":4097,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["char_comb",{"_index":4202,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["char_count",{"_index":4195,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["charact",{"_index":1343,"title":{"/tracks/algorithms-101/leetcode/medium/3":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{}}}],["characterist",{"_index":1974,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["charg",{"_index":1326,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["chars[writ",{"_index":4086,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["charset",{"_index":6057,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["chart",{"_index":1702,"title":{"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["chart.j",{"_index":6727,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{"/posts/hugo-shortcode-examples/chart":{}}}],["chart.png",{"_index":6964,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["chatgpt",{"_index":6559,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["cheaper",{"_index":2439,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["cheapest",{"_index":4779,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["cheat",{"_index":3173,"title":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{},"/posts/docker-commands/":{}},"description":{"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}}}],["cheatsheet",{"_index":5395,"title":{},"content":{"/posts/js-snippets":{}},"description":{"/posts/markdown-syntax/":{}}}],["check",{"_index":734,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/apps/cloud-exam-quizz/":{}}}],["check_neighbor",{"_index":4442,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["check_neighbors(n",{"_index":4447,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["checkbox",{"_index":1431,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["checker",{"_index":5022,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["checkout",{"_index":2668,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/git-snippets":{}},"description":{}}],["checkstrings(s1",{"_index":4126,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{}}],["checksum",{"_index":685,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["chees",{"_index":6471,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["cherri",{"_index":5494,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["child",{"_index":4557,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["children",{"_index":3334,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["children'",{"_index":4504,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["chmod",{"_index":2450,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["choic",{"_index":2069,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["choos",{"_index":68,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["choppi",{"_index":5674,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["chore",{"_index":5524,"title":{},"content":{"/posts/code-style":{},"/posts/bash-snippets":{}},"description":{}}],["chore(doc",{"_index":5525,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["chosen",{"_index":927,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["chrome",{"_index":6526,"title":{},"content":{"/posts/mac-setup-development/":{},"/p/links":{}},"description":{}}],["chrome://settings/searchengin",{"_index":6552,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["chunk",{"_index":4177,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["ci",{"_index":2634,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/algorithms-101/_index":{},"/posts/code-style":{}},"description":{}}],["ci/cd",{"_index":2637,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["cicd",{"_index":2692,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["cidr",{"_index":674,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cidrip",{"_index":2930,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["circleci",{"_index":2632,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/code-style":{}},"description":{}}],["circuit",{"_index":4027,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["circumv",{"_index":3742,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["citat",{"_index":6461,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["cite",{"_index":6444,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["citi",{"_index":3113,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["citizen",{"_index":5305,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["cjf",{"_index":7189,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["class",{"_index":2473,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/apps/_index":{}},"description":{}}],["class'",{"_index":6313,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["class(",{"_index":6308,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["classic",{"_index":409,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}}}],["classless",{"_index":677,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["classmethod",{"_index":6276,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["claus",{"_index":2025,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clb",{"_index":2161,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["clean",{"_index":1876,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["cleanup",{"_index":5497,"title":{},"content":{"/posts/git-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["clear",{"_index":2266,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/git-snippets":{},"/posts/trading-indicators/macd":{}},"description":{}}],["clearli",{"_index":2812,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cli",{"_index":124,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-publish-js-npm-project":{},"/posts/docker-commands/":{}},"description":{}}],["cli/serverless",{"_index":5990,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["click",{"_index":1148,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/hugo-add-image-zoomin/":{}}}],["click.json",{"_index":1947,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["click==7.1.2",{"_index":6059,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["click_interv",{"_index":1971,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["click_interval=2",{"_index":1967,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clickal",{"_index":2775,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["clickchoos",{"_index":1986,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clickingchoos",{"_index":2052,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clickstream",{"_index":1607,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["client",{"_index":40,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{}}}],["client(accesstoken",{"_index":5241,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["client.t",{"_index":5197,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["clientid",{"_index":5252,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["climb",{"_index":2976,"title":{"/tracks/algorithms-101/leetcode/easy/70":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{"/tracks/algorithms-101/leetcode/easy/70":{}}}],["climbstairs(self",{"_index":4228,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["clip",{"_index":1461,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["clipboard",{"_index":2242,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/mac-setup-development/":{}},"description":{}}],["clockwis",{"_index":3612,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["clone",{"_index":758,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["clone.length",{"_index":7098,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["clone[key",{"_index":7092,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["close",{"_index":1447,"title":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1657":{}}}],["close[6",{"_index":5761,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["close[i",{"_index":5751,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["closed/open",{"_index":6137,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["closer",{"_index":1753,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["closestrings(word1",{"_index":3863,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["cloud",{"_index":17,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/trading-indicators/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/apps/cloud-exam-quizz/":{}}}],["cloud'",{"_index":1611,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["cloud9",{"_index":908,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudacademi",{"_index":928,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cloudacademy.bucket",{"_index":1511,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cloudacademy/lab",{"_index":2667,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["cloudacademybucket",{"_index":1510,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cloudacademylab",{"_index":1186,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cloudbe",{"_index":2633,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["cloudflar",{"_index":1529,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["cloudfold",{"_index":1429,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"description":{}}],["cloudform",{"_index":58,"title":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}}}],["cloudformation:cancelupdatestack",{"_index":5893,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:continueupdaterollback",{"_index":5894,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:createchangeset",{"_index":5895,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:createstack",{"_index":5896,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:createuploadbucket",{"_index":5897,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:deletestack",{"_index":5898,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:describ",{"_index":5899,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:estimatetemplatecost",{"_index":5900,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:executechangeset",{"_index":5901,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:get",{"_index":5902,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:list",{"_index":5903,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:stack",{"_index":2872,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["cloudformation:updatestack",{"_index":5904,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:updateterminationprotect",{"_index":5905,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:validatetempl",{"_index":5906,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudfront",{"_index":106,"title":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["cloudf­orm­",{"_index":2856,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["cloudhsm",{"_index":1836,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["cloudn",{"_index":1532,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["cloudshel",{"_index":909,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudtrail",{"_index":644,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["cloudwatch",{"_index":324,"title":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}}}],["cloudwatch'",{"_index":2745,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cloudwatchmonitoringscript",{"_index":2761,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cls.speci",{"_index":6278,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cluster",{"_index":272,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/markdown-syntax/":{}},"description":{}}],["cluster/domain",{"_index":1649,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["clutter",{"_index":6582,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["cm",{"_index":4407,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["cmd",{"_index":5596,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["cmf",{"_index":5841,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["cmk",{"_index":764,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["cname",{"_index":757,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["code",{"_index":75,"title":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/bash-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/bash-snippets":{}}}],["code'",{"_index":4959,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["code\\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\\nenabled=1\\ngpgcheck=1\\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc",{"_index":7023,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["code]\\nname=visu",{"_index":7022,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["code_debug",{"_index":4669,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["codeartifact",{"_index":910,"title":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{"/tracks/aws-certified-developer-associate/codeartifact/":{}}}],["codear­tifact",{"_index":2694,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["codeblock",{"_index":5404,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codeblock.innertext",{"_index":5413,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codeblock.parentnode.insertbefore(copybutton",{"_index":5416,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codeblocks.foreach(codeblock",{"_index":5406,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codebuild",{"_index":911,"title":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["codecommit",{"_index":912,"title":{"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}}}],["codecommit.u",{"_index":2684,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["codedeploy",{"_index":143,"title":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["codedeploydefault.ecscanary10percent15minut",{"_index":835,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codedeploydefault.ecslinear10percentevery1",{"_index":838,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codedeploydefault.lambdacanary10percent15minut",{"_index":837,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codedeploydefault.lambdacanary10percent5minut",{"_index":836,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codeforc",{"_index":4632,"title":{"/tracks/algorithms-101/codeforces/_index":{}},"content":{"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["codeguru",{"_index":913,"title":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["codeguru'",{"_index":2676,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["codenam",{"_index":6990,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["codenarc",{"_index":5032,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["codepipelin",{"_index":173,"title":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["codesect",{"_index":1626,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["codestar",{"_index":914,"title":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}}}],["codetocopi",{"_index":5412,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["coding/drawing/understand",{"_index":3382,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["coduguru",{"_index":2652,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["coeffici",{"_index":4789,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["cognito",{"_index":199,"title":{"/tracks/aws-certified-developer-associate/cognito/":{},"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cognito/":{},"/apps/npm/cognito-token-observer/":{}}}],["coin",{"_index":4773,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["col",{"_index":3315,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["cold",{"_index":1780,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["coll",{"_index":4062,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["colleagu",{"_index":2330,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["collect",{"_index":557,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/posts/bash-snippets":{}}}],["collections.count",{"_index":4678,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["collections.defaultdict(list",{"_index":3604,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["collid",{"_index":4081,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["collis",{"_index":3071,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["colloc",{"_index":2383,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["colon",{"_index":5536,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["color",{"_index":1711,"title":{"/tracks/algorithms-101/leetcode/medium/75":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/js-snippets":{},"/photos/midjourney/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/75":{}}}],["color.green",{"_index":5297,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["column",{"_index":1517,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/trading-indicators/macd":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{}}}],["columnsum",{"_index":3791,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["columntitl",{"_index":4346,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["comb(char_count[c",{"_index":4203,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["combin",{"_index":229,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["combination'",{"_index":4191,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["combinator",{"_index":3020,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["combinatori",{"_index":3325,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["come",{"_index":578,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["comma",{"_index":6155,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["command",{"_index":94,"title":{"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}}}],["comment",{"_index":248,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["commentblock",{"_index":6828,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["commentblock.appendchild(link",{"_index":6835,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["comments/cod",{"_index":3384,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["commit",{"_index":2438,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{}},"description":{}}],["commitid",{"_index":5495,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["committ",{"_index":2552,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["committil",{"_index":2601,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["commod",{"_index":5640,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{}}],["commodi",{"_index":6426,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["common",{"_index":999,"title":{"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["commonli",{"_index":2697,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["commun",{"_index":294,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-docstring-templates":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["commun­ica­t",{"_index":1265,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["compact",{"_index":4966,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["compani",{"_index":80,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["company’",{"_index":691,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["compar",{"_index":1327,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/js-snippets":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{}},"description":{}}],["comparedates(date1",{"_index":5186,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["comparedates(itema.d",{"_index":5195,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["comparison",{"_index":2143,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-snippets/":{}},"description":{"/posts/linux-interactive-non-interactive-users/":{}}}],["compass",{"_index":6531,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["compat",{"_index":1567,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["competit",{"_index":3368,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["compil",{"_index":2689,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{},"/posts/js-snippets":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["compileropt",{"_index":7041,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["complet",{"_index":42,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["complex",{"_index":214,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["complianc",{"_index":619,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["compliant",{"_index":593,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/js-snippets":{}},"description":{}}],["compon",{"_index":1084,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["components/search",{"_index":6765,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["compos",{"_index":1077,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["compose.yml",{"_index":7144,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["composit",{"_index":2485,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["comprehend",{"_index":4956,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["comprehens",{"_index":884,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}}}],["compress",{"_index":3048,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/posts/mac-setup-development/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["compress(self",{"_index":4085,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["compris",{"_index":2289,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["comput",{"_index":404,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/aws-certified-developer-associate/fargate/":{}}}],["computation",{"_index":3982,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["con",{"_index":5629,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["concaten",{"_index":3639,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["conced",{"_index":4823,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["concept",{"_index":598,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/atr":{}},"description":{}}],["concern",{"_index":326,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["conclud",{"_index":2314,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["conclus",{"_index":6965,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["concurr",{"_index":319,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["condit",{"_index":309,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/docker-commands/":{}},"description":{}}],["config",{"_index":233,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/docker-commands/":{}},"description":{}}],["config.backend.url",{"_index":5212,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["config.backend.url.slice().replace(\"api.sharedtodos.com",{"_index":5214,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["config.t",{"_index":5242,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["config.yaml",{"_index":6772,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["config/codenarc/rules.groovi",{"_index":5037,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["configfil",{"_index":5035,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["configopt",{"_index":5243,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["configur",{"_index":142,"title":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["configureundersourc",{"_index":1983,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["confiqur",{"_index":1589,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["confirm",{"_index":1325,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["conform",{"_index":1161,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["conjunct",{"_index":713,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["connect",{"_index":320,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["connect(self",{"_index":4075,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["connect/switch",{"_index":6685,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["conquer",{"_index":3013,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["consectetur",{"_index":6415,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["consecut",{"_index":2225,"title":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["consequuntur",{"_index":6418,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["consid",{"_index":719,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{}},"description":{}}],["consider",{"_index":2229,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["consist",{"_index":96,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["consol",{"_index":347,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-snippets/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["console.error(state.messag",{"_index":5377,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.html",{"_index":52,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["console.log('load",{"_index":1803,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log(color[c",{"_index":5298,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.log(i",{"_index":5389,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.log(json.stringify(ev",{"_index":1806,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log(state.valu",{"_index":5376,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.log(v",{"_index":5388,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console/termin",{"_index":6384,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["consolid",{"_index":871,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["const",{"_index":1807,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["constant",{"_index":3215,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["constantli",{"_index":579,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["constrain",{"_index":2476,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["constraint",{"_index":2727,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["construct",{"_index":2024,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}}}],["constructor",{"_index":5322,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["constructor(accesstoken",{"_index":5201,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["constructor(publ",{"_index":5341,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["constructor(x",{"_index":5326,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["consult",{"_index":970,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["consum",{"_index":380,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["contact",{"_index":457,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["contain",{"_index":478,"title":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["container",{"_index":2376,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["container'",{"_index":4163,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/docker-commands/":{}},"description":{}}],["container/clust",{"_index":2372,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["containers(ec",{"_index":2177,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["contai­n",{"_index":2120,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["content",{"_index":83,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["contest",{"_index":3025,"title":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}}}],["contest/solv",{"_index":3375,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["context",{"_index":1305,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/js-snippets":{}},"description":{}}],["contigu",{"_index":3875,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["continu",{"_index":1869,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["contract",{"_index":507,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["contradict",{"_index":4464,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["contrast",{"_index":2508,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["contribut",{"_index":968,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["contributor",{"_index":2617,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["contributor1",{"_index":2625,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["control",{"_index":241,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{}}}],["controlbox",{"_index":1671,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["controlsect",{"_index":1670,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["conveni",{"_index":1667,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["convent",{"_index":1339,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-snippets/":{}},"description":{}}],["convention",{"_index":1906,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["converg",{"_index":5707,"title":{"/posts/trading-indicators/macd":{}},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/macd":{}}}],["convers",{"_index":3640,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/other-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["convert",{"_index":530,"title":{"/posts/js-convert-array-to-dict":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/apps/_index":{}},"description":{"/posts/js-convert-array-to-dict":{}}}],["cook",{"_index":1800,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cook_sec",{"_index":1799,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cookbook",{"_index":3369,"title":{},"content":{},"description":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{}}}],["cooki",{"_index":2164,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["cool",{"_index":2182,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["coordin",{"_index":1076,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["copado",{"_index":2636,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["copi",{"_index":1279,"title":{"/tracks/algorithms-101/leetcode/medium/138":{},"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138":{},"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["copilot",{"_index":900,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["coppock",{"_index":5878,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["copybutton",{"_index":5407,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copybutton.addeventlistener('click",{"_index":5411,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copybutton.classlist.add('copi",{"_index":5409,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copybutton.innerhtml",{"_index":5410,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copyrandomlist(self",{"_index":4012,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["cor",{"_index":1404,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["core",{"_index":1109,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["corner",{"_index":1192,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["corpor",{"_index":2388,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["correct",{"_index":410,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["correct_sum",{"_index":4359,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["correctli",{"_index":176,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["correspond",{"_index":255,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["corridor",{"_index":3291,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["corrupt",{"_index":680,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["cors(app",{"_index":6022,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cors==3.0.10",{"_index":6063,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cost",{"_index":427,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["cost[i",{"_index":4037,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["costli",{"_index":4302,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["couldn't",{"_index":3311,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["count",{"_index":1700,"title":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/git-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}}}],["count'",{"_index":4084,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["count[ord(c",{"_index":3605,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["count\\text{count}count",{"_index":3597,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["count_minu",{"_index":4746,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["count_zero",{"_index":4747,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["countandsay(1",{"_index":3637,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(2",{"_index":3643,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(3",{"_index":3644,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(4",{"_index":3645,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(n",{"_index":3638,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(self",{"_index":3646,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["counter",{"_index":3230,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["counter(",{"_index":4196,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["counter(word1",{"_index":3866,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter(word2",{"_index":3868,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter.get(num",{"_index":3232,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["counter1",{"_index":3865,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter2",{"_index":3867,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter[num",{"_index":3231,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["countksubsequenceswithmaxbeauty(self",{"_index":4194,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["coupl",{"_index":2007,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["cours",{"_index":932,"title":{"/posts/diploma/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{}},"description":{}}],["coursera",{"_index":960,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["coursera'",{"_index":954,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["courses(fre",{"_index":955,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cover",{"_index":622,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/code-style":{},"/p/links":{}},"description":{}}],["coverag",{"_index":935,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["covert",{"_index":5090,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["cp",{"_index":4768,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["cph",{"_index":4676,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["cpu",{"_index":313,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cpualarm",{"_index":2821,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cpuutil",{"_index":2555,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cpuutilizationmetr",{"_index":2730,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["creat",{"_index":7,"title":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/disser/utils/text_2_short":{},"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["create\\_in\\_progress",{"_index":2943,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_adder(10",{"_index":6235,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_adder(x",{"_index":6231,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_complet",{"_index":1615,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_completestatu",{"_index":2939,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_failedstatu",{"_index":2941,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_record",{"_index":6032,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["createcachepolici",{"_index":105,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createdbclust",{"_index":1575,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["createglobalreplicationgroup",{"_index":103,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createindex",{"_index":6784,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["createindex(pages_cont",{"_index":6804,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["createlinkednode(valu",{"_index":3763,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["createreusabledelegationset",{"_index":99,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createstackset",{"_index":102,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createtask(listid",{"_index":5229,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["createwindow",{"_index":7062,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["creation",{"_index":1119,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["creationd",{"_index":2516,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["creationpolici",{"_index":2921,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["creativ",{"_index":4954,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["creatur",{"_index":6486,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["credenti",{"_index":180,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["credential.help",{"_index":2562,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["credentials.csv",{"_index":2682,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["credentialssect",{"_index":2627,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["crf",{"_index":6610,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["criteria",{"_index":874,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["criterion",{"_index":878,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["critic",{"_index":1074,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["cri­tic",{"_index":1067,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["cron",{"_index":348,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{}},"description":{}}],["crontab",{"_index":2768,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cross",{"_index":1389,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["crossov",{"_index":5745,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["crucial",{"_index":4106,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["crumb",{"_index":1470,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["cryptograph",{"_index":603,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["css",{"_index":6402,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["csv",{"_index":2075,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["ctrl+alt+delet",{"_index":6480,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ctrl+c",{"_index":2579,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ctrl+shift+p",{"_index":5025,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["cu",{"_index":6662,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["cuaderno",{"_index":5426,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["culmin",{"_index":2291,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cumul",{"_index":1604,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{}},"description":{}}],["cur",{"_index":3413,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["cur.append(i",{"_index":3414,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["cur.extend(res[j",{"_index":3415,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["cur.next",{"_index":3771,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["cur.random",{"_index":4020,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["curat",{"_index":7211,"title":{},"content":{"/p/links":{}},"description":{}}],["curl",{"_index":5579,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{}},"description":{}}],["curr",{"_index":3346,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["curr.append(nums[i",{"_index":3355,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["curr.next",{"_index":3794,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["curr.pop",{"_index":3356,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["curr_divisor",{"_index":3732,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["curr_num",{"_index":4096,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["curr_str",{"_index":4095,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["current",{"_index":861,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["current+1",{"_index":4063,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["current.next",{"_index":3768,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["current[0",{"_index":3305,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["current[1",{"_index":3307,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["current_altitud",{"_index":4482,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["current_ga",{"_index":4034,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["current_partit",{"_index":4041,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["current_partition.append(substr",{"_index":4046,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["current_partition.pop",{"_index":4048,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["current_posit",{"_index":4040,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["currentsum",{"_index":3209,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["curv",{"_index":2382,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/posts/trading-indicators/_index":{},"/photos/midjourney/":{}},"description":{}}],["custom",{"_index":89,"title":{"/posts/howto-render-notebook-in-hugo":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/posts/howto-render-notebook-in-hugo":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["cut",{"_index":1253,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/docker-commands/":{}},"description":{}}],["cwl",{"_index":1694,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["cycl",{"_index":1379,"title":{"/tracks/algorithms-101/leetcode/easy/141":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/141":{}}}],["cyril",{"_index":5099,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["czf",{"_index":7186,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["d",{"_index":1254,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/bash-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["d1",{"_index":5189,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["d1.gettim",{"_index":5193,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["d2",{"_index":5191,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["d2.gettim",{"_index":5194,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["daemon",{"_index":842,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["daemon.config",{"_index":1046,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["daili",{"_index":1578,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["dairi",{"_index":6469,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dan",{"_index":689,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["danda",{"_index":6448,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dangl",{"_index":7126,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["dangling=tru",{"_index":7160,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["darwin",{"_index":7074,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dasboard",{"_index":2312,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dash",{"_index":6910,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash(nam",{"_index":6924,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash.depend",{"_index":6916,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash_html_compon",{"_index":6914,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash_thread",{"_index":6951,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash_thread.start",{"_index":6953,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dashboard",{"_index":1716,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dashthread",{"_index":6917,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dashthread(self.data_list",{"_index":6952,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dashthread(threading.thread",{"_index":6919,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dat1",{"_index":577,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["data",{"_index":128,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}}}],["data.append('user_email",{"_index":5235,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["data.pl",{"_index":2765,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["data/ami",{"_index":799,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["data[start",{"_index":4547,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["data_item",{"_index":2035,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_item['session_id",{"_index":2038,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_item['session_tim",{"_index":2039,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_item['user_id",{"_index":2040,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_list",{"_index":6920,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["databas",{"_index":262,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["datadog",{"_index":1059,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["datafram",{"_index":5735,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["datapoint",{"_index":2784,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dataset",{"_index":824,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["datast",{"_index":2802,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["datatyp",{"_index":6085,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["data—th",{"_index":2797,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["date",{"_index":416,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["date().gethour",{"_index":2584,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["date().tolocaletimestr",{"_index":6888,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["date(...val).valueof",{"_index":5172,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date(date1",{"_index":5190,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date(date2",{"_index":5192,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date1",{"_index":5188,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date2",{"_index":5187,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["datetim",{"_index":1298,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dateutil==2.8.2",{"_index":6073,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["day",{"_index":673,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/p/links":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["db",{"_index":271,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["db'",{"_index":2355,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["db_client",{"_index":6050,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["db_client[mongo_collection_db_nam",{"_index":6052,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dbm",{"_index":2501,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["dc",{"_index":3324,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["dcc",{"_index":6915,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dcc.graph(id=\"l",{"_index":6927,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dcc.interv",{"_index":6929,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dd",{"_index":3590,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dd.get(s_sort",{"_index":3593,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["dd.valu",{"_index":3596,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["dd[s_sort",{"_index":3595,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["ddb_item",{"_index":2037,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["de",{"_index":2233,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["dead",{"_index":3295,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["deadlin",{"_index":4836,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["deal",{"_index":3719,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["debian",{"_index":6600,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["debiti",{"_index":6427,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["debug",{"_index":991,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{}}}],["debug/submit",{"_index":3397,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["debugg",{"_index":4960,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["dec",{"_index":3376,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["decid",{"_index":711,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/macd":{},"/posts/markdown-syntax/":{}},"description":{}}],["decigion",{"_index":3624,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["decim",{"_index":3724,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["decimal.append",{"_index":3855,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["decimal.append(str(remaind",{"_index":3859,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["decimal.insert(remainder_dict[remaind",{"_index":3854,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["decis",{"_index":995,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["declar",{"_index":2226,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["decod",{"_index":3073,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["decodestring(",{"_index":4094,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["decompos",{"_index":979,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/trading-indicators/atr":{}},"description":{}}],["decompress",{"_index":5515,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["decor",{"_index":6388,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["decoupl",{"_index":706,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["decreas",{"_index":1417,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["decrement",{"_index":3366,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["decrypt",{"_index":609,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["dedic",{"_index":1565,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["deep",{"_index":2691,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["deepclon",{"_index":7090,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(a",{"_index":7101,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(obj[key",{"_index":7095,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deeper",{"_index":4990,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["deepl",{"_index":6523,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["def",{"_index":1303,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["default",{"_index":1038,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["default)\"),or",{"_index":2545,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["default=\"mongodb://localhost:27017",{"_index":6047,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["default=\"test",{"_index":6048,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["defaultdict",{"_index":3263,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["defaultdict(list",{"_index":3265,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["defin",{"_index":1010,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{}},"description":{}}],["definit",{"_index":652,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["deflat",{"_index":7180,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["degre",{"_index":3611,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["dek",{"_index":1834,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["del",{"_index":3973,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/python-snippets/":{}},"description":{}}],["delay",{"_index":784,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["delaysecond",{"_index":1118,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["deleg",{"_index":2064,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["delet",{"_index":140,"title":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["delete.html",{"_index":151,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["deletetask(listid",{"_index":5226,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["delimit",{"_index":6463,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["deliv",{"_index":454,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["deliveri",{"_index":84,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["deliveryfail",{"_index":2046,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["delta",{"_index":3303,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/markdown-syntax/":{}},"description":{}}],["delta[0",{"_index":3306,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["delta[1",{"_index":3308,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["demand",{"_index":1782,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["demo",{"_index":6864,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["demoapp.us.auth0.com",{"_index":5251,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["demonstr",{"_index":111,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["deni",{"_index":1395,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["denomin",{"_index":3839,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["denot",{"_index":4187,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-snippets/":{}},"description":{}}],["denyuploadifnotssekmsencrypt",{"_index":1910,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["depart",{"_index":2093,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["depend",{"_index":702,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dependabot",{"_index":5458,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["dependabot.yml",{"_index":5449,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["deploy",{"_index":116,"title":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["deploymentmethod",{"_index":5998,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["deploy­",{"_index":2677,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["deposit",{"_index":6701,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["depth",{"_index":2983,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/linux-interactive-non-interactive-users/":{}}}],["depth=0",{"_index":6636,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["depth=1",{"_index":5117,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["dequ",{"_index":3236,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque(",{"_index":4712,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque('123",{"_index":4710,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque(['1",{"_index":4711,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque([root",{"_index":3247,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["deque([start",{"_index":3270,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["deriv",{"_index":3330,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{}},"description":{}}],["desc=\"mi",{"_index":6707,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["descend",{"_index":3218,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["describ",{"_index":1011,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["descript",{"_index":5,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["design",{"_index":246,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["designerg",{"_index":1623,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["desir",{"_index":2181,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["desktop",{"_index":1946,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["despit",{"_index":5599,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["destin",{"_index":1678,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["destination\\_sql\\_stream",{"_index":2023,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["destination_sql_stream",{"_index":2010,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["detach",{"_index":6867,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["detail",{"_index":153,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-docstring-templates":{},"/posts/code-style":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/howto-publish-js-npm-project":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["detect",{"_index":1582,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["determin",{"_index":1324,"title":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{},"/posts/howto-create-deepclone-js/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["detrend",{"_index":5859,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["dev",{"_index":2560,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dev/nul",{"_index":5126,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["devdepend",{"_index":5044,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["develop",{"_index":21,"title":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/posts/mac-setup-development/":{}}}],["developer'",{"_index":808,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["deviat",{"_index":5771,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{}}],["devic",{"_index":205,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["device_typ",{"_index":1945,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["devid",{"_index":3675,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["devis",{"_index":4953,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["devop",{"_index":1609,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["df",{"_index":3084,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/trading-indicators/macd":{},"/posts/docker-commands/":{}},"description":{}}],["df['close'].ewm(span=12",{"_index":5737,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['close'].ewm(span=26",{"_index":5740,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['ema12",{"_index":5736,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['ema26",{"_index":5739,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['macd",{"_index":5741,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['macd'].ewm(span=9",{"_index":5743,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['signal",{"_index":5742,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["dfs(0",{"_index":3419,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["dfs(current",{"_index":3299,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(i",{"_index":3418,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["dfs(l",{"_index":3750,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["dfs(matrix",{"_index":3314,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(n",{"_index":3752,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["dfs(neighbor",{"_index":3288,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(next_cel",{"_index":3310,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(root",{"_index":3282,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(root.left",{"_index":3284,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(root.right",{"_index":3285,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(self",{"_index":4055,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["dfs(start",{"_index":3312,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["diagram",{"_index":962,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/p/links":{}},"description":{}}],["diagrams/block",{"_index":6728,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["dialog",{"_index":1475,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["diccionario",{"_index":3228,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dict",{"_index":3959,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/js-convert-array-to-dict":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["dict(counter(arr",{"_index":4424,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["dict[c",{"_index":4413,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["dict_count",{"_index":4421,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["dict_keys(['on",{"_index":6190,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dictat",{"_index":2287,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dictionari",{"_index":3847,"title":{"/posts/js-convert-array-to-dict":{}},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/posts/js-convert-array-to-dict":{}}}],["didn't",{"_index":2255,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/git-snippets":{}},"description":{}}],["diff",{"_index":3233,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["diff1",{"_index":4281,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["diff2",{"_index":4283,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["differ",{"_index":307,"title":{"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/tree-vs-trie-data-structures/":{}}}],["difficult",{"_index":325,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["difficulti",{"_index":2965,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["digest",{"_index":684,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["digit",{"_index":1813,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/markdown-syntax/":{},"/photos/midjourney/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{}}}],["digits[i",{"_index":4238,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["dimension",{"_index":3289,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dip",{"_index":5702,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{}},"description":{}}],["dir",{"_index":5541,"title":{},"content":{"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["dir(math",{"_index":6256,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dir=\"/path/to/fold",{"_index":5540,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["direct",{"_index":1564,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["directli",{"_index":1776,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["directori",{"_index":189,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["directory'",{"_index":7117,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["disabl",{"_index":1466,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["disast",{"_index":662,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["discord",{"_index":6524,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["discount",{"_index":731,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["discourag",{"_index":336,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["discov",{"_index":1686,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/p/links":{}},"description":{}}],["discoveri",{"_index":1987,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["discret",{"_index":4786,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["discuss",{"_index":1458,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["disk",{"_index":1767,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["diskspaceutil",{"_index":2826,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dispar",{"_index":2148,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["display",{"_index":732,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["display'",{"_index":2219,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["disrupt",{"_index":367,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dist",{"_index":5014,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{}},"description":{}}],["distanc",{"_index":3158,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["distinct",{"_index":2626,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["distinct_el",{"_index":4118,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["distinguish",{"_index":2482,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["distribut",{"_index":447,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["distribution'",{"_index":2853,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["distri­but",{"_index":1098,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["div",{"_index":4236,"title":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{"/tracks/algorithms-101/leetcode/easy/69":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["div=2",{"_index":4235,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["divblock",{"_index":6809,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["divblock.contains(event.target",{"_index":6811,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["divblock.setattribute('class",{"_index":6813,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["divblock.style.display",{"_index":6812,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["dive",{"_index":4146,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["diverg",{"_index":5632,"title":{"/posts/trading-indicators/macd":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/macd":{}}}],["divid",{"_index":2997,"title":{"/tracks/algorithms-101/leetcode/medium/29":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/29":{}}}],["divide(self",{"_index":3729,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dividend",{"_index":3712,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["divis",{"_index":3116,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["division=chapt",{"_index":5119,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["divisor",{"_index":3033,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["divmod(num",{"_index":4308,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["django",{"_index":2331,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dmg",{"_index":7229,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["dn",{"_index":666,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["dnf",{"_index":7025,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["dnsmadeeasi",{"_index":1531,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["dnspython==2.2.1",{"_index":6060,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["do",{"_index":3367,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["doc",{"_index":863,"title":{"/tracks/archive/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/archive/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{},"/posts/archive/":{},"/p/links":{}},"description":{}}],["doc['titl",{"_index":6793,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["docker",{"_index":477,"title":{"/posts/docker-commands/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{"/posts/vps-docker-subdomains-setup/":{},"/posts/docker-commands/":{}}}],["dockerfil",{"_index":5530,"title":{},"content":{"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["dockerservlet",{"_index":2674,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["dockerservlet.java",{"_index":2675,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["docs.docker.com",{"_index":7163,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["docstr",{"_index":5065,"title":{"/posts/python-docstring-templates":{}},"content":{"/posts/python-docstring-templates":{}},"description":{"/posts/python-docstring-templates":{}}}],["document",{"_index":942,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.addeventlistener('mouseup",{"_index":6818,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createelement('a",{"_index":6830,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createelement('button",{"_index":5408,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["document.createelement('li",{"_index":6829,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createelement('ul",{"_index":6825,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createtextnode(titl",{"_index":6832,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.getelementbyid(\"search",{"_index":6839,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.getelementbyid('root",{"_index":7059,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["document.getelementbyid('search",{"_index":6816,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.getelementsbytagname(\"body\")[0",{"_index":2585,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["document.queryselector('#button",{"_index":6878,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('#histori",{"_index":6885,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('bodi",{"_index":5167,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["document.queryselector('head",{"_index":5164,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["document.queryselector('titl",{"_index":5165,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["document.queryselectorall('code[class^=\"languag",{"_index":5405,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["documentdb",{"_index":5885,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["documents.foreach(funct",{"_index":6791,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["doesn't",{"_index":1950,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/trading-indicators/sma":{}},"description":{}}],["dog\",\"racecar\",\"car",{"_index":4388,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["doll",{"_index":1128,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["dolor",{"_index":6412,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dom",{"_index":7038,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dom.iter",{"_index":7044,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["domain",{"_index":679,"title":{"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/js-snippets":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["domino",{"_index":3151,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["don't",{"_index":473,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["donchian",{"_index":5851,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["done",{"_index":340,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["don’t",{"_index":443,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["dostuff",{"_index":5265,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["dot",{"_index":2518,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/markdown-syntax/":{}},"description":{}}],["dota2",{"_index":3076,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["dotenv==0.20.0",{"_index":6074,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["doubl",{"_index":1294,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/apps/brewmate/":{}},"description":{}}],["double_numbers(iter",{"_index":6379,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["double_numbers(range(1",{"_index":6382,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["doublesub",{"_index":6560,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["doubli",{"_index":3940,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["down",{"_index":1049,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["download",{"_index":950,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["downloaded/cr",{"_index":7155,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["downstream",{"_index":379,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["downtim",{"_index":1250,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["downtrend",{"_index":5777,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["dp",{"_index":3143,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["dp[0",{"_index":4005,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[end",{"_index":4003,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[i",{"_index":4008,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[j",{"_index":4006,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[prev_substr_end_index",{"_index":4002,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dpo",{"_index":5860,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["dr",{"_index":4059,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["drag",{"_index":1434,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/apps/brewmate/":{}},"description":{}}],["drain",{"_index":2118,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["draw",{"_index":3332,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["drift",{"_index":1271,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["drive",{"_index":1331,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["driven",{"_index":1088,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["driver",{"_index":7133,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["drop",{"_index":1181,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["dropdown",{"_index":1320,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["dryrun",{"_index":1740,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ds",{"_index":3726,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["ds_store",{"_index":5547,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["dss",{"_index":2059,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["dual",{"_index":6561,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["duck",{"_index":5182,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["due",{"_index":337,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["dummi",{"_index":3962,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["dummyhead",{"_index":3785,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["dummyhead.next",{"_index":3797,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["dun",{"_index":6323,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dunder",{"_index":6264,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["duplic",{"_index":98,"title":{"/tracks/algorithms-101/leetcode/easy/26":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/26":{}}}],["durabl",{"_index":2341,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["durat",{"_index":1134,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["durationof",{"_index":2611,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["durations[i",{"_index":4690,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["dure",{"_index":203,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["dutch",{"_index":3358,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["duti",{"_index":6677,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["dv",{"_index":3737,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dva",{"_index":849,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["dvd",{"_index":3736,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dyanmodb",{"_index":2053,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["dyanmodb'",{"_index":2523,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["dynam",{"_index":1278,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{}},"description":{}}],["dynamo",{"_index":428,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["dynamodb",{"_index":117,"title":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}}}],["dynamodb:createt",{"_index":5907,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:deletet",{"_index":5908,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:describet",{"_index":5909,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:describetimetol",{"_index":5910,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:updatetimetol",{"_index":5911,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb_cli",{"_index":2030,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["dynamodb_client.put_item(tablename=table_nam",{"_index":2041,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["dynamolambda",{"_index":1677,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["dynamolambdaconsolelink",{"_index":1621,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["e",{"_index":721,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["e','",{"_index":4454,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["e.g",{"_index":500,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["e203",{"_index":5015,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["e266",{"_index":5016,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["e501",{"_index":5017,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["each",{"_index":381,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-convert-array-to-dict":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["earlier",{"_index":1182,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["earn",{"_index":4838,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["eas",{"_index":112,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["easi",{"_index":281,"title":{"/tracks/algorithms-101/leetcode/easy/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["easier",{"_index":1081,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["easiest",{"_index":119,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["easili",{"_index":244,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["east",{"_index":2707,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["eat",{"_index":3139,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["eat\",\"tea\",\"tan\",\"ate\",\"nat\",\"bat",{"_index":3585,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["eb",{"_index":346,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ebextens",{"_index":354,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["ebs–optim",{"_index":2477,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["ec",{"_index":302,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["ec2",{"_index":169,"title":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}}}],["ec2'",{"_index":2154,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ec2/non",{"_index":2835,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["ec2/on",{"_index":2679,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["ec2:attachinternetgateway",{"_index":5912,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:authorizesecuritygroupingress",{"_index":5913,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:creat",{"_index":1770,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ec2:createinternetgateway",{"_index":5914,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createnetworkacl",{"_index":5915,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createnetworkaclentri",{"_index":5916,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createroutet",{"_index":5917,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createsecuritygroup",{"_index":5918,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createsubnet",{"_index":5919,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createtag",{"_index":5920,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createvpc",{"_index":5921,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:delet",{"_index":1773,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ec2:deleteinternetgateway",{"_index":5922,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletenetworkacl",{"_index":5923,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletenetworkaclentri",{"_index":5924,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deleteroutet",{"_index":5925,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletesecuritygroup",{"_index":5926,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletesubnet",{"_index":5927,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletevpc",{"_index":5928,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:describ",{"_index":5929,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:describenetworkinterfac",{"_index":1772,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ec2:detachinternetgateway",{"_index":5930,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:modifyvpcattribut",{"_index":5931,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2monitoringrol",{"_index":2749,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ecdsa==0.18.0",{"_index":6061,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["echo",{"_index":1236,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/other-snippets":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["eclips",{"_index":2328,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["ecommerc",{"_index":1591,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["ecr",{"_index":902,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["edg",{"_index":1420,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["edit",{"_index":759,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["editor",{"_index":1296,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["editor.codeactionsonsav",{"_index":5060,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["editor.defaultformatt",{"_index":5058,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["editor.formatonsav",{"_index":5057,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["editori",{"_index":3421,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["educ",{"_index":7224,"title":{"/homepage/education":{}},"content":{},"description":{}}],["ef",{"_index":370,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["efa",{"_index":2200,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["effect",{"_index":1396,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["effici",{"_index":345,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["effort",{"_index":1092,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["eg",{"_index":4661,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["egg",{"_index":5007,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["egress",{"_index":2833,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["eight",{"_index":1547,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["eighti",{"_index":2215,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["eiu",{"_index":6419,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["eject",{"_index":7078,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ek",{"_index":904,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["el",{"_index":3505,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["elaps",{"_index":833,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["elast",{"_index":259,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{}}}],["elasticach",{"_index":104,"title":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{"/tracks/aws-certified-developer-associate/elasticache/":{}}}],["elasticbeanstalk",{"_index":343,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["elasticsearch",{"_index":898,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["elasti­csearch",{"_index":1605,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["elb",{"_index":938,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["elb(elast",{"_index":2176,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["electron",{"_index":6719,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/posts/hugo-shortcode-examples/img":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["electron/main.t",{"_index":7033,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:build",{"_index":7084,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dev",{"_index":7079,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dist",{"_index":7085,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["element",{"_index":1203,"title":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["elementcontain",{"_index":5162,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["elementcontains(document.queryselector('bodi",{"_index":5166,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["elif",{"_index":3432,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-snippets/":{}},"description":{}}],["elig",{"_index":6344,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["elimin",{"_index":1100,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["elit",{"_index":6417,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["elliott",{"_index":5853,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["elsewher",{"_index":2739,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["elucid",{"_index":4141,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["ema",{"_index":5710,"title":{"/posts/trading-indicators/ema":{}},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/ema":{}}}],["ema'",{"_index":5753,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema(first",{"_index":5754,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema12",{"_index":5712,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["ema26",{"_index":5713,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["ema9",{"_index":5714,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["ema[5",{"_index":5759,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema[6",{"_index":5760,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema[i",{"_index":5750,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["email",{"_index":219,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["email/email",{"_index":1282,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["emb",{"_index":2867,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["embark",{"_index":4940,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["embed",{"_index":4964,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["embedurl",{"_index":5244,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["embrac",{"_index":4981,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["emerg",{"_index":6909,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["emili",{"_index":359,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["emit",{"_index":5309,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["emordnilap",{"_index":4624,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["emphas",{"_index":3379,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["emphasi",{"_index":6436,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["employ",{"_index":4465,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["empti",{"_index":1287,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["empty_dict",{"_index":6160,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["empty_set",{"_index":6178,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["emr",{"_index":586,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["en",{"_index":2963,"title":{},"content":{"/tracks/archive/":{},"/posts/archive/":{}},"description":{}}],["enabl",{"_index":218,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["enclos",{"_index":828,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["encod",{"_index":4087,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["encoded_str",{"_index":4089,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["encount",{"_index":1952,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["encourag",{"_index":4431,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["encrypt",{"_index":602,"title":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}}}],["encryption/decrypt",{"_index":1853,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["encryptionto",{"_index":1921,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["encryption”:”aes256",{"_index":1373,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["encryption”:”aws:km",{"_index":1376,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["end",{"_index":30,"title":{"/tracks/algorithms-101/leetcode/medium/19":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/19":{}}}],["end_of_str",{"_index":5616,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["endi",{"_index":3473,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["endless",{"_index":4301,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["endlessli",{"_index":4300,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["endpoint",{"_index":268,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["endpoint'",{"_index":2959,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["enforc",{"_index":1905,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["engag",{"_index":6676,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["engin",{"_index":482,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["english",{"_index":3981,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["english/hebrew",{"_index":6513,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["enhanc",{"_index":1940,"title":{"/stories/004-trading-bot-refactor-orders":{}},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-docstring-templates":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["eni",{"_index":1764,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["enough",{"_index":2252,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{}},"description":{}}],["enrol",{"_index":956,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ensur",{"_index":86,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["ensurerun",{"_index":2926,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["enter",{"_index":1147,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["enterpris",{"_index":545,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["entertain",{"_index":4685,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["entir",{"_index":2325,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/git-snippets":{},"/posts/trading-indicators/atr":{}},"description":{}}],["entiti",{"_index":2357,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["entranc",{"_index":3120,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["entri",{"_index":781,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["entrypoint",{"_index":892,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/docker-commands/":{}},"description":{}}],["enum",{"_index":4915,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{}},"description":{}}],["enumer",{"_index":4787,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{}},"description":{}}],["enumerate(",{"_index":4459,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["enumerate(ar",{"_index":4894,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["enumerate(maxextend",{"_index":3569,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["enumerate(num",{"_index":3510,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["enumerate(sorted_scor",{"_index":3225,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["env",{"_index":2604,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["env:mongo_collection_db_nam",{"_index":6009,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["env:mongo_connection_str",{"_index":6007,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["envelop",{"_index":1851,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["environ",{"_index":303,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["environments.yml",{"_index":5451,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["envsubst",{"_index":1965,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["epel",{"_index":5584,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["ephemer",{"_index":2738,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["epsilon",{"_index":6494,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["eq",{"_index":5131,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["equal",{"_index":2188,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}}}],["equalpairs(self",{"_index":4151,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["equat",{"_index":4622,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}}}],["equival",{"_index":2230,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["errichto:leetcod",{"_index":3572,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["error",{"_index":1017,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["error/index.html",{"_index":2846,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["error_stream",{"_index":2009,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["es",{"_index":936,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["es2023",{"_index":7042,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["es6",{"_index":5047,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["esbenp.pretti",{"_index":5059,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["eslint",{"_index":5042,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["eslint:recommend",{"_index":5048,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["eslintignor",{"_index":5445,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["eslintrc.json",{"_index":5045,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["esmoduleinterop",{"_index":7048,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["esnext",{"_index":7045,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["especi",{"_index":3815,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{}},"description":{}}],["espresso",{"_index":5381,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["essenti",{"_index":4147,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["establish",{"_index":299,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["estim",{"_index":4514,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["etc",{"_index":1594,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/code-style":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["etc/nginx",{"_index":5595,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/nginx/nginx.conf",{"_index":5593,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/passwd",{"_index":6694,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["etc/sudo",{"_index":7013,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["etc/yum.repos.d",{"_index":5574,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/yum.repos.d/cento",{"_index":5577,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/yum.repos.d/vscode.repo",{"_index":7024,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ethusdt",{"_index":6948,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["etl",{"_index":1083,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["eu",{"_index":5999,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["euclidean",{"_index":4490,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["evalu",{"_index":3115,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/python-snippets/":{}},"description":{}}],["even",{"_index":632,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["even_s1",{"_index":4127,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["even_s2",{"_index":4131,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["evenli",{"_index":449,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["event",{"_index":228,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["event'records'['sn",{"_index":1306,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["event.data.fn.keyword",{"_index":1712,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["event.preventdefault",{"_index":6810,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["event.target.alt",{"_index":6890,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["event['record",{"_index":2033,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_nam",{"_index":1943,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_name=\"${events[random%${#ev",{"_index":1962,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_timestamp",{"_index":1942,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_timestamp=$(($(d",{"_index":1963,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_typ",{"_index":1944,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["eventbridg",{"_index":463,"title":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["eventb­ridg",{"_index":1141,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["events:deleterul",{"_index":5932,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:describerul",{"_index":5933,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:listrul",{"_index":5935,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:listrulenamesbytarget",{"_index":5934,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:listtargetsbyrul",{"_index":5936,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:putrul",{"_index":5937,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:puttarget",{"_index":5938,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:removetarget",{"_index":5939,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events=(checkout",{"_index":1957,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["eventsform",{"_index":1689,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["eventssearch",{"_index":1641,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["eventu",{"_index":1411,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["everybodi",{"_index":4619,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["everyday",{"_index":2061,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["everyon",{"_index":1156,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["everyth",{"_index":2113,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["everythin",{"_index":6660,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["everytim",{"_index":2368,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["evict",{"_index":3939,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["ex",{"_index":1023,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["exact",{"_index":282,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["exactli",{"_index":1095,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["exam",{"_index":15,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/apps/cloud-exam-quizz/":{}}}],["examin",{"_index":978,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{}},"description":{}}],["exampl",{"_index":929,"title":{"/posts/hugo-shortcode-examples/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/p/links":{}},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["example.com",{"_index":5146,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["exce",{"_index":1744,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["excel",{"_index":2717,"title":{"/tracks/algorithms-101/leetcode/easy/171":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/171":{}}}],["except",{"_index":755,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["exceptiontyp",{"_index":5073,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["excerpt",{"_index":2719,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["excess",{"_index":1127,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["exchang",{"_index":4914,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["exchanges.bin",{"_index":4919,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["exclam",{"_index":4794,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["exclud",{"_index":3912,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["exclus",{"_index":4589,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["exec",{"_index":3387,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/posts/docker-commands/":{}},"description":{}}],["execut",{"_index":238,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["exhaust",{"_index":3862,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["exist",{"_index":508,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["exist.add(z",{"_index":3676,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["existedex",{"_index":1409,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["exit",{"_index":1454,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/other-snippets":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["expand",{"_index":973,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/python-snippets/":{}},"description":{}}],["expect",{"_index":779,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/python-snippets/":{}},"description":{}}],["expectednum",{"_index":4260,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["expectednums.length",{"_index":4263,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["expend",{"_index":2354,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["expens",{"_index":2495,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["experi",{"_index":498,"title":{"/homepage/experience":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["expert",{"_index":966,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["expir",{"_index":1878,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/git-snippets":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["expire=now",{"_index":5483,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["expl",{"_index":3609,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["explain",{"_index":658,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["explan",{"_index":49,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-docstring-templates":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{}}}],["explanatori",{"_index":2257,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["explicit",{"_index":1894,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-snippets":{}},"description":{}}],["explicitli",{"_index":1478,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["explod",{"_index":4080,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["explor",{"_index":1697,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["explos",{"_index":7203,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["expo",{"_index":1272,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["expon",{"_index":4231,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["exponenti",{"_index":1859,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/ema":{}},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}}}],["export",{"_index":1835,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["exports.handl",{"_index":1804,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["expos",{"_index":830,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["express",{"_index":739,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{}},"description":{}}],["express.j",{"_index":2541,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["express.jsproject",{"_index":2540,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ext",{"_index":6972,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["extend",{"_index":2141,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["extens",{"_index":352,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-rename-files-in-python/":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{}},"description":{}}],["extern",{"_index":335,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/code-style":{}},"description":{}}],["extra",{"_index":885,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/docker-commands/":{}},"description":{}}],["extracandi",{"_index":4376,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["extract",{"_index":1082,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["extrem",{"_index":4175,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["f",{"_index":1255,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["f\"she",{"_index":6108,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f\"{f.stem}_new{f.suffix",{"_index":6978,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f\"{name",{"_index":6110,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f\"{name}_new{ext",{"_index":6974,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f('ab",{"_index":4727,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f('abc",{"_index":4725,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f('abca",{"_index":4726,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f('b",{"_index":4728,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f(c",{"_index":4186,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["f.rename(new_nam",{"_index":6979,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f1",{"_index":5310,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f2",{"_index":5311,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f3",{"_index":5312,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f4",{"_index":5313,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f401",{"_index":5020,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["f403",{"_index":5019,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["f5",{"_index":5315,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f=\"name=\"exampl",{"_index":7156,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["fabric",{"_index":2199,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["face",{"_index":4976,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["facebook",{"_index":2526,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["fact",{"_index":4816,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/python-snippets/":{}},"description":{}}],["factor",{"_index":196,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["factori",{"_index":2346,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["fail",{"_index":889,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["failov",{"_index":667,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["failur",{"_index":332,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["fall",{"_index":4722,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["fals",{"_index":2608,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["famili",{"_index":2171,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["familiar",{"_index":2258,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["fan",{"_index":1142,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}}}],["fantast",{"_index":5420,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["faq",{"_index":1933,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/apps/brewmate/":{}},"description":{}}],["far",{"_index":3293,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["fargat",{"_index":471,"title":{"/tracks/aws-certified-developer-associate/fargate/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["farther",{"_index":1625,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["fast",{"_index":1601,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["fast.next",{"_index":3925,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["fast.next.next",{"_index":3927,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["faster",{"_index":822,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["fastest",{"_index":6564,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["fat",{"_index":5306,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["fault",{"_index":504,"title":{"/tracks/aws-certified-developer-associate/fis/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["favor",{"_index":2183,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["fc",{"_index":5101,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["fcm",{"_index":1274,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["fd",{"_index":5502,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["feasibl",{"_index":3329,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["feat",{"_index":5532,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["feat(export",{"_index":5505,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["featur",{"_index":452,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["feb",{"_index":893,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["februari",{"_index":858,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["feder",{"_index":542,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["fee",{"_index":1827,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["feed",{"_index":4681,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["feedback",{"_index":250,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["feel",{"_index":1518,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["feeper",{"_index":1829,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["fenwick",{"_index":4583,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["fenwicktre",{"_index":4758,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["fepend",{"_index":6850,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["fetch",{"_index":2696,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/apps/_index":{}},"description":{}}],["fetch/xhr",{"_index":6549,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["few",{"_index":110,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{}}}],["ffmpeg",{"_index":5125,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["fi",{"_index":1973,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/posts/other-snippets":{},"/posts/bash-snippets":{}},"description":{}}],["fibonacci",{"_index":4227,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{},"/posts/trading-indicators/_index":{}},"description":{}}],["field",{"_index":183,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["fifo",{"_index":1093,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["fifteen",{"_index":1977,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["fig",{"_index":6943,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["fig.update_xaxes(range=[max(0",{"_index":6945,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["figma",{"_index":6525,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["figur",{"_index":4501,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["file",{"_index":351,"title":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/bash-snippets":{},"/posts/howto-rename-files-in-python/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["file'",{"_index":4969,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["file('config/codenarc/rules.groovi",{"_index":5036,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["file://${path.join(__dirnam",{"_index":7068,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["file_name.mp3",{"_index":5137,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["file_name=\"${video_fil",{"_index":5132,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["filenam",{"_index":5539,"title":{},"content":{"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["files/fold",{"_index":1494,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/posts/docker-commands/":{}},"description":{}}],["filesystem",{"_index":2779,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/docker-commands/":{}},"description":{}}],["filippov",{"_index":4683,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["fill",{"_index":181,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/python-snippets/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["filled_dict",{"_index":6161,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"four",{"_index":6172,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"on",{"_index":6171,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.setdefault(\"f",{"_index":6174,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.update({\"four\":4",{"_index":6176,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"f",{"_index":6175,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"four",{"_index":6170,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"on",{"_index":6166,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set",{"_index":6184,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set.add(5",{"_index":6185,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filter",{"_index":1020,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["filter(text",{"_index":6899,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["final",{"_index":2294,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["financ",{"_index":2092,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["financi",{"_index":6907,"title":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["find",{"_index":11,"title":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}}}],["find_target",{"_index":3686,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["find_target(num",{"_index":3204,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["finddifference(nums1",{"_index":4278,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["findmaxaverage(num",{"_index":4251,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["fine",{"_index":668,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["finer",{"_index":1391,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["finish",{"_index":1183,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["finit",{"_index":3845,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["fip",{"_index":1844,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["firebas",{"_index":1273,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["firefox",{"_index":6583,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["firehos",{"_index":590,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["firm",{"_index":2079,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["first",{"_index":70,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["first_col_has_zero",{"_index":3443,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["first_row_has_zero",{"_index":3441,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["firstnumb",{"_index":5286,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["fit",{"_index":2654,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["five",{"_index":792,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["fix",{"_index":1037,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["fix(cancellederror",{"_index":5508,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fix(gener",{"_index":5510,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fix(head",{"_index":5514,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fix(webwork",{"_index":5517,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fl",{"_index":4387,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["flag",{"_index":2713,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["flake8",{"_index":4994,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["flash",{"_index":2838,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["flask",{"_index":6010,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["flask(nam",{"_index":6021,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["flask+api",{"_index":5882,"title":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"content":{},"description":{}}],["flask==1.1.4",{"_index":6062,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["flask_cor",{"_index":6016,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["flexibl",{"_index":275,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["fli",{"_index":6377,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["flickr",{"_index":7201,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["flight",{"_index":695,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["flink",{"_index":1924,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["flip",{"_index":3162,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["float",{"_index":3532,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/img":{},"/photos/midjourney/":{}},"description":{}}],["float('inf",{"_index":4101,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["float=\"left",{"_index":5084,"title":{},"content":{"/posts/python-bitwise-operators":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["float=\"right",{"_index":5087,"title":{},"content":{"/posts/python-bitwise-operators":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["flood",{"_index":704,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["floor",{"_index":2347,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{}},"description":{}}],["flop",{"_index":4612,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["flow",{"_index":992,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["flowchart",{"_index":1444,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["flower",{"_index":3038,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["flower\",\"flow\",\"flight",{"_index":4386,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["flowerb",{"_index":4439,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["flowerbed[i",{"_index":4443,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["flowerbed[i+1",{"_index":4445,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["floyd",{"_index":4303,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["fluctuat",{"_index":5661,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["fn",{"_index":1629,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["fn::base64",{"_index":2915,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["fn::getatt",{"_index":73,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["fn:findinmap",{"_index":2876,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["fo",{"_index":6774,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["focu",{"_index":475,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["focus",{"_index":743,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["folder",{"_index":355,"title":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/other-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}}}],["folders/fil",{"_index":6594,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["follow",{"_index":369,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["font",{"_index":5100,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["foo",{"_index":5391,"title":{},"content":{"/posts/js-snippets":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["foo.bar",{"_index":5392,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["foo.baz",{"_index":5393,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["foobar",{"_index":1631,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["food",{"_index":451,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["foot",{"_index":6210,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["footbal",{"_index":4626,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}}}],["footer",{"_index":6443,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["for..in",{"_index":5390,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["for..of",{"_index":5386,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["forbidden",{"_index":1403,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["forc",{"_index":1398,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["forceconsistentcasinginfilenam",{"_index":7050,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["foreground",{"_index":5572,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["foreign",{"_index":2500,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["forev",{"_index":4371,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["forex",{"_index":5773,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["forgetloggedinus",{"_index":5222,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["forgotten",{"_index":4952,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["form",{"_index":727,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/photos/midjourney/":{}},"description":{}}],["form.addeventlistener(\"submit",{"_index":6840,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["formal",{"_index":4257,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["format",{"_index":1202,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["format(msg",{"_index":6396,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["format(x",{"_index":6201,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["formatt",{"_index":4992,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["formdata",{"_index":5234,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["former",{"_index":1659,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["formerli",{"_index":2374,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["formula",{"_index":3636,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/apps/_index":{}},"description":{}}],["forth",{"_index":5767,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["forum",{"_index":2512,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["forward",{"_index":408,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["found",{"_index":511,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-docstring-templates":{},"/posts/other-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/docker-commands/":{}},"description":{}}],["foundri",{"_index":2128,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["four",{"_index":191,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["fractal",{"_index":5865,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["fraction",{"_index":3715,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["fractiontodecimal(self",{"_index":3848,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["frac{n}{2",{"_index":4515,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{4",{"_index":4516,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{8",{"_index":4517,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frama",{"_index":5866,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["frame",{"_index":7219,"title":{},"content":{"/p/links":{}},"description":{}}],["framework",{"_index":2542,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["frameworkvers",{"_index":5993,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["free",{"_index":931,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-install-rhel-9-free/":{},"/p/links":{},"/apps/brewmate/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["freecodecamp",{"_index":930,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["freez",{"_index":6667,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["frequenc",{"_index":2744,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["frequent",{"_index":709,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["fresh",{"_index":1492,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["friendli",{"_index":1837,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["frill",{"_index":2348,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["from=$(nvm",{"_index":6635,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["from=markdown",{"_index":5121,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["from_binance_ord",{"_index":4913,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["from_binance_order(binance_ord",{"_index":4917,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["frompend",{"_index":2773,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["fromport",{"_index":2931,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["front",{"_index":790,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["frontend",{"_index":288,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["fruit",{"_index":4791,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["fsck",{"_index":5500,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["fssl",{"_index":6517,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["fulfil",{"_index":1008,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["full",{"_index":1346,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/git-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["fulli",{"_index":1090,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["func",{"_index":4546,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["function",{"_index":48,"title":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["function'",{"_index":1734,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["function(",{"_index":3406,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["function(ev",{"_index":1805,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["function_name(param1",{"_index":5066,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["function_name(param1_valu",{"_index":5074,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["functionfollow",{"_index":2051,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["functool",{"_index":6391,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["fundament",{"_index":2722,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["further",{"_index":2207,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["furthest",{"_index":2807,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["futur",{"_index":1244,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["g",{"_index":3276,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{}},"description":{}}],["g.add_edge(0",{"_index":3277,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.add_edge(1",{"_index":3278,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.add_edge(2",{"_index":3279,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.add_edge(3",{"_index":3280,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.bfs(2",{"_index":3281,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.square(10",{"_index":5345,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["g1",{"_index":4770,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["g2",{"_index":4697,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["ga",{"_index":4025,"title":{"/tracks/algorithms-101/leetcode/medium/134":{}},"content":{"/tracks/algorithms-101/leetcode/medium/134":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/134":{}}}],["gain",{"_index":1021,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["gain[i",{"_index":4481,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["galley",{"_index":6713,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["game",{"_index":2119,"title":{"/tracks/algorithms-101/leetcode/medium/55":{}},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/leetcode/medium/55":{}}}],["gamma",{"_index":6493,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["gann",{"_index":5852,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["gap",{"_index":1978,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["garbag",{"_index":1729,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["garden",{"_index":7210,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["garland",{"_index":4601,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}}}],["gas[i",{"_index":4036,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["gatewav",{"_index":1560,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["gateway",{"_index":24,"title":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["gateway+lambda+mongodb",{"_index":5883,"title":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"content":{},"description":{}}],["gather",{"_index":1018,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["gato",{"_index":7196,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["gaug",{"_index":5772,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["gb",{"_index":6510,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["gc",{"_index":5484,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["gcc",{"_index":7004,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gcd",{"_index":4486,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcd(a",{"_index":4496,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcd(len(str1",{"_index":4498,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcdofstr",{"_index":4500,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcdofstrings(self",{"_index":4495,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gen_to_list",{"_index":6385,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gener",{"_index":8,"title":{"/tracks/algorithms-101/leetcode/medium/22":{},"/photos/midjourney/":{},"/photos/ai/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/p/links":{}},"description":{"/tracks/disser/utils/text_2_short":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/photos/midjourney/":{},"/photos/ai/":{}}}],["generate_prices(self",{"_index":6957,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["generatedatakey",{"_index":1852,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["generateparenthesis(self",{"_index":3749,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["geograph",{"_index":1543,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["geoloc",{"_index":1537,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["geometri",{"_index":4617,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{}},"description":{}}],["geometry.square(5",{"_index":5344,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["geometry:\"top=1cm",{"_index":5111,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["geoproxim",{"_index":1538,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["georg",{"_index":5623,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["geq",{"_index":6503,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["get",{"_index":1710,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["get(key",{"_index":3937,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["get(self",{"_index":3949,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["get/put",{"_index":3942,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["get_child(head",{"_index":4210,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_child(head.left",{"_index":4211,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_child(head.right",{"_index":4213,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_child(root",{"_index":4214,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_neighbors(root",{"_index":3286,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["get_next(get_next(fast",{"_index":4311,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_next(n",{"_index":4309,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_next(num",{"_index":4307,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_next(slow",{"_index":4310,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_species(cl",{"_index":6277,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["get_user(user_id",{"_index":6025,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["getatt",{"_index":2935,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["getatt.html",{"_index":78,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["getattr",{"_index":6332,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["getbaseurl",{"_index":5138,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getbaseurl('http://url.com/page?name=adam&surname=smith",{"_index":5140,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getcallerident",{"_index":549,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["getclient",{"_index":5240,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getfederationtoken",{"_index":547,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["getintersectionnode(self",{"_index":4362,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["getloggedinus",{"_index":5217,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getmetricdata",{"_index":646,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["getobject",{"_index":1485,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["getpalindrom",{"_index":3543,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["getpalindrome(i",{"_index":3552,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["getpalindrome(left",{"_index":3546,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["getsessiontoken",{"_index":555,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["gettasks(listid",{"_index":5224,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getter",{"_index":6281,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gettimestamp",{"_index":5183,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["gettracesummari",{"_index":1052,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["geturlparamet",{"_index":5151,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["geturlparameters('google.com",{"_index":5156,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["geturlparameters('http://url.com/page?name=adam&surname=smith",{"_index":5157,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["ghi",{"_index":3827,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["gid=1000(interactiveus",{"_index":6689,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["gif",{"_index":6474,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["gigabyt",{"_index":1785,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["git",{"_index":2557,"title":{"/posts/git-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/git-snippets":{},"/posts/bash-snippets":{}}}],["gitattribut",{"_index":5446,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github",{"_index":2630,"title":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/posts/howto-render-notebook-in-hugo":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}}}],["github/dependabot.yml",{"_index":5457,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github/workflow",{"_index":5438,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["github/workflows/cr",{"_index":5459,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github/workflows/test",{"_index":5460,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github_workspac",{"_index":5470,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["gitignor",{"_index":5447,"title":{},"content":{"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{}},"description":{}}],["gitlab",{"_index":2631,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["give",{"_index":1691,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["given",{"_index":1335,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["gke",{"_index":2122,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["glacier",{"_index":922,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["glanc",{"_index":993,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["global",{"_index":81,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["globe",{"_index":2832,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["glue",{"_index":708,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["gmail",{"_index":2800,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["gnome",{"_index":7010,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["go",{"_index":887,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["go.figure(data=data",{"_index":6944,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["go.scatt",{"_index":6937,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["goal",{"_index":2149,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["godaddi",{"_index":1530,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["goe",{"_index":3294,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["gone",{"_index":2813,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["good",{"_index":1328,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["googl",{"_index":1056,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-docstring-templates":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{}}],["gopherfest",{"_index":6458,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["goto",{"_index":3680,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["govern",{"_index":916,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["gp2",{"_index":2474,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["gpu",{"_index":2421,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["grab",{"_index":4605,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}}}],["grace",{"_index":7202,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["gracefulli",{"_index":7121,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["gradl",{"_index":2699,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["grain",{"_index":669,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["grammar",{"_index":6568,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["grammarli",{"_index":6527,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["grant",{"_index":1385,"title":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}}}],["granular",{"_index":1007,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["graph",{"_index":748,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["graphic",{"_index":2422,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["graphql",{"_index":267,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["great",{"_index":2340,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["greater",{"_index":890,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["greatest",{"_index":3032,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["greatli",{"_index":438,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["greedi",{"_index":2988,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["green",{"_index":1438,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["greet",{"_index":5356,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["grep",{"_index":1252,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/other-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["grey",{"_index":2006,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["grid",{"_index":3463,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["grid0",{"_index":3464,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["gridm",{"_index":3465,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["groovi",{"_index":4993,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["group",{"_index":147,"title":{"/tracks/algorithms-101/leetcode/medium/49":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/49":{}}}],["group'",{"_index":803,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["groupanagrams(self",{"_index":3587,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["groupanagrams(str",{"_index":3603,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["groupdescript",{"_index":2928,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["groups=1000(interactiveus",{"_index":6690,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["grow",{"_index":2146,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["grunt",{"_index":6280,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gsi",{"_index":2487,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["gt",{"_index":6768,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["guarante",{"_index":1094,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["guard",{"_index":1468,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["guess",{"_index":3133,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["gui",{"_index":4978,"title":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/apps/brewmate/":{}}}],["guid",{"_index":870,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["guidanc",{"_index":967,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["guidelin",{"_index":515,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-docstring-templates":{}},"description":{}}],["gzip",{"_index":7176,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["h",{"_index":2425,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-snippets/":{}},"description":{}}],["h1",{"_index":6403,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h14",{"_index":5628,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["h2",{"_index":6404,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h2o",{"_index":6476,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h3",{"_index":6405,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h4",{"_index":6406,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h5",{"_index":6407,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h6",{"_index":6408,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ha",{"_index":2351,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["habr",{"_index":4598,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["hack",{"_index":6643,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["had_0",{"_index":4110,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["had_5",{"_index":4109,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["haifa",{"_index":7208,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["half",{"_index":3190,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["halfatatim",{"_index":1748,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["halv",{"_index":3189,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/posts/python-bitwise-operators":{}},"description":{}}],["hammingweight(self",{"_index":4324,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["hand",{"_index":986,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["handbook",{"_index":3401,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["handi",{"_index":1647,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/bash-snippets":{}}}],["handl",{"_index":1086,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["handler",{"_index":1599,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["happen",{"_index":139,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-snippets/":{}},"description":{}}],["happi",{"_index":4299,"title":{"/tracks/algorithms-101/leetcode/easy/202":{}},"content":{"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/202":{}}}],["har",{"_index":4984,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["harbor",{"_index":2402,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["hard",{"_index":74,"title":{"/tracks/algorithms-101/leetcode/hard/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/git-snippets":{}},"description":{}}],["hardcod",{"_index":1951,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["hardli",{"_index":1336,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["hardwar",{"_index":1846,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["hare",{"_index":4305,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["has2_neg",{"_index":4898,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["has2_posit",{"_index":4897,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["has_diff",{"_index":4896,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["hascycle(self",{"_index":4383,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["hash",{"_index":1228,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-snippets/":{}},"description":{}}],["hashabl",{"_index":4420,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["hashicorp",{"_index":1814,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["hashmap",{"_index":4011,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["hasn't",{"_index":1191,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["hat",{"_index":2124,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["have",{"_index":1724,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["haven't",{"_index":2273,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["hdd",{"_index":2434,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["head",{"_index":3764,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/git-snippets":{}},"description":{}}],["head.next",{"_index":3808,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["head.val",{"_index":4269,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["head=[1",{"_index":3809,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["heada",{"_index":4363,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["headb",{"_index":4364,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["header",{"_index":1040,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["header.html",{"_index":6846,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["head~5",{"_index":5496,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["health",{"_index":1526,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["healthi",{"_index":1548,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["healthy/unhealthi",{"_index":2267,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["healthyhostcount",{"_index":2260,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["heap",{"_index":3124,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["heart",{"_index":4920,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["heaven",{"_index":2591,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["heavi",{"_index":2470,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["heavili",{"_index":2665,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["height",{"_index":2005,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["height=\"180px",{"_index":5086,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["height=\"200px",{"_index":5608,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["height=\"210px",{"_index":5083,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["height=\"250px",{"_index":5600,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["height=\"470px",{"_index":6709,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["height[left",{"_index":4166,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["height[right",{"_index":4167,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["held",{"_index":2285,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["hello",{"_index":2408,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["helm",{"_index":2706,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["help",{"_index":487,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["helper",{"_index":2891,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["henc",{"_index":1899,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["hens",{"_index":3731,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["here",{"_index":873,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["here'",{"_index":1143,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{}},"description":{}}],["here.notic",{"_index":2810,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["hereand",{"_index":2774,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["hero",{"_index":980,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["hft",{"_index":5708,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["hg",{"_index":5008,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["hi",{"_index":5357,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["hidden",{"_index":491,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hide",{"_index":6817,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hidesearchresult",{"_index":6808,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hidesearchresults(",{"_index":6819,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hierarch",{"_index":1588,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["hierarchi",{"_index":1001,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["high",{"_index":580,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["highcpuinst",{"_index":2731,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["highcpuinstanceund",{"_index":2788,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["higher",{"_index":2050,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/git-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["highest",{"_index":2431,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["highli",{"_index":1524,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}}}],["highligh",{"_index":5402,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{},"description":{}}],["highlight",{"_index":1656,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/other-snippets":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["hint",{"_index":3378,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/python-docstring-templates":{}},"description":{}}],["hipaa",{"_index":2349,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["hire",{"_index":3132,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["histogram",{"_index":1707,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["histori",{"_index":2609,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["history.innerhtml",{"_index":6889,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["historysect",{"_index":2825,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["hit",{"_index":1775,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["hive",{"_index":587,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["hma",{"_index":5864,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["hoc",{"_index":574,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["hold",{"_index":3880,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["hole",{"_index":4800,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["holiday",{"_index":2817,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["home",{"_index":2449,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["home/ec2",{"_index":2561,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["home/interactiveus",{"_index":6687,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["home/noninteractiveus",{"_index":6692,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["homebrew",{"_index":6516,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/apps/brewmate/":{}}}],["homebrew/cask",{"_index":5103,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["hook",{"_index":1761,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["hope",{"_index":4164,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["horizont",{"_index":2173,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["host",{"_index":184,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["hot",{"_index":562,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["hour",{"_index":767,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/posts/diploma/":{}},"description":{}}],["hour/second",{"_index":2437,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["hourli",{"_index":2716,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["hourly)p",{"_index":1828,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["hous",{"_index":3149,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["hover",{"_index":2547,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["howto",{"_index":1935,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["hpa",{"_index":2197,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["hpc",{"_index":2194,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["hsm",{"_index":1848,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["html",{"_index":2888,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["html.div",{"_index":6926,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["html5",{"_index":6464,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["htmlpage",{"_index":2946,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["htmlunescap",{"_index":6771,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["http",{"_index":44,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["http/http",{"_index":1281,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["http://127.0.0.1:3000",{"_index":7081,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://docs.aws.amazon.com/apigateway/latest/developerguide/how",{"_index":50,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["http://docs.aws.amazon.com/awscloudformation/latest/userguide/intrins",{"_index":77,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["http://foo.com/img.jpg",{"_index":6435,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["http://google.com",{"_index":6441,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["http://localhost:3000",{"_index":5261,"title":{},"content":{"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://localhost:4000",{"_index":5564,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["http://localhost:8008",{"_index":5247,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["http://url.com/pag",{"_index":5141,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["http_proxi",{"_index":2961,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["httpapi",{"_index":6005,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["httpd",{"_index":2445,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["https://aws.amazon.com/blogs/aws/new",{"_index":411,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["https://aws.amazon.com/blogs/compute/new",{"_index":741,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["https://aws.amazon.com/serverless/sam",{"_index":136,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["https://checkip.amazonaws.com",{"_index":1672,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["https://cloudacademy.com/lab/introduct",{"_index":2681,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["https://code.visualstudio.com/docs/setup/linux",{"_index":7019,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://demoapi.server.com/v1",{"_index":5259,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["https://developers.redhat.com/products/rhel/get",{"_index":7026,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://docs.aws.amazon.com/amazonecs/latest/developerguide/ecs_monitoring.html",{"_index":2397,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["https://docs.aws.amazon.com/amazons3/latest/userguide/us",{"_index":675,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2",{"_index":717,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["https://docs.aws.amazon.com/cloudfront/latest/apireference/api_createcachepolicy.html",{"_index":107,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["https://docs.aws.amazon.com/codedeploy/latest/userguide/deploy",{"_index":150,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["https://docs.aws.amazon.com/codepipeline/latest/userguide/tutori",{"_index":190,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["https://docs.aws.amazon.com/config/latest/developerguide/monitor",{"_index":723,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/tutorials.html",{"_index":2338,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["https://docs.aws.amazon.com/iam/latest/userguide/id_roles_providers_saml.html",{"_index":551,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["https://docs.aws.amazon.com/sns/latest/dg/welcome.html",{"_index":468,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["https://docs.aws.amazon.com/streams/latest/dev/kinesi",{"_index":568,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["https://docs.aws.amazon.com/sts/latest/apireference/api_assumerolewithsaml.html",{"_index":550,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["https://eu",{"_index":7168,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["https://example.com",{"_index":5144,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["https://git",{"_index":2683,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["https://github.com/arnaudj/mooc",{"_index":945,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/itsmostafa/certifi",{"_index":944,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/zsh",{"_index":6647,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://packages.microsoft.com/keys/microsoft.asc",{"_index":7021,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh",{"_index":6641,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://raw.githubusercontent.com/homebrew/install/head/install.sh",{"_index":6518,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://repo1.maven.org/maven2/com/madgag/bfg/1.14.0/bfg",{"_index":5475,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["https://romankurnovskii.com",{"_index":6632,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://rpm.nodesource.com/setup_14.x",{"_index":5582,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["https://sourabhbajaj.com/mac",{"_index":6671,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["https://u",{"_index":1790,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://www.engineeringwithutsav.com/blog/spic",{"_index":6673,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://www.redhat.com/sysadmin/instal",{"_index":7027,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://www.robinwieruch.de/mac",{"_index":6670,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://www.youtube.com/results?search_query=%s&page={startpage?}&utm_source=opensearch",{"_index":6558,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://yandex.ru/{yandex:searchpath}?text=%s&{yandex:referralid}&lr=101443&rstr",{"_index":6555,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["hub",{"_index":2399,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["huge",{"_index":417,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["hugo",{"_index":4962,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/npm/hugo-lunr-ml/":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["hull",{"_index":5863,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["human",{"_index":6258,"title":{},"content":{"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["human(\"joel",{"_index":6291,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human(name=\"ian",{"_index":6288,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.pi",{"_index":6307,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.speci",{"_index":6295,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["hunt",{"_index":6483,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["hvm",{"_index":2905,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["hybrid",{"_index":2375,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["hyperv",{"_index":7138,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["hyphen",{"_index":1506,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["hypothesi",{"_index":499,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["i%60",{"_index":1968,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["i','i",{"_index":4455,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["i':1,'v':5,'x':10,'l':50,'c':100,'d':500,'m':1000",{"_index":4410,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["i'll",{"_index":1796,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["i'm",{"_index":1795,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["i(9",{"_index":4663,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["i+1",{"_index":3420,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["i+=1",{"_index":3206,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["i.",{"_index":2356,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["i.ag",{"_index":6300,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(\"hi",{"_index":6289,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.ag",{"_index":6301,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.get_speci",{"_index":6294,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i/o",{"_index":2461,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["i=0",{"_index":4469,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["i^1(8",{"_index":4664,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["iam",{"_index":179,"title":{"/tracks/aws-certified-developer-associate/iam/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["iam:attachrolepolici",{"_index":5940,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:createrol",{"_index":5941,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:deleterol",{"_index":5942,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:deleterolepolici",{"_index":5943,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:detachrolepolici",{"_index":5944,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:getrol",{"_index":5945,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:passrol",{"_index":5946,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:putrolepolici",{"_index":5947,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iamresourc",{"_index":1619,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["ian",{"_index":6290,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ib",{"_index":6705,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["ibm",{"_index":1105,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ibn",{"_index":7177,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["ichimoku",{"_index":5845,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["icon",{"_index":362,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["id",{"_index":809,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["id'",{"_index":2866,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["id:root=1",{"_index":1026,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["id=\"graph",{"_index":6930,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["id=\"zoom",{"_index":6906,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["idea",{"_index":3365,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["ideal",{"_index":2204,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["ident",{"_index":510,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["identif",{"_index":5744,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["identifi",{"_index":749,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["identi­fi",{"_index":2650,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["idl",{"_index":2180,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["idna==3.3",{"_index":6064,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["idx",{"_index":2582,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["idxa",{"_index":4356,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["idxb",{"_index":4357,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["idxstep",{"_index":2586,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ie",{"_index":2166,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ieee",{"_index":5269,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["if(num",{"_index":3408,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["ifram",{"_index":5434,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["ignor",{"_index":2020,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["ii",{"_index":2278,"title":{"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}}}],["iii",{"_index":3056,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["iiii",{"_index":4400,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["il",{"_index":7221,"title":{},"content":{"/p/links":{}},"description":{}}],["illustr",{"_index":1455,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["imag",{"_index":361,"title":{"/tracks/algorithms-101/leetcode/medium/48":{},"/photos/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/48":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-shortcode-examples/img":{}}}],["image.html",{"_index":6903,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image/index.j",{"_index":6869,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image/placeholders.j",{"_index":6892,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["imageid",{"_index":2909,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["imagenam",{"_index":7115,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["imagestatu",{"_index":1453,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["imagetag=latest",{"_index":2415,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["imagetyp",{"_index":1452,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["imagin",{"_index":2814,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["img",{"_index":6434,"title":{"/posts/hugo-shortcode-examples/img":{}},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["immedi",{"_index":344,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["immut",{"_index":1736,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/python-snippets/":{}},"description":{}}],["impact",{"_index":1031,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["impelemnt",{"_index":6754,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["implement",{"_index":407,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{}}}],["impli",{"_index":5704,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["implic",{"_index":1474,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["implicitli",{"_index":6197,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["import",{"_index":597,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["import/export",{"_index":2954,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["important!_",{"_index":1495,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{}},"description":{}}],["important!_**bucket",{"_index":1503,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{}},"description":{}}],["importlib",{"_index":6065,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["imposs",{"_index":1896,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/js-snippets":{}},"description":{}}],["improv",{"_index":439,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["inact",{"_index":1637,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["inbound",{"_index":402,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["inch",{"_index":6508,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["incklud",{"_index":6851,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["incl",{"_index":1861,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["includ",{"_index":188,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["inclus",{"_index":3823,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["incognito",{"_index":2240,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["incom",{"_index":1036,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["incoming/outgo",{"_index":1563,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["incompat",{"_index":1759,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["incorpor",{"_index":2884,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["incorrect",{"_index":2329,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["incorrectli",{"_index":782,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["increas",{"_index":213,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["incred",{"_index":5619,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["increment",{"_index":1362,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["incur",{"_index":1778,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["inde",{"_index":2828,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["indefinit",{"_index":2251,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["indent",{"_index":5049,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["independ",{"_index":2463,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["index",{"_index":433,"title":{"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/trading-indicators/rsi":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/trading-indicators/rsi":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["index'",{"_index":4221,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["index(b",{"_index":4348,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["index.html",{"_index":2845,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["index.j",{"_index":5455,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["index.test.j",{"_index":5456,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["index.tsx",{"_index":7037,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["indexarea",{"_index":1705,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["indexerror",{"_index":6135,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["indic",{"_index":1695,"title":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{}},"description":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}}}],["individu",{"_index":2065,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["industri",{"_index":2057,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["industry'",{"_index":6711,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["ineffici",{"_index":3743,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["inequ",{"_index":6102,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inexpens",{"_index":1266,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["inf",{"_index":4638,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["infer",{"_index":5307,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["infinit",{"_index":3129,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["inflat",{"_index":7179,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["info",{"_index":1032,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/git-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["inform",{"_index":795,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["infrastructur",{"_index":472,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}}}],["infras­tru­ctur",{"_index":2857,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["infrequ",{"_index":1781,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["infti",{"_index":6499,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ingest",{"_index":1725,"title":{},"content":{},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["ingress",{"_index":2208,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["inher",{"_index":5790,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["inherit",{"_index":5334,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["init",{"_index":126,"title":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}}}],["init(arr",{"_index":4654,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["init(self",{"_index":3238,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["initi",{"_index":829,"title":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}}}],["initiative'",{"_index":7108,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["inject",{"_index":503,"title":{"/tracks/aws-certified-developer-associate/fis/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["inner",{"_index":3908,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["innov",{"_index":2462,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["inord",{"_index":2981,"title":{"/tracks/algorithms-101/leetcode/easy/94":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{}}}],["inordertraversal(self",{"_index":4208,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["inoread",{"_index":6574,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["inp",{"_index":4642,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp().split",{"_index":4648,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp_int",{"_index":4644,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp_int_list",{"_index":4646,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp_str_list",{"_index":4649,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["input",{"_index":2645,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["input(\"ent",{"_index":6116,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["input(\"graph",{"_index":6934,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["input().split",{"_index":4651,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["input.mp4",{"_index":6607,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["input.value.trim",{"_index":6841,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["input_string_var",{"_index":6115,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["insect",{"_index":6484,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["insert",{"_index":131,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/_index":{}},"description":{"/posts/hugo-shortcode-examples/img":{}}}],["insert(root",{"_index":4558,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["insert(self",{"_index":4561,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["insertion_sort(array",{"_index":3176,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["inservic",{"_index":2238,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["insid",{"_index":750,"title":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}}}],["insight",{"_index":1022,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["inspect",{"_index":789,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/docker-commands/":{}},"description":{}}],["inspir",{"_index":4948,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["instal",{"_index":122,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/brewmate/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["instanc",{"_index":156,"title":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}}}],["instance'",{"_index":1188,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-snippets/":{}},"description":{}}],["instanceid",{"_index":2392,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["instancesfrom",{"_index":2734,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["instancetyp",{"_index":2911,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["instanti",{"_index":6261,"title":{},"content":{"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["instantli",{"_index":1923,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["instead",{"_index":1838,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["instruct",{"_index":1170,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["instrument",{"_index":843,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["insuffici",{"_index":2334,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["insur",{"_index":2078,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["int",{"_index":3390,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["int(",{"_index":3462,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["int(a",{"_index":4903,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["int(b",{"_index":4904,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["int(curr_num",{"_index":4099,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["int(d",{"_index":3833,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["int(i/3",{"_index":3673,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["int(inp",{"_index":4645,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["int(inp().strip",{"_index":4755,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["int(input",{"_index":4811,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["int(j/3",{"_index":3674,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["int(s_l1",{"_index":3780,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["int(s_l2",{"_index":3781,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["integ",{"_index":2968,"title":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/13":{}}}],["integr",{"_index":37,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/code-style":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["integr­",{"_index":1140,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["intellig",{"_index":2646,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["intell­ig",{"_index":2648,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["intens",{"_index":2435,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["inter",{"_index":678,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["interact",{"_index":736,"title":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["interactiveus",{"_index":6682,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["interactiveuser:x:1000:1000::/home/interactiveuser:/bin/sh",{"_index":6696,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["interceptor",{"_index":1045,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["interchang",{"_index":1457,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["interest",{"_index":1709,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["interfac",{"_index":28,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["interim",{"_index":7165,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["intermedi",{"_index":1998,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/plan":{},"/posts/docker-commands/":{}},"description":{}}],["intermediate\\_sql\\_stream",{"_index":1999,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["intermediate_sql_stream",{"_index":1988,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["intermitt",{"_index":786,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["intern",{"_index":333,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/markdown-syntax/":{}},"description":{}}],["internal_server_error",{"_index":6042,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["internal_server_error(",{"_index":6040,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["internet",{"_index":329,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["interpol",{"_index":5354,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["interpret",{"_index":6287,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["intersect",{"_index":3296,"title":{"/tracks/algorithms-101/leetcode/easy/160":{}},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/160":{}}}],["interv",{"_index":1708,"title":{"/tracks/algorithms-101/leetcode/medium/56":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{"/tracks/algorithms-101/leetcode/medium/56":{}}}],["interval=1",{"_index":6931,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["interval[0",{"_index":3490,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["interval[1",{"_index":3493,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervals.sort",{"_index":3484,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervals[0",{"_index":3485,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervals[i",{"_index":3471,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervalsir",{"_index":3488,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervent",{"_index":2187,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["interview",{"_index":3026,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["intl.datetimeformat().resolvedopt",{"_index":5169,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["intra",{"_index":2878,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["intro",{"_index":2520,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["introduc",{"_index":988,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-docstring-templates":{},"/posts/code-style":{},"/posts/trading-indicators/atr":{}},"description":{}}],["introduct",{"_index":1089,"title":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}}}],["introductori",{"_index":4438,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["intuit",{"_index":2993,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["invalid",{"_index":2840,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/js-snippets":{}},"description":{}}],["invalid_dict",{"_index":6162,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["invalid_set",{"_index":6182,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["invalidperson",{"_index":5318,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["invalu",{"_index":4987,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["invent",{"_index":6265,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inventori",{"_index":1176,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/mac-setup-development/":{}},"description":{}}],["inventory_messag",{"_index":1237,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["inventory_message=$(aw",{"_index":1234,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["inventory_queue_url",{"_index":1235,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["inventory_queue_url=$(aw",{"_index":1220,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["invers",{"_index":4814,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["inversion_pair",{"_index":4815,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["invert",{"_index":5602,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{},"/posts/markdown-syntax/":{}},"description":{}}],["investig",{"_index":2612,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["invis",{"_index":1133,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["invoc",{"_index":775,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["invok",{"_index":237,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["involv",{"_index":2282,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["inward",{"_index":4160,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["io",{"_index":2468,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["io1",{"_index":2459,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["iobas",{"_index":4636,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["iop",{"_index":2457,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["ios/android",{"_index":6573,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["iot",{"_index":1108,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{}},"description":{}}],["iot:createtopicrul",{"_index":5948,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:deletetopicrul",{"_index":5949,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:disabletopicrul",{"_index":5950,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:enabletopicrul",{"_index":5951,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:replacetopicrul",{"_index":5952,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ip",{"_index":398,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/docker-commands/":{}},"description":{}}],["ipaddress",{"_index":7162,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ipprotocol",{"_index":2932,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["ipsam",{"_index":6428,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ipsum",{"_index":6411,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["ipv4",{"_index":794,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ir",{"_index":3486,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["is...**:_greater/equ",{"_index":2792,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["is_palindrom",{"_index":4039,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["is_palindrome(substr",{"_index":4043,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["is_uniqu",{"_index":4115,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["is_unique(arr",{"_index":4117,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["is_unique(num",{"_index":4121,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["is_valid_cell(next_cel",{"_index":3309,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["isdatevalid",{"_index":5170,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid('1995",{"_index":5176,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid('decemb",{"_index":5173,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid('duck",{"_index":5179,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid(1995",{"_index":5181,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid(2023",{"_index":5180,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdev",{"_index":7061,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["isdon",{"_index":5288,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["iseven(7",{"_index":5282,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["iseven(numb",{"_index":5283,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["ishappy(n",{"_index":4306,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["isinstance(other_ord",{"_index":4925,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["isinstance(sup",{"_index":6329,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["isn't",{"_index":1663,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/python-snippets/":{}},"description":{}}],["isnan(num",{"_index":3411,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["isol",{"_index":1669,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["isolatedmodul",{"_index":7054,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ispalindrome(self",{"_index":4265,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["ispalindrome(x",{"_index":4433,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["israel",{"_index":6703,"title":{"/posts/interactivebrokers-deposit/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["issu",{"_index":208,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{}},"description":{}}],["issubsequence(",{"_index":4450,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["isvalid(self",{"_index":4313,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["isvalidsudoku(self",{"_index":3669,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["it'",{"_index":1190,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ital",{"_index":6437,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["italic___",{"_index":6439,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["item",{"_index":442,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/posts/bash-snippets":{}}}],["item1",{"_index":5346,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["item2",{"_index":5348,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["item=ddb_item",{"_index":2042,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["itemb.d",{"_index":5196,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["items_to_untrack",{"_index":5550,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["items_to_untrack=(\".idea",{"_index":5546,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["iter",{"_index":1960,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["iter(our_iter",{"_index":6194,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["iterm",{"_index":6654,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["iterm2",{"_index":6528,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["itertool",{"_index":4192,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["itertools.combin",{"_index":4190,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["itex",{"_index":1407,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["ith",{"_index":4239,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["itsdangerous==1.1.0",{"_index":6067,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["itself",{"_index":1430,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/python-snippets/":{}},"description":{}}],["itsyc",{"_index":6529,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["it’",{"_index":440,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/posts/trading-indicators/macd":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["iu'",{"_index":2868,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["iv",{"_index":4401,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["ix",{"_index":4403,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["j",{"_index":3186,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{}}],["j+=1",{"_index":3207,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["j.say(\"hello",{"_index":6292,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.ag",{"_index":6302,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.get_speci",{"_index":6297,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j=0",{"_index":4470,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["jan",{"_index":3377,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["jar",{"_index":5479,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["jasmin",{"_index":573,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["jasmin'",{"_index":582,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["java",{"_index":570,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/git-snippets":{}},"description":{}}],["javascript",{"_index":1479,"title":{"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-create-deepclone-js/":{}}}],["javascriptreact",{"_index":5062,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["jdk",{"_index":2387,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["jelast",{"_index":2385,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["jenkin",{"_index":167,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["jenkinsfil",{"_index":5531,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["jest",{"_index":5463,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["jestconfig.json",{"_index":5453,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["jfrog",{"_index":2400,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["jinja2==2.11.3",{"_index":6068,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jira",{"_index":2556,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["jkl",{"_index":3828,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["jmespath==1.0.1",{"_index":6069,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["job",{"_index":349,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{}},"description":{}}],["joel",{"_index":6293,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["john",{"_index":5360,"title":{},"content":{"/posts/js-snippets":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["join",{"_index":742,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["join(decim",{"_index":3860,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["join(r",{"_index":4474,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["join(s.split",{"_index":3892,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["join(sorted(",{"_index":3592,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["join(stack",{"_index":3747,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["join(word",{"_index":3891,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["journal",{"_index":7220,"title":{},"content":{"/p/links":{}},"description":{}}],["journey",{"_index":4941,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["jp=\"jupyt",{"_index":6669,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["jr",{"_index":5780,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["js",{"_index":3403,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["js/typescript",{"_index":5041,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["json",{"_index":1003,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["json.loads(request.data",{"_index":6033,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["json.parse(event.records[0].sns.messag",{"_index":1808,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["json.parse(this.responsetext",{"_index":6803,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["json.tool",{"_index":1240,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["json=$(cat",{"_index":1964,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["jsonifi",{"_index":6014,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["jsonify(message='hello",{"_index":6036,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jsonify({'error",{"_index":6029,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jsonify({'us",{"_index":6030,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jsx",{"_index":7056,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["judg",{"_index":4259,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["juli",{"_index":6994,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["jump",{"_index":3017,"title":{"/tracks/algorithms-101/leetcode/medium/55":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/posts/trading-indicators/rsi":{}},"description":{"/tracks/algorithms-101/leetcode/medium/55":{}}}],["jupyt",{"_index":5418,"title":{"/posts/howto-render-notebook-in-hugo":{}},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{"/posts/howto-render-notebook-in-hugo":{}}}],["jupyterlab",{"_index":6546,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["jwt",{"_index":2536,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["k",{"_index":3052,"title":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}}}],["k8",{"_index":2371,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["k[encoded_str",{"_index":4088,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["kafka",{"_index":1102,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["kb",{"_index":1850,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["kbd",{"_index":6473,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["keep",{"_index":563,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/docker-commands/":{}},"description":{}}],["keltner",{"_index":5850,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["kept",{"_index":2808,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["kernel",{"_index":7000,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["key",{"_index":431,"title":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{}}}],["key'",{"_index":615,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["key(append",{"_index":1889,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["key/sess",{"_index":2056,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["key/valu",{"_index":1439,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["key2",{"_index":1890,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["keyboard",{"_index":6586,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["keycheckbox",{"_index":1893,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["keycloak",{"_index":2531,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["keyerror",{"_index":6169,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keynam",{"_index":5397,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["keypair",{"_index":2748,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["keys(symmetr",{"_index":1863,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["keyword",{"_index":5295,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["keyword_args(**kwarg",{"_index":6207,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyword_args(big=\"foot",{"_index":6208,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["kibana",{"_index":1692,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["kick",{"_index":6658,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["kid",{"_index":3035,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{}}}],["kid'",{"_index":4374,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["kidswithcandi",{"_index":4380,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["kidswithcandies(self",{"_index":4375,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["kill",{"_index":2116,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/docker-commands/":{}},"description":{}}],["kind",{"_index":1080,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["kinesi",{"_index":464,"title":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["kinesis:createstream",{"_index":5953,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["kinesis:deletestream",{"_index":5954,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["kinesis:describestream",{"_index":5955,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["kit",{"_index":657,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["km",{"_index":599,"title":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}}}],["kms(provid",{"_index":1862,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["know",{"_index":444,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["knowledg",{"_index":953,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{"/posts/diploma/":{}}}],["known",{"_index":1540,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["koko",{"_index":3138,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["kst",{"_index":5867,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["kth",{"_index":3126,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["kube",{"_index":2201,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["kubernet",{"_index":903,"title":{"/tracks/aws-certified-developer-associate/eks/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{"/tracks/aws-certified-developer-associate/eks/":{}}}],["kurnovskii",{"_index":6630,"title":{"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["kwarg",{"_index":4936,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{},"/posts/python-snippets/":{}},"description":{}}],["l",{"_index":3428,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["l,r",{"_index":4665,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["l1",{"_index":3753,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l1.next",{"_index":3795,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l1.val",{"_index":3788,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l14",{"_index":5627,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["l1val",{"_index":3787,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["l2",{"_index":3755,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l2.next",{"_index":3796,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["l2.val",{"_index":3790,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l2val",{"_index":3789,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["l4",{"_index":2159,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["l7",{"_index":2157,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["l[i",{"_index":4394,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["la",{"_index":5594,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["lab",{"_index":948,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["lab'",{"_index":1634,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["lab.txt",{"_index":2686,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["label",{"_index":1507,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["labor",{"_index":6420,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["lack",{"_index":6678,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["lag",{"_index":2000,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{}}],["lag(\"event_timestamp",{"_index":1995,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lake",{"_index":1243,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["lambda",{"_index":47,"title":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["lambda@edg",{"_index":1752,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["lambda\\_s3\\_put",{"_index":1290,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["lambda_function.pi",{"_index":1295,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lambda_handler(ev",{"_index":1304,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lambdaelasticsearch",{"_index":1681,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["lambdaexecutionrol",{"_index":1794,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["land",{"_index":2344,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["lane",{"_index":5624,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["languag",{"_index":1464,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["languagemod",{"_index":6763,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["languagemode}/search.json",{"_index":6796,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["languagetool",{"_index":6566,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["laptop",{"_index":1333,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["larg",{"_index":823,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["larger",{"_index":1777,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["larger/equ",{"_index":4296,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["largest",{"_index":3127,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["largest/smallest",{"_index":3704,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["largestaltitude(gain",{"_index":4484,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["last",{"_index":860,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["last=fals",{"_index":3946,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["last_digit",{"_index":4436,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["last_i",{"_index":3500,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["last_par",{"_index":4821,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["last_valu",{"_index":4315,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["last_value(\"session_timestamp",{"_index":2019,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lastli",{"_index":5299,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["late",{"_index":5634,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["latenc",{"_index":88,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["later",{"_index":1195,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/python-snippets/":{}},"description":{}}],["latest",{"_index":864,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["latest/amzn2",{"_index":2904,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["latest_tim",{"_index":2016,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["latex",{"_index":6487,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["latter",{"_index":1661,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["launch",{"_index":476,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/brewmate/":{}},"description":{}}],["layer",{"_index":1754,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-snippets/":{}},"description":{}}],["layout",{"_index":6852,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["layouts/_default/index.json",{"_index":6766,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/partials/components/search",{"_index":6760,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/partials/footer.html",{"_index":6762,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/partials/header.html",{"_index":6759,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/shortcod",{"_index":5431,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["lazi",{"_index":2360,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/python-snippets/":{}},"description":{}}],["lb",{"_index":2211,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["ld",{"_index":1051,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["ldot",{"_index":4518,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["lead",{"_index":501,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{}}],["leaderboard",{"_index":2342,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["leaf",{"_index":3087,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["leap",{"_index":6718,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["learn",{"_index":926,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/bash-snippets":{}}}],["leav",{"_index":1286,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["leetcod",{"_index":3028,"title":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{}}}],["left",{"_index":1168,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["left.next",{"_index":3933,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["left.val",{"_index":3931,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["left=1cm",{"_index":5113,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["left=non",{"_index":3240,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["left_half",{"_index":3191,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["left_index",{"_index":3196,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["left_num",{"_index":3681,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["left_sum",{"_index":4222,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["leftmost",{"_index":3983,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["legaci",{"_index":1596,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["legoux",{"_index":5880,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["len",{"_index":4729,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["len(",{"_index":3705,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(\"thi",{"_index":6105,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len('abc",{"_index":4719,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len('abcd",{"_index":4720,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(a",{"_index":4523,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(ar",{"_index":4819,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["len(arr",{"_index":3213,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["len(array",{"_index":3178,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(board",{"_index":4056,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["len(board[0",{"_index":4057,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["len(curr",{"_index":3352,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(decim",{"_index":3858,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["len(dict_count",{"_index":4427,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["len(digit",{"_index":4247,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["len(distinct_el",{"_index":4120,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["len(grid",{"_index":4155,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["len(height",{"_index":4169,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["len(interv",{"_index":3487,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["len(l",{"_index":4393,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["len(li",{"_index":6151,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(matrix",{"_index":3317,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["len(matrix[0",{"_index":3318,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["len(maz",{"_index":3297,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(maze[0",{"_index":3298,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(nam",{"_index":6111,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(num",{"_index":3205,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["len(nums1",{"_index":4218,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["len(path",{"_index":3336,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(pric",{"_index":4072,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["len(queu",{"_index":4077,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["len(r",{"_index":3647,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["len(self",{"_index":4543,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(self.cach",{"_index":3953,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["len(self.dictionari",{"_index":3972,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["len(set(a",{"_index":4736,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(set(b",{"_index":4737,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(str1",{"_index":4493,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(str2",{"_index":4494,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(t",{"_index":3556,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["len(tree)//2",{"_index":4667,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["len(tup",{"_index":6157,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(unique_char",{"_index":4199,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["len(unique_count",{"_index":4426,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["len_curr",{"_index":3694,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["len_max",{"_index":3548,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["length",{"_index":1441,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{}}}],["length_of_source_array",{"_index":4521,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["lengthoflongestsubstring(self",{"_index":3693,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["leq",{"_index":6504,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["less",{"_index":1392,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/atr":{}},"description":{}}],["let",{"_index":274,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-snippets/":{}},"description":{}}],["let'",{"_index":2076,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["letraset",{"_index":6722,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["letter",{"_index":1345,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["letter_idx",{"_index":4351,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["lettercombinations(self",{"_index":3826,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["letters[d",{"_index":3834,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["level",{"_index":1360,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/other-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["level_s",{"_index":4076,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["leverag",{"_index":553,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["lexicograph",{"_index":3423,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["li",{"_index":6126,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(1",{"_index":6129,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(2",{"_index":6130,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(3",{"_index":6132,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(4",{"_index":6131,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.extend(other_li",{"_index":6150,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(2",{"_index":6148,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(4",{"_index":6149,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.insert(1",{"_index":6147,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.pop",{"_index":6133,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.remove(2",{"_index":6145,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li2",{"_index":6144,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[0",{"_index":6134,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[1:3",{"_index":6139,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[2",{"_index":6140,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[4",{"_index":6136,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[:3",{"_index":6141,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[::2",{"_index":6142,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[start:end:step",{"_index":6143,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lib",{"_index":7043,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["libmp3lam",{"_index":5135,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["librari",{"_index":981,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["libx264",{"_index":6609,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["licens",{"_index":1590,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/howto-publish-js-npm-project":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["life",{"_index":2464,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["lifecycl",{"_index":765,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["lift",{"_index":2378,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["light",{"_index":4840,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["lightweight",{"_index":4989,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["like",{"_index":4620,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["likelihood",{"_index":5792,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["limit",{"_index":791,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["line",{"_index":115,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["linear",{"_index":846,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/_index":{}},"description":{}}],["linebreak",{"_index":5050,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["linelength",{"_index":5039,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["link",{"_index":1462,"title":{"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/p/links":{}},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}}}],["link.appendchild(linktext",{"_index":6833,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["link.href",{"_index":6834,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["linktext",{"_index":6831,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["lint",{"_index":5023,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["lint:fix",{"_index":5468,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["linter",{"_index":4991,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["linux",{"_index":2442,"title":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/posts/bash-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}}}],["list",{"_index":1,"title":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"content":{"/tracks/_index":{},"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}}}],["list(",{"_index":4453,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["list(char_count.key",{"_index":4198,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["list(filled_dict.valu",{"_index":6168,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(filter(lambda",{"_index":6242,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(inp",{"_index":4650,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["list(map(add_10",{"_index":6240,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(map(int",{"_index":4647,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["list(map(max",{"_index":6241,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(our_iter",{"_index":6198,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(set1",{"_index":4282,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["list(set2",{"_index":4284,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["list(string.ascii_uppercas",{"_index":4350,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["list(valu",{"_index":6386,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(zip(*matrix))[0",{"_index":3444,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["list1",{"_index":4285,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["list2",{"_index":4286,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["list[bool",{"_index":4377,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["list[int",{"_index":3350,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["list[list[int",{"_index":3351,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["list[list[str",{"_index":3589,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["list[str",{"_index":3588,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["listen",{"_index":1041,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["listnod",{"_index":3801,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["listnode(0",{"_index":3786,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["listnode(columnsum",{"_index":3793,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["listnode(i",{"_index":3767,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["listnode(values[0",{"_index":3765,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["liter",{"_index":5292,"title":{},"content":{"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["littl",{"_index":5303,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["live",{"_index":264,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["ll",{"_index":3904,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["ll_sum",{"_index":3779,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["load",{"_index":308,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}}}],["loadbalanc",{"_index":2209,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["loadindexdata",{"_index":6795,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["loads(payload",{"_index":2036,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["local",{"_index":1005,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["locat",{"_index":1421,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/other-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["loch",{"_index":6211,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["loch=\"",{"_index":6209,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lock",{"_index":518,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["log",{"_index":227,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["logan",{"_index":2615,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["logarithm",{"_index":5603,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["logger",{"_index":2715,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["logic",{"_index":1660,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["login",{"_index":2063,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/docker-commands/":{}},"description":{}}],["login(email",{"_index":5233,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["login/password",{"_index":2074,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["logo",{"_index":364,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["logo.png",{"_index":1427,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["logs:createlogdeliveri",{"_index":5956,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:createloggroup",{"_index":5957,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:deleteloggroup",{"_index":5958,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:describeloggroup",{"_index":5959,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:describelogstream",{"_index":5960,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:filterlogev",{"_index":5961,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:getlogev",{"_index":5962,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:putsubscriptionfilt",{"_index":5963,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logsarea",{"_index":1633,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["long",{"_index":263,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["longer",{"_index":144,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["longest",{"_index":2970,"title":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/easy/14":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/easy/14":{}}}],["longestcommonprefix(self",{"_index":4389,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["longestconsecutive(self",{"_index":4064,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["longestones(num",{"_index":4181,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["longestpalindrome(self",{"_index":3544,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["longestsubarray(num",{"_index":3913,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["look",{"_index":365,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["lookup",{"_index":2877,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["lookupev",{"_index":645,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["loop",{"_index":1981,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/other-snippets":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["loos",{"_index":7195,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["lorem",{"_index":6410,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["lose",{"_index":1496,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["loss",{"_index":2232,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{}},"description":{}}],["lost",{"_index":2343,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["lot",{"_index":856,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["low",{"_index":87,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["lower",{"_index":1657,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["lower_case_with_underscor",{"_index":6117,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lowercas",{"_index":1344,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/markdown-syntax/":{}},"description":{}}],["lowest",{"_index":2436,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["lqvkgdt16bf1q6cx",{"_index":857,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["lru",{"_index":3936,"title":{"/tracks/algorithms-101/leetcode/medium/146":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/146":{}}}],["lrucach",{"_index":3943,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["ls",{"_index":2568,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/docker-commands/":{}},"description":{}}],["lsi",{"_index":2507,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["lt",{"_index":6628,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["lt;unique_string>",{"_index":2543,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["lt;uniquenumber>(append",{"_index":2841,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["lt;your\\_project\\_repository_url>",{"_index":2565,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["lt;your\\bucket\\_name>",{"_index":1918,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["ltd",{"_index":2101,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["lunch",{"_index":4684,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["lunr",{"_index":6753,"title":{"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}},"content":{"/apps/_index":{}},"description":{"/apps/npm/hugo-lunr-ml/":{}}}],["lunr(funct",{"_index":6785,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["lunr.j",{"_index":6755,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["lwp",{"_index":2757,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["m",{"_index":1239,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["m.sqrt(16",{"_index":6254,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["m1",{"_index":6509,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/mac-setup-development/":{}}}],["maang",{"_index":3394,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["mac",{"_index":6506,"title":{"/posts/mac-setup-development/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["mac/linux",{"_index":1200,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["macbook",{"_index":6507,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/mac-setup-development/":{}}}],["macci",{"_index":6584,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["macd",{"_index":5706,"title":{"/posts/trading-indicators/macd":{}},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/macd":{}}}],["macd'",{"_index":5746,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["machin",{"_index":797,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["maci",{"_index":1871,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["maco",{"_index":6514,"title":{},"content":{"/posts/mac-setup-development/":{},"/apps/brewmate/":{}},"description":{}}],["macos(cmd+shift+p",{"_index":5026,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["macx",{"_index":6530,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["made",{"_index":512,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}}}],["magic",{"_index":2751,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["magicbel",{"_index":1275,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["magnet",{"_index":2433,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mail",{"_index":722,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["main",{"_index":746,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["main.t",{"_index":7035,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["mainfont=\"m",{"_index":5106,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["mainli",{"_index":661,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["maintain",{"_index":607,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}}}],["maintainaspectratio",{"_index":6746,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["mainten",{"_index":807,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/code-style":{}},"description":{}}],["major",{"_index":2263,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["make",{"_index":174,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{}}}],["make_respons",{"_index":6015,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["make_response(jsonify(error='not",{"_index":6039,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["maker",{"_index":7216,"title":{},"content":{"/p/links":{}},"description":{}}],["manacher'",{"_index":3554,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["manag",{"_index":280,"title":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/stories/004-trading-bot-refactor-orders":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}}}],["mandat",{"_index":620,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["mandatori",{"_index":1383,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{}},"description":{}}],["mani",{"_index":378,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["manipul",{"_index":277,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["manner",{"_index":3924,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["mantissa",{"_index":5271,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["manual",{"_index":600,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["map",{"_index":535,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{}}],["map(int",{"_index":4687,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"description":{}}],["map(text",{"_index":6901,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["map/reduc",{"_index":2503,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["mapreduc",{"_index":2504,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["mardown",{"_index":5095,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["margin",{"_index":6865,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["mariadb",{"_index":1571,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["mark",{"_index":826,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["markdown",{"_index":4971,"title":{"/posts/markdown-syntax/":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/markdown-syntax/":{}}}],["market",{"_index":4983,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/p/links":{}},"description":{}}],["market­plac",{"_index":2880,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["markup",{"_index":1463,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/markdown-syntax/":{}},"description":{}}],["markupsafe==2.0.1",{"_index":6070,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mass",{"_index":5868,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["master",{"_index":629,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/git-snippets":{},"/posts/docker-commands/":{}},"description":{"/posts/bash-snippets":{}}}],["match",{"_index":1642,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{}},"description":{}}],["matches1",{"_index":4828,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matches[1",{"_index":4827,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matches[match",{"_index":4826,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matchesi",{"_index":4831,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matchesmatch",{"_index":4830,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matchesn",{"_index":4829,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["materi",{"_index":604,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["math",{"_index":2969,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["math.floor(date.gettim",{"_index":5184,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.floor(math.random",{"_index":5264,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.floor(new",{"_index":2583,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["math.pi",{"_index":6257,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["math.pow(this.sidelength",{"_index":5343,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.sqrt(16",{"_index":6253,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["math.sqrt(d",{"_index":5339,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.sqrt(this.x",{"_index":5328,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["mathemat",{"_index":4432,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["mathi",{"_index":6138,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["matric",{"_index":4145,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["matrix",{"_index":3002,"title":{"/tracks/algorithms-101/leetcode/medium/73":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/73":{}}}],["matrix.revers",{"_index":3618,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["matrix0",{"_index":3447,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["matrix[0",{"_index":3442,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["matrixi",{"_index":3446,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["matrixj",{"_index":3620,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["matter",{"_index":3497,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-snippets/":{}},"description":{}}],["mau",{"_index":2534,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["maven",{"_index":2698,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["max",{"_index":1115,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["max((extend",{"_index":3568,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["max(_max",{"_index":4068,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["max(a[i",{"_index":4876,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max(a_max",{"_index":4880,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max(an",{"_index":3492,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["max(b",{"_index":4881,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max(candi",{"_index":4379,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["max(len_max",{"_index":3695,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["max(m",{"_index":3511,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["max(max_",{"_index":3521,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["max(max_altitud",{"_index":4485,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max(max_area",{"_index":4173,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max(max_len",{"_index":4183,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max(max_result",{"_index":4735,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max(max_sum",{"_index":4256,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["max(max_vowel",{"_index":3991,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["max(maxlength",{"_index":3915,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["max(mp[s[j",{"_index":3708,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["max(num",{"_index":3884,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max(nums[i",{"_index":3520,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max(r",{"_index":3886,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max2",{"_index":3519,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["max_",{"_index":3518,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["max_abov",{"_index":3469,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["max_altitud",{"_index":4483,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max_area",{"_index":4170,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max_beauti",{"_index":4200,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["max_beauty_count",{"_index":4201,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["max_candi",{"_index":4378,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["max_index",{"_index":4689,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["max_left",{"_index":3470,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["max_len",{"_index":4182,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max_n",{"_index":4738,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max_prod",{"_index":3877,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max_result",{"_index":4734,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max_search_result",{"_index":6782,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["max_substr_len",{"_index":4497,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["max_sum",{"_index":4254,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["max_sum(arr",{"_index":3212,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["max_teleporters(n",{"_index":4776,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max_v",{"_index":4875,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max_valu",{"_index":4688,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["max_vowel",{"_index":3984,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["maxarea(height",{"_index":4168,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["maxextend",{"_index":3561,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[cent",{"_index":3563,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[i",{"_index":3560,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[i]..i",{"_index":3558,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[mirrorindex",{"_index":3566,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxim",{"_index":1415,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["maximum",{"_index":1091,"title":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/atr":{}},"description":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["maximumlinelength",{"_index":5040,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["maximumsum",{"_index":3210,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["maxlength",{"_index":3914,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["maxproduct(num",{"_index":3881,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["maxprofit(self",{"_index":4071,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["maxreceivecount",{"_index":1125,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["maxsubarray(self",{"_index":3517,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["maxsum(num",{"_index":4116,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["maxvowels(",{"_index":3986,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["mayb",{"_index":2272,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/js-snippets":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["maze",{"_index":3121,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mb",{"_index":1766,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["mccabe",{"_index":5002,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["mcmxciv",{"_index":4405,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["md",{"_index":5096,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["md5",{"_index":688,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["md5ofbodi",{"_index":1227,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["mean",{"_index":1489,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["meaning",{"_index":1321,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["meant",{"_index":1334,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["measur",{"_index":304,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["media",{"_index":630,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/p/links":{}},"description":{}}],["mediapackag",{"_index":2854,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["mediatyp",{"_index":6778,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["medium",{"_index":2736,"title":{"/tracks/algorithms-101/leetcode/medium/_index":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["mediumzoom('#zoom",{"_index":6871,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["meet",{"_index":252,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/posts/python-snippets/":{}},"description":{}}],["mem",{"_index":2766,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["member",{"_index":2080,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{}},"description":{}}],["memberslist",{"_index":2621,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["memcach",{"_index":2339,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["memoiz",{"_index":2978,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["memori",{"_index":316,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["memorydb",{"_index":905,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["memorys",{"_index":6003,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mention",{"_index":2673,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["menu",{"_index":1185,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["mercuri",{"_index":7110,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["mere",{"_index":4988,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["merg",{"_index":566,"title":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/git-snippets":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["merge(left",{"_index":3930,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["merge(left.next",{"_index":3934,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["merge(left_ar",{"_index":3194,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["merge(self",{"_index":3483,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["merge_sort",{"_index":3193,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["merge_sort(left_half",{"_index":3201,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["merge_sort(right_half",{"_index":3202,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mergealtern",{"_index":4477,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["mergealternately(self",{"_index":4467,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["mergeconfig",{"_index":5506,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["merged_index",{"_index":3203,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mergetwolists(self",{"_index":4290,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["messag",{"_index":201,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["message.cook_sec",{"_index":1809,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message=msg",{"_index":6272,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["messageid",{"_index":1215,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["message}\".format(name=self.nam",{"_index":6271,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["messeng",{"_index":6520,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["met",{"_index":4000,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["meta",{"_index":1451,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["metadata",{"_index":796,"title":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}}}],["metadata==4.12.0",{"_index":6066,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["meter",{"_index":559,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["method",{"_index":38,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/interactivebrokers-deposit/":{},"/apps/_index":{}},"description":{}}],["methods(or",{"_index":6262,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["methods=['get",{"_index":6024,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["methods=['put",{"_index":6031,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["meticul",{"_index":4961,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["metric",{"_index":315,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/diploma/":{}},"description":{}}],["metricsfrom",{"_index":2776,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["metricstab",{"_index":2728,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["mfa",{"_index":198,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["mfi",{"_index":5846,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["micro",{"_index":1047,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["microphon",{"_index":6275,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["microservic",{"_index":701,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["microservices/aw",{"_index":1016,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["microsoft",{"_index":540,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["micros­ervic",{"_index":2949,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["micros­erv­ic",{"_index":1097,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["microwav",{"_index":1801,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["mid",{"_index":3198,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["middl",{"_index":1174,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["midjourney",{"_index":7193,"title":{"/photos/midjourney/":{}},"content":{},"description":{"/photos/midjourney/":{}}}],["migrat",{"_index":634,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mihai",{"_index":4856,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["milk",{"_index":6470,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["million",{"_index":1787,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["millisecond",{"_index":2003,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["min",{"_index":1113,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["min(3",{"_index":4763,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["min(a[i",{"_index":4879,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["min(height[left",{"_index":4172,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["min(num",{"_index":3885,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["min(nums[i",{"_index":3879,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["min(rightboundari",{"_index":3565,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["min_height",{"_index":4171,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["min_larger_nod",{"_index":4574,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.left",{"_index":4575,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.parent.left",{"_index":4578,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.right",{"_index":4577,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.valu",{"_index":4576,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_prod",{"_index":3878,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["min_v",{"_index":4878,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["min_val",{"_index":4748,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["min_valu",{"_index":3185,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mind",{"_index":2515,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["mine",{"_index":2071,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["minim",{"_index":97,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/trading-indicators/macd":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["minimum",{"_index":311,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["minimumoperations(num",{"_index":4108,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["minor",{"_index":4616,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["mint",{"_index":6446,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["minu",{"_index":3455,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}}}],["minut",{"_index":832,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["minutesrow",{"_index":2782,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["miranti",{"_index":2373,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["mirrorindex",{"_index":3564,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["mislead",{"_index":5668,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["miss",{"_index":2362,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["mission",{"_index":2432,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mistakenli",{"_index":2723,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["mit",{"_index":5462,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["mitig",{"_index":2364,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["mix",{"_index":4805,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/python-snippets/":{}},"description":{}}],["mkdir",{"_index":5585,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["mkdoc",{"_index":7217,"title":{},"content":{"/p/links":{}},"description":{}}],["ml",{"_index":2130,"title":{"/apps/npm/hugo-lunr-ml/":{}},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["mno",{"_index":3829,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["mobil",{"_index":26,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{}},"description":{}}],["mobile.mysite.com",{"_index":405,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["mock",{"_index":46,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["mod",{"_index":3713,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["modal",{"_index":2524,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["mode",{"_index":776,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["mode=\"lines+mark",{"_index":6940,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["model",{"_index":135,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/js-snippets":{}},"description":{}}],["modif",{"_index":2491,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/python-snippets/":{}},"description":{}}],["modifi",{"_index":185,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{},"/posts/python-snippets/":{}},"description":{}}],["modifyaccount",{"_index":2104,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["modifybil",{"_index":2105,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["modifypaymentmethod",{"_index":2106,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["modul",{"_index":1847,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["modular",{"_index":4835,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-snippets/":{}},"description":{}}],["moduleresolut",{"_index":7052,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["modulo",{"_index":4188,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["moment",{"_index":1937,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["momentarili",{"_index":1685,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["momentum",{"_index":5622,"title":{"/posts/trading-indicators/stochastic_oscillator":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["mon/mon",{"_index":2764,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["money",{"_index":5840,"title":{},"content":{"/posts/trading-indicators/_index":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["mongo.pi",{"_index":5887,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_collection_db_nam",{"_index":6008,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_collection_db_name=mydb",{"_index":6054,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_connection_str",{"_index":6006,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_connection_string=mongodb+srv://login:password@cluster0.xxxxx.mongodb.net/mydb?retrywrites=true&w=major",{"_index":6053,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongocli",{"_index":6045,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongoclient(mongo_connection_str",{"_index":6051,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongodb",{"_index":5884,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["monitor",{"_index":312,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["monitoring.txt",{"_index":2767,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["monofont=\"m",{"_index":5109,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["monoton",{"_index":3170,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["monterey",{"_index":6515,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["month",{"_index":853,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/apps/brewmate/":{}},"description":{}}],["monthli",{"_index":1826,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["more",{"_index":278,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["morenumb",{"_index":5368,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["morenumbers.length",{"_index":5373,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["morenumbers.push(5",{"_index":5371,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["morenumbers[5",{"_index":5370,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["moreov",{"_index":4158,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["morri",{"_index":4215,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["mostli",{"_index":2279,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["mount",{"_index":2460,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["mountpath",{"_index":2780,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["mous",{"_index":2548,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["move",{"_index":154,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/trading-indicators/macd":{}}}],["move_to_end",{"_index":3944,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["movement",{"_index":5669,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["movezeroes(self",{"_index":4466,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["movi",{"_index":1459,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/python-snippets/":{}},"description":{}}],["movie=fals",{"_index":6315,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["movie=tru",{"_index":6365,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mp",{"_index":3706,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["mp[s[j",{"_index":3709,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["mq",{"_index":1106,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["mro",{"_index":6361,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ms",{"_index":2958,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["msg",{"_index":6269,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mu",{"_index":6496,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["much",{"_index":1726,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["multi",{"_index":195,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["multidimension",{"_index":3153,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["multilin",{"_index":2580,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["multilingu",{"_index":6567,"title":{"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/_index":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["multimast",{"_index":1577,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["multimedia",{"_index":2836,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["multipart",{"_index":1414,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["multipart/form",{"_index":5237,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["multipl",{"_index":56,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/other-snippets":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{"/posts/bash-snippets":{}}}],["multiple/trailing/lead",{"_index":5511,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["multipli",{"_index":2004,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/trading-indicators/ema":{}},"description":{}}],["multivalu",{"_index":1546,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["mushroom",{"_index":4682,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["mutabl",{"_index":3393,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/posts/python-snippets/":{}},"description":{}}],["mutat",{"_index":5372,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["mv",{"_index":2453,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/bash-snippets":{}},"description":{}}],["my_db",{"_index":6018,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["my_db.us",{"_index":6020,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["my_file.txt",{"_index":1347,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["my_folder/another_folder/my_file.txt",{"_index":1348,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["myatoi",{"_index":3405,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["myclientid",{"_index":5255,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["mycustomfunc",{"_index":1792,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["mydb",{"_index":6049,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mydomain1.localhost",{"_index":5561,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mydomain2.localhost",{"_index":5563,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mydomain3.localhost",{"_index":5565,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mykey",{"_index":2448,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mykey.pem",{"_index":2454,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mypackag",{"_index":5442,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["mypow(self",{"_index":3531,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["mypy_cach",{"_index":5009,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["mysearch",{"_index":5320,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["myself",{"_index":4955,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["myserv",{"_index":5597,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mysql",{"_index":1566,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["mysqrt(self",{"_index":4234,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["myswitch",{"_index":7139,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["myvm1",{"_index":7135,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["myvm2",{"_index":7142,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["n",{"_index":3010,"title":{"/tracks/algorithms-101/leetcode/medium/50":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-bitwise-operators":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/50":{}}}],["n*(n+1)/2",{"_index":3876,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["n+1",{"_index":3996,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["n+2",{"_index":4859,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["n+m",{"_index":4863,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["n//2",{"_index":4813,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["n/2",{"_index":4810,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["n/a",{"_index":2162,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["n10",{"_index":4416,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["n5",{"_index":4415,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["n=1",{"_index":3810,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["n_interv",{"_index":6935,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["n_sum",{"_index":4411,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["nabla",{"_index":6501,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nacl",{"_index":1561,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["naiv",{"_index":3740,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["name",{"_index":533,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["name**:testgetev",{"_index":1690,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["name**:testputev",{"_index":1628,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["name/password",{"_index":2055,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["name:tag",{"_index":7148,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["name=symbol",{"_index":6941,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["nameandcpuutilizationund",{"_index":2789,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["nameend",{"_index":2603,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["nameerror",{"_index":6121,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nameof",{"_index":2254,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["namespac",{"_index":2721,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-snippets/":{}},"description":{}}],["nan",{"_index":6371,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["narrow",{"_index":2537,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/sma":{}},"description":{}}],["nat",{"_index":1559,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["nation",{"_index":3359,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["nativ",{"_index":2001,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["natur",{"_index":2740,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["navig",{"_index":1179,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["navigator.clipboard.writetext(codetocopi",{"_index":5414,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["nay",{"_index":6125,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nbconvert",{"_index":5425,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["neanderthalensi",{"_index":6296,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["near",{"_index":612,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["nearest",{"_index":3119,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["nearli",{"_index":2666,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["necessari",{"_index":1664,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/python-docstring-templates":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["necessarili",{"_index":3655,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["ned",{"_index":5000,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["need",{"_index":62,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["need_two",{"_index":4893,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["neg",{"_index":3598,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-snippets/":{}},"description":{}}],["negat",{"_index":6094,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["neighbor",{"_index":3273,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["neq",{"_index":6505,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nerd",{"_index":6644,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["ness",{"_index":6212,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nest",{"_index":2871,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["net",{"_index":2274,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["netflix",{"_index":1931,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["network",{"_index":85,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["networkinterfac",{"_index":1771,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["neutral",{"_index":2396,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["never",{"_index":516,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["new",{"_index":146,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["new_col",{"_index":3323,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["new_cur",{"_index":4016,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["new_fil",{"_index":5538,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["new_file=${fil",{"_index":5537,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["new_head",{"_index":4014,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["new_max",{"_index":3883,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["new_nam",{"_index":6969,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["new_pric",{"_index":6958,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["new_row",{"_index":3322,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["new_sourc",{"_index":6984,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["new_str",{"_index":3648,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["newer",{"_index":2184,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{},"/apps/brewmate/":{}},"description":{}}],["newest",{"_index":7212,"title":{},"content":{"/p/links":{}},"description":{}}],["newfilenam",{"_index":6986,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["newli",{"_index":1165,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["newlin",{"_index":5267,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["newnod",{"_index":3792,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["next",{"_index":1151,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["next(our_iter",{"_index":6195,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["next.prev",{"_index":3979,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["next=non",{"_index":3802,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["next_cel",{"_index":3304,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["nextand",{"_index":2798,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["nextto",{"_index":1901,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["nexu",{"_index":2705,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["nginx",{"_index":2276,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["nginx.conf",{"_index":5554,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["nice",{"_index":6113,"title":{},"content":{"/posts/python-snippets/":{},"/p/links":{}},"description":{}}],["nicer",{"_index":6103,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["night",{"_index":2815,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["nine",{"_index":3654,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["nitro",{"_index":2458,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["nlb",{"_index":2158,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["nn",{"_index":3501,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[0",{"_index":3502,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[i+1",{"_index":3506,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[i+j+1",{"_index":3508,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[last_i",{"_index":3509,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nobi",{"_index":6429,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nocturn",{"_index":6482,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["node",{"_index":1665,"title":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/116":{}}}],["node'",{"_index":3917,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/docker-commands/":{}},"description":{}}],["node(0",{"_index":3961,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node(1",{"_index":5605,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node(2",{"_index":5606,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node(3",{"_index":5607,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node(cur.v",{"_index":4015,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["node(key",{"_index":3971,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node(s[idx",{"_index":4581,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["node(valu",{"_index":4559,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["node.children",{"_index":5613,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node.children[ch",{"_index":5614,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node.end_of_str",{"_index":5615,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node.j",{"_index":1732,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["node.left",{"_index":3250,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["node.next",{"_index":3920,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["node.prev",{"_index":3977,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node.right",{"_index":3252,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["node.v",{"_index":3922,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["node.valu",{"_index":3969,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node/npm",{"_index":6624,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["node_modul",{"_index":5549,"title":{},"content":{"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["nodeintegr",{"_index":7066,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nodej",{"_index":5583,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["nodemon",{"_index":3386,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["nodes.add(cur",{"_index":4365,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["nodes[cur",{"_index":4017,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["nodes[cur.next",{"_index":4019,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["nodes[cur.random",{"_index":4022,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["nodes[cur].next",{"_index":4018,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["nodes[cur].random",{"_index":4021,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["nodes[head",{"_index":4023,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{}},"description":{}}],["noemit",{"_index":7055,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nofallthroughcasesinswitch",{"_index":7051,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nois",{"_index":5662,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["nologin",{"_index":6691,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["non",{"_index":1158,"title":{"/posts/linux-interactive-non-interactive-users/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/linux-interactive-non-interactive-users/":{}}}],["none",{"_index":1624,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["noninteractiveus",{"_index":6684,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["noninteractiveuser:x:1001:1001::/home/noninteractiveuser:/sbin/nologin",{"_index":6697,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["nopasswd",{"_index":7014,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["normal",{"_index":301,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["normalizer==2.1.1",{"_index":6058,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["nosql",{"_index":2480,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["nostion",{"_index":6449,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["notabl",{"_index":5461,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["notact",{"_index":2091,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["notat",{"_index":1480,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["note",{"_index":641,"title":{"/posts/code-style":{},"/posts/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/posts/code-style":{}}}],["notebook",{"_index":5419,"title":{"/posts/howto-render-notebook-in-hugo":{}},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{"/posts/howto-render-notebook-in-hugo":{}}}],["notebook.html",{"_index":5429,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["notethat",{"_index":6453,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["noth",{"_index":148,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["notic",{"_index":814,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["notif",{"_index":461,"title":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/interactivebrokers-deposit/":{}},"description":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}}}],["notifi",{"_index":2264,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["notifications.html",{"_index":718,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["notion",{"_index":6532,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["notsur",{"_index":5293,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["nov",{"_index":3373,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["novemb",{"_index":6459,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["now",{"_index":1178,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["nox",{"_index":5010,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["npm",{"_index":2574,"title":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/algorithms-101/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["npm@latest",{"_index":6629,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["npmrc",{"_index":5448,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["ns1",{"_index":1534,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["nset",{"_index":4065,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["nth",{"_index":2992,"title":{"/tracks/algorithms-101/leetcode/medium/19":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{}}}],["nuget",{"_index":2703,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["null",{"_index":1369,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["num",{"_index":3229,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["num1",{"_index":5078,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["num2",{"_index":5077,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["num2=5",{"_index":5080,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["num[i",{"_index":4111,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["num_divisor",{"_index":3733,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["number",{"_index":429,"title":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["number.isnan(new",{"_index":5171,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["number/charact",{"_index":1516,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["numer",{"_index":3838,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["numlivesforcat",{"_index":5296,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["nums.append(tmp_remov",{"_index":3634,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["nums.pop(0",{"_index":3631,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["nums.sort",{"_index":3903,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums1",{"_index":4216,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["nums1.sort",{"_index":4220,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["nums1[i",{"_index":4219,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["nums2",{"_index":4217,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["nums[0",{"_index":3503,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[0:target_index",{"_index":3683,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["nums[1",{"_index":3882,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[2",{"_index":3898,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[2,3,4",{"_index":4137,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["nums[3",{"_index":3900,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[4",{"_index":3899,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[i",{"_index":3347,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["nums[i+1",{"_index":3341,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["nums[i+k",{"_index":4255,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["nums[j",{"_index":3893,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[k",{"_index":3894,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[l",{"_index":3431,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["nums[left",{"_index":3425,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["nums[m",{"_index":3430,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["nums[mid",{"_index":3424,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{}},"description":{}}],["nums[r",{"_index":3433,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["nums[right",{"_index":3426,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["nums[target_index",{"_index":3684,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["nums[z",{"_index":3905,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nvm",{"_index":6547,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["nvm)/nvm.sh",{"_index":6625,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["nxt",{"_index":4266,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["n×n",{"_index":4140,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["o",{"_index":1131,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/other-snippets":{}},"description":{}}],["o'",{"_index":4053,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["o','o",{"_index":4456,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["o(1",{"_index":3542,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["o(\\log^2",{"_index":3734,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["o(log",{"_index":3677,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["o(logn",{"_index":4653,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["o(m",{"_index":4373,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["o(n",{"_index":3541,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["o(n*k",{"_index":3814,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["o(n*m",{"_index":4275,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["o(n^2",{"_index":3540,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["o(n^3",{"_index":4144,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["ob",{"_index":6533,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["obj",{"_index":5401,"title":{},"content":{"/posts/js-convert-array-to-dict":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj.length",{"_index":7097,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj[key",{"_index":7094,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object",{"_index":655,"title":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-create-deepclone-js/":{}}}],["object.assign",{"_index":7086,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.fromentries('http://url.com/page?name=adam&surname=smith'.split('?')[1].split('&').map(x=>x.split",{"_index":5161,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["object.key",{"_index":7088,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.keys(clone).foreach",{"_index":7091,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["objectid",{"_index":6013,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["objectid(user_id",{"_index":6028,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["objects.foreach((obj",{"_index":5399,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["objectstab",{"_index":1920,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["objectwithkeynam",{"_index":5396,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["observ",{"_index":486,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{}}],["observedzoom",{"_index":6884,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["observedzooms.foreach(zoom",{"_index":6886,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["obstacl",{"_index":4977,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["obtain",{"_index":2720,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["obv",{"_index":5838,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["occasion",{"_index":2008,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["occur",{"_index":780,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["occurr",{"_index":2996,"title":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1207":{}}}],["odd",{"_index":3080,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["odd_s1",{"_index":4129,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["odd_s2",{"_index":4133,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["offer",{"_index":653,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["offic",{"_index":2097,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["offici",{"_index":941,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["offlin",{"_index":1247,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["offload",{"_index":1873,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["oh",{"_index":6637,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["oint",{"_index":6500,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ok",{"_index":2045,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{}},"description":{}}],["okay",{"_index":5294,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["okr",{"_index":3371,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["okstat",{"_index":2820,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ok—th",{"_index":2795,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["old",{"_index":608,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/posts/docker-commands/":{}},"description":{}}],["old_sourc",{"_index":6982,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["older",{"_index":616,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/docker-commands/":{}},"description":{}}],["oldest",{"_index":2806,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{}},"description":{}}],["omega",{"_index":6498,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["omit",{"_index":5291,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["omz",{"_index":6642,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["on",{"_index":60,"title":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["on_cancel_order_request",{"_index":4933,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["on_new_order_request",{"_index":4932,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["onc",{"_index":159,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["onelogin",{"_index":2530,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["onesign",{"_index":1276,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["onion",{"_index":6363,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["onlin",{"_index":1698,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["onto",{"_index":1435,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/git-snippets":{}},"description":{}}],["op",{"_index":2429,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["open",{"_index":924,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/brewmate/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["open(\"./input.txt",{"_index":4672,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["openai",{"_index":7214,"title":{},"content":{"/p/links":{}},"description":{}}],["openguid",{"_index":1934,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["openid",{"_index":2528,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["opensearch",{"_index":897,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["opensearchservic",{"_index":1680,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["openshift",{"_index":2125,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["opensourc",{"_index":7104,"title":{"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{},"description":{}}],["openssh",{"_index":1817,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["openvpn",{"_index":4938,"title":{"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/stories/002-openvpn-aws-ec2-setup":{}}}],["oper",{"_index":171,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/python-bitwise-operators":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-bitwise-operators":{},"/posts/bash-snippets":{}}}],["operation",{"_index":2198,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["opportun",{"_index":2947,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["oppos",{"_index":1138,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["opposit",{"_index":3214,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/python-snippets/":{}},"description":{}}],["opswork",{"_index":155,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["opt",{"_index":4943,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["opt/aws/bin/cfn",{"_index":2917,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["opt/homebrew/anaconda3/bin//python",{"_index":6665,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["opt/homebrew/bin/pip",{"_index":6664,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["opt/projects/1",{"_index":5586,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/1/app.j",{"_index":5570,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/2",{"_index":5589,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/2/app.j",{"_index":5571,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/start.sh",{"_index":5592,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["optim",{"_index":401,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/git-snippets":{},"/posts/code-style":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/stories/004-trading-bot-refactor-orders":{}}}],["optimist",{"_index":2497,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["optimized(c",{"_index":2420,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["optimized(d",{"_index":2424,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["optimized(r",{"_index":2423,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["optimum",{"_index":2472,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["option",{"_index":127,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["optional[listnod",{"_index":3762,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["optional[nod",{"_index":4013,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["optional[treenod",{"_index":4209,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["optionsand",{"_index":1883,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["opu",{"_index":6581,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["oracl",{"_index":1572,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["orang",{"_index":1499,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["orchestr",{"_index":735,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["orchestra",{"_index":1073,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["orches­tr",{"_index":1064,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["ord",{"_index":4354,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["ord('a",{"_index":3606,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["ord('b",{"_index":4358,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["ord(lett",{"_index":4360,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["order",{"_index":414,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/stories/004-trading-bot-refactor-orders":{}}}],["order1",{"_index":5383,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["order2",{"_index":5384,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["order3",{"_index":5385,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["order_typ",{"_index":4922,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["ordereddict",{"_index":3941,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["orderitem",{"_index":5380,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["orders",{"_index":5378,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["orderstatus.new",{"_index":4930,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["ordinari",{"_index":6255,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["oregon",{"_index":1501,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["org",{"_index":5991,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["org.codenarc:codenarc:1.6",{"_index":5034,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["org/mi",{"_index":7145,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["org:mi",{"_index":7147,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["organ",{"_index":536,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["organis",{"_index":2535,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["organisation'",{"_index":2695,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["organiz",{"_index":1519,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"description":{}}],["organization'",{"_index":1162,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["origin",{"_index":269,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["os",{"_index":2292,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-rename-files-in-python/":{},"/apps/_index":{}},"description":{}}],["os.environ.get",{"_index":6046,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["os.environ.get(\"code_debug",{"_index":4670,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["os.listdir",{"_index":6971,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.path.splitext",{"_index":6970,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.path.splitext(fil",{"_index":6973,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.renam",{"_index":6967,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(fil",{"_index":6975,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(old_nam",{"_index":6968,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["oscar",{"_index":6343,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["oscil",{"_index":5621,"title":{"/posts/trading-indicators/stochastic_oscillator":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/stochastic_oscillator":{}}}],["osi",{"_index":2156,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["other",{"_index":2483,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["other_li",{"_index":6128,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["other_ord",{"_index":4924,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["other_order.statu",{"_index":4929,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["other_order.time_to_cancel",{"_index":4927,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["other_set",{"_index":6186,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["otherwis",{"_index":1353,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["our_iter",{"_index":6191,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["our_iterable[1",{"_index":6193,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["out",{"_index":182,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}}}],["out/in",{"_index":2174,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["outag",{"_index":485,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["outdat",{"_index":2336,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["outer",{"_index":3907,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["outermost",{"_index":1643,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["outgo",{"_index":1926,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["outofservic",{"_index":2239,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["outpost",{"_index":1595,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["output",{"_index":71,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-docstring-templates":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["output(\"l",{"_index":6933,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["output.append(curr",{"_index":3353,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["output.append({'recordid",{"_index":2043,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["output.avi",{"_index":6616,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["output.gif",{"_index":6623,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["output.mp4",{"_index":6615,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["outputformat",{"_index":6775,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["outsid",{"_index":322,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/posts/markdown-syntax/":{}},"description":{}}],["over",{"_index":327,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{}}],["overal",{"_index":1655,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["overbought",{"_index":5630,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["overbought/oversold",{"_index":5673,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["overbuy",{"_index":5774,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["overcom",{"_index":4974,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["overcount",{"_index":4798,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["overhead",{"_index":1126,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{}},"description":{}}],["overlap",{"_index":3168,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["overrid",{"_index":6311,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["overridden",{"_index":6321,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["oversel",{"_index":5775,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["oversold",{"_index":5631,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["overview",{"_index":940,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["overwhelm",{"_index":2962,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["overwrit",{"_index":1361,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/js-snippets":{}},"description":{}}],["own",{"_index":1820,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["owner",{"_index":1139,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ownership",{"_index":2883,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["p",{"_index":4860,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["p.item2",{"_index":5352,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p.pi",{"_index":3388,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["p1",{"_index":3805,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{}}],["p1.age",{"_index":5359,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p1.next",{"_index":3807,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["p2",{"_index":3806,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{}}],["p2.age",{"_index":5362,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p2.next",{"_index":3811,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["p2.next.next",{"_index":3812,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["p3",{"_index":4864,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{}}],["p3.age",{"_index":5361,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p4",{"_index":4865,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["p5",{"_index":4866,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["paa",{"_index":2386,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["packag",{"_index":356,"title":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["package'",{"_index":5467,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["package.json",{"_index":2571,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["packer",{"_index":2284,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["packrequir",{"_index":5997,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["page",{"_index":10,"title":{"/search/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}},"description":{}}],["page.istransl",{"_index":6853,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["page.relpermalink",{"_index":6769,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["page.titl",{"_index":6770,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["page.transl",{"_index":6854,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagemak",{"_index":6725,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["pages_cont",{"_index":6802,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagesstor",{"_index":6783,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagesstore[doc['uri",{"_index":6792,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagesstore[url",{"_index":6827,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pair",{"_index":1015,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-snippets":{},"/posts/trading-indicators/sma":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["pairtotupl",{"_index":5350,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["pairwis",{"_index":4113,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["pak",{"_index":2139,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["pal_left",{"_index":3549,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["pal_len",{"_index":3551,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["pal_right",{"_index":3550,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["palett",{"_index":5024,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["palindrom",{"_index":2985,"title":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["panda",{"_index":5733,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["pandoc",{"_index":5094,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["pane",{"_index":1874,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["panel",{"_index":1904,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["paper",{"_index":3784,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["par_dict",{"_index":4314,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["par_dict.get(last_valu",{"_index":4317,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["par_dict[stack",{"_index":4320,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["parabol",{"_index":5843,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["paragraph",{"_index":6409,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.innerhtml",{"_index":6897,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.textcont",{"_index":6898,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraphs.foreach(paragraph",{"_index":6895,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["parallel",{"_index":1101,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["parallelqueri",{"_index":1576,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["param",{"_index":3404,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["param1",{"_index":5072,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["param2",{"_index":5068,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["param2_valu",{"_index":5075,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["paramet",{"_index":529,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["parent",{"_index":4509,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["parent'",{"_index":6310,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["parent.contains(child",{"_index":5163,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["parent.left",{"_index":4566,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["parent.right",{"_index":4567,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["parent=non",{"_index":4564,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["parenthes",{"_index":2971,"title":{"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/20":{}}}],["parenthesi",{"_index":6224,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pariti",{"_index":4744,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["parity_count",{"_index":4822,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["pars",{"_index":6859,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["parseint(",{"_index":3407,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["part",{"_index":1316,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["parti",{"_index":636,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["partial",{"_index":2427,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["particip",{"_index":158,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["particular",{"_index":2245,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["particularli",{"_index":4250,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/macd":{}},"description":{}}],["partiql",{"_index":2517,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["partit",{"_index":415,"title":{"/tracks/algorithms-101/leetcode/medium/131":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/131":{}}}],["partition(self",{"_index":4042,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["partner",{"_index":971,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["partnership",{"_index":959,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["pass",{"_index":772,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{"/apps/cloud-exam-quizz/":{}}}],["passag",{"_index":6723,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["passed_two",{"_index":4892,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["passeng",{"_index":2277,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["passiv",{"_index":1536,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["password",{"_index":212,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["password:aw",{"_index":2405,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["past",{"_index":1907,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/posts/trading-indicators/sma":{},"/posts/mac-setup-development/":{}},"description":{}}],["patch",{"_index":2121,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{}},"description":{}}],["path",{"_index":186,"title":{"/tracks/algorithms-101/leetcode/medium/62":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/62":{}}}],["path(fil",{"_index":6977,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path.append(nums[i",{"_index":3339,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["path.pop",{"_index":3342,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["path.rename(new_nam",{"_index":6976,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path/fil",{"_index":7183,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["pathlib",{"_index":6966,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["pattern",{"_index":965,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/bash-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/posts/bash-snippets":{}}}],["patternbutton",{"_index":1684,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["patternwizard",{"_index":1693,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["paus",{"_index":769,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["pay",{"_index":1070,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["payer",{"_index":2103,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["payload",{"_index":1322,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["payment",{"_index":703,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["pc",{"_index":6596,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pci",{"_index":2058,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["pd",{"_index":5734,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["pdf",{"_index":4834,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/apps/_index":{}},"description":{}}],["peak",{"_index":2469,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["peel",{"_index":6362,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["peer",{"_index":1562,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["pem",{"_index":1199,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["penalti",{"_index":1779,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["pencil",{"_index":2770,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["pend",{"_index":1897,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["penv='python",{"_index":6666,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["peopl",{"_index":1338,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/p/links":{}},"description":{}}],["pep",{"_index":4997,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{}},"description":{}}],["per",{"_index":1033,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["peregrin",{"_index":2136,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["perf",{"_index":5534,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["perfect",{"_index":2496,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{"/posts/bash-snippets":{}}}],["perfectli",{"_index":4093,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["perform",{"_index":175,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/bash-snippets":{}}}],["period",{"_index":605,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/markdown-syntax/":{}},"description":{}}],["perl",{"_index":2754,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["perm",{"_index":3625,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["perm.append(tmp_remov",{"_index":3633,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["perman",{"_index":1446,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["permiss",{"_index":1157,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["permit",{"_index":5366,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["permut",{"_index":3005,"title":{"/tracks/algorithms-101/leetcode/medium/46":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/leetcode/medium/46":{}}}],["permute(self",{"_index":3628,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["persever",{"_index":4973,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["persist",{"_index":2352,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["person",{"_index":1263,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/p/links":{}},"description":{}}],["perspiciati",{"_index":6430,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pertain",{"_index":2737,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["phase",{"_index":2315,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["phone",{"_index":2990,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["photos/video",{"_index":6595,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["php",{"_index":2275,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["phrase",{"_index":3583,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/markdown-syntax/":{}},"description":{}}],["physic",{"_index":1617,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["pi",{"_index":4862,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/markdown-syntax/":{}},"description":{}}],["pick",{"_index":1248,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/git-snippets":{}},"description":{}}],["picker",{"_index":1432,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["pictur",{"_index":6575,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/posts/mac-setup-development/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["pie",{"_index":6752,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["piec",{"_index":1756,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["pigeon",{"_index":4799,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["pigeonhol",{"_index":4795,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["pike",{"_index":6456,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pike’",{"_index":6457,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pin",{"_index":7106,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["ping",{"_index":2223,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["pip",{"_index":2702,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["pipelin",{"_index":1063,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["pipeline.html",{"_index":193,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["pivot",{"_index":3062,"title":{"/tracks/algorithms-101/leetcode/easy/724":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/724":{}}}],["pivotindex(num",{"_index":4223,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["pix_fmt",{"_index":6619,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pixel",{"_index":5435,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["pizza",{"_index":4801,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["place",{"_index":353,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["placehold",{"_index":6893,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["placement",{"_index":2389,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["plain",{"_index":716,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["plaintext",{"_index":1208,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["plan",{"_index":538,"title":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/codeforces/plan":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["plant",{"_index":4441,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["plate",{"_index":5325,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["platform",{"_index":1283,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["play",{"_index":1713,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["player",{"_index":6606,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pleas",{"_index":1502,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["plesk",{"_index":2635,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["plot",{"_index":4440,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/macd":{}},"description":{}}],["plotli",{"_index":6908,"title":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["plotly'",{"_index":6911,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["plotly.graph_obj",{"_index":6913,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["plow",{"_index":6991,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["plu",{"_index":872,"title":{"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}}}],["plugin",{"_index":2638,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["plugins=(zsh",{"_index":6652,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["plusone(self",{"_index":4246,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["pm",{"_index":4861,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/markdown-syntax/":{}},"description":{}}],["png",{"_index":5542,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["pocket",{"_index":6563,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pod",{"_index":2195,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["podcast",{"_index":985,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["point",{"_index":458,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["point(0",{"_index":5330,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["point(10",{"_index":5332,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["point(25",{"_index":5333,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["point3d",{"_index":5335,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["pointer",{"_index":1751,"title":{"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/116":{}}}],["pointer(",{"_index":4451,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["pointera",{"_index":4366,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointera.next",{"_index":4368,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointerb",{"_index":4367,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointerb.next",{"_index":4369,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointers.jpg",{"_index":3216,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["pointperson",{"_index":5331,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["polici",{"_index":217,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["policies.html",{"_index":676,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["poll",{"_index":357,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["pom.xml",{"_index":5529,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["pool",{"_index":2353,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["poor",{"_index":5778,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["poorli",{"_index":1473,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["pop",{"_index":2558,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-snippets/":{}},"description":{}}],["pope",{"_index":3627,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["popitem",{"_index":3945,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["popul",{"_index":1292,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["popular",{"_index":1405,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/posts/docker-commands/":{}}}],["popularis",{"_index":6720,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["popup",{"_index":6756,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["popup.html",{"_index":6761,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["port",{"_index":1043,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["portal",{"_index":4782,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["portion",{"_index":4505,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["posit",{"_index":1798,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["possibl",{"_index":394,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["post",{"_index":236,"title":{"/posts/archive/":{},"/homepage/pages":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/archive/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/archive/":{}},"description":{"/posts/hugo-shortcode-examples/img":{}}}],["post['ref",{"_index":6826,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["postgresql",{"_index":1569,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["postman",{"_index":6534,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["postpon",{"_index":1132,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["potenti",{"_index":994,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{}}}],["potion",{"_index":3136,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["pow",{"_index":3533,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["pow(x",{"_index":3009,"title":{"/tracks/algorithms-101/leetcode/medium/50":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{"/tracks/algorithms-101/leetcode/medium/50":{}}}],["power",{"_index":1648,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["powershel",{"_index":1731,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["poweruseraccess",{"_index":2083,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["pow}!\".format(pow=pow",{"_index":6326,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ppk",{"_index":1198,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["pqr",{"_index":3830,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["practic",{"_index":425,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["pre",{"_index":1291,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["prebuild",{"_index":7171,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["precaut",{"_index":1877,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["preced",{"_index":1996,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/python-snippets/":{}},"description":{}}],["precis",{"_index":5273,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["predecessor",{"_index":6998,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["predefin",{"_index":834,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["predict",{"_index":2475,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["predic­t",{"_index":2858,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["prefac",{"_index":1450,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["prefer",{"_index":1196,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["prefil",{"_index":6127,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["prefix",{"_index":1521,"title":{"/tracks/algorithms-101/leetcode/easy/14":{}},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/14":{}}}],["prefix)/opt/powerlevel10k/powerlevel10k.zsh",{"_index":6646,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["prefix_sum(self",{"_index":4592,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["prematur",{"_index":5793,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["premis",{"_index":539,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["premium",{"_index":1394,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["prepar",{"_index":14,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/posts/other-snippets":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["prepare.com",{"_index":18,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["prepend",{"_index":4706,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["prepublishonli",{"_index":5443,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["prerequir",{"_index":3748,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["prerequisit",{"_index":5423,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["presenc",{"_index":4107,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["present",{"_index":984,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["preserv",{"_index":1488,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["preset",{"_index":2300,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/mac-setup-development/":{}},"description":{}}],["presign",{"_index":1386,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["press",{"_index":1699,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["pretti",{"_index":1232,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/docker-commands/":{}},"description":{}}],["prettier",{"_index":5043,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["prettierrc",{"_index":5046,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["prev",{"_index":3976,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["prev.next",{"_index":3978,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["prev.val",{"_index":4268,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["prev1",{"_index":4229,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["prev2",{"_index":4230,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["prev_str",{"_index":4100,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["prev_substr_end_index",{"_index":4001,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["prevent",{"_index":1130,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["preview",{"_index":1902,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["previou",{"_index":1230,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/code-style":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{}},"description":{}}],["previous",{"_index":1223,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{}},"description":{}}],["pre­mis",{"_index":2678,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["price",{"_index":1054,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["prices[i",{"_index":4073,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["primari",{"_index":1520,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["primarili",{"_index":1746,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["primit",{"_index":6084,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["princip",{"_index":1397,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["principl",{"_index":4402,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["print",{"_index":1233,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["print(",{"_index":4900,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["print(\"\\n",{"_index":4675,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["print(\"hello",{"_index":6114,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"i",{"_index":3313,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/python-snippets/":{}},"description":{}}],["print(\"i'm",{"_index":6112,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"messag",{"_index":1312,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["print(\"new",{"_index":6988,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["print(\"no",{"_index":4702,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(\"pair",{"_index":3234,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(\"scor",{"_index":3226,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(\"some_var",{"_index":6189,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"subject",{"_index":1310,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["print(\"x",{"_index":6200,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"y",{"_index":4701,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(\"{nam",{"_index":6270,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('am",{"_index":6342,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('can",{"_index":6376,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('i",{"_index":6330,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('no",{"_index":4851,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print('successfulli",{"_index":2047,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["print('y",{"_index":4854,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(*tracked_data",{"_index":4871,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["print(0",{"_index":4824,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(1",{"_index":4812,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(a[x",{"_index":4754,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(arg",{"_index":6214,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(b.fli",{"_index":6355,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(b.say('hello",{"_index":6354,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(batman.mro",{"_index":6372,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(ceil(3.7",{"_index":6250,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(cur",{"_index":4767,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(draw",{"_index":4832,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(f\"{a}:{b",{"_index":4825,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(f\"{matchesi}:{matchesi",{"_index":4833,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(f'*{a",{"_index":4885,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(f'{a[0",{"_index":4884,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(f'{a[i:i+2",{"_index":4888,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(floor(3.7",{"_index":6251,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(gen_to_list",{"_index":6387,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(human.grunt",{"_index":6298,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(i",{"_index":6192,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(i.grunt",{"_index":6299,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(kwarg",{"_index":6215,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(len(",{"_index":4715,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(math.sqrt(16",{"_index":6247,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(max_index",{"_index":4692,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["print(nod",{"_index":3271,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(node.v",{"_index":3249,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(r",{"_index":3343,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["print(say",{"_index":6400,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(say(say_please=tru",{"_index":6401,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(solve(",{"_index":4846,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["print(solve(a",{"_index":4882,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["print(solve(ar",{"_index":4895,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["print(solve(n",{"_index":4709,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(sup.ag",{"_index":6341,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.get_speci",{"_index":6334,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.s",{"_index":6335,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.sonar",{"_index":6375,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(superhero.mro",{"_index":6333,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(x",{"_index":6227,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print_funct",{"_index":2028,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["printer",{"_index":6712,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["printwidth",{"_index":5054,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["prior",{"_index":1368,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/33":{}},"description":{}}],["priorit",{"_index":2395,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["prioriti",{"_index":3125,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["priorityqueu",{"_index":4634,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["privat",{"_index":397,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["privileg",{"_index":2062,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["pro",{"_index":1610,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{}},"description":{"/posts/mac-setup-development/":{}}}],["proactiv",{"_index":2656,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["probabl",{"_index":2270,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["problem",{"_index":990,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["problem'",{"_index":4150,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["problemset",{"_index":4804,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["proce",{"_index":2235,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["procedur",{"_index":2885,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["process",{"_index":455,"title":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/diploma/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["process.env.auth0_audi",{"_index":5257,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.env.auth0_client_id",{"_index":5253,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.env.auth0_domain",{"_index":5248,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.env.react_app_backend_url",{"_index":5245,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.platform",{"_index":7073,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["processor",{"_index":7007,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["prod",{"_index":4135,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/markdown-syntax/":{}},"description":{}}],["produc",{"_index":1714,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/macd":{}},"description":{}}],["product",{"_index":484,"title":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["productexceptself(self",{"_index":4136,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["profession",{"_index":969,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["profil",{"_index":810,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["profit",{"_index":4070,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["program",{"_index":1727,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/bash-snippets":{}}}],["programat",{"_index":2533,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["programiz",{"_index":4599,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["programm",{"_index":5422,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["programmat",{"_index":2522,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["programmer'",{"_index":3400,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["progress",{"_index":855,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["prohibit",{"_index":6380,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["project",{"_index":168,"title":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/_index":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["project'",{"_index":2559,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["project/workspac",{"_index":5027,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["projects/1",{"_index":5587,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["projects/2",{"_index":5590,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["projects/3",{"_index":5591,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["promis",{"_index":5218,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["promot",{"_index":4986,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["prompt",{"_index":2566,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["prone",{"_index":331,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["pronunci",{"_index":6488,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["proper",{"_index":2752,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["properli",{"_index":2212,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["properti",{"_index":1448,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["proport",{"_index":1550,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["propos",{"_index":2861,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/posts/python-docstring-templates":{}},"description":{}}],["protea",{"_index":7207,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["protect",{"_index":1363,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["protocol",{"_index":595,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["prove",{"_index":4797,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["provid",{"_index":178,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/medium/148":{},"/apps/npm/cognito-token-observer/":{}}}],["provinc",{"_index":3109,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["provis",{"_index":423,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}}}],["provisionedthroughputexceededexcept",{"_index":2492,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["proxi",{"_index":45,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["proxy_pass",{"_index":5562,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["prune",{"_index":7125,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["prune=now",{"_index":5485,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["ps",{"_index":7116,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["pseudo",{"_index":7151,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["pt5m",{"_index":2923,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["pub/sub",{"_index":1103,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["public",{"_index":328,"title":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/js-snippets":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}}}],["public/index.html",{"_index":7034,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["public/js/set",{"_index":2593,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["public/priv",{"_index":5323,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["public/search.json",{"_index":6858,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["publicli",{"_index":1329,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["publish",{"_index":640,"title":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/hugo-shortcode-examples/img":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["pull",{"_index":2413,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["pump",{"_index":1992,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["purchas",{"_index":2426,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["pure",{"_index":5785,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["purpl",{"_index":6730,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["purpos",{"_index":339,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["push",{"_index":460,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["push/pul",{"_index":5545,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["put",{"_index":1318,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["put(key",{"_index":3938,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["put(self",{"_index":3952,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["puzzl",{"_index":3326,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["pvt",{"_index":2100,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["py38",{"_index":5004,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pyasn1==0.4.8",{"_index":6071,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pycach",{"_index":5548,"title":{},"content":{"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pycodestyl",{"_index":4999,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pyflak",{"_index":4998,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pyi",{"_index":5005,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pymongo",{"_index":6044,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pymongo==4.2.0",{"_index":6072,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pyproject.toml",{"_index":4995,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python",{"_index":1238,"title":{"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}}}],["python'",{"_index":1231,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["python.editor.formatonsav",{"_index":5028,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python.formatting.provid",{"_index":5029,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python.linting.flake8en",{"_index":5030,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python.linting.lintonsav",{"_index":5031,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python3.9",{"_index":6000,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pytre",{"_index":7225,"title":{},"content":{"/apps/_index":{}},"description":{}}],["q",{"_index":4751,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["q1",{"_index":19,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["q10",{"_index":20,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q11",{"_index":296,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q2",{"_index":55,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["q20",{"_index":297,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q21",{"_index":469,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q3",{"_index":79,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["q30",{"_index":470,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q31",{"_index":638,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q4",{"_index":109,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["q40",{"_index":639,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q41",{"_index":725,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q5",{"_index":138,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["q50",{"_index":726,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q51",{"_index":812,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q6",{"_index":152,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["q60",{"_index":813,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q7",{"_index":166,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q8",{"_index":194,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q9",{"_index":220,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["qemu",{"_index":6598,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["quad",{"_index":6490,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["quae",{"_index":6452,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["qualiti",{"_index":2647,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["quay",{"_index":2403,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["queri",{"_index":527,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["query(self",{"_index":4545,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(0",{"_index":4525,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(1",{"_index":4527,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(4",{"_index":4529,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(l",{"_index":4522,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["question",{"_index":9,"title":{"/tracks/aws-certified-developer-associate/questions":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{}}}],["queu",{"_index":1096,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["queue",{"_index":899,"title":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/_index":{}}}],["queue.append(neighbor",{"_index":3275,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["queue.append(node.left",{"_index":3251,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queue.append(node.right",{"_index":3253,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queue.popleft",{"_index":3248,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queue[0",{"_index":4079,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queueurl",{"_index":1217,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["queueurls[0",{"_index":1219,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["queueurls[1",{"_index":1221,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["quick",{"_index":2416,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["quicker",{"_index":5748,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["quickli",{"_index":243,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/sma":{}},"description":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["quicksight",{"_index":1606,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["quidem",{"_index":6421,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["quiet",{"_index":7157,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["quit",{"_index":2742,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["quizz",{"_index":7226,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/apps/_index":{}},"description":{}}],["quot",{"_index":2186,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["quota",{"_index":1855,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["quotat",{"_index":825,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/markdown-syntax/":{}},"description":{}}],["quotient",{"_index":3718,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["qwerti",{"_index":6512,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["r",{"_index":3429,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/bash-snippets":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["r[i",{"_index":4395,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["r_i",{"_index":4142,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rabbitmq",{"_index":1104,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["radio",{"_index":1180,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["rainbow",{"_index":5875,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["rais",{"_index":2467,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/python-snippets/":{}},"description":{}}],["ram",{"_index":2167,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["ramp",{"_index":949,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["rancher",{"_index":2127,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["random",{"_index":13,"title":{"/tracks/algorithms-101/leetcode/medium/138":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/posts/trading-indicators/macd":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138":{}}}],["random.randint(1",{"_index":6959,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["randomli",{"_index":1557,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["rang",{"_index":287,"title":{"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["range(0",{"_index":4392,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["range(1",{"_index":3177,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["range(32",{"_index":4335,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["range(5",{"_index":6246,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["range(9",{"_index":3670,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["range(el",{"_index":3507,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["range(end",{"_index":3997,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["range(first",{"_index":3354,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["range(i",{"_index":3187,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["range(inp_int",{"_index":4668,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["range(int(inp",{"_index":4703,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range(int(input",{"_index":4652,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["range(k",{"_index":3990,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["range(l",{"_index":4752,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range(last_i",{"_index":3504,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["range(len(a",{"_index":4886,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["range(len(array",{"_index":3184,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["range(len(ga",{"_index":4035,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["range(len(matrix",{"_index":3619,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["range(len(num",{"_index":3338,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["range(len(r",{"_index":3412,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["range(level_s",{"_index":4078,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["range(m",{"_index":3468,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["range(n",{"_index":3357,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["range(ne",{"_index":4765,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range(self.n",{"_index":4533,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["range(start",{"_index":3417,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["range(t",{"_index":4756,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["range_sum(self",{"_index":4588,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range_sum(tre",{"_index":4666,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["rank",{"_index":2359,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["ranking[scor",{"_index":3227,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["rapid",{"_index":5788,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["rare",{"_index":2244,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["rate",{"_index":1013,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["ratio",{"_index":5672,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{}},"description":{}}],["rational",{"_index":4161,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["raw",{"_index":5796,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["ray",{"_index":388,"title":{"/tracks/aws-certified-developer-associate/xray/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["rcu",{"_index":2489,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["rd",{"_index":261,"title":{"/tracks/aws-certified-developer-associate/rds/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["re",{"_index":601,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/posts/js-convert-array-to-dict":{}},"description":{}}],["reach",{"_index":1528,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["react",{"_index":2151,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["reactdom",{"_index":7057,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["reactdom.rend",{"_index":7058,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["read",{"_index":434,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["read/writ",{"_index":2506,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["readabl",{"_index":5535,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["reader",{"_index":6570,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["readi",{"_index":1194,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/cloud-exam-quizz/":{}},"description":{"/apps/cloud-exam-quizz/":{}}}],["readm",{"_index":2659,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/code-style":{}},"description":{}}],["readme.md",{"_index":2572,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["readonli",{"_index":5358,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["readonlyaccess",{"_index":2099,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["readonlyarray",{"_index":5369,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["reaffirm",{"_index":4972,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["real",{"_index":249,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["realism",{"_index":7205,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["realist",{"_index":7197,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["realiz",{"_index":4963,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["realli",{"_index":2785,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["rearrang",{"_index":3584,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["reason",{"_index":321,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["reassign",{"_index":6896,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rebas",{"_index":5488,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["reboot",{"_index":2117,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rebuild",{"_index":760,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["recal",{"_index":2613,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["recalcul",{"_index":4249,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/sma":{}},"description":{}}],["receipt",{"_index":1256,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receipt_handl",{"_index":1257,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receipt_handle=$(echo",{"_index":1251,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receipthandl",{"_index":1225,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receiv",{"_index":204,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["recent",{"_index":2466,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}}}],["recent_post",{"_index":4868,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["recipi",{"_index":1277,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["recommend",{"_index":310,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["recomm­end­",{"_index":2649,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["record",{"_index":1004,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["record.get('user_id",{"_index":6034,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["record['messag",{"_index":1307,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["record['recordid",{"_index":2044,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["record['subject",{"_index":1309,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["records'.format(success",{"_index":2048,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["recov",{"_index":1895,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["recoveri",{"_index":663,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["recreat",{"_index":1916,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["rectangl",{"_index":6535,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["recur",{"_index":3837,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["recurs",{"_index":1490,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/git-snippets":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["recycl",{"_index":2077,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["red",{"_index":2123,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["redi",{"_index":906,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["redirect",{"_index":1949,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["rediscov",{"_index":4951,"title":{"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/stories/001-rediscovering-backtracking-algo":{}}}],["redshift",{"_index":592,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["reduc",{"_index":1030,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/js-snippets":{},"/posts/trading-indicators/atr":{}},"description":{}}],["reduct",{"_index":2283,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["redund",{"_index":2216,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["ref",{"_index":2910,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["refactor",{"_index":386,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["refactor(typ",{"_index":5519,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["refer",{"_index":72,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["referenc",{"_index":2829,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/js-snippets":{}},"description":{}}],["referenti",{"_index":2499,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["refin",{"_index":4910,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["reflect",{"_index":2290,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{}},"description":{}}],["reflog",{"_index":5482,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["reformat",{"_index":4996,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["refresh",{"_index":1259,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/001-rediscovering-backtracking-algo":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["refreshr",{"_index":2587,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["refus",{"_index":6599,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["regard",{"_index":627,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/python-snippets/":{}},"description":{}}],["regardless",{"_index":1504,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["region",{"_index":611,"title":{"/tracks/algorithms-101/leetcode/medium/130":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/130":{}}}],["regionality:singl",{"_index":1888,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["regionmap",{"_index":2862,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["regist",{"_index":1551,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["registr",{"_index":1525,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["registrar",{"_index":7174,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["registri",{"_index":901,"title":{"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/howto-publish-js-npm-project":{},"/posts/docker-commands/":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["regress",{"_index":5862,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["regul",{"_index":618,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["regular",{"_index":5379,"title":{},"content":{"/posts/js-snippets":{},"/posts/code-style":{}},"description":{}}],["regulatori",{"_index":1866,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["reiko",{"_index":6107,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["reinstal",{"_index":6634,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["rel",{"_index":2725,"title":{"/posts/trading-indicators/rsi":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/rsi":{}}}],["relat",{"_index":649,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{}}}],["relationship",{"_index":2823,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{}},"description":{}}],["relaunch",{"_index":1598,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["relay",{"_index":2851,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["relearn",{"_index":4975,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["releas",{"_index":2553,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}},"description":{}}],["release.yml",{"_index":5450,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["relev",{"_index":3372,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["reli",{"_index":2896,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["reliabl",{"_index":707,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["reload",{"_index":2248,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["relpermalink",{"_index":6857,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["remain",{"_index":161,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["remaind",{"_index":3846,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["remainder_dict",{"_index":3853,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["remainder_dict[remaind",{"_index":3857,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["remedi",{"_index":2804,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["rememb",{"_index":2241,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{}},"description":{}}],["remind",{"_index":1523,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["remot",{"_index":2599,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/git-snippets":{}},"description":{}}],["remov",{"_index":565,"title":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{}}}],["remove(self",{"_index":4563,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["removeduplicates(num",{"_index":4261,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["removenthfromend(self",{"_index":3804,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["removestars(",{"_index":3744,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["renam",{"_index":1653,"title":{"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/bash-snippets":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/posts/bash-snippets":{},"/posts/howto-rename-files-in-python/":{}}}],["render",{"_index":5417,"title":{"/posts/howto-render-notebook-in-hugo":{}},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/rsi":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/howto-render-notebook-in-hugo":{}}}],["rendersearchresult",{"_index":6814,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["rendersearchresults(search_results.slice(0",{"_index":6844,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["renew",{"_index":1552,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["reorder",{"_index":3112,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["repair",{"_index":5493,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["repeat",{"_index":888,"title":{"/tracks/algorithms-101/leetcode/medium/3":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{}}}],["repeatedli",{"_index":3180,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["repeat­edli",{"_index":2859,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["repetit",{"_index":3653,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["replac",{"_index":1297,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}}}],["replic",{"_index":761,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["repo",{"_index":4950,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["report",{"_index":323,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["repositori",{"_index":134,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/_index":{}},"description":{"/posts/bash-snippets":{}}}],["repository'",{"_index":5437,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["repository:latest",{"_index":2414,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["repr",{"_index":6263,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["repr(self",{"_index":4554,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["repres",{"_index":1440,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/markdown-syntax/":{}},"description":{}}],["represent",{"_index":1000,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["req_sec",{"_index":1802,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["request",{"_index":293,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["request.args.get('id",{"_index":6026,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["request_id",{"_index":1683,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["requestrespons",{"_index":1739,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["requests==2.28.1",{"_index":6075,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["requir",{"_index":90,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/other-snippets":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["requirements.txt",{"_index":5888,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["requirements_freeze.txt",{"_index":6668,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["requiressekm",{"_index":1908,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["res.append(cur",{"_index":3416,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["res.append(path",{"_index":3337,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["res.append(prod",{"_index":4139,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["res[1(1),2(12),6(23",{"_index":4138,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["res[i",{"_index":3649,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["res[i+1",{"_index":3650,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["res[obj[keynam",{"_index":5400,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["res_left",{"_index":4551,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["res_right",{"_index":4552,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["reselect",{"_index":2741,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["resembl",{"_index":5601,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["reserv",{"_index":317,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["reserved_binari",{"_index":4847,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["reserved_binaries.get(c",{"_index":4849,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["reserved_binaries[c",{"_index":4852,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["reservoir",{"_index":1035,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["reset",{"_index":4092,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/git-snippets":{}},"description":{}}],["reshard",{"_index":571,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["resid",{"_index":2286,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["residu",{"_index":1879,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["resili",{"_index":1245,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["resiz",{"_index":6585,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/_index":{}},"description":{"/posts/hugo-shortcode-examples/img":{}}}],["resolut",{"_index":2709,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-snippets/":{}},"description":{}}],["resolv",{"_index":426,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["resolvejsonmodul",{"_index":7053,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["resourc",{"_index":57,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["resource/sum",{"_index":1555,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["resource_not_found(",{"_index":6038,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["resourcesign",{"_index":2922,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["respect",{"_index":2262,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["respond",{"_index":292,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["respons",{"_index":690,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/trading-indicators/ema":{}},"description":{}}],["response.data",{"_index":5221,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["response.data.access_token",{"_index":5239,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["rest",{"_index":291,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["restart",{"_index":177,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["restor",{"_index":1367,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["restrict",{"_index":670,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["result",{"_index":382,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["result.append(current_partit",{"_index":4045,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["result.append(head.v",{"_index":4212,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["result_numb",{"_index":4355,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["result_permut",{"_index":3629,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["result_permutation.extend(permut",{"_index":3635,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["resultsblock",{"_index":6824,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["resultsblock.appendchild(commentblock",{"_index":6836,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["resum",{"_index":787,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["ret",{"_index":4586,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["retain",{"_index":1497,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["retent",{"_index":1122,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["retrac",{"_index":5842,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["retri",{"_index":502,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["retriev",{"_index":643,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["return",{"_index":811,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["returntyp",{"_index":5070,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["reus",{"_index":1085,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["reusabl",{"_index":650,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["rev",{"_index":3461,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/posts/git-snippets":{}},"description":{}}],["reveal",{"_index":1718,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["revers",{"_index":2986,"title":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["reverse(num",{"_index":3822,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["reverse(self",{"_index":3456,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["reverse(start",{"_index":3821,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["reverse=tru",{"_index":3224,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["reversebits(self",{"_index":4334,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["reversed(",{"_index":4412,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["reversed(s[:idx",{"_index":3697,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["reversed(str(ll_sum",{"_index":3782,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["reversed(vals_l1",{"_index":3775,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["reversed(vals_l2",{"_index":3778,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["reversed_int",{"_index":3457,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["reversed_num",{"_index":4434,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["reversewords(self",{"_index":3888,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["revert",{"_index":3331,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/git-snippets":{},"/posts/code-style":{}},"description":{}}],["review",{"_index":453,"title":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["revis",{"_index":2610,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["reward",{"_index":4837,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["rewrit",{"_index":4957,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["rgb24",{"_index":6620,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["rgba(153",{"_index":6740,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rgba(25",{"_index":6876,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rgba(255",{"_index":6732,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rgba(54",{"_index":6735,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rgba(75",{"_index":6738,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rhel",{"_index":6989,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["rhel'",{"_index":6997,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ribbon",{"_index":5871,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["rich",{"_index":2380,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["rid",{"_index":5487,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["right",{"_index":445,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-bitwise-operators":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/116":{}}}],["right.val",{"_index":3932,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["right=1cm",{"_index":5114,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["right=non",{"_index":3241,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["right_ar",{"_index":3195,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["right_half",{"_index":3192,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["right_index",{"_index":3197,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["right_num",{"_index":3682,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["rightboundari",{"_index":3562,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["rightmost",{"_index":5085,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["risk",{"_index":5747,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["rm",{"_index":2763,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/bash-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["rmi",{"_index":7120,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["road",{"_index":4479,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["roadmap",{"_index":0,"title":{"/tracks/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["rob",{"_index":6455,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["robber",{"_index":3150,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["robin",{"_index":2228,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["robot",{"_index":3292,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["robust",{"_index":2192,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["roc",{"_index":5849,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["role",{"_index":216,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["roll",{"_index":505,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["rollback",{"_index":2607,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["roman",{"_index":2967,"title":{"/tracks/algorithms-101/leetcode/easy/13":{},"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/13":{}}}],["romankurnovskii",{"_index":5992,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["romankurnovskii/cask",{"_index":7232,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["romankurnovskii/cask/brewm",{"_index":7231,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["romantoint(self",{"_index":4409,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["romkatv/powerlevel10k/powerlevel10k",{"_index":6645,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["room",{"_index":3106,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["root",{"_index":513,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["root.left",{"_index":3255,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["root.left.left",{"_index":3259,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["root.left.right",{"_index":3261,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["root.mainloop",{"_index":6963,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["root.right",{"_index":3257,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["root.val",{"_index":3283,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["root:x:0:0:root:/root:/bin/bash",{"_index":6695,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["root@495500b9c069",{"_index":6693,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["rose",{"_index":7206,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["rot",{"_index":3123,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["rotat",{"_index":596,"title":{"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{}}}],["rotate(self",{"_index":3617,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["roughli",{"_index":2509,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["round",{"_index":2227,"title":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["rout",{"_index":100,"title":{"/tracks/aws-certified-developer-associate/route53/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["route53",{"_index":2834,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["row",{"_index":1449,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["row/col",{"_index":3445,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["row/column",{"_index":3439,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["row[0",{"_index":3449,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["rows.get(col",{"_index":4157,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows.get(row",{"_index":4154,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows[row",{"_index":4153,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rpm",{"_index":7020,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rs",{"_index":5671,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["rsa==4.9",{"_index":6076,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["rsi",{"_index":5639,"title":{"/posts/trading-indicators/rsi":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/rsi":{}}}],["rss",{"_index":6569,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["rtmp",{"_index":2837,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["ru",{"_index":2964,"title":{},"content":{"/tracks/archive/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/posts/bash-snippets":{},"/posts/archive/":{}},"description":{}}],["ru.md",{"_index":5122,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["rubi",{"_index":1733,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rule",{"_index":234,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["ruleset",{"_index":5038,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["run",{"_index":125,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}}}],["run(self",{"_index":6946,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["runningfor",{"_index":2772,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["runtim",{"_index":800,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["russia",{"_index":6553,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["s",{"_index":1311,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/other-snippets":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["s*26",{"_index":4353,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["s.count(s[0",{"_index":4844,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["s.count(s[1",{"_index":4845,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["s.pop",{"_index":4714,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["s.popleft",{"_index":4713,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["s.split",{"_index":3889,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["s.twosum(num",{"_index":3392,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["s/mirrorlist/#mirrorlist/g",{"_index":5576,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["s1",{"_index":4124,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/js-snippets":{}},"description":{}}],["s2",{"_index":4125,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/js-snippets":{}},"description":{}}],["s3",{"_index":373,"title":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["s3.object(f\"sn",{"_index":1313,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["s3:createbucket",{"_index":5964,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deletebucket",{"_index":5965,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deletebucketpolici",{"_index":5966,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deleteobject",{"_index":5967,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deleteobjectvers",{"_index":5968,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:getobject",{"_index":1483,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:getobjectvers",{"_index":5969,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:listallmybucket",{"_index":5970,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:listbucket",{"_index":5971,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbucketnotif",{"_index":5972,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbucketpolici",{"_index":5973,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbuckettag",{"_index":5974,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbucketwebsit",{"_index":5975,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putencryptionconfigur",{"_index":5976,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putobject",{"_index":1911,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:x",{"_index":1914,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["s[(bestcent",{"_index":3570,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["s[0",{"_index":4707,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["s[1",{"_index":4708,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["s[:k",{"_index":3989,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["s[i",{"_index":3985,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["s[j",{"_index":3707,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["s[j:i",{"_index":4007,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["s[pal_left:pal_right+1",{"_index":3553,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["s[start:end",{"_index":3998,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["s_l1",{"_index":3774,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["s_l2",{"_index":3777,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["s_sort",{"_index":3591,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["saa",{"_index":2132,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["sad",{"_index":6369,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["safe",{"_index":1868,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["safeti",{"_index":1467,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["salad",{"_index":4792,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["salamand",{"_index":6481,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sale",{"_index":418,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["sam",{"_index":123,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["same",{"_index":754,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["saml",{"_index":2527,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["sampl",{"_index":943,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["sampling_r",{"_index":1014,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["sand",{"_index":1399,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["sansfont=\"m",{"_index":5108,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["sapien",{"_index":6260,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sar",{"_index":5844,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["satisfi",{"_index":230,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/algorithms":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["save",{"_index":133,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["savebutton",{"_index":1719,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["saw",{"_index":1229,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["say",{"_index":2332,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["say(say_please=fals",{"_index":6398,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say(self",{"_index":6268,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say_pleas",{"_index":6390,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sbin/nologin",{"_index":6683,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["scalabl",{"_index":284,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}}}],["scale",{"_index":383,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}}}],["scan",{"_index":2409,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["scanonpush=tru",{"_index":2410,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["scatter",{"_index":2090,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["scenario",{"_index":628,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["scene",{"_index":1636,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["schaff",{"_index":5876,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["schedul",{"_index":350,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/git-snippets":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["schema",{"_index":254,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["scheme",{"_index":1747,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["scientif",{"_index":6580,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["scientist",{"_index":5421,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["scm",{"_index":7109,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["scope",{"_index":2222,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/other-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["score",{"_index":875,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["scp",{"_index":7143,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["scrambl",{"_index":6714,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["scratch",{"_index":1288,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["screen",{"_index":1175,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["screenshot",{"_index":1443,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/p/links":{}},"description":{}}],["scribe",{"_index":2134,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["script",{"_index":737,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["script/handl",{"_index":6862,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["scroll",{"_index":1163,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["scrolloffset",{"_index":6866,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["sd",{"_index":2430,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["sdk",{"_index":569,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["seamless",{"_index":4949,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["seamlessli",{"_index":4967,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["search",{"_index":1012,"title":{"/tracks/algorithms-101/leetcode/medium/33":{},"/search/_index":{},"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/33":{},"/posts/hugo-add-search-lunr-popup/":{}}}],["search(term",{"_index":6843,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["search.json",{"_index":6773,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["search/result",{"_index":6757,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["search_result",{"_index":6842,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchabl",{"_index":1620,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{}}}],["searchformobserv",{"_index":6838,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchfunc",{"_index":5319,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["searchindex",{"_index":6776,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchindex.search(text",{"_index":6807,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchrange(self",{"_index":3685,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["searchresultsdiv",{"_index":6820,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsdiv.appendchild(resultsblock",{"_index":6837,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsdiv.innerhtml",{"_index":6821,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsviewblock",{"_index":6815,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsviewblock.removeattribute('hidden",{"_index":6823,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsviewblock.style.display",{"_index":6822,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["sec",{"_index":2049,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["secatur",{"_index":6450,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["second",{"_index":76,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/python-docstring-templates":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["second(",{"_index":1972,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["second_valu",{"_index":4316,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["secondari",{"_index":432,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["secondnumb",{"_index":5287,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["secret",{"_index":358,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["section",{"_index":804,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/posts/python-docstring-templates":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["secur",{"_index":276,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}}}],["securitygroupid",{"_index":2913,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["securitygroupingress",{"_index":2929,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["security’",{"_index":5709,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["sed",{"_index":5575,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["see",{"_index":934,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["seem",{"_index":4370,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["seen",{"_index":2337,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["seen[diff",{"_index":4429,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["seen[num",{"_index":4430,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["segment",{"_index":998,"title":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["segmenttre",{"_index":4530,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["segmenttree({0})\".format(self.data",{"_index":4555,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["select",{"_index":231,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["selectapitarget",{"_index":5210,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["selection_sort(array",{"_index":3183,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self",{"_index":2256,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/other-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["self).init(arg",{"_index":6360,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self._add(nod",{"_index":3968,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self._ag",{"_index":6267,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self._default",{"_index":4550,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._exchange.on_new_order_request(order_request",{"_index":4935,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["self._func(res_left",{"_index":4553,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._func(self.data[2",{"_index":4541,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._len",{"_index":4544,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._remove(nod",{"_index":3967,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self._remove(self.dictionary[key",{"_index":3970,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self._siz",{"_index":4548,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.app",{"_index":6923,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.app.callback",{"_index":6932,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.app.layout",{"_index":6925,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.app.run_server(debug=fals",{"_index":6947,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.bit",{"_index":4584,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.bit[idx",{"_index":4587,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.bit[z",{"_index":4593,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.cach",{"_index":3948,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.cache.move_to_end(key",{"_index":3950,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.cache.popitem(last=fals",{"_index":3954,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.cache[key",{"_index":3951,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.capac",{"_index":3947,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.children",{"_index":4579,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.children.get(s[idx]).insert(",{"_index":4582,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.children.setdefault(s[idx",{"_index":4580,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.data",{"_index":5604,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.data[2",{"_index":4542,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.data[idx",{"_index":4540,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.data_list",{"_index":6922,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.data_list.key",{"_index":6942,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.data_list[symbol].append(new_pric",{"_index":6960,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.dfs(board",{"_index":4060,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["self.dictionari",{"_index":3958,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.dictionary[key",{"_index":3966,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.dictionary[node.key",{"_index":3974,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.end_of_str",{"_index":5610,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.fict",{"_index":6318,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.fli",{"_index":6351,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.generate_pric",{"_index":6956,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.graph",{"_index":3264,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self.graph[nod",{"_index":3274,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self.graph[u].append(v",{"_index":3268,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self.head",{"_index":3960,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.head.next",{"_index":3964,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.key",{"_index":3955,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.left",{"_index":3244,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.left.left",{"_index":4570,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.left.right",{"_index":4569,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.left.valu",{"_index":4568,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.mergetwolists(a.next",{"_index":4295,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["self.mergetwolists(l1.next",{"_index":4291,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["self.movi",{"_index":6319,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.mysqrt(x",{"_index":4237,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["self.n",{"_index":4531,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.nam",{"_index":6266,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.next",{"_index":3803,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["self.permute(num",{"_index":3632,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["self.prefix_sum(l",{"_index":4591,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.prefix_sum(r",{"_index":4590,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.prev",{"_index":3957,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.right",{"_index":3245,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.right.left",{"_index":4572,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.remove(valu",{"_index":4565,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.right",{"_index":4573,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.search(valu",{"_index":4562,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.valu",{"_index":4571,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.root",{"_index":5611,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.root.after(1000",{"_index":6955,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.sortlist(head",{"_index":3928,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["self.sortlist(mid",{"_index":3929,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["self.statu",{"_index":4931,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["self.superpow",{"_index":6320,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.tail",{"_index":3963,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.tail.prev",{"_index":3965,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.time_to_cancel",{"_index":4928,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["self.tre",{"_index":4532,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i",{"_index":4537,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i+1",{"_index":4538,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[i",{"_index":4536,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[self.n",{"_index":4534,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.val",{"_index":3242,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["self.valu",{"_index":3956,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["sell",{"_index":3157,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["semi",{"_index":5051,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{}},"description":{}}],["semicolon",{"_index":5266,"title":{},"content":{"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["senat",{"_index":3077,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["send",{"_index":209,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/code-style":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["sendfil",{"_index":5559,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["senior",{"_index":3395,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["sensit",{"_index":693,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{}},"description":{}}],["sensor",{"_index":2345,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["sent",{"_index":526,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["sentenc",{"_index":6467,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["sentinel",{"_index":3555,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["separ",{"_index":694,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["seq",{"_index":1958,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["sequenc",{"_index":1065,"title":{"/tracks/algorithms-101/leetcode/medium/128":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/128":{}}}],["sequenti",{"_index":2643,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["sequi",{"_index":6422,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sequo",{"_index":6451,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["seri",{"_index":977,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/trading-indicators/atr":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["serv",{"_index":366,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["server",{"_index":372,"title":{"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["server_nam",{"_index":5560,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["serverless",{"_index":113,"title":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/aws-certified-developer-associate/fargate/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["serverless.yml",{"_index":5889,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["serverlessdeployerpolici",{"_index":5891,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["serverlessdeployerpolicygroup",{"_index":5890,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["servic",{"_index":31,"title":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{}}}],["service(",{"_index":585,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/docker-commands/":{}},"description":{}}],["session",{"_index":368,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["session_id",{"_index":2012,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_interv",{"_index":1970,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_interval=15",{"_index":1966,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_tim",{"_index":2014,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_timestamp",{"_index":1991,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["set",{"_index":51,"title":{"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["set(['a",{"_index":3987,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["set(a",{"_index":4732,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set(arr[start:end",{"_index":4119,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["set(b",{"_index":4733,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set(counter1.key",{"_index":3869,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["set(counter2.key",{"_index":3870,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["set(dict_counts.valu",{"_index":4425,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["set(i",{"_index":3696,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["set(num",{"_index":4066,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["set(nums1",{"_index":4279,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set(nums2",{"_index":4280,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set(s[point",{"_index":4740,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set(s[point+1",{"_index":4742,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set1",{"_index":4276,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set2",{"_index":4277,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set_global_x(6",{"_index":6230,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_global_x(num",{"_index":6228,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(43",{"_index":6229,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(num",{"_index":6226,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["setdefault",{"_index":6173,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["setinterval(adjustidx",{"_index":2592,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["setqueueattribut",{"_index":1120,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["setter",{"_index":6283,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["settimeout",{"_index":5415,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["settings.json",{"_index":5056,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["setup",{"_index":537,"title":{"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/stories/002-openvpn-aws-ec2-setup":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}}}],["setup/dock",{"_index":7164,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["setup/iterm/ack.html",{"_index":6672,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["setzeroes(self",{"_index":3438,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["seven",{"_index":4396,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["sever",{"_index":25,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["sg",{"_index":2218,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["sh",{"_index":6640,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sha",{"_index":687,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/git-snippets":{}},"description":{}}],["sha.x86_64",{"_index":2758,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["shallow",{"_index":7087,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["shape",{"_index":5374,"title":{},"content":{"/posts/js-snippets":{},"/photos/midjourney/":{}},"description":{}}],["shard",{"_index":446,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["share",{"_index":520,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["shareabl",{"_index":1337,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["sharp",{"_index":5789,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["sharpli",{"_index":5766,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["sheet",{"_index":3174,"title":{"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/img":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}}}],["shell",{"_index":1189,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["shift",{"_index":1539,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-bitwise-operators":{}},"description":{}}],["ship",{"_index":7002,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["shld",{"_index":4655,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["shop",{"_index":523,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["short",{"_index":4,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["shortcod",{"_index":4965,"title":{"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/_index":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/chart":{}}}],["shortcode'",{"_index":5436,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["shortcut",{"_index":6550,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["shorten",{"_index":6252,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["shorter",{"_index":2366,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["shortest",{"_index":3703,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["shorthand",{"_index":818,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["shortli",{"_index":1465,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["shortuct",{"_index":6551,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["show",{"_index":1177,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/git-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["shown",{"_index":377,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["showstopp",{"_index":4608,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}}}],["shrink",{"_index":1542,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["shufflearray",{"_index":5262,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["shut",{"_index":7150,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["shutdown",{"_index":7122,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["shutil",{"_index":6981,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.mov",{"_index":6980,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.move(old_sourc",{"_index":6987,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["sid",{"_index":1909,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["side",{"_index":698,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/markdown-syntax/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{}}}],["sidebar",{"_index":1696,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["sidelength",{"_index":5342,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["sideway",{"_index":5667,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["sift",{"_index":1646,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["sigma",{"_index":6497,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sign",{"_index":222,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{}}}],["signal",{"_index":2895,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["signalhelp",{"_index":2938,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["signatur",{"_index":5308,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["signific",{"_index":2145,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/python-snippets/":{}},"description":{}}],["significantli",{"_index":2147,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["similar",{"_index":91,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["similarli",{"_index":4274,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["simpl",{"_index":121,"title":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/posts/trading-indicators/sma":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{}}}],["simpler",{"_index":2379,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["simplest",{"_index":705,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["simpli",{"_index":474,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/atr":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["simplic",{"_index":4745,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["simplifi",{"_index":273,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["simul",{"_index":915,"title":{"/tracks/aws-certified-developer-associate/fis/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["simultan",{"_index":456,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["sinal",{"_index":2484,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["sing",{"_index":6306,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sing(self",{"_index":6273,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["singl",{"_index":385,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["singlequot",{"_index":5053,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["singli",{"_index":3800,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{"/tracks/algorithms-101/leetcode/easy/160":{}}}],["sint",{"_index":6431,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sit",{"_index":6413,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["site",{"_index":1593,"title":{"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["site.languag",{"_index":6764,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["site.regularpages.bytitl",{"_index":6767,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["situat",{"_index":67,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/trading-indicators/macd":{}},"description":{}}],["six",{"_index":4404,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["six==1.16.0",{"_index":6077,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sixti",{"_index":1976,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["size",{"_index":817,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/atr":{},"/posts/markdown-syntax/":{}},"description":{}}],["sketch",{"_index":2994,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["skill",{"_index":952,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["skip",{"_index":2073,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["skiplibcheck",{"_index":7047,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["sl",{"_index":5581,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["slash",{"_index":1355,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/js-snippets":{}},"description":{}}],["slave",{"_index":2502,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["sleep",{"_index":1969,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["slice",{"_index":3887,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{},"/posts/python-snippets/":{}},"description":{}}],["slice.call(document.queryselectorall('p.placehold",{"_index":6894,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["slide",{"_index":983,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["slides/video",{"_index":3029,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["slightli",{"_index":1172,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/trading-indicators/ema":{}},"description":{}}],["slot",{"_index":4258,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["slow",{"_index":1585,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/mac-setup-development/":{}},"description":{}}],["slow.next",{"_index":3926,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["slower",{"_index":1330,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["slowli",{"_index":1584,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["sm",{"_index":202,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["sma",{"_index":5642,"title":{"/posts/trading-indicators/sma":{}},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/sma":{}}}],["sma(5",{"_index":5758,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["small",{"_index":1849,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["smaller",{"_index":788,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-snippets/":{}},"description":{}}],["smallest",{"_index":3128,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["smart",{"_index":558,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["smith",{"_index":5160,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["smooth",{"_index":5660,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["smtp",{"_index":715,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["sn",{"_index":466,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}}}],["snap",{"_index":6587,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["snapshot",{"_index":623,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["snat",{"_index":2202,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["snippet",{"_index":2863,"title":{"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/bash-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/git-snippets":{},"/posts/bash-snippets":{}}}],["sns:createtop",{"_index":5977,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:deletetop",{"_index":5978,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:getsubscriptionattribut",{"_index":5979,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:gettopicattribut",{"_index":5980,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:listsubscript",{"_index":5981,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:listsubscriptionsbytop",{"_index":5982,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:listtop",{"_index":5983,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:setsubscriptionattribut",{"_index":5984,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:settopicattribut",{"_index":5985,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:subscrib",{"_index":5986,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:unsubscrib",{"_index":5987,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["so",{"_index":1129,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["social",{"_index":1930,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["sock",{"_index":3361,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["socket",{"_index":266,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["soft/architectur",{"_index":7215,"title":{},"content":{"/p/links":{}},"description":{}}],["softwar",{"_index":656,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/mac-setup-development/":{}}}],["softwareupd",{"_index":6656,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["solut",{"_index":226,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}}}],["solv",{"_index":207,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/191":{}}}],["solvabl",{"_index":3656,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["solve(",{"_index":4842,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["solve(a,b,n",{"_index":4872,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["solve(ar",{"_index":4890,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["solve(lett",{"_index":4700,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["solve(n",{"_index":4704,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["solve(num",{"_index":4705,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["solve(self",{"_index":4061,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["some_set",{"_index":6181,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_set.copi",{"_index":6188,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_unknown_var",{"_index":6120,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_var",{"_index":6118,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["somehow",{"_index":4806,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["someon",{"_index":2088,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["someth",{"_index":1715,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["sometim",{"_index":1892,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["someus",{"_index":5150,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["somewher",{"_index":6848,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["sonar(self",{"_index":6353,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sonatyp",{"_index":2704,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["soon",{"_index":1406,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["sophist",{"_index":2144,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["sorri",{"_index":6180,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sort",{"_index":2358,"title":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/js-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}}}],["sortcolors(self",{"_index":3427,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["sorted(counter1.valu",{"_index":3871,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["sorted(counter2.valu",{"_index":3872,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["sorted(interv",{"_index":3489,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["sorted(s1[1::2",{"_index":4130,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(s1[::2",{"_index":4128,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(s2[1::2",{"_index":4134,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(s2[::2",{"_index":4132,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(scor",{"_index":3223,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["sorted_scor",{"_index":3222,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["sortlist(self",{"_index":3918,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["soulut",{"_index":3582,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{}}}],["sound",{"_index":1460,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["soundcloud",{"_index":6593,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["sourc",{"_index":279,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["source.fixall.eslint",{"_index":5061,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["source_sql_stream_001",{"_index":1997,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["sourceforg",{"_index":7105,"title":{"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["sourceforge.net",{"_index":7230,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["space",{"_index":820,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["span",{"_index":2510,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-docstring-templates":{}},"description":{}}],["spark",{"_index":589,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["speci",{"_index":6259,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["special",{"_index":958,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["specialist",{"_index":2465,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["specif",{"_index":441,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/posts/bash-snippets":{}}}],["specifi",{"_index":783,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["specimen",{"_index":6715,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["speed",{"_index":2140,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/trading-indicators/rsi":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}}}],["spell",{"_index":3135,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/mac-setup-development/":{}},"description":{}}],["spend",{"_index":2729,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["spent",{"_index":3398,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{},"/posts/diploma/":{}},"description":{}}],["spice",{"_index":6601,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["spike",{"_index":2602,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/sma":{}},"description":{}}],["spin",{"_index":2250,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["splash",{"_index":7194,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["splice",{"_index":4287,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["split",{"_index":567,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["splite",{"_index":4717,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["splunk",{"_index":1060,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["spoon",{"_index":6338,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["spot",{"_index":493,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["spotifi",{"_index":6592,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["spread",{"_index":2391,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["sq",{"_index":389,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}}}],["sql",{"_index":584,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["sqrt(x",{"_index":2974,"title":{"/tracks/algorithms-101/leetcode/easy/69":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/easy/69":{}}}],["squar",{"_index":4090,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/js-snippets":{}},"description":{}}],["squish",{"_index":6577,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["src",{"_index":4968,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src.mongo",{"_index":6017,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src.search(sub",{"_index":5321,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["src/app.app",{"_index":5996,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src/app.pi",{"_index":6012,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src/app.tsx",{"_index":7031,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/bin.j",{"_index":5464,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/bin.t",{"_index":5440,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/index.j",{"_index":5465,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/index.t",{"_index":5439,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/index.tsx",{"_index":7032,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/mongo.pi",{"_index":6043,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src/requirements.txt",{"_index":6055,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ss",{"_index":6617,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["ssd",{"_index":2428,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/mac-setup-development/":{}},"description":{}}],["sse",{"_index":763,"title":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}}}],["ssekm",{"_index":1903,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["ssh",{"_index":1197,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["ssl",{"_index":1380,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["ssl/tl",{"_index":697,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["ssm",{"_index":2115,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["st",{"_index":544,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["stabil",{"_index":7001,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["stabl",{"_index":5764,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["stack",{"_index":1612,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/docker-commands/":{}},"description":{}}],["stack.append((curr_str",{"_index":4098,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["stack.append(asteroid",{"_index":4083,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["stack.append(c",{"_index":3746,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["stack.append(char",{"_index":4319,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["stack.append(i",{"_index":4318,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["stack.pop",{"_index":3745,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["stackdriv",{"_index":1057,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["stackset",{"_index":2860,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["stackto",{"_index":2942,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["stage",{"_index":192,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/codeforces/plan":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["stair",{"_index":2977,"title":{"/tracks/algorithms-101/leetcode/easy/70":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/70":{}}}],["staircas",{"_index":4226,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["stale",{"_index":2361,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["stalk",{"_index":2281,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["standalon",{"_index":5120,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["standard",{"_index":740,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["standbi",{"_index":664,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["star",{"_index":3068,"title":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/posts/js-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{}}}],["star_idx",{"_index":4033,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["start",{"_index":495,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["start.sh",{"_index":5555,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["start.telebank.co.il",{"_index":6706,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["start/stop",{"_index":4982,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["start==stop",{"_index":4549,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["start_tim",{"_index":4673,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["starti",{"_index":3472,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["stash",{"_index":5498,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["state",{"_index":132,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["state.typ",{"_index":5375,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["statement",{"_index":625,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["states:createstatemachin",{"_index":5988,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["states:deletestatemachin",{"_index":5989,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["static",{"_index":360,"title":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["static/js/search.j",{"_index":6780,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["static/js/zoom",{"_index":6868,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["static_files/jupyt",{"_index":5424,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["static_files/jupyter/your_notebook.ipynb",{"_index":5428,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["staticmethod",{"_index":6279,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["station",{"_index":4026,"title":{"/tracks/algorithms-101/leetcode/medium/134":{}},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{"/tracks/algorithms-101/leetcode/medium/134":{}}}],["statist",{"_index":1723,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["statisticcolumn",{"_index":2783,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["statu",{"_index":1614,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["statuscolumn",{"_index":2605,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["statusof",{"_index":1616,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["stay",{"_index":2539,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["stc",{"_index":5877,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["stdin",{"_index":2406,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/docker-commands/":{}},"description":{}}],["steadi",{"_index":497,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["steep",{"_index":2381,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["stem",{"_index":525,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["step",{"_index":65,"title":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["step(end",{"_index":4004,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["step_col",{"_index":3321,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["step_row",{"_index":3320,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["sticki",{"_index":2163,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["still",{"_index":1187,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/diploma/":{}},"description":{}}],["sting",{"_index":2873,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["stochast",{"_index":5620,"title":{"/posts/trading-indicators/stochastic_oscillator":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/stochastic_oscillator":{}}}],["stock",{"_index":2185,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["stop",{"_index":785,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/trading-indicators/atr":{},"/posts/docker-commands/":{}},"description":{}}],["stop/reboot/termin",{"_index":2114,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["stopiter",{"_index":6196,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["storag",{"_index":95,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["storage.th",{"_index":1810,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["store",{"_index":256,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["stori",{"_index":4905,"title":{"/stories/_index":{}},"content":{"/p/links":{}},"description":{}}],["storyboard",{"_index":7218,"title":{},"content":{"/p/links":{}},"description":{}}],["stout",{"_index":1769,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["str",{"_index":3545,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["str(abs(numer",{"_index":3850,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["str(abs(x",{"_index":3460,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["str(count",{"_index":3651,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["str(i",{"_index":3776,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["str(numer",{"_index":3849,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["str(sup.fli",{"_index":6378,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str(sup.movi",{"_index":6345,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str(x",{"_index":3459,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["str1",{"_index":4487,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str1[:max_substr_len",{"_index":4499,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str2",{"_index":4488,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str_int",{"_index":3458,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["straight",{"_index":4174,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["straightforward",{"_index":3906,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["strartup",{"_index":6657,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["strategi",{"_index":437,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["strategies.html",{"_index":572,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["stream",{"_index":465,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["stream_pump1",{"_index":1993,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["stream_pump2",{"_index":2017,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["streamand",{"_index":1985,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["streamform",{"_index":1984,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["streamlin",{"_index":648,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["strength",{"_index":5638,"title":{"/posts/trading-indicators/rsi":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{"/posts/trading-indicators/rsi":{}}}],["stress",{"_index":483,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["strict",{"_index":1153,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["strictli",{"_index":3720,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["strikethrough",{"_index":6440,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["string",{"_index":528,"title":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["stringnotequ",{"_index":1913,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["strings/lists/dicts/tuples/set",{"_index":6095,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["strip",{"_index":4594,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/git-snippets":{}},"description":{}}],["strong",{"_index":564,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["strongli",{"_index":2220,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["strs.sort",{"_index":4390,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["strs[0",{"_index":4391,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["structur",{"_index":576,"title":{"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-publish-js-npm-project":{}}}],["structure.png",{"_index":4507,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["stuck",{"_index":2811,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["student",{"_index":1880,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["student@cloudacademy.com",{"_index":2619,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["studentappear",{"_index":2620,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["studi",{"_index":882,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["studio",{"_index":2327,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["studying/pract",{"_index":7166,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["stuff",{"_index":2521,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/python-snippets/":{}},"description":{}}],["style",{"_index":2,"title":{"/posts/code-style":{}},"content":{"/tracks/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/_index":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/photos/midjourney/":{}},"description":{"/posts/code-style":{}}}],["style=tango",{"_index":5115,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["su",{"_index":6686,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sub",{"_index":1002,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["subarray",{"_index":3012,"title":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/643":{}}}],["subclass",{"_index":4419,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["subdomain",{"_index":5551,"title":{"/posts/vps-docker-subdomains-setup/":{}},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["subfold",{"_index":1426,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{}},"description":{}}],["subject",{"_index":1308,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["subject).put(body=messag",{"_index":1314,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["sublim",{"_index":6536,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["sublist",{"_index":3923,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["submiss",{"_index":730,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["submit",{"_index":1687,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["submodul",{"_index":5469,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["subnet",{"_index":1558,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["subrang",{"_index":3702,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["subscrib",{"_index":1099,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["subscribe/unsubscrib",{"_index":6571,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["subscript",{"_index":1137,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["subseg",{"_index":1006,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["subsequ",{"_index":3046,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["subsequence'",{"_index":4189,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["subset",{"_index":1135,"title":{"/tracks/algorithms-101/leetcode/medium/78":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/78":{}}}],["subsets(self",{"_index":3349,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["substitut",{"_index":1982,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["substr",{"_index":2984,"title":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/bash-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{}}}],["substring'",{"_index":3994,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["subtract",{"_index":3728,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/macd":{}},"description":{}}],["subvers",{"_index":7111,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["succe",{"_index":1854,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["succeed",{"_index":1632,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["succeededor",{"_index":2606,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["success",{"_index":1315,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["successfulli",{"_index":1216,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["such",{"_index":289,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["sudden",{"_index":2205,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/trading-indicators/atr":{}},"description":{}}],["sudo",{"_index":6603,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sudoku",{"_index":3001,"title":{"/tracks/algorithms-101/leetcode/medium/36":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{"/tracks/algorithms-101/leetcode/medium/36":{}}}],["suffix",{"_index":430,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["suggest",{"_index":2653,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/ema":{},"/posts/mac-setup-development/":{}},"description":{}}],["suit",{"_index":654,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/code-style":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["suitabl",{"_index":1885,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["sum",{"_index":2966,"title":{"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["sum(1",{"_index":3988,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["sum([1",{"_index":4526,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum([3",{"_index":4528,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum(ar",{"_index":4901,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["sum(num",{"_index":4225,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["sum(nums[:k",{"_index":4253,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["sum(nums[i:i",{"_index":4122,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["sum.png",{"_index":4510,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum_of_digits(a[i",{"_index":4753,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["sum_of_digits(cur",{"_index":4766,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["sum_of_digits(n",{"_index":4750,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["summar",{"_index":2525,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["summari",{"_index":2600,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/p/links":{}},"description":{}}],["summuri",{"_index":4937,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["sup",{"_index":6327,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["sup.ag",{"_index":6340,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.boast",{"_index":6339,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('i",{"_index":6373,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('spoon",{"_index":6336,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super",{"_index":5337,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["super().init(nam",{"_index":6322,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super(batman",{"_index":6359,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super(x",{"_index":5336,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["super.dist",{"_index":5338,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["superhero",{"_index":6305,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(human",{"_index":6309,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(name=\"tick",{"_index":6328,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.init(self",{"_index":6364,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.pi",{"_index":6356,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhuman",{"_index":6312,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superior",{"_index":7130,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["superpow",{"_index":6314,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=[\"sup",{"_index":6316,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=['wealthi",{"_index":6366,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superset",{"_index":6187,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["suppli",{"_index":1226,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["support",{"_index":53,"title":{"/p/supportme":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}},"description":{}}],["support/resist",{"_index":5705,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["sure",{"_index":1160,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["surnam",{"_index":5159,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["surround",{"_index":4051,"title":{"/tracks/algorithms-101/leetcode/medium/130":{}},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{"/tracks/algorithms-101/leetcode/medium/130":{}}}],["surviv",{"_index":6716,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["suscipit",{"_index":6423,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sustain",{"_index":2726,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["swap",{"_index":756,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/python-snippets/":{}},"description":{}}],["swap(x",{"_index":6223,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swap(x,i",{"_index":6225,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swarm",{"_index":7141,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["swing",{"_index":5765,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["switch",{"_index":2293,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["sy",{"_index":2755,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["symbol",{"_index":2249,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["symmetr",{"_index":1886,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/python-snippets/":{}},"description":{}}],["symmetric(symmetr",{"_index":1884,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["sync",{"_index":665,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["synchron",{"_index":610,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["syncth",{"_index":6537,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["syntax",{"_index":819,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["sys.maxs",{"_index":4639,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["sys.stdin",{"_index":4671,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["sys.stdin.readline().rstrip(\"\\r\\n",{"_index":4643,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["syslog",{"_index":2756,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["system",{"_index":172,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["system/linux",{"_index":2778,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["system/linuxundercustom",{"_index":2777,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["systemadministr",{"_index":2085,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["systemctl",{"_index":2446,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["sysvinit",{"_index":2925,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["s|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g",{"_index":5578,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["t",{"_index":2419,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["t03:24:00",{"_index":5178,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["t1",{"_index":5347,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["t2",{"_index":5349,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["t2.micro",{"_index":2169,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["t2.micro(default",{"_index":2544,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["t2.microi",{"_index":2747,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["t3.2xlarg",{"_index":2170,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["t3.micro",{"_index":2912,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["t3.small.search",{"_index":1666,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["t3a.nano",{"_index":4945,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["t[i",{"_index":3557,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["t[j",{"_index":4449,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["tab",{"_index":1167,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["tab(cmd+t)/restart",{"_index":6653,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["taband",{"_index":2577,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["tabl",{"_index":118,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}}}],["table'",{"_index":2505,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["table_nam",{"_index":2032,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["tabular",{"_index":2519,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["tabwidth",{"_index":5055,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["tackl",{"_index":4176,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["tactic",{"_index":3014,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["tag",{"_index":1358,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["tag/key/id",{"_index":6860,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["tail",{"_index":7123,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tailor",{"_index":2790,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["tailwind",{"_index":6847,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["take",{"_index":66,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["taken",{"_index":752,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["talk",{"_index":1870,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["tall",{"_index":6708,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["taller",{"_index":4162,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["tank",{"_index":4028,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["tap",{"_index":5102,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/apps/brewmate/":{}},"description":{}}],["tar",{"_index":7175,"title":{"/posts/cheat-sheet-command-tar/":{}},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["target",{"_index":395,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["target'",{"_index":2155,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["target_function(arg",{"_index":6395,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["target_index",{"_index":3679,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["task",{"_index":396,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{},"/p/links":{}},"description":{"/posts/bash-snippets":{}}}],["taskid",{"_index":5227,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["tax",{"_index":2803,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["taxonomi",{"_index":1442,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["tcp",{"_index":2160,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["tcp/ip",{"_index":265,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["td",{"_index":2094,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["tde",{"_index":1586,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["teach",{"_index":987,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["team",{"_index":488,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["teamciti",{"_index":2641,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["teammat",{"_index":744,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["tear",{"_index":7132,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["technic",{"_index":974,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["techniqu",{"_index":989,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["technolog",{"_index":7028,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["telegram",{"_index":6538,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["telephon",{"_index":3824,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["teleport",{"_index":4771,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["teleporter'",{"_index":4777,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tell",{"_index":733,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["tema",{"_index":5857,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["temp",{"_index":4435,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["temperatur",{"_index":3172,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["templat",{"_index":59,"title":{"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-docstring-templates":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-docstring-templates":{}}}],["template'",{"_index":805,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["temporari",{"_index":554,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["temporarili",{"_index":806,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["ten",{"_index":1979,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["tenant",{"_index":1865,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["tend",{"_index":5663,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["term",{"_index":1456,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["termin",{"_index":149,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["terminolog",{"_index":997,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["ternari",{"_index":6123,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["terraform",{"_index":2882,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["territori",{"_index":5633,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["test",{"_index":39,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["test@cloudacademy.com",{"_index":2616,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["tests/index.test.j",{"_index":5466,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["text",{"_index":459,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text.length",{"_index":6900,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text/plain",{"_index":1445,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["textbox",{"_index":1150,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["th",{"_index":3146,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["thank",{"_index":6082,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["that'",{"_index":3327,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{}}],["that’",{"_index":2089,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["thealarm",{"_index":2809,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["theinstanc",{"_index":2771,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["theme",{"_index":6639,"title":{},"content":{"/posts/mac-setup-development/":{},"/p/links":{}},"description":{}}],["theme'",{"_index":5430,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["themselv",{"_index":1378,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["then((respons",{"_index":5238,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["thencreat",{"_index":2549,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["theori",{"_index":886,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["there'",{"_index":1249,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["therebi",{"_index":3701,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["therefor",{"_index":2253,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["therein",{"_index":2661,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["there’",{"_index":1349,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["theset",{"_index":2850,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["theta",{"_index":6495,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["they'll",{"_index":4372,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["they'r",{"_index":4149,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["thing",{"_index":1317,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/trading-indicators/_index":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["think",{"_index":479,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["thio",{"_index":6845,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["third",{"_index":635,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/markdown-syntax/":{}},"description":{}}],["this._client",{"_index":5207,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.delete('/user/me').then((respons",{"_index":5223,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.delete(boards/${listid}/tasks/${taskid}).then((respons",{"_index":5228,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.get('/user/me').then((respons",{"_index":5220,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.get(boards/${listid}/tasks).then((respons",{"_index":5225,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.post(boards/${listid}/task",{"_index":5230,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.post(login",{"_index":5236,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.put(boards/${listid}/tasks/${taskid",{"_index":5232,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.add(doc",{"_index":6794,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"cont",{"_index":6787,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"descript",{"_index":6788,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"titl",{"_index":6786,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"uri",{"_index":6789,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.i",{"_index":5329,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.mak",{"_index":5365,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.model",{"_index":5367,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.readyst",{"_index":6800,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.ref('uri",{"_index":6790,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.selectapitarget",{"_index":5203,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.statu",{"_index":6801,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.x",{"_index":5327,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.z",{"_index":5340,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["those",{"_index":285,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["though",{"_index":2265,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/python-snippets/":{}},"description":{}}],["thought",{"_index":3380,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["thousand",{"_index":1975,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["thread",{"_index":2350,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["threading.thread",{"_index":6918,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["threading.thread.init(self",{"_index":6921,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["three",{"_index":631,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["threesum(self",{"_index":3902,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["threshold",{"_index":879,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["thrice",{"_index":4757,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["throttl",{"_index":421,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["throttlingexcept",{"_index":1858,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["throuahput",{"_index":2494,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["through",{"_index":341,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["throughput",{"_index":422,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["thrown",{"_index":2335,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["thu",{"_index":1639,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["ti",{"_index":1831,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["tiam",{"_index":6445,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["tibco",{"_index":1107,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["tick",{"_index":6337,"title":{},"content":{"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["tier",{"_index":1071,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["tighten",{"_index":2189,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["tile",{"_index":2213,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["till",{"_index":3741,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["time",{"_index":210,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/diploma/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/medium/122":{}}}],["time.tim",{"_index":4674,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["timeex",{"_index":1413,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["timelin",{"_index":2732,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["timeout",{"_index":815,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["timeout=10800",{"_index":2563,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["timer",{"_index":1121,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["timestamp",{"_index":1682,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["timestamp_to_char('hh:mm:ss",{"_index":2021,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["timezon",{"_index":5168,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["tip",{"_index":1514,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/docker-commands/":{}},"description":{}}],["titl",{"_index":1720,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["title\":\"title01",{"_index":6849,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["titlebar",{"_index":7012,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["titletonumber(self",{"_index":4349,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["tk",{"_index":4985,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["tk.tk",{"_index":6961,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["tkinter",{"_index":4980,"title":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["tl",{"_index":1384,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["tl;dr",{"_index":852,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["tld",{"_index":1554,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["tldr",{"_index":5444,"title":{},"content":{"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tmp",{"_index":3730,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["tmp.append(word",{"_index":3835,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["tmp/dockerfil",{"_index":7146,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmp/exec_work",{"_index":7154,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmp/interactiveenv",{"_index":6698,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["tmp/noninteractiveenv",{"_index":6699,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["tmp_remov",{"_index":3630,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["to_timestamp(\"event_timestamp",{"_index":1994,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["toc",{"_index":5116,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["today",{"_index":2658,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["today'",{"_index":4911,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["today/now",{"_index":5749,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["todo",{"_index":4696,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["togeth",{"_index":2131,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/macd":{}},"description":{}}],["toggl",{"_index":2822,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["token",{"_index":773,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/js-snippets":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["toler",{"_index":2193,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["took",{"_index":2801,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["tool",{"_index":637,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/links":{}},"description":{}}],["tool.black",{"_index":5003,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["toolbar",{"_index":1717,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["toolkit",{"_index":2326,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["top",{"_index":1146,"title":{"/tracks/algorithms-101/leetcode75":{},"/posts/docker-commands/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/other-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["topic",{"_index":883,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["topic:**cr",{"_index":2799,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["topic_arn",{"_index":1205,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topic_arn=$(aw",{"_index":1206,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topicarn",{"_index":1201,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topics[0].topicarn",{"_index":1207,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topmost",{"_index":4508,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["toport",{"_index":2933,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["tor",{"_index":6539,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["torrent",{"_index":6597,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["tortois",{"_index":4304,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["total",{"_index":1034,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/python-snippets/":{}},"description":{}}],["total_cost",{"_index":4032,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["total_ga",{"_index":4031,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["total_sum",{"_index":4224,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["touch",{"_index":2786,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["tour",{"_index":2550,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["toward",{"_index":700,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["tox",{"_index":5011,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["tr",{"_index":5783,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["trace",{"_index":793,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["track",{"_index":413,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["tracked_data",{"_index":4867,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["tracked_data[last",{"_index":4869,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["trade",{"_index":4906,"title":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/_index":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}}}],["trader",{"_index":5635,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["tradit",{"_index":1592,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/js-snippets":{}},"description":{}}],["traffic",{"_index":338,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["trail",{"_index":1375,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["trailingcomma",{"_index":5052,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["train",{"_index":923,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["transact",{"_index":1579,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["transcod",{"_index":681,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["transfer",{"_index":766,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["transform",{"_index":802,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/js-convert-array-to-dict":{}},"description":{}}],["transformarraytodict",{"_index":5398,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["transit",{"_index":621,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["translat",{"_index":1527,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["translatedcount",{"_index":6856,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["transmiss",{"_index":6540,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["transpar",{"_index":1587,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["transport",{"_index":4775,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["travel",{"_index":4029,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["travers",{"_index":2982,"title":{"/tracks/algorithms-101/leetcode/easy/94":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{}}}],["travi",{"_index":2640,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/code-style":{}},"description":{}}],["treat",{"_index":2864,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["tree",{"_index":2664,"title":{"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{},"/photos/midjourney/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}}}],["tree'",{"_index":4502,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["tree.add(l",{"_index":4761,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tree.add(r",{"_index":4762,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tree.query(x",{"_index":4764,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tree[i",{"_index":4660,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["tree[n+i",{"_index":4658,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["treenod",{"_index":3237,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["treenode(1",{"_index":3254,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(2",{"_index":3256,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(3",{"_index":3258,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(4",{"_index":3260,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(5",{"_index":3262,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["trend",{"_index":996,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{}}],["tri",{"_index":1193,"title":{"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/posts/tree-vs-trie-data-structures/":{}}}],["triangl",{"_index":1155,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["tribonacci",{"_index":3147,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["trick",{"_index":1352,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/posts/docker-commands/":{}},"description":{}}],["tricki",{"_index":3840,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["trie",{"_index":3163,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["trienod",{"_index":5609,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["trigger",{"_index":235,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["trigger_branch",{"_index":2669,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["trip",{"_index":4480,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["tripl",{"_index":4803,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["triplet",{"_index":3045,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["trivial",{"_index":6282,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["trix",{"_index":5872,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["tromino",{"_index":3152,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["troubleshoot",{"_index":869,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["true",{"_index":626,"title":{"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["truncat",{"_index":3714,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/posts/git-snippets":{}},"description":{}}],["trust",{"_index":2068,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["try_fil",{"_index":5567,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["tsc",{"_index":7082,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tsconfig.json",{"_index":7040,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tsi",{"_index":5861,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["tti",{"_index":7152,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ttl",{"_index":2365,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["tubetub",{"_index":4680,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["tune",{"_index":1600,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["tup",{"_index":6152,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[0",{"_index":6153,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[:2",{"_index":6158,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tupl",{"_index":2481,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["tuple(gridr",{"_index":4156,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["tuple(p.item1",{"_index":5351,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["tuple(row",{"_index":4152,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["turbul",{"_index":5786,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["turn",{"_index":1477,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["tutori",{"_index":925,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/bash-snippets":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["tutorialsdojo",{"_index":2110,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["tuv",{"_index":3831,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["tvf",{"_index":7192,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["tweak",{"_index":7011,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["twice",{"_index":3217,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["twin",{"_index":3083,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["twine",{"_index":2701,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["twist",{"_index":3909,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["two",{"_index":232,"title":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["twosum(num",{"_index":4428,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["twosum(self",{"_index":3389,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["type",{"_index":534,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/docker-commands/":{}},"description":{}}],["type((1",{"_index":6156,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type(sup",{"_index":6331,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type1",{"_index":5067,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["type2",{"_index":5069,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["type_:_select",{"_index":2511,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["typecolumn",{"_index":1618,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["typeerror",{"_index":6154,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["typeof",{"_index":7093,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["typescript",{"_index":5063,"title":{"/posts/howto-publish-ts-npm-project":{}},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["typescriptreact",{"_index":5064,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["typeset",{"_index":6710,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["type—numb",{"_index":5617,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["typic",{"_index":1553,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["typo",{"_index":2567,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/code-style":{}},"description":{}}],["tyron",{"_index":5355,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["u",{"_index":3267,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["u','u",{"_index":4457,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["ubuntu",{"_index":4939,"title":{"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/stories/002-openvpn-aws-ec2-setup":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["ubuntu:20.04",{"_index":6680,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["ubuntu:latest",{"_index":7149,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["udp",{"_index":1042,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ui",{"_index":1351,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{}},"description":{}}],["uid=1000(interactiveus",{"_index":6688,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["uint",{"_index":4333,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["ulcer",{"_index":5869,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["ultim",{"_index":692,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["ultra",{"_index":1867,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ultradn",{"_index":1533,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["un",{"_index":2843,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["unaccept",{"_index":2302,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["unassign",{"_index":6119,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unauthor",{"_index":1387,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["unavail",{"_index":2418,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["unchang",{"_index":162,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["uncheck",{"_index":1471,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["uncov",{"_index":490,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["und",{"_index":6432,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["undefin",{"_index":5205,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["under",{"_index":306,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-docstring-templates":{},"/posts/git-snippets":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["underli",{"_index":1075,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-bitwise-operators":{}},"description":{}}],["underscor",{"_index":1341,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/python-snippets/":{}},"description":{}}],["understand",{"_index":583,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["understood",{"_index":4958,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["undersystem/linux",{"_index":2827,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["undo",{"_index":5504,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["undon",{"_index":164,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["unencrypt",{"_index":1830,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["uneven",{"_index":5279,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["unexpect",{"_index":5268,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["unfamiliar",{"_index":2259,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["unfeas",{"_index":4104,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["unhash",{"_index":6163,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unhealthi",{"_index":1556,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["unhealthyhostcountwil",{"_index":2261,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["unicod",{"_index":1359,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["unifi",{"_index":2628,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["uniform",{"_index":6466,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["uninstal",{"_index":7228,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["unintend",{"_index":1365,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["union",{"_index":4503,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["uniq",{"_index":3672,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["uniqs.add(i",{"_index":3699,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["uniqs.add(j",{"_index":3698,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["uniqu",{"_index":1024,"title":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1207":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/js-convert-array-to-dict":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1207":{}}}],["unique_char",{"_index":4197,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["unique_count",{"_index":4422,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["uniqueid",{"_index":2944,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["uniqueoccurrences(arr",{"_index":4423,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["uniquepaths(self",{"_index":3467,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["unit",{"_index":436,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/markdown-syntax/":{}},"description":{}}],["unix",{"_index":2002,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{}},"description":{}}],["unknown",{"_index":3690,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/33":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["unless",{"_index":881,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["unlik",{"_index":290,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["unlimit",{"_index":4839,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["unload",{"_index":1638,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["unnecessari",{"_index":4489,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/git-snippets":{}},"description":{}}],["unnecessarili",{"_index":5795,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["unord",{"_index":6468,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["unpack",{"_index":6159,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unreach",{"_index":5501,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["unreachable=now",{"_index":5499,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["unreferenc",{"_index":7127,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["unreserv",{"_index":1743,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["unsign",{"_index":3451,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["unsort",{"_index":3181,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["unspecifi",{"_index":877,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["unsuccess",{"_index":2940,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["unsur",{"_index":7107,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["untag",{"_index":7158,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["until",{"_index":777,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/python-snippets/":{}},"description":{}}],["untrack",{"_index":5503,"title":{},"content":{"/posts/git-snippets":{},"/posts/bash-snippets":{}},"description":{"/posts/bash-snippets":{}}}],["unus",{"_index":141,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/git-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["unusu",{"_index":7009,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["unzip",{"_index":2760,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["up",{"_index":223,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}}}],["up/down",{"_index":2172,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["upcom",{"_index":606,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["upd",{"_index":6659,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["upd='brew",{"_index":6661,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["updat",{"_index":286,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["update(self",{"_index":4923,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["update_graph(n",{"_index":6936,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["updatetask(listid",{"_index":5231,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["upfront",{"_index":1267,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["upgrad",{"_index":5526,"title":{},"content":{"/posts/code-style":{},"/posts/mac-setup-development/":{}},"description":{}}],["upload",{"_index":699,"title":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["upon",{"_index":729,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["upper",{"_index":1701,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["uppercas",{"_index":1340,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["upstream",{"_index":2377,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["uptim",{"_index":1932,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["upto",{"_index":1580,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["uptrend",{"_index":5665,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["upward",{"_index":5666,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["uri",{"_index":5568,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["url",{"_index":1222,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["url(\"https://example.com/login?user=someguy&page=new",{"_index":5142,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.host",{"_index":5145,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.match(/(+)(=(*))/g",{"_index":5152,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.origin",{"_index":5143,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.pathnam",{"_index":5148,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.protocol",{"_index":5147,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.replac",{"_index":5139,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.searchparams.get('us",{"_index":5149,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["urli",{"_index":2897,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["urllib3==1.26.12",{"_index":6078,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["us",{"_index":16,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["usabl",{"_index":5492,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["usag",{"_index":1422,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["usd",{"_index":1214,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["usd\\n2",{"_index":1211,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["usecas",{"_index":2150,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["used_posts.add(post",{"_index":4870,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["usedotenv",{"_index":5994,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["user",{"_index":82,"title":{"/posts/linux-interactive-non-interactive-users/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/linux-interactive-non-interactive-users/":{}}}],["user.email",{"_index":5472,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["user.nam",{"_index":2564,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/git-snippets":{}},"description":{}}],["user1",{"_index":2022,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user2",{"_index":1955,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user3",{"_index":1956,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user@52.24.109.78",{"_index":2455,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["user_id",{"_index":1941,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["user_id\"||''||\"device_type\"||''||timestamp_to_char('hh:mm:ss",{"_index":2018,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user_id=\"${user_ids[random%${#user_id",{"_index":1961,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user_ids=(user1",{"_index":1954,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["useradd",{"_index":6681,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["userdata",{"_index":2886,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["userdrop",{"_index":2614,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["usernam",{"_index":1597,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["username/repo",{"_index":7113,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["username/repository:tag",{"_index":7124,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["users/r/desktop/new_source.txt",{"_index":6985,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/r/desktop/old_source.txt",{"_index":6983,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/zsh",{"_index":6648,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["users_collect",{"_index":6019,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["users_collection.find_one({\"_id",{"_index":6027,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["users_collection.update_one({\"_id",{"_index":6035,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["user’",{"_index":2081,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["usr/bin/apt",{"_index":7017,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/dnf",{"_index":7018,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/softwar",{"_index":7016,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/sbin/synapt",{"_index":7015,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usual",{"_index":1293,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/rsi":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["util",{"_index":318,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["utm",{"_index":6541,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["v",{"_index":2918,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["v.indexof",{"_index":5154,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["v.slice(v.indexof",{"_index":5155,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["v1.0",{"_index":7114,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["val",{"_index":3243,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/js-snippets":{}},"description":{}}],["val=0",{"_index":3239,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["valid",{"_index":532,"title":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/20":{}}}],["valid_dict",{"_index":6164,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["valid_set",{"_index":6183,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["validperson",{"_index":5317,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["vals_l1",{"_index":3769,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["vals_l1.append(cur.v",{"_index":3770,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["vals_l2",{"_index":3772,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["vals_l2.append(cur.v",{"_index":3773,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["valu",{"_index":64,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["valueerror",{"_index":6146,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["valueerror(\"th",{"_index":4926,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["values.append(",{"_index":3594,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["values.append(int(v",{"_index":3783,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["values.append(node.v",{"_index":3919,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["values.sort",{"_index":3921,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["values[1",{"_index":3766,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["values[i",{"_index":4691,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["value—instead",{"_index":5618,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["var",{"_index":2581,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["var/www/domains/mydomain_with_static_fil",{"_index":5566,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["var/www/html",{"_index":2889,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["var/www/html/index.html",{"_index":2447,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["varargs(*arg",{"_index":6205,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["varargs(1",{"_index":6206,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["varchar(10",{"_index":1990,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["varchar(20",{"_index":2015,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["varchar(50",{"_index":2013,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["varchar(7",{"_index":1989,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["vari",{"_index":1171,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["variabl",{"_index":187,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["variable=toc",{"_index":5118,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["varieti",{"_index":951,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["variou",{"_index":305,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/macd":{}},"description":{}}],["vault",{"_index":1816,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["vaultc",{"_index":1815,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["vcpu",{"_index":2168,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["vdagent",{"_index":6605,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["veloc",{"_index":581,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["ventur",{"_index":4979,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["venv",{"_index":5006,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["venv/bin/activ",{"_index":6011,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["verbos",{"_index":7178,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["veri",{"_index":1354,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{}},"description":{}}],["verif",{"_index":200,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["verifi",{"_index":1260,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["veronika",{"_index":522,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["versatil",{"_index":4916,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["version",{"_index":480,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/brewmate/":{}},"description":{}}],["versionex",{"_index":1412,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["versionfunct",{"_index":6002,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["vertex",{"_index":4506,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["vertic",{"_index":2165,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["vet",{"_index":963,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["vi",{"_index":5874,"title":{},"content":{"/posts/trading-indicators/_index":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["via",{"_index":957,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["viber",{"_index":6542,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["video",{"_index":976,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["video_fil",{"_index":5130,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["video_files=(*.{mp4,mkv,flv,avi",{"_index":5129,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["view",{"_index":3,"title":{},"content":{"/tracks/_index":{},"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/python-groovy-lint-format-setup":{},"/posts/_index":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["viewaccount",{"_index":2107,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["viewbil",{"_index":2098,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["viewer",{"_index":2618,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["viewer1",{"_index":2624,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["viewpaymentmethod",{"_index":2108,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["viewusag",{"_index":2109,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["vim",{"_index":5580,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["violat",{"_index":2793,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["virtru",{"_index":1819,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["virtual",{"_index":1184,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["virtualbox",{"_index":7134,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["visibl",{"_index":1111,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/docker-commands/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["visit",{"_index":2217,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["visited.add(cur",{"_index":4384,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["visited.add(curr",{"_index":3301,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visited.add(neighbor",{"_index":3287,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visited.add(nod",{"_index":3272,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visited.add(slow",{"_index":4312,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["visitedrow",{"_index":3319,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visual",{"_index":129,"title":{"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/links":{}},"description":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{}}}],["visualize/debug",{"_index":4677,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["visually:alt",{"_index":1703,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["vita",{"_index":6433,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["vital",{"_index":4448,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["vivid",{"_index":7204,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["vlc",{"_index":6543,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["vm",{"_index":7136,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["vn",{"_index":5133,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["void",{"_index":5300,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["volatil",{"_index":2206,"title":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["volum",{"_index":371,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/_index":{},"/posts/docker-commands/":{}},"description":{}}],["vortex",{"_index":5873,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["vowel",{"_index":3040,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["vowels_ord",{"_index":4458,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["vowels_order.append(x",{"_index":4460,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["vowels_order.pop",{"_index":4461,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["vp",{"_index":5552,"title":{"/posts/vps-docker-subdomains-setup/":{}},"content":{},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["vp'",{"_index":2869,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["vpc",{"_index":334,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["vpc'",{"_index":1674,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["vpn",{"_index":342,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["vs",{"_index":865,"title":{"/posts/linux-interactive-non-interactive-users/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["vscode",{"_index":3385,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["vulner",{"_index":2404,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["vv",{"_index":6554,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["vwap",{"_index":5855,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["w",{"_index":7083,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["w503",{"_index":5018,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["waf",{"_index":921,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["wait",{"_index":770,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["waitfortasktoken",{"_index":771,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["walk",{"_index":1900,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["walkccc",{"_index":3399,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["wall",{"_index":3290,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["want",{"_index":114,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["war",{"_index":2881,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["warn",{"_index":1875,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["warning_",{"_index":1493,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{}},"description":{}}],["wast",{"_index":2370,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["watch",{"_index":1758,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["water",{"_index":2987,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["wave",{"_index":5854,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["way",{"_index":120,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["wcu",{"_index":2490,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["we'll",{"_index":4323,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["we'r",{"_index":3874,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["we'v",{"_index":3302,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["weak",{"_index":506,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["wealth",{"_index":2735,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["web",{"_index":242,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/_index":{}},"description":{}}],["web/tablet/mobil",{"_index":7227,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["webbrows",{"_index":6912,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["webbrowser.open(\"http://localhost:8050",{"_index":6954,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["webcast",{"_index":1936,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["webdavd",{"_index":6602,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["webhook",{"_index":768,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["webmethod",{"_index":2138,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["webprefer",{"_index":7065,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["webserv",{"_index":2907,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["webserver.publicdnsnam",{"_index":2936,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["webserverpublicdn",{"_index":2934,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["webserversecuritygroup",{"_index":2914,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["websit",{"_index":728,"title":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["website..amazonaws.com",{"_index":1401,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["website..amzonaws.com",{"_index":1400,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["website’",{"_index":2191,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["websocket",{"_index":257,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["week",{"_index":1881,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["weekend",{"_index":2816,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["weigh",{"_index":5664,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["weight",{"_index":1549,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["welcom",{"_index":1658,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["well",{"_index":384,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["went",{"_index":1246,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["weren't",{"_index":2671,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["werkzeug",{"_index":6083,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["werkzeug==1.0.1",{"_index":6079,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["west",{"_index":1500,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["wget",{"_index":2759,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{}},"description":{}}],["whatev",{"_index":2441,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["whenev",{"_index":778,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["wherea",{"_index":2066,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["wherev",{"_index":2067,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/js-snippets":{}},"description":{}}],["whether",{"_index":1832,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["whichev",{"_index":4292,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["while(left",{"_index":3547,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["whilst",{"_index":1242,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["white",{"_index":3362,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["whitepap",{"_index":972,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["whitespac",{"_index":5512,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["whole",{"_index":3182,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["whose",{"_index":2247,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/python-snippets/":{}},"description":{}}],["wide",{"_index":1388,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["widget",{"_index":1209,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["width",{"_index":4159,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["width=\"250px",{"_index":6726,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["wield",{"_index":6325,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wikipedia",{"_index":4796,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["wilder",{"_index":5670,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{}},"description":{}}],["william",{"_index":5870,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["win",{"_index":7063,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.loadurl",{"_index":7067,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.webcontents.opendevtool",{"_index":7070,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win10",{"_index":7140,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["win7",{"_index":7137,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["window",{"_index":170,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["window'",{"_index":3910,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["window.document.currentscript.getattribute('languagemod",{"_index":6781,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["window.location.host.includes(\"node.sharedtodos.com",{"_index":5213,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.auth0_audi",{"_index":5258,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.auth0_client_id",{"_index":5254,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.auth0_domain",{"_index":5249,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.authz_embed_url",{"_index":5260,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.backend_url",{"_index":5246,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window_sum",{"_index":4252,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["wire",{"_index":594,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["wish",{"_index":2513,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["within",{"_index":720,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["without",{"_index":1078,"title":{"/tracks/algorithms-101/leetcode/medium/3":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/138":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-docstring-templates":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["wizard",{"_index":1436,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["wm1",{"_index":7161,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["won't",{"_index":1491,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["wonder",{"_index":7200,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["word",{"_index":3042,"title":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/139":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/139":{}}}],["word1",{"_index":4468,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word1[len(r",{"_index":4475,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word2",{"_index":3864,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word2[len(r",{"_index":4476,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["wordbreak(self",{"_index":3995,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["worddict",{"_index":3993,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["words.revers",{"_index":3890,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["work",{"_index":43,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["workdir",{"_index":5588,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["worker",{"_index":1241,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode75":{},"/posts/code-style":{},"/posts/docker-commands/":{}},"description":{}}],["worker_connect",{"_index":5557,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["worker_process",{"_index":5556,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["workflow",{"_index":130,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["workload",{"_index":448,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["workshop",{"_index":933,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["workspac",{"_index":1768,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["world",{"_index":489,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["world!\"[0",{"_index":6104,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["world:latest",{"_index":2411,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["worm",{"_index":6485,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["worri",{"_index":1627,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["worst",{"_index":4513,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["wouldn't",{"_index":3844,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["wrap",{"_index":1644,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["wrapper",{"_index":6397,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wrapper(arg",{"_index":6394,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wraps(target_funct",{"_index":6393,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["write",{"_index":420,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-docstring-templates":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["write/connect",{"_index":6861,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["written",{"_index":34,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["wrong",{"_index":2333,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/markdown-syntax/":{}},"description":{}}],["ws",{"_index":1061,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["wsgi",{"_index":5995,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["wsgi_handler.handl",{"_index":6004,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ww",{"_index":3211,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["www",{"_index":1393,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["wxyz",{"_index":3832,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["x",{"_index":387,"title":{"/tracks/aws-certified-developer-associate/xray/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["x'",{"_index":4052,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["x**2",{"_index":6245,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["x**i",{"_index":6090,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["x86",{"_index":1783,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["x86_64",{"_index":2906,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["x=5",{"_index":6204,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["x=list(range(len(self.data_list[symbol",{"_index":6938,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["x^n",{"_index":3522,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["x_12",{"_index":6491,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["x_{12345",{"_index":6489,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["xc",{"_index":4408,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xe",{"_index":2916,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["xelatex",{"_index":5105,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["xf",{"_index":7184,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xii",{"_index":4397,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xjf",{"_index":7191,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xml",{"_index":1323,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["xmlhttp",{"_index":6797,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttp.onreadystatechang",{"_index":6799,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttp.open(\"get",{"_index":6805,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttp.send",{"_index":6806,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttprequest",{"_index":6798,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xn",{"_index":6477,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["xrang",{"_index":6381,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["xray",{"_index":841,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["xrayen",{"_index":2712,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["xx",{"_index":4399,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xxvii",{"_index":4398,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xxxxxxxxxx",{"_index":2750,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["xzf",{"_index":7187,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["y",{"_index":2444,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["y=self.data_list[symbol",{"_index":6939,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["y^1",{"_index":4808,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["yam",{"_index":2865,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["yaml",{"_index":821,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["yandex",{"_index":6544,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["yarn",{"_index":2700,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["yax",{"_index":6747,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["yay",{"_index":6124,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ye",{"_index":1825,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/apps/brewmate/":{}},"description":{}}],["yeah",{"_index":6179,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["year",{"_index":614,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/js-snippets":{}},"description":{"/posts/diploma/":{}}}],["yellow",{"_index":6729,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["yield",{"_index":4103,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/python-snippets/":{}},"description":{}}],["yml",{"_index":7173,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["yn",{"_index":6478,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["yo",{"_index":6274,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["you'd",{"_index":2514,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/js-snippets":{}},"description":{}}],["you'll",{"_index":2660,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["you'r",{"_index":1583,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["you'v",{"_index":1721,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["you@example.com",{"_index":6631,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["your_bucket_nam",{"_index":2847,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["your_notebook",{"_index":5432,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["your_notebook.ipynb",{"_index":5427,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["yourself",{"_index":1079,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["youtub",{"_index":947,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["youtube/netflix",{"_index":6562,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["youtube/video",{"_index":6576,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["you’ll",{"_index":866,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["you’r",{"_index":1381,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["you’v",{"_index":710,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["yth",{"_index":6091,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["yum",{"_index":2443,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["yy",{"_index":6557,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["z",{"_index":2214,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["z'",{"_index":3601,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["zero",{"_index":2269,"title":{"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["zero'",{"_index":3440,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["zero_count",{"_index":4178,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["zerocount",{"_index":3911,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["zigzag",{"_index":3091,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["zip",{"_index":1755,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["zip(word1",{"_index":4473,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["zipfil",{"_index":2875,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["zipp==3.8.1",{"_index":6080,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["zn",{"_index":6479,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["zone",{"_index":659,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["zone(attribute:ecs.avail",{"_index":2393,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["zoom",{"_index":6545,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["zoom.on('detach",{"_index":6891,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoom.on('open",{"_index":6887,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoombackground",{"_index":6873,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomdefault",{"_index":6870,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomin",{"_index":6863,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoommargin",{"_index":6872,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomscrolloffset",{"_index":6875,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach",{"_index":6881,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.detach",{"_index":6883,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.on('clos",{"_index":6882,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigg",{"_index":6877,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigger.open",{"_index":6880,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zotero",{"_index":6578,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zprofil",{"_index":6655,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zsh",{"_index":6638,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zsh/custom}/plugins/zsh",{"_index":6651,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zsh_custom",{"_index":6650,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zshrc",{"_index":6626,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zshsourc",{"_index":6627,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["а",{"_index":6663,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["алгоритм",{"_index":3578,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["алгоритмик",{"_index":3577,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["википедия:алгоритм",{"_index":3580,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["дерев",{"_index":4595,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["задач",{"_index":3574,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["интерв",{"_index":3575,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["интернет",{"_index":7222,"title":{},"content":{"/p/links":{}},"description":{}}],["литкод",{"_index":3576,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["магазин",{"_index":7223,"title":{},"content":{"/p/links":{}},"description":{}}],["манакер",{"_index":3579,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["манакера,%d1%80%d0%b5%d1%88%d0%b0%d1%82%d1%8c%20%d0%b8%20%d0%b1%d0%be%d0%bb%d0%b5%d0%b5%20%d0%be%d0%b1%d1%89%d0%b8%d0%b5%20%d0%b7%d0%b0%d0%b4%d0%b0%d1%87%d0%b8",{"_index":3581,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["отрезк",{"_index":4769,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["разбор",{"_index":3573,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["фенвик",{"_index":4596,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}]],"pipeline":["stemmer-ru","stemmer"]},"contentMap":{"ru":{"/tracks/_index":"Roadmaps","/tracks/webrtc/unified-plan-transition-guide":"Формат SDP унифицированного плана – план перехода","/tracks/webrtc/turn-server":"TURN сервер","/tracks/webrtc/testing":"Тестирование приложений WebRTC","/tracks/webrtc/remote-streams":"Удаленные потоки","/tracks/webrtc/peer-connections":"Одноранговые соединения","/tracks/webrtc/media-devices":"Мультимедиа-устройства","/tracks/webrtc/media-capture-and-constraints":"Захват мультимедиа и ограничения","/tracks/webrtc/data-channels":"Каналы данных","/tracks/webrtc/_index":"Карманная книга по WebRTC","/tracks/webrtc/practice/practice-take-photo":"Сделайте фото и отправьте его через канал данных","/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":"Потоковое видео с помощью RTCPeerConnection","/tracks/webrtc/practice/practice-stream-to-cam":"Потоковое видео с веб-камеры","/tracks/webrtc/practice/practice-setup-signaling-service":"Настройка службы сигналинга для обмена сообщениями","/tracks/webrtc/practice/practice-results":"Выводы","/tracks/webrtc/practice/practice-peer-signaling-combine":"Соединение однорангового соединения и сигналинга","/tracks/webrtc/practice/practice-overview":"Обзор","/tracks/webrtc/practice/practice-get-code":"Загрузка кода","/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":"Использование RTCDataChannel для обмена данными","/tracks/webrtc/practice/_index":"Практика","/tracks/python-101/_index":"Карманная книга по Python","/tracks/python-101/top-questions/":"Топ 55 вопросов по Python","/tracks/python-101/standard_library/threading":"Модуль потоков threading","/tracks/python-101/standard_library/sys":"Модуль sys","/tracks/python-101/standard_library/subprocess":"Модуль subprocess","/tracks/python-101/standard_library/smtplib":"Модуль email / smtplib","/tracks/python-101/standard_library/os":"Модуль os","/tracks/python-101/standard_library/logging":"Модуль logging","/tracks/python-101/standard_library/datetime_time":"Модуль datetime/time","/tracks/python-101/standard_library/configparser":"Модуль configparser","/tracks/python-101/standard_library/asyncio":"Модуль asyncio","/tracks/python-101/standard_library/argparse":"Модуль argparse","/tracks/python-101/standard_library/_index":"II - Стандартные модули","/tracks/python-101/frameworks/tornado":"Tornado","/tracks/python-101/frameworks/flask":"Flask","/tracks/python-101/frameworks/fastapi":"FastAPI","/tracks/python-101/frameworks/django":"Django","/tracks/python-101/frameworks/_index":"V - Фреймворки","/tracks/python-101/external_packages/requests":"Пакет requests","/tracks/python-101/external_packages/install_packages":"Установка пакетов","/tracks/python-101/external_packages/_index":"IV - Внешние модули","/tracks/python-101/enhance_python/testing":"Тестирование","/tracks/python-101/enhance_python/lambda":"Лямбда","/tracks/python-101/enhance_python/decorators":"Декораторы","/tracks/python-101/enhance_python/debugging":"Отладка Python","/tracks/python-101/enhance_python/closure":"Замыкания","/tracks/python-101/enhance_python/_index":"III - Расширенные возможности","/tracks/python-101/basis/types":"Типы данных","/tracks/python-101/basis/tuples":"Кортежи","/tracks/python-101/basis/strings":"Строки","/tracks/python-101/basis/sets":"Множества","/tracks/python-101/basis/scope":"Область видимости","/tracks/python-101/basis/operators":"Операторы","/tracks/python-101/basis/numbers":"Числа","/tracks/python-101/basis/loops":"Циклы","/tracks/python-101/basis/lists":"Списки","/tracks/python-101/basis/install":"Установка Python","/tracks/python-101/basis/inputs":"Ввод данных пользователем","/tracks/python-101/basis/imports":"Импорт модулей","/tracks/python-101/basis/ide":"Среда разработки","/tracks/python-101/basis/functions":"Функции","/tracks/python-101/basis/file_io":"Работа с файлами","/tracks/python-101/basis/exception_handling":"Обработка исключений","/tracks/python-101/basis/dict":"Словари","/tracks/python-101/basis/conditionals":"Условия","/tracks/python-101/basis/comprehensions":"Генераторы","/tracks/python-101/basis/classes":"Классы","/tracks/python-101/basis/_index":"I - Основы","/tracks/disser/israel-notes":"Заметки по Израилю","/tracks/disser/articles-notes":"Написание статей","/tracks/disser/_index":"Диссертация","/tracks/disser/utils/text_2_short":"Генерация аннотации","/tracks/disser/canditate-minimum/languages-requirements":"Требования по иностранным языкам","/tracks/disser/canditate-minimum/_index":"Кандидатский минимум Мировая экономика 08.00.14","/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":"Раздел 5. Международный валютный рынок","/tracks/disser/canditate-minimum/04-international-capital-movement":"Раздел 4. Международное движение капитала","/tracks/disser/canditate-minimum/03-international-policy":"Раздел 3. Международная торговая политика","/tracks/disser/canditate-minimum/02-international-trade":"Раздел 2. Международная торговля","/tracks/disser/canditate-minimum/01-economic-theory":"Раздел 1. Экономическая теория","/tracks/aws-certified-developer-associate/_index":"AWS Certified Developer (DVA-C01 -> DVA-C02)","/tracks/aws-certified-developer-associate/lambda/":"Lambda","/tracks/aws-certified-developer-associate/iam/":"IAM","/tracks/aws-certified-developer-associate/elasticbeanstalk/":"Elastic Beanstalk","/tracks/aws-certified-developer-associate/ec2/":"EC2","/tracks/archive/":"Docs","/tracks/algorithms-101/leetcode/_index":"LeetCode","/tracks/algorithms-101/leetcode/medium/_index":"Средние","/tracks/algorithms-101/leetcode/medium/28.en":"28. Find the Index of the First Occurrence in a String","/tracks/algorithms-101/leetcode/medium/151":"151. Reverse Words in a String","/tracks/algorithms-101/leetcode/medium/735/":"735. Asteroid Collision","/tracks/algorithms-101/leetcode/medium/649/":"649. Dota2 Senate","/tracks/algorithms-101/leetcode/medium/454/":"454. 4Sum II","/tracks/algorithms-101/leetcode/medium/443/":"443. String Compression","/tracks/algorithms-101/leetcode/medium/437/":"437. Path Sum III","/tracks/algorithms-101/leetcode/medium/394/":"394. Decode String","/tracks/algorithms-101/leetcode/medium/387/":"387. First Unique Character in a String","/tracks/algorithms-101/leetcode/medium/384/":"384. Shuffle an Array","/tracks/algorithms-101/leetcode/medium/341/":"341. Flatten Nested List Iterator","/tracks/algorithms-101/leetcode/medium/334/":"334. Increasing Triplet Subsequence","/tracks/algorithms-101/leetcode/medium/328/":"328. Odd Even Linked List","/tracks/algorithms-101/leetcode/medium/300/":"300. Longest Increasing Subsequence","/tracks/algorithms-101/leetcode/medium/287/":"287. Find the Duplicate Number","/tracks/algorithms-101/leetcode/medium/2844/":"2844. Minimum Operations to Make a Special Number","/tracks/algorithms-101/leetcode/medium/277/":"277. Find the Celebrity","/tracks/algorithms-101/leetcode/medium/251/":"251. Flatten 2D Vector","/tracks/algorithms-101/leetcode/medium/240/":"240. Search a 2D Matrix II","/tracks/algorithms-101/leetcode/medium/238/":"238. Product of Array Except Self","/tracks/algorithms-101/leetcode/medium/237/":"237. Delete Node in a Linked List","/tracks/algorithms-101/leetcode/medium/236/":"236. Lowest Common Ancestor of a Binary Tree","/tracks/algorithms-101/leetcode/medium/2352/":"2352. Equal Row and Column Pairs","/tracks/algorithms-101/leetcode/medium/215/":"215. Kth Largest Element in an Array","/tracks/algorithms-101/leetcode/medium/2130/":"2130. Maximum Twin Sum of a Linked List","/tracks/algorithms-101/leetcode/medium/210/":"210. Course Schedule II","/tracks/algorithms-101/leetcode/medium/2095/":"2095. Delete the Middle Node of a Linked List","/tracks/algorithms-101/leetcode/medium/1679/":"1679. Max Number of K-Sum Pairs","/tracks/algorithms-101/leetcode/medium/1448/":"1448. Count Good Nodes in Binary Tree","/tracks/algorithms-101/leetcode/medium/1372/":"1372. Longest ZigZag Path in a Binary Tree","/tracks/algorithms-101/leetcode/medium/11/":"11. Container With Most Water","/tracks/algorithms-101/leetcode/medium/1004/":"1004. Max Consecutive Ones III","/tracks/algorithms-101/leetcode/hard/_index":"Тяжелые","/tracks/algorithms-101/leetcode/hard/42/":"42. Trapping Rain Water","/tracks/algorithms-101/leetcode/hard/4/":"4. Median of Two Sorted Arrays","/tracks/algorithms-101/leetcode/easy/_index":"Легкие","/tracks/algorithms-101/leetcode/easy/933/":"933. Number of Recent Calls","/tracks/algorithms-101/leetcode/easy/9/":"9. Palindrome Number","/tracks/algorithms-101/leetcode/easy/605/":"605. Can Place Flowers","/tracks/algorithms-101/leetcode/easy/392/":"392. Is Subsequence","/tracks/algorithms-101/leetcode/easy/345/":"345. Reverse Vowels of a String","/tracks/algorithms-101/leetcode/easy/283/":"283. Move Zeroes","/tracks/algorithms-101/leetcode/easy/1768/":"1768. Merge Strings Alternately","/tracks/algorithms-101/leetcode/easy/1732/":"1732. Find the Highest Altitude","/tracks/algorithms-101/leetcode/easy/1071/":"1071. Greatest Common Divisor of Strings","/tracks/algorithms-101/data-structures/segment-tree":"Дерево отрезков","/tracks/algorithms-101/data-structures/prefix-sum":"Префиксные суммы","/tracks/algorithms-101/data-structures/fenwick-tree":"Дерево Фенвика","/tracks/algorithms-101/data-structures/_index":"Data Structures","/tracks/algorithms-101/codeforces/_index":"Codeforces","/tracks/90daysofdevops/day90":"90. Мобильность данных и приложений","/tracks/90daysofdevops/day89":"89. Аварийное восстановление","/tracks/90daysofdevops/day88":"88. Резервное копирование, ориентированное на приложения","/tracks/90daysofdevops/day87":"87. Резервное копирование и восстановление","/tracks/90daysofdevops/day86":"86. Резервное копирование всех платформ","/tracks/90daysofdevops/day85":"85. Службы данных","/tracks/90daysofdevops/day84":"84. Управление данными","/tracks/90daysofdevops/day83":"83. Визуализация данных - Grafana","/tracks/90daysofdevops/day82":"82. EFK Stack","/tracks/90daysofdevops/day81":"81. Fluentd и FluentBit","/tracks/90daysofdevops/day80":"80. ELK Stack","/tracks/90daysofdevops/day79":"79. Log Management","/tracks/90daysofdevops/day78":"78. Hands-On Monitoring Tools","/tracks/90daysofdevops/day77":"77. Мониторинг","/tracks/90daysofdevops/day76":"76. Обзор ArgoCD","/tracks/90daysofdevops/day75":"75. Обзор GitHub Actions","/tracks/90daysofdevops/day74":"74. Hello World - Jenkinsfile App Pipeline","/tracks/90daysofdevops/day73":"73. Построение конвейера Jenkins","/tracks/90daysofdevops/day72":"72. Работа с Jenkins","/tracks/90daysofdevops/day71":"71. Введение в Jenkins","/tracks/90daysofdevops/day70":"70. Конвейеры CI/CD","/tracks/90daysofdevops/day69":"69. Ansible - контроллер автоматизации (Tower), AWX, Vault","/tracks/90daysofdevops/day68":"68. Теги, переменные, инвентаризация и конфигурация сервера базы данных","/tracks/90daysofdevops/day67":"67. Роли и развертывание балансировщика нагрузки","/tracks/90daysofdevops/day66":"66. Ansible Playbooks - Часть 2","/tracks/90daysofdevops/day65":"65. Ansible Playbooks - Часть 1","/tracks/90daysofdevops/day64":"64. Ansible Введение","/tracks/90daysofdevops/day63":"63. Инструменты управления конфигурацией - Ansible/Terraform","/tracks/90daysofdevops/day62":"62. Terraform - Тестирование, инструменты и альтернативы","/tracks/90daysofdevops/day61":"61. Kubernetes и множественные среды","/tracks/90daysofdevops/day60":"60. Контейнеры, провайдеры и модули Docker","/tracks/90daysofdevops/day59":"59. Создание виртуальной машины с помощью Terraform","/tracks/90daysofdevops/day58":"58. Язык конфигурации HashiCorp (HCL)","/tracks/90daysofdevops/day57":"57. Введение в Terraform","/tracks/90daysofdevops/day56":"56. Обзор IaC","/tracks/90daysofdevops/day55":"55. State и Ingress в Kubernetes","/tracks/90daysofdevops/day54":"54. Развертывание приложений Kubernetes","/tracks/90daysofdevops/day53":"53. Обзор Rancher","/tracks/90daysofdevops/day52":"52. Настройка многоузлового кластера Kubernetes","/tracks/90daysofdevops/day51":"51. Установка minikube","/tracks/90daysofdevops/day50":"50. Выбор платформы Kubernetes для проекта","/tracks/90daysofdevops/day49":"49. Основы Kubernetes","/tracks/90daysofdevops/day48":"48. Альтернативы Docker","/tracks/90daysofdevops/day47":"47. Сетевое взаимодействие Docker и безопасность","/tracks/90daysofdevops/day46":"46. Docker Compose","/tracks/90daysofdevops/day45":"45. Что из себя представляет оьбраз Docker","/tracks/90daysofdevops/day44":"44. Установка образов Docker в Docker Desktop","/tracks/90daysofdevops/day43":"43. Установка Docker","/tracks/90daysofdevops/day42":"42. Контейнеры","/tracks/90daysofdevops/day41":"41. Рабочий процесс с открытым исходным кодом","/tracks/90daysofdevops/day40":"40. GitHub | GitLab | BitBucket","/tracks/90daysofdevops/day39":"39. Просмотр, удаление, отмена и восстановление","/tracks/90daysofdevops/day38":"38. Staging и Изменения","/tracks/90daysofdevops/day37":"37. Шпаргалка по Git","/tracks/90daysofdevops/day36":"36. Установка и настройка Git","/tracks/90daysofdevops/day35":"35. Git — контроль версий","/tracks/90daysofdevops/day34":"34. Практические скрипты Microsoft Azure","/tracks/90daysofdevops/day33":"33. Сетевые модели Microsoft Azure + Управление Azure","/tracks/90daysofdevops/day32":"32. Модели хранилища Microsoft Azure","/tracks/90daysofdevops/day31":"31. Microsoft Azure Среда выполнения приложений","/tracks/90daysofdevops/day30":"30. Модули безопасности Microsoft Azure","/tracks/90daysofdevops/day29":"29. Знакомство с Microsoft Azure","/tracks/90daysofdevops/day28":"28. DevOps в облаке","/tracks/90daysofdevops/day27":"27. Работа с сетью в Python","/tracks/90daysofdevops/day26":"26. Развертывание виртуальной лаборатории EVE-NG в домашних условиях","/tracks/90daysofdevops/day25":"25. Автоматизация сети с помощью Python","/tracks/90daysofdevops/day24":"24. Автоматизация сети","/tracks/90daysofdevops/day23":"23. Протоколы сети","/tracks/90daysofdevops/day22":"22. Открытая сетевая модель OSI","/tracks/90daysofdevops/day21":"21. DevOps настройка сети","/tracks/90daysofdevops/day20":"20. Настройка рабочей среды DevOps","/tracks/90daysofdevops/day18":"18. Web Сервер и SSH","/tracks/90daysofdevops/day17":"17. Текстовые редакторы Nano/Vim","/tracks/90daysofdevops/day16":"16. Управление системой, файловой системой и хранилищем в Linux","/tracks/90daysofdevops/day15":"15. Команды Linux в DevOps","/tracks/90daysofdevops/day14":"14. DevOps и Linux","/tracks/90daysofdevops/day13":"13. Go - подключение Twitter API","/tracks/90daysofdevops/day12":"12. Golang - чтение данных и указатели","/tracks/90daysofdevops/day11":"11. Переменные и константы в Go","/tracks/90daysofdevops/day10":"10. Окружение Go","/tracks/90daysofdevops/day09":"9. Как работает hello-world на Golang","/tracks/90daysofdevops/day07":"7. DevOps - изучение языка программирования","/tracks/90daysofdevops/day06":"6. DevOps - Истории","/tracks/90daysofdevops/day04":"4. DevOps и Agile","/tracks/90daysofdevops/day03":"3. Ориентированность на приложения","/tracks/90daysofdevops/day02":"2. Задачи DevOps-инженера","/tracks/90daysofdevops/day01":"1. DevOps - общее представление","/tracks/90daysofdevops/_index":"90 дней DevOps","/tracks/90daysofdevops/day19/":"19. Автоматизация задачи с помощью bash-скриптов","/tracks/90daysofdevops/day08/":"8. Настройка DevOps окружения для запуска Hello World на Go","/tracks/90daysofdevops/day05/":"5. Plan > Code > Build > Testing > Release > Deploy > Operate > Monitor","/search/_index":"Search page","/posts/ruGPT-3-notes":"ChatGPT/ruGPT-3","/posts/math-support":"Math Support","/posts/featured-image":"Featured Image","/posts/emoji-support":"Emoji Support","/posts/diagram-support":"Diagram Support","/posts/_index":"Заметки","/posts/trading-indicators/sma":"SMA - Простая скользящая средняя","/posts/python-snippets/":"Сниппеты Python","/posts/pyscript-python-embedded-in-html/":"PyScript - Python, встроенный в HTML","/posts/nextjs-to-github-pages-ations/":"Публикация next.js приложения на github pages","/posts/markdown-syntax/":"Руководство по оформлению Markdown файлов","/posts/interactivebrokers-deposit/":"Пополнение Interactive Brokers с Израильского счета","/posts/integrate-hugo-react/":"Как подключить React .jsx в проект на Hugo","/posts/hugo-add-image-zoomin/":"Увеличение картинки по нажатию в Hugo","/posts/howto-rename-files-in-python/":"Как переименовать файлы в Python","/posts/howto-redirect-to-url/":"Как сделать редирект на другой URL в JavaScript","/posts/howto-install-ubuntu-desktop-on-arm/":"Установка Ubuntu Desktop 22.10 (Kinetic Kudu) на ARM CPU","/posts/howto-install-rhel-9-free/":"Установка Linux RHEL 9","/posts/howto-create-react-electron-app-ts/":"Как создать приложение React-Electron с нуля","/posts/howto-create-deepclone-js/":"Как сделать глубокое клонирование объекта в JavaScript","/posts/google-sheets-2-json/":"Отображение таблицы Google Sheets в JSON","/posts/gallery-example/":"Gallery example","/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":"Разница между Маржинализмом и Меркантилизмом","/posts/economics/diff-forward-contracts-futures":"Разница Валютные форварды и Фьючерсы","/posts/docker-commands/":"Популярные команды Docker","/posts/diploma/":"IT курсы 2020","/posts/cheat-sheet-command-tar/":"Шпаргалка tar архиватор","/posts/archive/":"Posts Archive","/photos/_index":"Фото","/photos/midjourney/":"AI Midjourney generated","/photos/icons/":"Awesome app icons","/photos/ai/":"AI generated","/photos/22-07-02-israel-haifa-bahai-gardens/":"Израиль - Хайфа - Бахайские сады","/p/репатриация":"Чеклист репатриация в Израиль","/p/publications":"Печатные публикации","/p/privacy_ru":"Политика конфиденциальности","/homepage/pages":"Заметки","/homepage/experience":"Path","/homepage/education":"Образование","/homepage/about":"Роман Курновский","/authors/roman-kurnovskii/_index":"Роман Курновский","/authors/michael-cade/_index":"Michael Cade","/apps/_index":"Приложения","/apps/npm/hugo-lunr-ml/":"hugo-lunr-ml","/apps/npm/cognito-token-observer/":"cognito-token-observer","/apps/cloud-exam-quizz/":"Cloud exam Quizz","/apps/brewmate/":"BrewMate","/_home/vintage":"Vintage","/_home/blank":"Blank"},"en":{"/tracks/_index":"Roadmaps","/tracks/disser/utils/text_2_short":"Short description from article","/tracks/aws-certified-developer-associate/questions":"Questions","/tracks/aws-certified-developer-associate/_index":"AWS Certified Developer (DVA-C01 -> DVA-C02)","/tracks/aws-certified-developer-associate/xray/":"X-Ray","/tracks/aws-certified-developer-associate/step-functions/":"Step Functions","/tracks/aws-certified-developer-associate/sqs/_index":"Simple Queue Service","/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":"Fan-Out Orders using Amazon SNS and SQS","/tracks/aws-certified-developer-associate/sns/_index":"Simple Notification Service","/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":"Process Amazon SNS Notifications with AWS Lambda","/tracks/aws-certified-developer-associate/s3/_index":"S3","/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":"Upload a file to S3","/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":"Change metadata of S3 Object","/tracks/aws-certified-developer-associate/s3/grant-access-s3/":"Grant public access to S3 Object","/tracks/aws-certified-developer-associate/s3/delete-from-s3/":"Delete S3 Bucket","/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":"Create S3 Bucket","/tracks/aws-certified-developer-associate/s3/create-folder-s3/":"Create a folder inside S3 Bucket","/tracks/aws-certified-developer-associate/route53/":"Route 53","/tracks/aws-certified-developer-associate/rds/":"RDS","/tracks/aws-certified-developer-associate/opensearch-service/_index":"OpenSearch Service","/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":"Build A Log Aggregation System in AWS","/tracks/aws-certified-developer-associate/lambda/":"Lambda","/tracks/aws-certified-developer-associate/kms/_index":"Key Management Service","/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":"Encrypting S3 Objects Using SSE-KMS","/tracks/aws-certified-developer-associate/kinesis/_index":"Kinesis","/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":"Sessionizing Clickstream Data with Amazon Kinesis Data Analytics","/tracks/aws-certified-developer-associate/iam/":"IAM","/tracks/aws-certified-developer-associate/fis/":"Fault Injection Simulator","/tracks/aws-certified-developer-associate/fargate/":"Fargate","/tracks/aws-certified-developer-associate/eventbridge/":"EventBridge","/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":"Elastic Load Balancing","/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":"Create Classic Load Balancer","/tracks/aws-certified-developer-associate/elasticbeanstalk/":"Elastic Beanstalk","/tracks/aws-certified-developer-associate/elasticache/":"ElastiCache","/tracks/aws-certified-developer-associate/eks/":"Elastic Kubernetes Service","/tracks/aws-certified-developer-associate/ecs/":"Elastic Container Service","/tracks/aws-certified-developer-associate/ecr/":"Elastic Container Registry","/tracks/aws-certified-developer-associate/ec2/":"EC2","/tracks/aws-certified-developer-associate/dynamodb/_index":"DynamoDB","/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":"Introduction to DynamoDB","/tracks/aws-certified-developer-associate/cognito/":"Cognito","/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":"Develop and Deploy an Application with AWS CodeStar","/tracks/aws-certified-developer-associate/codestar/_index":"CodeStar","/tracks/aws-certified-developer-associate/codepipeline/":"CodePipeline","/tracks/aws-certified-developer-associate/codeguru/_index":"CodeGuru","/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":"Automating Code Reviews with Amazon CodeGuru","/tracks/aws-certified-developer-associate/codedeploy/":"CodeDeploy","/tracks/aws-certified-developer-associate/codecommit/_index":"CodeCommit","/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":"Introduction to CodeCommit","/tracks/aws-certified-developer-associate/codebuild/":"CodeBuild","/tracks/aws-certified-developer-associate/codeartifact/":"CodeArtifact","/tracks/aws-certified-developer-associate/cloudwatch/_index":"CloudWatch","/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":"Introduction to CloudWatch","/tracks/aws-certified-developer-associate/cloudfront/_index":"CloudFront","/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":"Configuring a Static Website With S3 And CloudFront","/tracks/aws-certified-developer-associate/cloudformation/_index":"CloudFormation","/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":"Initializing Amazon EC2 Instances with AWS CloudFormation Init","/tracks/aws-certified-developer-associate/api-gateway/":"API Gateway","/tracks/archive/":"Docs","/tracks/algorithms-101/plan":"Plan","/tracks/algorithms-101/leetcode75":"LeetCode Top 75","/tracks/algorithms-101/algorithms":"Algorithms","/tracks/algorithms-101/_index":"Algorithms 101","/tracks/algorithms-101/leetcode/_index":"LeetCode","/tracks/algorithms-101/leetcode/medium/_index":"Medium","/tracks/algorithms-101/leetcode/medium/8":"8. String to Integer (atoi)","/tracks/algorithms-101/leetcode/medium/78":"78. Subsets","/tracks/algorithms-101/leetcode/medium/75":"75. Sort Colors","/tracks/algorithms-101/leetcode/medium/73":"73. Set Matrix Zeroes","/tracks/algorithms-101/leetcode/medium/7":"7. Reverse Integer","/tracks/algorithms-101/leetcode/medium/62":"62. Unique Paths","/tracks/algorithms-101/leetcode/medium/56":"56. Merge Intervals","/tracks/algorithms-101/leetcode/medium/55":"55. Jump Game","/tracks/algorithms-101/leetcode/medium/53":"53. Maximum Subarray","/tracks/algorithms-101/leetcode/medium/50":"50. Pow(x, n)","/tracks/algorithms-101/leetcode/medium/5":"5. Longest Palindromic Substring","/tracks/algorithms-101/leetcode/medium/49":"49. Group Anagrams","/tracks/algorithms-101/leetcode/medium/48":"48. Rotate Image","/tracks/algorithms-101/leetcode/medium/46":"46. Permutations","/tracks/algorithms-101/leetcode/medium/38":"38. Count and Say","/tracks/algorithms-101/leetcode/medium/36":"36. Valid Sudoku","/tracks/algorithms-101/leetcode/medium/34":"34. Find First and Last Position of Element in Sorted Array","/tracks/algorithms-101/leetcode/medium/33":"33. Search in Rotated Sorted Array","/tracks/algorithms-101/leetcode/medium/3":"3. Longest Substring Without Repeating Characters","/tracks/algorithms-101/leetcode/medium/29":"29. Divide Two Integers","/tracks/algorithms-101/leetcode/medium/2390":"2390. Removing Stars From a String","/tracks/algorithms-101/leetcode/medium/22":"22. Generate Parentheses","/tracks/algorithms-101/leetcode/medium/2":"2. Add Two Numbers","/tracks/algorithms-101/leetcode/medium/19":"19. Remove Nth Node From End of List","/tracks/algorithms-101/leetcode/medium/189":"189. Rotate Array","/tracks/algorithms-101/leetcode/medium/17":"17. Letter Combinations of a Phone Number","/tracks/algorithms-101/leetcode/medium/166":"166. Fraction to Recurring Decimal","/tracks/algorithms-101/leetcode/medium/1657":"1657. Determine if Two Strings Are Close","/tracks/algorithms-101/leetcode/medium/152":"152. Maximum Product Subarray","/tracks/algorithms-101/leetcode/medium/151":"151. Reverse Words in a String","/tracks/algorithms-101/leetcode/medium/15":"15. 3Sum","/tracks/algorithms-101/leetcode/medium/1493":"1493. Longest Subarray of 1's After Deleting One Element","/tracks/algorithms-101/leetcode/medium/148":"148. Sort List","/tracks/algorithms-101/leetcode/medium/146":"146. LRU Cache","/tracks/algorithms-101/leetcode/medium/1456":"1456. Maximum Number of Vowels in a Substring of Given Length","/tracks/algorithms-101/leetcode/medium/139":"139. Word Break","/tracks/algorithms-101/leetcode/medium/138":"138. Copy List with Random Pointer","/tracks/algorithms-101/leetcode/medium/134":"134. Gas Station","/tracks/algorithms-101/leetcode/medium/131":"131. Palindrome Partitioning","/tracks/algorithms-101/leetcode/medium/130":"130. Surrounded Regions","/tracks/algorithms-101/leetcode/medium/128":"128. Longest Consecutive Sequence","/tracks/algorithms-101/leetcode/medium/122":"122. Best Time to Buy and Sell Stock II","/tracks/algorithms-101/leetcode/medium/116":"116. Populating Next Right Pointers in Each Node","/tracks/algorithms-101/leetcode/medium/735/":"735. Asteroid Collision","/tracks/algorithms-101/leetcode/medium/443/":"443. String Compression","/tracks/algorithms-101/leetcode/medium/394/":"394. Decode String","/tracks/algorithms-101/leetcode/medium/334/":"334. Increasing Triplet Subsequence","/tracks/algorithms-101/leetcode/medium/2844/":"2844. Minimum Operations to Make a Special Number","/tracks/algorithms-101/leetcode/medium/2841/":"2841. Maximum Sum of Almost Unique Subarray","/tracks/algorithms-101/leetcode/medium/2840/":"2840. Check if Strings Can be Made Equal With Operations II","/tracks/algorithms-101/leetcode/medium/238/":"238. Product of Array Except Self","/tracks/algorithms-101/leetcode/medium/2352/":"2352. Equal Row and Column Pairs","/tracks/algorithms-101/leetcode/medium/11/":"11. Container With Most Water","/tracks/algorithms-101/leetcode/medium/1004/":"1004. Max Consecutive Ones III","/tracks/algorithms-101/leetcode/hard/_index":"Hard","/tracks/algorithms-101/leetcode/hard/2842/":"2842. Count K-Subsequences of a String with Maximum Beauty","/tracks/algorithms-101/leetcode/easy/_index":"Easy","/tracks/algorithms-101/leetcode/easy/94":"94. Binary Tree Inorder Traversal","/tracks/algorithms-101/leetcode/easy/88":"88. Merge Sorted Array","/tracks/algorithms-101/leetcode/easy/724":"724. Find Pivot Index","/tracks/algorithms-101/leetcode/easy/70":"70. Climbing Stairs","/tracks/algorithms-101/leetcode/easy/69":"69. Sqrt(x)","/tracks/algorithms-101/leetcode/easy/66":"66. Plus One","/tracks/algorithms-101/leetcode/easy/643":"643. Maximum Average Subarray I","/tracks/algorithms-101/leetcode/easy/26":"26. Remove Duplicates from Sorted Array","/tracks/algorithms-101/leetcode/easy/234":"234. Palindrome Linked List","/tracks/algorithms-101/leetcode/easy/2215":"2215. Find the Difference of Two Arrays","/tracks/algorithms-101/leetcode/easy/21":"21. Merge Two Sorted Lists","/tracks/algorithms-101/leetcode/easy/202":"202. Happy Number","/tracks/algorithms-101/leetcode/easy/20":"20. Valid Parentheses","/tracks/algorithms-101/leetcode/easy/191":"191. Number of 1 Bits","/tracks/algorithms-101/leetcode/easy/190":"190. Reverse Bits","/tracks/algorithms-101/leetcode/easy/171":"171. Excel Sheet Column Number","/tracks/algorithms-101/leetcode/easy/160":"160. Intersection of Two Linked Lists","/tracks/algorithms-101/leetcode/easy/1431":"1431. Kids With the Greatest Number of Candies","/tracks/algorithms-101/leetcode/easy/141":"141. Linked List Cycle","/tracks/algorithms-101/leetcode/easy/14":"14. Longest Common Prefix","/tracks/algorithms-101/leetcode/easy/13":"13. Roman to Integer","/tracks/algorithms-101/leetcode/easy/1207":"1207. Unique Number of Occurrences","/tracks/algorithms-101/leetcode/easy/1":"1. Two Sum","/tracks/algorithms-101/leetcode/easy/9/":"9. Palindrome Number","/tracks/algorithms-101/leetcode/easy/605/":"605. Can Place Flowers","/tracks/algorithms-101/leetcode/easy/392/":"392. Is Subsequence","/tracks/algorithms-101/leetcode/easy/345/":"345. Reverse Vowels of a String","/tracks/algorithms-101/leetcode/easy/2839/":"2839. Check if Strings Can be Made Equal With Operations I","/tracks/algorithms-101/leetcode/easy/283/":"283. Move Zeroes","/tracks/algorithms-101/leetcode/easy/1768/":"1768. Merge Strings Alternately","/tracks/algorithms-101/leetcode/easy/1732/":"1732. Find the Highest Altitude","/tracks/algorithms-101/leetcode/easy/1071/":"1071. Greatest Common Divisor of Strings","/tracks/algorithms-101/data-structures/segment-tree":"Segment Tree","/tracks/algorithms-101/data-structures/binary-tree":"Binary Tree","/tracks/algorithms-101/data-structures/_index":"Data Structures","/tracks/algorithms-101/codeforces/plan":"Plan","/tracks/algorithms-101/codeforces/cp-template":"Python template for contests","/tracks/algorithms-101/codeforces/_index":"Codeforces","/tracks/algorithms-101/codeforces/contests/_index":"Contests","/tracks/algorithms-101/codeforces/contests/867-div-3-1822":"Round #867/1822 (Div. 3)","/tracks/algorithms-101/codeforces/contests/849-div-4-1791":"Round #849/1791 (Div. 4)","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":"02: Combinatorics & Geometry","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":"1787A - Exponential Equation - 800","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":"1777B - Emordnilap - 900","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":"1777A - Everybody Likes Good Arrays! - 800","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":"1773F - Football - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":"01: Implementation & Greedy","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":"1809A - Garland - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":"1807C - Find and Replace - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":"1807B - Grab the Candies - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":"1807A - Plus or Minus - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":"1799A - Recent Actions - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":"1798A - Showstopper - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":"1796B - One and Two - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":"1788A - One and Two - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":"1778A - Flip Flop Sum - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":"1772A - A+B? - 800","/stories/_index":"Stories","/stories/004-trading-bot-refactor-orders":"Enhancing Trading Bot with Abstraction and Async Management","/stories/002-openvpn-aws-ec2-setup":"Setup OpenVPN Server on AWS EC2 Ubuntu","/stories/001-rediscovering-backtracking-algo":"Visualize Algorithms - Rediscovering Backtracking","/stories/003-trading-bot-gui-init-tkinter/":"Creating a GUI for a Trading Bot","/search/_index":"Search page","/posts/python-groovy-lint-format-setup":"Linters & Formatters Setup for Python, Groovy, JavaScript in VSCode","/posts/python-docstring-templates":"Python docstring templates","/posts/python-bitwise-operators":"Python bitwise operators","/posts/other-snippets":"Some code snippets","/posts/js-snippets":"JavaScript code snippets","/posts/js-convert-array-to-dict":"JavaScript: convert array of objects to dictionary","/posts/hugo-add-copy-button-on-highlight-block":"How to add copy code button on HUGO highligh code block","/posts/howto-render-notebook-in-hugo":"How to Render Jupyter Notebooks in Hugo with a Custom Shortcode","/posts/howto-publish-ts-npm-project":"How to publish typescript package to npm registry","/posts/howto-publish-js-npm-project":"How to publish JavaScript package to npm registry","/posts/git-snippets":"Git snippets","/posts/code-style":"Code style notes","/posts/bash-snippets":"Bash code snippets","/posts/_index":"Notes","/posts/vps-docker-subdomains-setup/":"Setup subdomains on VPS CentOS","/posts/tree-vs-trie-data-structures/":"Difference between Tries and Trees?","/posts/trading-indicators/stochastic_oscillator":"Stochastic Oscillator - Momentum Indicator","/posts/trading-indicators/sma":"SMA - Simple Moving Average","/posts/trading-indicators/rsi":"RSI - Relative Strength Index","/posts/trading-indicators/macd":"MACD - Moving Average Convergence Divergence","/posts/trading-indicators/ema":"EMA - Exponential Moving Average","/posts/trading-indicators/bollinger_bands":"Bollinger Bands - Volatility and Price Level Indicator","/posts/trading-indicators/atr":"Average True Range (ATR) - Volatility Indicator","/posts/trading-indicators/_index":"Trading indicators","/posts/serverless-flask-lambda-api-gateway-mongodb/":"Serverless: Flask+API Gateway+Lambda+MongoDB","/posts/python-snippets/":"Python Cheat Sheet","/posts/markdown-syntax/":"Markdown Cheat Sheet","/posts/mac-setup-development/":"Mac Setup 2022","/posts/linux-interactive-non-interactive-users/":"Interactive vs. Non-Interactive Users in Linux","/posts/interactivebrokers-deposit/":"Deposit Interactive Brokers from Israel Discount bank","/posts/hugo-shortcode-examples/img":"img","/posts/hugo-shortcode-examples/chart":"chart","/posts/hugo-shortcode-examples/_index":"Hugo shortcode examples","/posts/hugo-add-search-lunr-popup/":"Add search to Hugo multilingual static site with Lunr","/posts/hugo-add-image-zoomin/":"Hugo resize a picture on click","/posts/howto-tkinter-interactive-plotly-chart/":"How to Create Interactive Financial Charts using Tkinter and Plotly","/posts/howto-rename-files-in-python/":"How to rename files in Python","/posts/howto-install-rhel-9-free/":"How to Download and Install Linux RHEL 9 for Free","/posts/howto-create-react-electron-app-ts/":"How to Create a React-Electron Application From Scratch","/posts/howto-create-deepclone-js/":"How to create a deep clone of an object in JavaScript","/posts/how-to-upload-app-to-sourceforge/":"How to upload an opensource application to SourceForge","/posts/docker-commands/":"Top Docker Commands","/posts/diploma/":"IT courses 2020","/posts/cloud-exam-quizz/amplify-setup-project":"AWS Amplify - project setup with Github","/posts/cloud-exam-quizz/amplify-custom-domain":"AWS Amplify - Set custom domain","/posts/cheat-sheet-command-tar/":"Tar command Cheat Sheet","/posts/archive/":"Posts Archive","/photos/_index":"Images","/photos/midjourney/":"AI Midjourney generated","/photos/ai/":"AI generated","/photos/22-07-02-israel-haifa-bahai-gardens/":"Israel - Haifa - Bahai Gardens","/p/supportme":"Support me","/p/links":"Links","/homepage/pages":"Posts","/homepage/experience":"Experience","/homepage/education":"Education","/homepage/about":"Roman Kurnovskii","/authors/roman-kurnovskii/_index":"Roman Kurnovskii","/apps/_index":"Apps","/apps/npm/hugo-lunr-ml/":"hugo-lunr-ml","/apps/npm/cognito-token-observer/":"cognito-token-observer","/apps/cloud-exam-quizz/":"Cloud exam Quizz","/apps/brewmate/":"BrewMate"}}} \ No newline at end of file +{"ru":{"version":"2.3.9","fields":["title","content","description"],"fieldVectors":[["title//tracks/_index",[0,5.843]],["content//tracks/_index",[1,2.727]],["description//tracks/_index",[]],["title//tracks/webrtc/unified-plan-transition-guide",[2,1.577,3,2.806,4,2.561,5,2.919,6,0.132,7,1.577]],["content//tracks/webrtc/unified-plan-transition-guide",[2,4.453,3,7.492,4,7.063,5,5.669,6,0.351,7,3.269,8,2.456,9,3.87,10,4.832,11,3.724,12,2.854,13,6.332,14,1.608,15,1.98,16,6.602,17,5.262,18,1.847,19,2.995,20,9.445,21,5.346,22,5.346,23,5.346,24,5.346,25,2.382,26,1.116,27,1.89,28,5.346,29,1.912,30,2.3,31,3.742,32,1.78,33,2.873,34,2.215,35,2.96,36,4.038,37,4.407,38,1.147,39,5.346,40,5.346,41,3.87,42,4.024,43,4.301,44,1.659,45,2.764,46,2.62,47,3.6,48,4.832,49,1.457,50,3.134,51,4.832,52,2.348,53,1.847,54,3.726,55,2.932,56,3.218,57,2.739,58,1.712,59,4.038,60,4.407,61,5.346,62,5.346,63,3.212,64,1.694,65,0.931,66,4.493,67,2.479,68,1.337,69,5.346,70,1.748,71,1.642,72,2.932,73,1.98,74,1.628,75,1.715,76,4.24,77,2.314,78,3.212,79,7.336,80,1.187,81,4.693,82,4.038,83,2.004,84,7.039,85,5.346,86,10.325,87,4.832,88,4.493,89,2.418,90,3.6,91,2.456,92,4.493,93,4.493,94,3.134,95,3.87,96,1.689,97,5.346,98,4.24,99,4.493,100,6.953,101,2.456,102,1.376,103,5.163,104,7.336,105,2.819,106,5.346,107,1.429,108,7.336,109,1.868,110,1.585,111,2.099,112,2.659,113,3.192,114,0.974,115,3.87,116,3.062,117,5.346,118,2.038,119,5.346,120,2.037,121,4.24,122,3.387,123,8.375,124,1.104,125,5.346,126,1.643,127,2.817,128,3.87,129,5.346,130,6.63,131,5.346,132,7.039,133,5.163,134,5.346,135,4.832,136,2.155,137,1.385,138,5.818,139,1.288,140,5.346,141,2.12,142,5.346,143,2.817,144,2.19,145,5.346,146,2.714,147,1.389,148,4.493,149,2.576,150,5.346,151,6.63,152,4.493,153,4.493,154,3.134,155,3.296,156,4.038,157,4.832,158,2.054,159,1.847,160,3.488,161,1.676,162,5.346,163,7.569,164,1.443,165,3.212,166,4.24,167,5.415,168,5.346,169,3.296,170,5.346,171,5.346,172,2.382,173,1.363,174,7.569,175,0.576,176,1.084,177,5.346,178,4.038,179,2.666,180,5.346,181,3.87,182,3.387,183,2.927,184,3.87,185,5.346,186,5.346]],["description//tracks/webrtc/unified-plan-transition-guide",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/turn-server",[189,4.518,190,1.84]],["content//tracks/webrtc/turn-server",[6,0.408,12,2.877,26,1.125,41,5.354,65,1.578,67,2.5,75,1.721,81,4.144,84,6.216,118,2.517,136,1.687,144,3.03,175,0.797,189,7.812,190,3.182,191,1.718,192,3.689,193,5.354,194,7.614,195,5.443,196,2.5,197,2.419,198,3.625,199,5.866,200,7.396,201,3.071,202,2.055,203,2.393,204,2.527,205,4.057,206,1.958,207,3.625,208,3.825,209,6.685,210,6.685,211,4.826,212,2.585,213,4.337,214,3.248,215,3.689,216,1.816,217,2.295,218,4.237,219,2.671,220,4.56,221,1.903,222,2.614,223,7.396,224,2.585,225,2.225,226,3.113,227,2.676,228,6.216,229,3.03,230,1.718,231,4.826,232,4.826,233,7.396,234,1.555,235,2.782,236,6.216,237,7.396,238,3.565,239,7.396,240,2.676,241,4.444,242,6.595,243,6.843,244,3.898,245,1.885,246,1.612,247,3.346,248,4.774,249,7.396,250,6.685,251,3.625,252,7.396,253,7.396,254,4.981,255,6.685,256,4.826,257,3.398,258,7.396]],["description//tracks/webrtc/turn-server",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/testing",[12,2.106,75,0.952,259,2.005]],["content//tracks/webrtc/testing",[6,0.398,12,3.44,13,5.603,26,1.082,34,1.667,35,2.514,75,1.25,78,4.273,138,7.013,144,3.942,175,1.037,190,2.607,191,2.054,212,2.485,216,1.746,235,2.715,245,1.813,246,1.55,259,2.634,260,3.901,261,3.868,262,6.379,263,4.07,264,2.485,265,2.732,266,5.148,267,2.699,268,2.66,269,4.506,270,4.237,271,3.985,272,4.107,273,7.111,274,5.641,275,5.977,276,6.428,277,6.428,278,3.677,279,9.622,280,5.977,281,4.789,282,5.148,283,7.111,284,5.977,285,6.163,286,6.401,287,7.992,288,1.554,289,1.876,290,5.451,291,6.428,292,4.384,293,3.372,294,7.111,295,1.796,296,5.641,297,3.677,298,7.111,299,5.148,300,2.603,301,2.732,302,3.267,303,5.977,304,3.61,305,3.267,306,4.789,307,2.875,308,6.428,309,7.111,310,7.111,311,5.605,312,7.111,313,2.633,314,7.111,315,7.111,316,7.111,317,7.111,318,7.111,319,3.671,320,7.111,321,7.111,322,7.111,323,7.111,324,7.111,325,7.111,326,7.111,327,7.111,328,7.111,329,4.957,330,7.111]],["description//tracks/webrtc/testing",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/remote-streams",[331,2.02,332,3.169]],["content//tracks/webrtc/remote-streams",[6,0.412,18,2.494,32,1.425,41,5.226,49,1.967,53,2.494,73,1.948,78,4.337,81,5.826,83,3.346,89,3.265,98,7.684,112,1.967,136,1.647,172,3.217,191,1.677,196,3.514,203,2.888,234,1.518,240,2.611,247,3.265,248,5.333,257,3.316,286,5.226,293,3.422,305,4.099,319,3.705,331,3.428,332,5.279,333,2.413,334,3.6,335,4.045,336,3.733,337,2.983,338,4.71,339,7.218,340,3.88,341,4.71,342,3.038,343,1.789,344,0.762,345,7.501,346,5.725,347,7.218,348,7.218,349,7.218,350,7.218,351,1.967,352,2.336,353,4.45,354,1.911,355,2.336,356,0.938,357,7.218,358,3.733,359,2.739,360,8.066,361,3.88,362,1.911,363,7.218,364,6.524,365,6.524,366,3.422,367,7.218,368,7.218,369,3.316,370,3.217,371,6.22,372,3.038,373,7.218,374,1.647,375,2.361,376,3.125,377,2.844,378,3.863,379,5.226,380,5.031,381,2.881,382,4.574,383,2.24,384,6.524,385,7.218,386,7.218,387,7.218,388,5.226,389,4.45,390,8.924,391,7.218,392,7.218]],["description//tracks/webrtc/remote-streams",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/peer-connections",[305,2.867,382,3.955]],["content//tracks/webrtc/peer-connections",[3,5.753,6,0.418,12,3.777,15,2.687,26,0.627,29,2.18,35,2.832,38,1.337,41,4.414,56,3.079,57,1.253,65,0.719,67,2.06,68,0.751,71,2.461,73,1.113,74,1.353,75,1.275,78,2.478,80,1.61,81,5.533,84,3.466,89,3.281,90,2.777,91,3.332,92,5.124,93,3.466,111,1.18,118,1.146,124,0.852,137,1.151,141,1.192,144,2.498,164,1.957,173,1.051,175,0.864,176,1.471,189,6.19,190,2.862,191,1.416,192,3.041,193,2.986,196,3.543,201,3.012,202,1.146,203,2.347,204,1.409,205,2.262,206,1.614,207,2.022,209,5.51,210,3.728,211,3.978,212,1.441,213,3.575,217,1.28,218,2.363,225,1.241,227,2.206,232,2.691,234,1.282,235,1.872,240,3.512,241,2.478,246,1.747,247,3.868,248,4.88,250,3.728,251,2.022,257,4.111,288,1.275,293,2.891,303,3.466,305,4.783,307,1.667,331,2.997,333,2.038,335,3.416,337,2.424,344,0.435,346,7.099,355,1.335,362,1.092,364,7.242,366,3.439,374,1.655,381,3.412,382,6.024,388,5.801,389,2.543,393,1.645,394,5.801,395,2.173,396,2.262,397,1.051,398,1.955,399,6.555,400,2.986,401,2.543,402,2.173,403,2.691,404,2.777,405,3.466,406,2.094,407,9.812,408,1.785,409,6.782,410,1.924,411,2.173,412,7.944,413,3.095,414,3.153,415,6.423,416,5.124,417,4.358,418,6.097,419,4.253,420,2.543,421,1.785,422,1.172,423,1.266,424,2.173,425,1.458,426,2.262,427,2.787,428,2.875,429,2.363,430,4.124,431,1.335,432,3.053,433,2.133,434,3.466,435,2.133,436,3.115,437,1.625,438,4.124,439,1.955,440,4.124,441,1.811,442,1.988,443,6.097,444,2.543,445,3.271,446,3.271,447,3.466,448,2.777,449,4.124,450,4.124,451,7.253,452,5.378,453,5.055,454,3.978,455,5.51,456,2.777,457,4.124,458,2.777,459,1.394,460,3.728,461,2.564,462,1.071,463,4.124,464,1.475,465,2.057,466,3.271,467,1.253,468,1.712,469,3.728,470,1.409,471,3.755,472,2.402,473,2.801,474,1.988,475,6.097,476,2.433,477,3.682,478,1.811,479,1.132,480,3.115,481,4.732,482,1.924,483,3.728,484,3.728,485,4.69,486,4.732,487,2.938,488,2.372,489,1.955,490,1.511,491,3.466,492,2.133,493,4.124,494,2.022,495,4.124,496,5.51,497,4.124,498,4.124,499,4.124,500,4.124,501,4.414,502,4.124,503,4.124,504,4.124,505,4.124,506,2.986,507,1.32,508,3.728,509,3.466,510,4.124,511,4.124,512,4.124,513,4.605,514,4.124,515,4.124,516,4.124,517,2.022,518,1.307,519,1.712,520,2.478,521,2.613,522,4.124,523,4.124,524,4.124,525,1.894,526,2.777,527,2.363,528,2.691,529,4.836,530,1.894,531,3.466,532,2.986,533,3.466,534,2.986,535,1.022,536,0.758,537,3.271,538,2.777,539,2.363,540,1.736,541,2.173,542,1.307,543,6.097,544,2.363,545,2.478,546,4.814,547,4.124,548,2.451,549,4.124,550,1.604,551,2.691,552,5.124,553,2.311,554,2.133,555,1.604,556,1.307,557,3.466,558,2.311,559,2.986,560,1.69,561,3.728,562,2.543,563,2.986,564,2.363,565,3.728,566,4.124,567,7.186,568,2.478,569,2.986,570,4.836,571,4.358,572,4.124,573,5.51,574,4.124,575,1.736,576,4.124,577,4.124,578,3.115,579,4.124,580,4.124,581,4.124,582,2.478,583,2.478,584,4.124,585,2.691,586,4.124]],["description//tracks/webrtc/peer-connections",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/media-devices",[341,4.072,587,3.059]],["content//tracks/webrtc/media-devices",[6,0.426,12,1.606,15,2.26,18,2.77,19,2.313,26,0.628,32,1.205,34,1.701,35,2.565,38,0.954,54,2.877,56,3.08,63,4.36,65,0.719,67,2.062,68,0.752,73,1.958,74,1.354,75,1.276,78,4.36,98,3.274,110,1.318,111,1.181,112,1.125,113,1.395,118,1.147,126,1.626,149,1.989,173,1.052,175,0.445,191,1.417,192,2.059,198,2.99,203,1.974,216,1.014,221,1.062,224,1.443,240,2.9,241,2.48,245,1.85,246,1.33,247,4.05,248,5.59,261,1.586,264,1.443,265,1.586,267,1.566,271,3.418,276,3.731,281,4.887,282,6.482,286,5.253,288,0.726,292,5.52,293,4.392,311,2.096,313,1.229,319,3.552,332,3.684,333,1.38,336,2.134,338,5.581,341,6.205,346,7.101,352,1.336,356,0.536,366,1.957,369,1.896,370,1.84,371,5.962,375,1.35,378,1.787,388,6.482,389,2.545,397,1.052,398,2.892,406,2.096,417,2.48,424,2.175,431,1.974,441,2.679,462,1.585,467,1.255,468,1.714,470,2.085,473,1.896,478,1.813,487,1.989,490,1.023,492,4.79,530,1.896,536,0.759,540,2.568,542,1.308,560,1.691,569,2.988,570,3.274,571,2.48,578,4.608,587,5.305,588,8.016,589,5.673,590,5.803,591,4.128,592,2.365,593,1.035,594,2.988,595,1.548,596,5.514,597,2.616,598,3.37,599,6.101,600,1.397,601,2.48,602,3.155,603,4.474,604,3.279,605,2.877,606,2.207,607,7.731,608,2.877,609,6.559,610,3.469,611,2.656,612,1.896,613,7.245,614,8.016,615,4.128,616,6.101,617,7.257,618,7.257,619,8.372,620,4.598,621,5.514,622,4.128,623,2.331,624,4.128,625,4.252,626,1.854,627,3.097,628,2.363,629,4.128,630,3.469,631,3.731,632,4.252,633,4.128,634,4.128,635,2.017,636,2.085,637,1.691,638,1.896,639,2.175,640,1.411,641,3.118,642,4.128,643,2.693,644,6.101,645,2.219,646,1.813,647,1.787,648,1.606,649,2.988,650,2.78,651,4.128,652,4.128,653,4.128,654,3.274,655,1.443,656,8.016,657,4.128,658,8.016,659,4.128,660,2.988,661,8.016,662,8.016,663,4.192,664,4.128,665,7.257,666,8.776,667,6.101,668,4.608,669,7.257,670,2.365,671,3.731,672,4.128,673,4.128,674,3.274,675,1.217,676,4.128,677,4.128,678,3.155,679,3.118,680,3.118,681,2.545,682,4.128,683,4.128,684,4.128,685,4.128,686,4.128,687,4.128,688,4.128,689,4.128,690,4.128,691,4.128,692,4.128,693,4.128,694,4.128,695,3.274,696,2.78,697,3.731,698,2.988,699,4.128,700,4.128,701,2.545,702,1.896,703,4.128,704,4.128,705,4.128,706,4.128,707,4.128,708,4.9,709,2.365,710,3.731,711,3.118,712,3.469,713,3.665,714,3.215,715,5.514,716,1.926,717,6.101,718,1.511,719,4.128,720,3.274,721,2.693,722,3.981,723,7.257,724,7.257,725,4.128,726,4.128,727,4.128,728,4.128,729,3.118,730,3.215,731,3.118,732,4.128,733,2.175,734,3.274,735,3.469,736,4.128,737,4.128,738,4.128,739,3.731,740,3.731,741,1.626,742,1.093,743,6.099,744,3.118,745,2.183,746,4.128,747,4.128,748,4.128,749,4.128,750,2.175,751,3.731,752,5.514,753,6.101,754,3.731,755,1.84,756,1.35,757,2.023,758,0.908,759,2.545,760,2.264,761,4.128,762,2.78,763,4.128,764,4.128]],["description//tracks/webrtc/media-devices",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/media-capture-and-constraints",[290,3.338,341,3.532,708,3.101]],["content//tracks/webrtc/media-capture-and-constraints",[6,0.42,12,2.057,14,2.19,18,1.827,25,2.356,32,1.438,34,1.24,35,1.869,38,0.827,56,2.031,58,1.693,63,3.176,65,0.921,67,2.814,70,1.729,73,2.247,75,1.709,78,5.39,80,1.174,81,2.962,98,7.713,103,3.259,107,1.413,110,1.573,112,2.444,113,1.787,118,1.469,136,1.899,137,0.998,139,1.274,141,1.528,148,4.443,172,2.356,175,0.785,191,1.228,196,1.787,197,1.729,205,2.9,212,1.848,221,2.142,229,2.166,232,3.45,235,1.623,240,3.404,241,5.003,245,1.856,265,3.199,278,2.734,281,3.56,284,4.443,286,3.827,288,0.929,290,5.531,292,5.8,293,4.253,301,2.031,307,2.943,331,1.711,332,5.058,335,2.962,337,1.767,338,4.75,341,6.623,344,0.769,356,0.687,360,4.778,370,2.356,371,5.803,376,2.289,377,2.083,384,8.108,393,2.247,411,2.786,422,1.4,433,4.306,453,3.685,462,1.373,464,1.89,470,1.807,474,2.548,488,1.729,490,1.31,506,3.827,526,3.56,536,1.531,587,4.883,589,5.684,590,6.494,596,6.58,600,0.921,602,2.734,603,5.133,604,2.842,606,2.634,612,3.344,635,1.748,648,2.057,650,3.56,655,2.544,666,7.526,671,4.778,708,5.972,713,3.176,714,2.786,715,4.778,729,6.29,730,3.837,731,6.29,735,6.998,757,4.397,758,1.163,765,3.994,766,3.259,767,3.1,768,6.998,769,3.994,770,3.029,771,4.171,772,5.287,773,3.994,774,1.807,775,5.287,776,5.287,777,2.467,778,1.4,779,2.868,780,5.287,781,2.429,782,5.287,783,3.56,784,3.45,785,1.657,786,3.994,787,3.725,788,4.778,789,5.287,790,5.287,791,5.287,792,5.287,793,1.827,794,5.287,795,2.356,796,5.803,797,5.287,798,5.287,799,2.591,800,2.429,801,5.287,802,9.724,803,3.35,804,5.287,805,2.256,806,5.287,807,4.443,808,7.28,809,4.193,810,7.28,811,7.28,812,5.499,813,7.28,814,5.074,815,7.28,816,7.28,817,1.657,818,3.56,819,2.786,820,5.287,821,3.685,822,5.287,823,2.684,824,5.287,825,5.287,826,5.287,827,3.176,828,2.637,829,3.994,830,7.28,831,3.685,832,2.684,833,5.287,834,3.994,835,4.778,836,4.193,837,5.287,838,4.778,839,5.287,840,2.467,841,3.994,842,2.786,843,2.195,844,2.734,845,2.225,846,5.287,847,5.287,848,2.734,849,1.112,850,5.287,851,3.827,852,2.429,853,5.287,854,4.443,855,3.35,856,2.195,857,2.467]],["description//tracks/webrtc/media-capture-and-constraints",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/data-channels",[344,0.659,521,3.955]],["content//tracks/webrtc/data-channels",[6,0.426,12,2.467,19,3.553,32,1.252,34,1.928,35,2.242,41,6.987,50,3.718,56,2.436,58,2.03,81,5.112,103,3.909,175,0.683,196,2.143,201,2.633,212,2.216,216,1.557,224,2.216,240,3.3,241,3.81,248,5.831,257,4.593,274,5.03,311,4.9,331,2.66,337,2.12,343,1.572,344,1.056,352,2.052,366,4.858,369,2.913,381,2.531,389,6.165,401,3.909,403,6.298,413,4.174,435,4.717,437,3.594,445,5.03,452,6.266,456,5.536,468,2.633,472,2.498,481,5.364,488,2.689,496,8.724,521,4.018,536,1.166,552,5.33,568,3.81,606,2.294,655,2.873,670,4.71,714,3.342,722,5.004,795,2.826,807,7.667,858,3.633,859,3.509,860,6.341,861,10,862,9.123,863,6.341,864,3.219,865,6.341,866,6.341,867,2.12,868,6.341,869,4.79,870,8.221,871,8.221,872,8.221,873,8.221,874,5.731,875,5.73,876,6.341,877,8.221,878,6.341,879,8.221,880,4.138,881,6.341,882,3.279,883,5.33,884,6.341,885,6.341,886,3.633,887,4.42,888,4.591,889,6.341,890,6.341,891,6.341,892,5.33,893,6.341,894,6.341,895,5.33,896,3.909,897,5.731,898,6.341,899,6.341,900,6.341,901,2.377]],["description//tracks/webrtc/data-channels",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/_index",[12,2.106,187,2.654,188,2.413]],["content//tracks/webrtc/_index",[12,4.15,19,5.285,29,2.828,35,3.563,65,1.378,68,1.441,75,1.39,81,4.431,124,1.948,136,2.152,176,1.604,196,2.673,232,5.16,234,1.663,290,5.815,305,4.63,333,2.643,341,6.155,371,5.512,397,2.404,400,6.829,419,4.637,424,4.168,425,2.795,587,4.941,589,5.977,590,6.829,598,3.116,757,3.876,845,3.329,864,4.789,902,4.878,903,3.001,904,7.908,905,1.284,906,6.272,907,1.724,908,6.272,909,2.404,910,2.428,911,5.16,912,7.147,913,7.908,914,4.53,915,3.284,916,5.725,917,2.054,918,1.415,919,7.908,920,7.908,921,7.908]],["description//tracks/webrtc/_index",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-take-photo",[126,0.959,344,0.452,481,2.792,922,3.394,923,3.394]],["content//tracks/webrtc/practice/practice-take-photo",[6,0.42,12,2.885,14,1.634,26,1.285,35,2.985,57,1.65,64,1.72,65,0.946,68,0.989,71,1.668,74,1.205,75,1.484,78,3.263,83,2.036,105,2.257,109,1.898,110,1.173,111,2.122,124,1.121,126,1.216,136,1.239,137,1.025,141,2.143,164,1.465,175,0.585,190,2.186,202,2.06,230,1.962,234,1.559,246,1.184,251,4.139,265,2.849,269,3.441,278,2.808,281,3.657,284,4.564,287,4.908,288,0.955,289,1.573,290,3.348,292,5.206,293,2.575,295,1.872,305,2.494,313,2.828,319,2.255,331,2.399,338,4.838,344,1.003,371,3.785,376,2.351,377,2.139,378,3.21,382,3.441,393,1.465,403,3.543,414,3.834,431,2.399,437,2.139,441,2.385,442,2.617,444,4.571,445,4.307,452,4.455,456,6.11,476,2.167,481,3.543,488,2.762,492,4.366,506,3.931,521,3.441,540,3.121,564,3.111,589,5.35,593,1.539,597,3.441,602,2.808,620,3.441,628,2.8,638,2.494,643,3.543,655,2.591,741,2.139,745,2.54,777,2.534,778,1.438,845,2.286,848,2.808,849,1.559,882,2.808,897,4.908,901,2.036,907,1.184,909,1.65,912,4.908,917,1.411,922,4.307,923,4.307,924,3.263,925,2.778,926,3.244,927,5.168,928,8.443,929,6.11,930,3.121,931,3.547,932,3.94,933,7.097,934,2.708,935,1.309,936,7.415,937,4.307,938,1.451,939,1.898,940,2.862,941,6.702,942,5.89,943,5.43,944,5.43,945,5.43,946,2.862,947,5.43,948,5.43,949,5.43,950,5.43,951,4.348,952,4.233,953,7.631,954,5.43,955,3.184,956,8.443,957,5.43,958,5.43,959,5.43,960,5.43,961,5.43,962,5.43,963,5.43,964,5.43,965,5.43,966,4.307,967,5.43,968,5.601,969,6.702,970,4.908,971,4.908,972,7.415,973,5.43,974,5.43,975,5.43,976,5.43,977,5.43,978,6.378,979,5.43,980,5.43,981,5.43,982,5.43,983,5.43,984,5.43,985,5.368,986,4.908,987,5.43,988,3.543,989,3.834,990,3.931,991,2.101,992,3.657,993,2.012,994,4.838,995,2.662,996,3.516,997,6.232,998,2.42,999,5.881,1000,4.908,1001,4.102,1002,1.65,1003,4.908,1004,4.564,1005,2.385,1006,4.564,1007,3.406,1008,3.441,1009,3.785,1010,3.543,1011,4.564,1012,2.708,1013,4.908,1014,5.43,1015,4.287,1016,5.43,1017,2.255,1018,1.795,1019,2.012,1020,3.931,1021,1.617,1022,3.931,1023,2.862,1024,1.072,1025,3.441,1026,2.534,1027,5.43,1028,3.111,1029,4.908,1030,3.348]],["description//tracks/webrtc/practice/practice-take-photo",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-stream-with-RTCPeerConnection",[81,2.678,293,2.266,593,0.811,1031,3.119]],["content//tracks/webrtc/practice/practice-stream-with-RTCPeerConnection",[2,2.872,3,5.112,6,0.413,7,1.514,11,1.725,12,4.029,13,3.336,14,1.022,18,1.174,19,1.904,26,0.98,29,1.882,31,1.819,32,0.671,35,3.165,38,1.228,41,2.46,46,1.665,49,1.756,50,1.992,52,1.492,53,1.174,56,1.305,59,2.566,64,1.076,65,1.447,67,1.148,68,0.619,70,1.111,71,2.551,73,0.917,74,0.754,75,1.616,78,3.163,80,1.169,81,5.726,83,1.274,89,2.381,92,5.417,93,6.101,103,2.095,105,2.099,107,0.908,111,1.506,114,0.619,118,0.944,120,1.281,124,1.499,126,1.759,133,2.095,136,1.792,137,0.994,141,0.982,173,1.342,175,0.846,189,3.811,190,1.9,191,1.497,194,2.855,196,2.929,198,2.58,201,1.411,202,2.017,203,2.898,204,2.202,211,2.217,213,1.992,214,3.188,216,0.834,217,1.633,230,1.825,231,2.217,234,1.355,235,1.043,238,1.637,240,2.841,245,0.866,246,1.405,247,1.537,248,3.825,257,2.418,263,1.374,264,1.187,265,2.789,282,3.811,288,0.925,290,3.246,292,2.095,293,4.454,295,0.858,300,1.244,305,3.334,307,1.374,311,1.725,331,2.804,332,3.987,335,2.95,336,1.757,337,1.76,338,4.205,341,4.736,343,1.946,344,0.877,345,4.425,351,0.926,355,2.349,356,0.943,359,1.289,362,1.394,371,3.669,382,2.153,394,2.46,396,1.864,398,1.611,400,4.666,401,2.095,402,1.791,403,2.217,404,2.288,407,5.825,408,1.471,409,4.176,412,6.229,414,4.481,415,4.084,417,3.163,427,1.305,431,1.704,433,2.722,437,2.539,441,2.312,442,2.537,444,3.246,447,4.425,464,1.215,467,1.6,471,3.188,472,1.339,477,3.272,478,1.492,479,1.026,481,2.217,483,3.071,484,4.758,485,5.247,486,4.736,487,3.106,488,2.374,490,1.597,492,3.753,501,4.666,508,5.825,513,3.977,517,1.665,530,1.561,532,5.255,535,0.842,536,0.625,538,2.288,540,3.055,544,3.016,556,1.668,561,3.071,564,3.016,565,4.758,567,2.855,571,3.872,573,3.071,587,1.665,589,3.336,593,1.093,598,2.074,607,5.825,620,2.153,626,1.6,627,1.725,628,1.002,635,1.123,636,2.202,646,3.648,654,2.695,709,3.016,720,2.695,742,0.899,745,1.584,759,2.095,768,2.855,779,1.339,785,1.065,793,1.174,805,2.247,827,2.041,834,2.566,864,2.673,875,2.368,892,2.855,903,1.289,905,0.463,909,1.959,917,0.883,918,0.608,924,3.163,925,2.662,926,2.808,929,4.34,931,2.278,932,3.007,952,3.007,955,3.087,985,3.811,988,4.736,1003,3.071,1007,2.418,1008,2.153,1012,1.694,1017,3.261,1019,2.909,1021,1.568,1022,2.46,1023,1.791,1024,1.04,1031,5.421,1032,3.397,1033,3.611,1034,4.158,1035,8.955,1036,1.123,1037,3.62,1038,1.992,1039,3.397,1040,1.725,1041,3.071,1042,3.872,1043,3.016,1044,6.561,1045,2.855,1046,3.365,1047,5.255,1048,5.264,1049,2.872,1050,5.112,1051,3.071,1052,4.176,1053,2.426,1054,1.356,1055,1.552,1056,3.811,1057,1.611,1058,3.397,1059,1.694,1060,3.071,1061,1.45,1062,3.071,1063,3.071,1064,2.695,1065,2.46,1066,1.95,1067,2.095,1068,3.333,1069,2.041,1070,2.566,1071,2.46,1072,3.397,1073,1.904,1074,3.397,1075,3.397,1076,2.346,1077,2.46,1078,3.611,1079,1.998,1080,3.545,1081,2.566,1082,9.711,1083,9.194,1084,4.425,1085,2.041,1086,2.041,1087,1.904,1088,1.511,1089,1.244,1090,3.435,1091,5.264,1092,3.397,1093,7.259,1094,3.071,1095,3.397,1096,3.397,1097,3.397,1098,3.397,1099,3.397,1100,1.665,1101,1.946,1102,2.46,1103,1.374,1104,2.368,1105,2.695,1106,2.368,1107,1.725,1108,3.087,1109,1.637,1110,1.258,1111,3.071,1112,3.397,1113,3.397,1114,3.071,1115,3.071,1116,3.397,1117,3.397,1118,3.397,1119,3.397,1120,2.695,1121,2.041,1122,3.397,1123,3.397,1124,3.397,1125,3.397,1126,3.397,1127,3.397,1128,3.397,1129,3.397,1130,3.397,1131,3.397,1132,3.397,1133,3.397,1134,3.397,1135,3.397,1136,2.695,1137,3.071,1138,0.883,1139,3.071,1140,4.888,1141,2.288,1142,3.397,1143,1.374,1144,3.397,1145,6.445,1146,3.397,1147,3.397,1148,2.153,1149,3.071,1150,3.435,1151,2.456,1152,4.758,1153,3.397,1154,3.397,1155,3.397,1156,3.397,1157,3.397,1158,7.854,1159,6.445,1160,3.397,1161,3.397,1162,3.397,1163,3.397,1164,3.397,1165,3.397,1166,3.397,1167,3.397,1168,3.397,1169,3.397,1170,3.397,1171,3.071,1172,3.397,1173,2.695,1174,3.397,1175,2.368,1176,3.397,1177,2.566,1178,2.368,1179,2.368,1180,1.585,1181,1.561,1182,2.855,1183,2.217,1184,1.611,1185,3.397,1186,3.397,1187,2.496,1188,3.397,1189,3.397,1190,2.153,1191,2.041,1192,2.566,1193,2.695,1194,3.397,1195,1.864,1196,3.397,1197,1.791,1198,1.665,1199,3.071,1200,3.071,1201,3.071,1202,2.041,1203,3.071,1204,3.397,1205,1.136,1206,1.694,1207,2.153,1208,1.043]],["description//tracks/webrtc/practice/practice-stream-with-RTCPeerConnection",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-stream-to-cam",[293,2.266,431,1.547,589,3.029,1031,3.119]],["content//tracks/webrtc/practice/practice-stream-to-cam",[6,0.422,12,3.105,13,5.057,14,1.469,18,1.688,26,1.214,38,1.248,49,1.331,56,3.066,63,4.139,64,1.547,67,2.328,74,1.084,89,2.209,105,2.317,110,1.055,113,1.65,126,1.094,136,1.571,137,0.922,144,2.822,164,1.318,173,2.034,175,0.934,202,2.217,219,2.031,221,1.772,230,2.123,234,1.678,240,2.492,245,2.034,248,4.568,261,1.876,265,3.511,281,3.289,282,6.616,286,3.535,288,0.858,291,4.414,292,6.712,293,4.497,299,3.535,300,1.788,319,3.795,332,2.479,338,5.963,341,5.207,344,0.516,345,6.707,351,1.331,356,0.634,371,6.61,393,1.318,394,3.535,397,1.245,406,2.479,431,2.582,444,4.247,452,4.139,464,1.746,467,1.484,468,2.028,471,3.025,488,2.253,490,1.978,491,4.104,492,4.482,518,1.547,540,2.899,554,2.525,564,3.946,571,2.934,582,2.934,589,6.412,590,3.535,606,2.492,609,6.226,611,1.788,613,6.226,620,5.492,623,1.331,627,4.64,628,2.031,631,4.414,636,2.727,640,1.669,648,1.9,655,2.407,660,4.987,680,5.203,698,3.535,708,5.433,721,3.186,729,6.904,730,3.63,731,3.689,739,4.414,740,4.414,743,4.104,745,3.044,750,2.574,752,4.414,757,2.394,773,3.689,777,2.279,779,1.924,781,2.243,788,4.414,799,2.394,800,2.243,805,2.084,814,4.801,856,2.86,924,2.934,925,2.687,926,3.268,931,3.064,932,3.214,941,6.226,985,4.987,988,3.186,989,2.525,1007,3.164,1012,3.435,1017,2.86,1018,1.615,1021,1.454,1022,3.535,1023,2.574,1024,1.36,1030,4.247,1042,4.139,1050,3.873,1068,4.127,1076,2.176,1077,3.535,1100,2.394,1111,6.226,1114,7.213,1115,7.213,1138,1.269,1148,3.094,1151,2.279,1178,4.801,1180,4.264,1183,3.186,1184,2.315,1191,2.934,1195,4.378,1197,2.574,1209,6.888,1210,5.464,1211,2.679,1212,3.689,1213,5.789,1214,4.104,1215,4.883,1216,4.883,1217,4.883,1218,5.203,1219,4.104,1220,4.104,1221,4.883,1222,4.883,1223,6.888,1224,1.9,1225,4.883,1226,2.625,1227,3.404,1228,6.547,1229,2.798,1230,3.535,1231,4.987,1232,2.798,1233,4.883,1234,1.707,1235,4.883,1236,4.883,1237,2.028,1238,4.883,1239,4.414,1240,1.949,1241,3.535,1242,2.574,1243,3.011,1244,3.289,1245,3.289,1246,2.479,1247,4.883,1248,4.883,1249,3.094,1250,4.883,1251,4.883,1252,3.094,1253,4.883,1254,2.525,1255,1.831,1256,6.888,1257,4.883,1258,4.883,1259,4.883,1260,4.883,1261,4.883,1262,4.883,1263,4.883,1264,4.883,1265,4.883,1266,1.831,1267,3.689,1268,2.625,1269,1.853,1270,4.883,1271,1.809,1272,4.414,1273,2.679,1274,4.883,1275,4.883]],["description//tracks/webrtc/practice/practice-stream-to-cam",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-setup-signaling-service",[355,1.385,415,2.712,427,1.644,437,1.686,1037,2.134]],["content//tracks/webrtc/practice/practice-setup-signaling-service",[6,0.426,12,3.865,13,2.136,15,1.249,26,1.426,31,1.808,32,0.666,35,1.192,38,1.223,50,1.977,56,2.01,58,1.079,65,0.587,67,1.139,68,0.953,71,1.607,72,1.849,74,1.605,75,1.648,78,2.025,80,0.748,81,2.932,96,0.776,101,2.404,102,1.346,105,1.399,107,0.901,111,2.473,114,0.953,136,1.194,137,0.988,139,1.546,144,2.144,159,1.165,164,1.951,175,0.893,176,1.301,189,3.788,190,2.814,191,0.783,196,2.443,201,2.663,202,1.782,203,1.693,204,1.152,205,1.849,206,1.385,212,1.178,213,1.977,219,0.994,221,1.86,222,2.267,227,1.22,229,1.381,230,1.679,231,2.2,234,1.1,240,2.32,246,1.141,251,2.565,254,2.27,259,1.249,263,1.363,265,2.01,268,1.929,278,1.743,288,0.92,289,1.833,293,1.598,295,1.321,300,2.348,305,1.549,311,1.712,313,1.91,319,1.4,335,1.889,337,1.749,344,0.356,351,0.919,352,1.091,354,1.385,356,0.68,362,0.893,375,1.103,378,2.265,382,2.136,400,2.441,408,3.129,409,4.15,412,2.674,414,2.706,415,5.94,421,1.459,426,1.849,427,2.464,429,1.931,431,1.693,437,3.87,444,3.226,452,5.366,454,5.404,458,3.524,459,1.139,461,2.555,462,0.876,464,1.205,473,1.549,476,3.123,479,0.74,492,3.738,501,2.441,513,2.547,525,1.549,540,2.203,541,1.777,556,1.068,560,2.144,564,1.931,587,1.652,593,0.572,601,2.025,604,1.812,626,1.59,627,1.712,628,0.994,636,1.152,648,1.312,696,4.319,750,2.758,755,1.502,768,2.833,785,1.057,814,3.647,823,1.712,832,1.712,849,1.1,852,1.549,864,2.657,905,0.459,911,2.2,914,2.998,924,2.025,925,2.599,926,2.961,929,2.27,931,3.157,932,3.373,933,2.833,942,5.969,985,3.788,986,9.497,988,4.717,989,3.738,992,5.577,993,1.938,994,6.325,995,1.652,996,3.71,997,6.075,998,1.502,999,7.571,1004,4.398,1007,1.549,1011,8.255,1012,3.605,1015,2.657,1019,2.678,1021,1.558,1022,2.441,1023,1.777,1024,1.427,1025,2.136,1031,2.2,1036,1.73,1037,4.834,1038,1.977,1042,3.144,1043,1.931,1049,2.858,1059,1.681,1068,3.316,1069,2.025,1080,4.868,1084,2.833,1088,0.79,1101,2.998,1109,1.625,1110,1.249,1139,3.047,1140,2.27,1151,2.442,1181,1.549,1183,2.2,1195,4.543,1198,1.652,1212,3.953,1213,4.398,1240,1.345,1249,2.136,1276,3.371,1277,5.733,1278,4.844,1279,2.136,1280,1.889,1281,5.39,1282,2.758,1283,1.743,1284,1.915,1285,5.233,1286,4.73,1287,1.573,1288,1.743,1289,1.977,1290,2.674,1291,2.547,1292,1.777,1293,1.889,1294,2.2,1295,1.812,1296,2.01,1297,1.849,1298,2.025,1299,1.712,1300,1.439,1301,1.079,1302,1.625,1303,1.977,1304,2.27,1305,2.35,1306,2.833,1307,2.27,1308,0.876,1309,1.459,1310,2.674,1311,1.931,1312,2.078,1313,3.371,1314,2.35,1315,2.088,1316,3.371,1317,5.233,1318,3.371,1319,5.233,1320,1.812,1321,8.281,1322,7.229,1323,6.413,1324,8.281,1325,5.233,1326,5.233,1327,3.414,1328,5.233,1329,2.35,1330,2.998,1331,0.994,1332,2.833,1333,2.674,1334,3.371,1335,3.647,1336,1.625,1337,3.047,1338,6.413,1339,3.371,1340,3.371,1341,1.788,1342,2.833,1343,3.371,1344,6.413,1345,2.833,1346,5.665,1347,5.233,1348,7.229,1349,5.233,1350,3.371,1351,1.328,1352,5.233,1353,3.371,1354,2.2,1355,3.047,1356,3.371,1357,3.371,1358,3.371,1359,3.371,1360,2.674,1361,1.743,1362,2.61,1363,1.962,1364,1.4,1365,1.525,1366,2.833,1367,2.674,1368,3.371,1369,3.371,1370,2.674,1371,2.136,1372,2.833,1373,3.371,1374,2.404,1375,2.136,1376,2.441,1377,1.931,1378,3.371,1379,3.371,1380,3.371,1381,3.371,1382,3.371,1383,3.371,1384,3.371,1385,3.371,1386,2.367,1387,3.371,1388,4.15,1389,3.371,1390,3.371,1391,2.674,1392,3.371,1393,3.371,1394,3.371,1395,3.047,1396,3.371,1397,2.2,1398,3.371,1399,3.371,1400,6.413,1401,2.547,1402,3.371,1403,3.371,1404,2.136,1405,1.915,1406,5.233,1407,3.371,1408,3.371,1409,3.371,1410,1.931,1411,3.371,1412,3.371,1413,5.233,1414,3.371,1415,3.371,1416,3.371,1417,2.833,1418,5.233,1419,3.371,1420,3.371,1421,4.73,1422,2.025,1423,1.681,1424,2.864,1425,2.674,1426,1.652,1427,4.15,1428,2.2,1429,2.674,1430,2.481,1431,2.35,1432,2.27,1433,3.047,1434,2.674,1435,2.481,1436,2.674,1437,1.812,1438,3.047,1439,2.025,1440,2.025,1441,2.2,1442,3.371,1443,1.889,1444,3.371,1445,3.371,1446,3.371]],["description//tracks/webrtc/practice/practice-setup-signaling-service",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-results",[1447,2.517]],["content//tracks/webrtc/practice/practice-results",[6,0.39,12,3.699,26,1.219,65,1.656,75,1.782,81,4.49,126,1.795,191,1.862,230,1.862,234,1.685,245,2.043,293,4.806,305,3.681,344,1.07,382,5.078,403,5.229,414,4.916,415,6.024,427,3.079,431,2.593,437,3.157,479,1.133,481,5.229,488,2.621,527,4.591,589,5.078,593,1.612,914,4.591,918,1.434,925,2.27,926,3.625,927,5.585,988,5.229,1017,3.327,1031,5.229,1037,4.741,1049,4.237,1199,7.243,1200,7.243,1228,6.053,1448,9.507,1449,6.356,1450,4.699,1451,4.396,1452,7.243,1453,8.014]],["description//tracks/webrtc/practice/practice-results",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-peer-signaling-combine",[305,3.117,382,3.029,415,3.029]],["content//tracks/webrtc/practice/practice-peer-signaling-combine",[6,0.23,12,4.089,13,3.91,14,1.856,26,1.453,32,1.218,57,2.455,64,1.955,67,2.085,68,1.124,71,1.895,75,1.42,81,3.457,101,2.834,102,1.588,105,2.406,111,1.765,118,1.714,141,1.783,159,2.132,164,1.665,175,0.97,190,2.654,196,3.043,202,2.244,203,2.613,206,1.634,230,2.092,231,4.026,234,1.297,246,1.345,259,2.286,264,2.156,265,3.459,278,4.176,293,2.925,295,2.273,329,4.301,331,2.613,332,3.132,335,3.457,337,2.062,338,4.026,344,0.652,354,2.138,356,0.801,415,3.91,423,2.48,427,3.67,433,3.191,441,2.71,442,2.974,444,4.979,452,3.707,461,2.181,474,2.974,476,2.462,479,0.872,488,2.018,507,1.976,540,3.399,589,3.91,590,4.467,593,1.37,597,3.91,602,3.191,626,2.455,628,1.819,750,3.252,821,4.301,832,4.1,848,3.191,849,1.698,869,4.661,907,1.345,924,3.707,925,2.809,926,3.415,929,4.155,930,2.597,931,3.663,932,4.456,952,2.879,955,3.618,985,5.846,988,4.026,989,4.176,990,4.467,991,2.288,992,5.439,993,2.286,994,6.468,995,3.024,996,3.829,997,6.788,998,2.75,999,7.576,1001,4.661,1004,5.186,1005,2.71,1006,5.186,1011,8.332,1012,4.028,1015,4.1,1017,3.353,1022,4.467,1023,3.252,1024,1.218,1037,4.49,1042,3.707,1043,4.627,1044,5.577,1053,2.062,1054,2.462,1068,3.191,1069,3.707,1080,5.439,1084,6.788,1173,4.894,1191,3.707,1195,3.385,1228,6.1,1234,2.156,1255,2.313,1306,5.186,1312,3.804,1333,4.894,1337,5.577,1364,2.562,1421,5.577,1424,2.259,1427,4.894,1428,4.026,1429,4.894,1435,2.925,1454,6.17,1455,7.567,1456,4.661,1457,6.17,1458,5.186,1459,5.186,1460,4.894,1461,4.661,1462,4.894,1463,4.467,1464,6.17,1465,4.894,1466,4.026,1467,4.894,1468,5.186,1469,4.301,1470,2.181,1471,6.17,1472,4.661,1473,5.186,1474,3.457,1475,5.577,1476,4.661,1477,4.026]],["description//tracks/webrtc/practice/practice-peer-signaling-combine",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-overview",[1478,3.059]],["content//tracks/webrtc/practice/practice-overview",[6,0.295,12,3.677,13,5.989,35,2.805,65,1.382,75,1.395,81,4.446,105,2.121,107,2.121,141,2.293,175,0.855,190,2.976,230,1.843,234,1.668,288,1.395,293,4.786,305,3.645,335,4.446,337,2.652,344,0.998,382,5.027,400,5.744,403,5.177,414,4.103,415,5.989,431,3.382,437,3.724,479,1.121,481,5.177,488,2.595,589,5.989,718,2.904,750,4.181,914,4.545,922,6.293,924,4.767,926,2.837,934,3.957,938,2.121,988,5.177,994,5.177,1031,6.167,1037,4.713,1053,2.652,1178,5.53,1240,3.166,1449,6.293,1477,5.177,1479,4.767,1480,3.824,1481,6.293,1482,3.011,1483,4.181,1484,3.34,1485,4.181,1486,7.934]],["description//tracks/webrtc/practice/practice-overview",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-get-code",[65,1.087,1487,3.113]],["content//tracks/webrtc/practice/practice-get-code",[6,0.245,13,6.414,14,1.984,18,2.279,26,1.003,31,2.279,44,2.616,58,2.699,64,2.089,65,1.619,68,1.201,74,1.871,75,1.722,80,1.464,105,1.762,111,1.887,136,1.504,137,1.245,141,1.906,164,1.779,173,1.681,175,0.711,190,3.103,191,1.959,203,2.134,222,2.331,246,1.437,251,4.132,254,4.44,259,2.442,265,3.239,268,1.984,278,4.359,281,4.44,289,1.789,344,0.89,355,2.134,356,0.856,408,4.382,424,5.547,431,3.35,432,2.776,479,0.932,507,2.111,536,1.55,551,4.302,560,3.454,585,4.302,636,2.881,713,3.962,718,2.414,779,2.598,823,3.348,906,5.23,907,1.437,918,1.18,925,2.389,931,3.578,932,3.077,952,3.077,988,6.391,989,4.359,991,1.868,1001,4.981,1007,4.269,1012,3.288,1015,4.28,1019,3.123,1021,1.964,1024,1.835,1042,3.962,1046,2.414,1066,2.442,1229,3.777,1255,2.472,1268,3.544,1269,3.199,1288,3.41,1293,3.695,1315,2.631,1331,1.944,1386,2.983,1430,3.126,1432,4.44,1474,3.695,1482,2.502,1487,4.204,1488,3.501,1489,2.565,1490,5.542,1491,4.302,1492,7.62,1493,4.773,1494,6.594,1495,5.96,1496,6.594,1497,4.44,1498,6.594,1499,4.596,1500,5.96,1501,6.594,1502,4.065,1503,5.23,1504,4.625,1505,6.594,1506,5.23,1507,8.43,1508,3.866,1509,4.596,1510,6.594,1511,6.594,1512,6.594,1513,7.62,1514,5.542,1515,4.44,1516,2.331,1517,4.596,1518,6.594,1519,6.594,1520,5.23,1521,4.596,1522,5.96,1523,6.594,1524,3.866,1525,6.594,1526,3.126,1527,6.594,1528,2.896,1529,3.544,1530,3.866]],["description//tracks/webrtc/practice/practice-get-code",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/practice-RTCDataChannel-exchange-data",[137,0.903,344,0.505,403,3.119,1037,2.384]],["content//tracks/webrtc/practice/practice-RTCDataChannel-exchange-data",[6,0.419,12,4.061,15,1.87,26,1.236,32,0.997,34,1.184,38,1.102,44,2.187,63,3.033,65,1.612,68,0.92,70,1.651,71,1.55,81,4.928,89,2.284,105,1.884,113,1.706,114,0.92,120,1.228,136,1.152,137,0.953,141,2.037,146,2.563,147,1.311,159,1.744,164,1.362,175,0.76,183,2.014,196,3.325,202,1.959,213,2.96,217,1.566,221,1.299,234,1.061,246,1.1,257,3.238,264,1.764,288,1.239,292,3.112,293,2.393,297,2.61,305,3.238,307,2.041,311,2.563,319,2.927,338,3.294,344,1.14,355,1.633,356,0.916,366,3.343,376,2.185,377,1.989,393,1.903,397,1.797,403,5.738,408,2.185,414,4.548,415,3.199,417,4.236,435,2.61,437,2.778,444,4.347,445,5.592,447,5.925,452,3.033,453,3.518,456,6.231,459,1.706,461,1.784,468,2.096,471,2.217,472,1.989,481,4.6,487,2.433,492,3.646,518,1.599,521,5.863,540,2.968,556,1.599,564,2.892,571,3.033,575,2.968,587,3.456,648,1.964,655,2.839,708,4.654,718,2.581,742,1.336,745,2.121,750,3.715,759,3.112,823,3.579,832,2.563,841,5.326,864,3.579,874,6.372,875,3.518,882,4.784,909,2.469,924,3.033,925,2.843,926,3.427,929,5.471,931,2.492,932,3.791,934,4.386,942,4.236,955,2.96,985,5.104,988,3.294,1002,1.534,1007,3.238,1012,2.517,1018,2.331,1019,3.258,1022,3.654,1023,2.66,1031,5.301,1037,4.386,1038,2.96,1042,4.881,1043,4.039,1046,2.974,1050,4.004,1059,2.517,1061,2.154,1062,4.562,1063,4.562,1064,4.004,1076,2.25,1077,3.654,1078,2.828,1080,3.399,1094,6.372,1178,3.518,1181,4.25,1182,4.243,1195,2.769,1205,2.357,1206,3.516,1220,5.925,1245,3.399,1438,4.562,1480,2.433,1497,3.399,1531,5.592,1532,3.813,1533,4.243,1534,4.914,1535,2.96,1536,2.217,1537,5.048,1538,3.294,1539,2.892,1540,7.05,1541,3.399,1542,7.05,1543,7.05,1544,5.048,1545,6.137,1546,8.124,1547,8.124,1548,5.048,1549,8.794,1550,3.399,1551,5.048,1552,3.813,1553,4.004,1554,8.124,1555,4.236,1556,5.925,1557,4.134,1558,6.372,1559,5.048,1560,8.124,1561,4.6,1562,5.048,1563,5.048,1564,5.048,1565,5.048,1566,5.048,1567,7.05,1568,5.048,1569,8.124,1570,5.048,1571,5.048,1572,5.048,1573,5.048,1574,5.048,1575,5.048,1576,5.048,1577,5.048,1578,5.048,1579,5.048,1580,5.048,1581,5.048,1582,5.048,1583,3.199,1584,5.048,1585,2.185,1586,3.518,1587,4.039,1588,4.562,1589,4.562,1590,4.004,1591,3.867,1592,1.725,1593,3.813,1594,3.033,1595,4.562,1596,5.048,1597,2.355,1598,2.61,1599,2.393,1600,2.892]],["description//tracks/webrtc/practice/practice-RTCDataChannel-exchange-data",[12,2.158,187,2.719,188,2.472]],["title//tracks/webrtc/practice/_index",[1076,3.283]],["content//tracks/webrtc/practice/_index",[6,0.378,12,4.313,13,4.219,15,2.466,19,3.731,35,3.3,38,1.326,42,3.652,46,3.263,49,2.311,64,2.109,65,1.478,70,2.178,75,1.641,78,5.906,81,4.753,110,1.438,136,1.519,137,1.257,138,5.281,175,1.006,189,6.141,190,2.752,191,2.169,193,4.82,194,5.596,198,4.158,204,2.899,211,4.344,213,4.974,216,1.635,217,2.066,222,2.353,224,2.327,225,2.003,230,1.547,231,4.344,234,1.4,246,1.451,265,3.587,288,1.17,290,4.105,293,4.661,297,4.386,305,4.288,335,3.731,336,3.443,337,2.225,338,4.344,344,1.038,351,2.544,352,2.154,356,1.102,398,4.022,400,6.758,403,4.344,409,6.728,414,4.827,415,6.229,421,2.882,422,1.28,426,3.652,429,4.86,435,3.443,437,3.342,467,2.024,479,0.941,556,2.109,594,4.82,595,2.496,628,2.752,636,2.275,817,2.659,828,3.32,856,2.764,998,2.967,999,5.281,1007,3.058,1029,6.017,1031,6.091,1037,4.656,1049,4.381,1056,4.82,1064,5.281,1088,1.989,1101,3.814,1102,4.82,1103,2.692,1104,4.64,1105,5.281,1106,4.64,1107,3.38,1108,4.974,1109,3.209,1110,2.466,1197,3.509,1198,3.263,1291,5.029,1391,5.281,1428,4.344,1592,2.275,1601,3.652,1602,6.658,1603,6.658,1604,6.017,1605,5.281,1606,5.596,1607,6.658,1608,5.281,1609,6.658,1610,3.142]],["description//tracks/webrtc/practice/_index",[12,2.158,187,2.719,188,2.472]],["title//tracks/python-101/_index",[187,2.654,188,2.413,1611,0.87]],["content//tracks/python-101/_index",[6,0.26,75,1.228,80,1.551,91,3.21,118,2.43,120,1.7,126,1.565,137,1.319,139,1.684,149,3.368,167,4.198,175,0.753,176,1.774,188,3.897,202,1.941,215,3.485,267,2.652,333,2.923,344,0.738,356,0.907,369,3.21,395,3.682,397,2.229,431,2.261,490,1.732,518,2.214,534,5.058,535,1.732,540,2.941,555,2.718,593,1.185,637,2.863,645,3.755,655,2.442,778,1.85,781,3.21,785,2.742,858,4.003,903,2.652,924,4.198,938,2.338,1018,2.31,1019,2.588,1024,1.38,1138,1.815,1208,2.685,1240,2.788,1287,4.081,1293,3.915,1297,3.833,1302,3.368,1470,2.47,1478,2.901,1482,2.652,1516,2.47,1538,5.706,1611,1.732,1612,5.058,1613,6.987,1614,6.315,1615,5.542,1616,6.987,1617,10.3,1618,3.716,1619,4.59,1620,4.559,1621,4.705,1622,4.003,1623,4.87,1624,4.87,1625,4.427,1626,2.191,1627,3.547,1628,3.025,1629,5.873,1630,3.547,1631,3.915,1632,1.868,1633,7.904,1634,6.315,1635,6.315,1636,4.308,1637,8.628,1638,7.35,1639,3.041,1640,8.745,1641,4.87,1642,6.936,1643,3.547,1644,5.278,1645,3.915,1646,3.313,1647,4.361,1648,3.613,1649,4.308,1650,4.097,1651,3.025,1652,3.319,1653,3.755,1654,5.254,1655,5.278,1656,2.442,1657,5.873,1658,4.308,1659,6.987,1660,5.278,1661,2.388,1662,6.315]],["description//tracks/python-101/_index",[6,0.117,187,1.54,188,1.4,1273,1.723,1287,1.466,1611,0.795,1663,2.64,1664,2.274]],["title//tracks/python-101/top-questions/",[1287,2.23,1611,0.768,1663,4.018,1665,3.611]],["content//tracks/python-101/top-questions/",[1,2.258,2,0.713,6,0.416,7,1.001,11,2.471,14,1.255,15,1.042,17,3.067,18,0.776,26,0.828,27,0.995,29,1.347,30,2.467,31,0.553,32,0.896,33,0.461,34,2.311,35,0.303,38,1.322,43,0.503,49,0.904,50,1.317,52,0.377,53,1.146,57,1.145,58,1.655,60,0.961,63,4.387,64,0.272,65,1.419,66,0.722,67,1.41,68,0.942,71,0.69,73,1.017,74,0.625,75,0.662,83,0.842,89,2.052,90,1.077,95,0.622,96,0.198,102,1.634,105,0.229,107,0.428,110,0.814,111,0.246,112,2.024,113,0.541,114,1.646,118,1.159,120,2.21,124,0.464,126,0.192,127,1.183,128,0.622,136,0.365,137,1.12,139,0.541,141,1.311,143,0.843,144,1.153,147,2.264,158,0.33,160,1.044,161,1.99,167,1.349,173,0.408,175,0.887,176,1.203,178,0.649,183,0.638,184,0.622,191,0.654,197,1.085,198,0.421,202,0.444,203,1.672,206,0.745,208,0.444,212,1.317,215,0.798,216,1.399,219,0.978,221,0.969,222,0.303,224,0.785,225,1.714,229,0.352,234,1.445,240,3.645,241,4.031,245,2.097,246,0.723,257,1.032,259,1.042,261,0.863,262,1.014,263,0.647,264,0.3,267,0.607,270,0.945,272,0.366,288,0.281,289,1.549,295,0.217,301,0.863,302,1.293,305,0.394,306,1.077,307,1.834,311,1.684,313,1.697,319,1.378,331,0.278,332,1.429,342,1.586,343,0.213,344,0.797,351,0.436,352,1.468,354,0.595,356,0.892,359,0.326,361,0.461,362,1.441,369,1.032,372,1.756,375,0.281,380,0.598,381,0.896,383,1.51,393,0.895,397,1.156,401,0.529,402,0.843,410,0.401,414,1.948,420,0.529,421,1.806,422,1.611,429,0.916,439,0.758,441,1.236,458,0.578,459,1.273,461,0.794,462,1.929,465,5.125,467,0.486,468,1.564,469,2.03,470,0.962,471,0.702,472,1.787,473,1.731,474,1.599,477,2.118,478,1.236,479,1.067,488,0.92,489,0.407,490,1.524,492,2.157,507,0.275,518,1.542,525,0.394,530,0.394,535,0.213,536,0.834,538,0.578,540,0.673,542,0.711,548,0.29,554,0.827,556,3.022,558,0.896,569,0.622,571,0.961,575,0.361,592,0.492,593,1.215,594,1.158,595,0.6,597,1.014,600,0.656,602,0.444,606,2.224,620,1.014,623,1.989,626,0.486,627,0.812,628,0.472,635,1.609,636,1.425,640,0.962,645,0.461,655,3.105,660,0.622,663,0.784,675,1.111,696,0.578,702,1.916,708,0.492,709,1.286,711,0.649,714,0.452,716,1.313,720,1.781,721,1.465,729,2.126,731,2.126,733,1.183,741,0.338,742,0.227,744,0.649,745,1.85,755,2.539,756,0.281,757,0.421,758,0.73,769,0.649,771,1.612,774,0.293,778,1.201,779,0.885,781,0.735,784,0.56,785,0.501,786,0.649,793,1.786,795,1.479,796,1.115,800,2.617,803,0.544,812,3.676,817,1.181,818,0.578,831,1.115,832,0.436,834,0.649,844,1.455,848,0.444,849,0.336,852,1.293,855,0.544,859,0.683,867,0.535,901,0.6,905,0.117,909,0.261,910,0.864,911,0.56,915,2.976,917,0.862,925,0.243,926,0.307,931,0.565,932,1.048,934,0.798,935,0.678,938,0.428,939,0.559,940,0.452,955,0.503,966,1.269,968,1.696,1008,0.544,1010,1.465,1018,2.72,1021,0.256,1024,1.125,1026,0.401,1033,1.859,1036,2.033,1038,0.503,1040,0.436,1045,0.722,1046,0.822,1047,0.622,1049,1.479,1052,2.631,1053,0.535,1054,3.215,1055,1.111,1059,0.428,1061,1.608,1067,0.529,1068,0.444,1077,0.622,1078,0.896,1079,0.607,1081,0.649,1085,1.349,1087,1.859,1088,0.778,1100,3.288,1108,0.503,1110,0.318,1138,1.48,1150,0.56,1175,0.598,1177,0.649,1181,0.394,1195,1.232,1205,1.394,1208,0.69,1211,0.471,1224,0.622,1226,0.86,1234,0.983,1237,1.883,1243,4.236,1244,5.299,1254,1.161,1255,1.244,1279,0.544,1280,2.111,1283,3.553,1284,1.214,1293,0.481,1295,0.86,1296,2.511,1298,1.349,1299,0.436,1301,2.827,1302,1.356,1304,0.578,1308,0.415,1327,0.56,1341,2.4,1342,0.722,1346,1.158,1363,0.842,1364,1.732,1376,0.622,1377,0.916,1388,0.681,1401,0.649,1405,0.586,1424,0.822,1427,0.681,1435,0.407,1436,0.681,1447,1.766,1460,1.269,1470,0.303,1479,0.961,1481,0.681,1484,2.175,1485,0.452,1497,0.578,1516,0.995,1524,0.503,1526,0.407,1528,1.236,1529,0.461,1532,0.649,1534,1.565,1535,0.938,1545,0.649,1550,0.578,1555,2.725,1556,2.365,1561,1.465,1583,1.783,1585,0.372,1586,0.598,1592,0.767,1597,1.048,1598,0.444,1611,1.724,1612,0.622,1618,2.579,1619,1.254,1626,0.882,1628,1.218,1632,0.428,1639,0.261,1641,1.115,1643,2.764,1644,0.649,1652,2.333,1656,0.983,1658,0.529,1661,0.547,1665,0.649,1666,1.696,1667,0.859,1668,0.776,1669,0.958,1670,1.344,1671,3.767,1672,1.258,1673,1.344,1674,0.436,1675,1.455,1676,0.859,1677,2.624,1678,2.186,1679,0.776,1680,0.607,1681,0.544,1682,0.859,1683,0.722,1684,2.814,1685,0.681,1686,0.578,1687,0.859,1688,1.14,1689,0.516,1690,1.524,1691,1.269,1692,2.788,1693,1.836,1694,1.254,1695,0.622,1696,2.387,1697,2.543,1698,0.722,1699,0.776,1700,0.516,1701,1.161,1702,0.264,1703,2.543,1704,0.366,1705,1.115,1706,0.776,1707,0.859,1708,1.465,1709,0.776,1710,4.795,1711,1.483,1712,1.6,1713,0.681,1714,1.6,1715,1.344,1716,0.503,1717,0.649,1718,0.649,1719,0.722,1720,0.529,1721,1.115,1722,1.961,1723,3.318,1724,3.318,1725,1.208,1726,0.776,1727,0.859,1728,0.859,1729,0.771,1730,0.722,1731,0.56,1732,0.681,1733,1.6,1734,1.207,1735,1.208,1736,0.56,1737,0.859,1738,0.722,1739,1.6,1740,1.286,1741,0.972,1742,3.522,1743,0.722,1744,0.859,1745,2.308,1746,0.859,1747,2.903,1748,1.344,1749,2.502,1750,3.344,1751,2.827,1752,1.6,1753,2.232,1754,1.6,1755,2.246,1756,1.6,1757,0.681,1758,0.722,1759,1.317,1760,0.722,1761,0.776,1762,0.622,1763,0.578,1764,1.836,1765,0.938,1766,0.722,1767,1.044,1768,1.735,1769,0.444,1770,1.783,1771,0.859,1772,2.246,1773,1.446,1774,1.859,1775,0.622,1776,0.544,1777,0.436,1778,0.859,1779,0.859,1780,0.516,1781,2.03,1782,2.961,1783,3.318,1784,0.859,1785,0.859,1786,0.586,1787,0.859,1788,0.859,1789,2.829,1790,3.186,1791,2.533,1792,1.787,1793,2.537,1794,1.208,1795,0.649,1796,1.014,1797,4.171,1798,0.859,1799,0.722,1800,4.171,1801,2.246,1802,2.387,1803,1.783,1804,0.776,1805,3.426,1806,0.859,1807,0.859,1808,0.776,1809,3.676,1810,1.6,1811,5.059,1812,1.446,1813,0.859,1814,1.626,1815,1.887,1816,1.6,1817,0.859,1818,2.608,1819,1.446,1820,0.681,1821,1.446,1822,0.681,1823,0.859,1824,0.859,1825,0.722,1826,0.578,1827,0.916,1828,1.208,1829,1.43,1830,2.03,1831,0.776,1832,1.6,1833,1.158,1834,1.269,1835,1.158,1836,1.344,1837,0.681,1838,1.269,1839,0.859,1840,1.901,1841,0.859,1842,1.512,1843,0.377,1844,0.544,1845,1.6,1846,0.722,1847,0.859,1848,0.859,1849,0.56,1850,0.859,1851,0.722,1852,0.859,1853,0.56,1854,0.529,1855,0.503,1856,0.598,1857,0.713,1858,0.852,1859,0.859,1860,1.258,1861,0.598,1862,0.776,1863,0.713,1864,2.598,1865,3.597,1866,2.814,1867,0.56,1868,1.115,1869,1.526,1870,2.814,1871,1.077,1872,0.776,1873,0.722,1874,0.578,1875,2.506,1876,2.045,1877,0.859,1878,0.859,1879,0.859,1880,0.461,1881,2.08,1882,1.344,1883,1.781,1884,0.578,1885,1.6,1886,0.986,1887,1.544,1888,3.86,1889,3.837,1890,1.501,1891,0.622,1892,1.6,1893,1.6,1894,0.859,1895,0.776,1896,0.859,1897,0.859,1898,0.681,1899,0.859,1900,0.722,1901,3.112,1902,0.859,1903,0.598,1904,0.401,1905,0.529,1906,0.776,1907,0.649,1908,1.014,1909,0.859,1910,0.649,1911,0.859,1912,0.352,1913,0.681,1914,1.465,1915,0.859,1916,1.317,1917,1.317,1918,3.812,1919,1.208,1920,1.302,1921,0.859,1922,1.344,1923,0.776,1924,2.543,1925,0.649,1926,0.776,1927,1.6,1928,1.344,1929,0.859,1930,0.239,1931,0.492,1932,0.529,1933,0.896,1934,0.56,1935,0.859,1936,3.506,1937,2.999,1938,2.788,1939,1.446,1940,3.166,1941,0.859,1942,1.158,1943,1.423,1944,0.859,1945,1.887,1946,0.622,1947,0.859,1948,1.158,1949,1.446,1950,1.945,1951,3.151,1952,0.812,1953,0.649,1954,0.83,1955,1.573,1956,2.337,1957,0.859,1958,3.826,1959,0.722,1960,0.776,1961,3.013,1962,1.6,1963,1.6,1964,2.458,1965,1.344,1966,0.859,1967,0.859,1968,2.999,1969,0.859,1970,0.859,1971,0.859,1972,1.208,1973,0.859,1974,0.56,1975,1.158,1976,0.896,1977,0.776,1978,1.286,1979,1.416,1980,0.722,1981,2.387,1982,0.722,1983,0.529,1984,1.429,1985,0.56,1986,1.446,1987,1.259,1988,0.444,1989,0.649,1990,0.681,1991,1.6,1992,1.6,1993,1.384,1994,0.622,1995,0.598,1996,0.444,1997,2.246,1998,0.722,1999,0.722,2000,0.776,2001,0.877,2002,0.544,2003,1.626,2004,0.361,2005,0.428,2006,1.626,2007,0.722,2008,1.446,2009,1.78,2010,0.859,2011,0.649,2012,1.696,2013,0.492,2014,0.681,2015,0.722,2016,0.578,2017,0.859,2018,0.776,2019,1.344,2020,0.776,2021,0.859,2022,0.681,2023,0.649,2024,0.516,2025,1.6,2026,1.781,2027,0.916,2028,0.776,2029,0.578,2030,0.649,2031,0.776,2032,0.722,2033,2.037,2034,0.859,2035,1.544,2036,2.814,2037,0.649,2038,0.722,2039,0.436,2040,0.859,2041,0.859,2042,0.681,2043,2.959,2044,0.578,2045,0.471,2046,0.638,2047,0.598,2048,1.6,2049,0.776,2050,0.681,2051,0.859,2052,0.407,2053,1.077,2054,0.896,2055,0.461,2056,0.598,2057,0.492,2058,1.269,2059,0.859,2060,0.859,2061,0.859,2062,0.859,2063,0.859,2064,0.776,2065,0.859,2066,0.859,2067,0.507,2068,4.398,2069,0.492,2070,0.578,2071,0.681,2072,0.722,2073,0.859,2074,3.084,2075,2.458,2076,3.767,2077,0.776,2078,3.794,2079,0.598,2080,0.681,2081,0.859,2082,0.598,2083,2.246,2084,0.776,2085,0.859,2086,0.859,2087,2.788,2088,1.6,2089,0.859,2090,0.649,2091,0.859,2092,1.6,2093,0.859,2094,0.859,2095,1.158,2096,1.577,2097,0.859,2098,2.116,2099,0.784,2100,0.859,2101,0.529,2102,0.776,2103,1.044,2104,0.622,2105,0.776,2106,0.776,2107,0.722,2108,0.859,2109,0.859,2110,2.788,2111,1.344,2112,0.859,2113,0.859,2114,1.6,2115,0.859,2116,0.859,2117,0.859,2118,1.6,2119,0.859,2120,0.859,2121,0.649,2122,3.77,2123,0.859,2124,0.681,2125,0.938,2126,1.344,2127,0.859,2128,0.859,2129,0.598,2130,0.859,2131,1.258,2132,3.398,2133,0.859,2134,1.158,2135,1.6,2136,1.344,2137,2.165,2138,2.631,2139,2.814,2140,1.6,2141,1.6,2142,0.681,2143,0.622,2144,1.6,2145,0.529,2146,0.843,2147,1.6,2148,0.859,2149,0.776,2150,2.232,2151,0.776,2152,1.446,2153,0.776,2154,2.727,2155,0.859,2156,0.859,2157,0.681,2158,0.938,2159,1.115,2160,0.681,2161,0.722,2162,0.544,2163,0.481,2164,0.722,2165,1.344,2166,0.859,2167,0.516,2168,3.308,2169,1.208,2170,0.503,2171,0.56,2172,0.859,2173,2.365,2174,1.115,2175,0.859,2176,0.776,2177,0.859,2178,0.859,2179,0.859,2180,0.859,2181,1.014,2182,0.681,2183,1.887,2184,0.859,2185,1.115,2186,2.572,2187,1.6,2188,0.776,2189,0.516,2190,0.452,2191,0.529,2192,0.681,2193,0.859,2194,2.246,2195,1.6,2196,0.859,2197,0.859,2198,0.859,2199,0.859,2200,1.6,2201,0.859,2202,0.859,2203,0.859,2204,0.516,2205,4.398,2206,1.208,2207,0.649,2208,1.344,2209,0.722,2210,0.681,2211,0.503,2212,0.859,2213,0.481,2214,2.045,2215,0.859,2216,0.859,2217,0.859,2218,0.503,2219,1.6,2220,1.6,2221,0.544,2222,0.598,2223,3.767,2224,1.6,2225,0.436,2226,2.543,2227,0.516,2228,0.859,2229,0.859,2230,1.6,2231,0.776,2232,0.859,2233,0.598,2234,0.776,2235,0.859,2236,0.722,2237,0.681,2238,0.859,2239,0.859,2240,0.529,2241,0.859,2242,0.598,2243,2.03,2244,0.503,2245,0.492,2246,0.859,2247,0.56,2248,0.859,2249,0.776,2250,0.859,2251,0.471,2252,0.649,2253,0.859,2254,4.171,2255,0.681,2256,0.859,2257,1.446,2258,0.407,2259,0.713,2260,1.465,2261,1.158,2262,0.681,2263,0.649,2264,0.529,2265,0.859,2266,0.722,2267,0.859,2268,0.859,2269,0.722,2270,0.529,2271,0.649,2272,3.767,2273,3.767,2274,0.859,2275,0.598,2276,0.722,2277,0.962,2278,2.365,2279,0.649,2280,0.649,2281,1.446,2282,0.776,2283,0.827,2284,0.516,2285,0.776,2286,0.859,2287,0.529,2288,0.722,2289,0.859,2290,0.681,2291,0.722,2292,1.6,2293,0.859,2294,2.814,2295,2.814,2296,0.649,2297,0.649,2298,1.077,2299,0.461,2300,2.03,2301,0.859,2302,0.859,2303,1.6,2304,0.859,2305,0.859,2306,1.6,2307,0.722,2308,0.859,2309,0.859,2310,0.859,2311,1.887,2312,0.859,2313,0.859,2314,0.859,2315,2.246,2316,0.722,2317,0.649,2318,0.859,2319,0.859,2320,0.859,2321,0.622,2322,0.776,2323,1.887,2324,0.471,2325,0.859,2326,0.859,2327,0.622,2328,0.859,2329,0.859,2330,0.681,2331,2.037,2332,2.232,2333,1.032,2334,1.512,2335,0.859,2336,1.6,2337,0.859,2338,0.859,2339,0.859,2340,0.776,2341,0.776,2342,0.859,2343,1.6,2344,0.681,2345,1.044,2346,0.859,2347,0.859,2348,0.722,2349,4.536,2350,3.767,2351,3.318,2352,0.859,2353,1.6,2354,0.859,2355,1.6,2356,0.859,2357,1.446,2358,1.344,2359,1.344,2360,1.6,2361,1.6,2362,0.859,2363,5.336,2364,0.297,2365,0.649,2366,2.846,2367,5.068,2368,2.246,2369,2.458,2370,4.304,2371,0.859,2372,2.246,2373,1.696,2374,4.866,2375,0.859,2376,0.859,2377,2.999,2378,4.866,2379,0.859,2380,1.6,2381,2.126,2382,1.43,2383,2.814,2384,0.859,2385,0.859,2386,1.6,2387,0.578,2388,0.859,2389,3.767,2390,1.6,2391,1.6,2392,1.6,2393,2.814,2394,1.6,2395,1.446,2396,4.171,2397,0.859,2398,0.859,2399,0.859,2400,1.6,2401,0.859,2402,0.859,2403,0.859,2404,0.859,2405,0.859,2406,0.859,2407,0.859,2408,0.859,2409,0.859,2410,0.622,2411,0.859,2412,0.859,2413,0.859,2414,0.859,2415,1.6,2416,0.859,2417,1.6,2418,0.859,2419,0.961,2420,0.859,2421,0.859,2422,0.859,2423,1.6,2424,0.859,2425,0.859,2426,1.6,2427,0.859,2428,0.859,2429,0.859,2430,0.859,2431,0.859,2432,0.859,2433,0.859,2434,3.308,2435,0.859,2436,0.859,2437,0.722,2438,0.56,2439,1.6,2440,1.887,2441,1.6,2442,1.6,2443,1.6,2444,0.859,2445,1.446,2446,0.859,2447,1.6,2448,1.781,2449,0.722,2450,0.859,2451,0.859,2452,0.722,2453,0.859,2454,0.598,2455,0.859,2456,0.859,2457,0.56,2458,4.536,2459,2.126,2460,0.681,2461,1.208,2462,1.626,2463,0.776,2464,0.859,2465,0.776,2466,0.598,2467,0.414,2468,1.655,2469,0.859,2470,0.784,2471,0.859,2472,0.859,2473,0.859,2474,0.859,2475,0.859,2476,0.859,2477,0.859,2478,0.859,2479,0.859,2480,0.859,2481,0.859,2482,0.859,2483,0.859,2484,0.859,2485,0.859,2486,0.681,2487,0.859,2488,0.681,2489,0.859,2490,1.887,2491,0.681,2492,0.722,2493,0.859,2494,1.446,2495,3.767,2496,0.622,2497,1.446,2498,5.168,2499,2.246,2500,0.859,2501,0.859,2502,0.859,2503,0.859,2504,0.859,2505,0.859,2506,0.859,2507,0.859,2508,0.859,2509,0.859,2510,0.859,2511,0.859,2512,0.859,2513,0.859,2514,0.859,2515,0.859,2516,0.859,2517,1.6,2518,0.859,2519,0.859,2520,0.859,2521,0.859,2522,0.859,2523,0.859,2524,0.722,2525,4.304,2526,2.999,2527,0.859,2528,2.543,2529,0.859,2530,0.859,2531,1.6,2532,1.6,2533,2.246,2534,3.318,2535,3.767,2536,0.859,2537,0.859,2538,1.6,2539,1.6,2540,0.859,2541,0.859,2542,1.344,2543,1.6,2544,1.6,2545,0.859,2546,0.859,2547,1.6,2548,0.859,2549,0.859,2550,0.859,2551,0.722,2552,1.269,2553,1.6,2554,1.6,2555,0.544,2556,0.776,2557,0.859,2558,0.859,2559,0.859,2560,0.859,2561,0.859,2562,0.859,2563,0.859,2564,0.724,2565,1.446,2566,0.859,2567,0.859,2568,1.344,2569,0.681,2570,1.684,2571,2.814,2572,1.6,2573,1.208,2574,0.859,2575,0.598,2576,0.859,2577,0.859,2578,0.859,2579,4.171,2580,0.776,2581,0.859,2582,0.859,2583,0.776,2584,0.598,2585,1.158,2586,0.622,2587,0.452,2588,0.722,2589,0.859,2590,0.722,2591,0.722,2592,1.344,2593,0.681,2594,0.776,2595,0.681,2596,1.6,2597,1.269,2598,0.722,2599,0.859,2600,1.014,2601,0.722,2602,0.859,2603,0.681,2604,0.622,2605,1.6,2606,0.859,2607,0.776,2608,0.681,2609,0.722,2610,0.776,2611,0.503,2612,0.722,2613,0.681,2614,0.722,2615,0.859,2616,0.859,2617,0.859]],["description//tracks/python-101/top-questions/",[1287,1.713,1611,0.59,1664,2.658,1665,2.774,1668,3.319,2030,2.774,2031,3.319]],["title//tracks/python-101/standard_library/threading",[332,2.749,1301,1.733,2618,4.294]],["content//tracks/python-101/standard_library/threading",[6,0.369,14,2.057,17,3.536,27,2.417,34,2.216,49,1.863,58,2.189,65,1.191,68,1.246,71,2.1,80,1.915,89,3.093,90,4.605,110,1.477,137,1.291,175,0.737,176,1.387,234,1.987,240,3.121,245,2.199,246,1.491,263,2.765,268,2.596,288,1.202,295,2.387,301,2.627,332,5.665,342,2.878,343,2.138,344,0.722,358,4.461,398,3.242,401,4.216,437,2.694,464,3.085,465,3.41,477,3.472,479,1.336,526,4.605,536,1.257,542,2.733,552,7.251,553,3.831,556,3.145,563,4.95,583,4.108,800,3.141,848,4.461,918,1.776,1036,2.853,1046,3.158,1055,2.016,1068,4.888,1078,4.834,1088,2.023,1301,3.026,1331,2.016,1341,2.337,1346,6.843,1447,2.337,1611,1.099,1652,2.595,1656,2.39,1661,2.337,1678,3.296,1740,3.917,1751,2.469,1769,3.536,1881,3.41,1920,2.981,2026,5.424,2055,3.675,2287,4.216,2607,6.18,2618,8.118,2619,4.766,2620,5.424,2621,6.18,2622,5.424,2623,8.627,2624,6.18,2625,6.838,2626,5.747,2627,8.627,2628,6.838,2629,3.41,2630,6.838,2631,6.838,2632,6.838,2633,6.838,2634,6.838,2635,6.838,2636,6.838,2637,8.627,2638,6.838,2639,6.838,2640,7.798,2641,5.165,2642,5.747,2643,3.093,2644,6.838,2645,4.009,2646,5.165,2647,3.242,2648,5.747,2649,5.424,2650,6.838]],["description//tracks/python-101/standard_library/threading",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/sys",[1301,1.998,2584,4.35]],["content//tracks/python-101/standard_library/sys",[1,1.833,6,0.394,14,2.393,29,2.156,34,2.22,38,1.244,47,4.061,63,3.623,65,1.386,71,1.852,89,3.599,96,1.388,101,4.089,102,2.436,120,1.467,175,1.02,221,2.047,240,2.182,245,1.537,264,2.108,268,2.678,270,2.538,289,2.088,295,1.523,332,4.52,337,2.659,343,1.495,356,0.783,362,2.106,369,2.77,381,2.407,422,1.529,462,1.567,467,2.418,468,2.504,473,4.089,474,2.907,477,3.062,507,1.931,542,1.911,593,1.51,600,1.649,603,3.718,606,2.182,628,2.345,635,2.63,756,1.973,757,4.364,831,4.203,995,2.956,1036,1.994,1057,3.772,1066,2.947,1089,2.207,1100,4.954,1226,3.241,1231,5.759,1284,2.207,1301,3.299,1341,3.042,1424,2.207,1443,3.379,1447,3.453,1493,5.759,1536,3.91,1597,2.814,1611,1.68,1648,3.118,1652,3.911,1661,3.042,1747,2.038,1829,2.289,1863,4.504,1864,3.455,1874,4.061,1875,6.009,1920,3.561,1930,2.21,1978,3.455,2099,2.956,2101,5.489,2110,6.686,2111,6.686,2182,4.783,2214,3.718,2244,3.536,2257,5.451,2258,2.859,2584,7.183,2652,4.203,2653,7.19,2654,7.955,2655,7.955,2656,6.031,2657,7.955,2658,6.031,2659,4.665,2660,3.935,2661,7.955,2662,2.471,2663,8.903,2664,9.84,2665,7.955,2666,8.903,2667,6.031,2668,5.069,2669,4.555,2670,5.069,2671,7.955,2672,6.031,2673,6.031,2674,6.031,2675,6.031,2676,6.031,2677,4.555,2678,3.821,2679,6.031,2680,4.783,2681,6.031,2682,6.031,2683,6.031,2684,4.366,2685,6.031,2686,6.031,2687,6.031,2688,5.069,2689,6.031,2690,4.203,2691,6.031,2692,3.623,2693,3.91,2694,5.069,2695,4.783,2696,6.031,2697,3.821]],["description//tracks/python-101/standard_library/sys",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/subprocess",[1301,1.998,2669,4.715]],["content//tracks/python-101/standard_library/subprocess",[6,0.361,26,1.105,32,1.769,58,2.325,65,1.265,68,1.77,101,3.336,102,2.305,124,1.5,139,1.75,175,0.783,176,1.473,191,1.687,206,2.371,212,2.538,216,1.783,221,1.869,234,1.527,240,2.627,247,3.285,263,2.936,295,1.834,304,3.687,358,4.632,362,1.923,375,2.375,406,3.687,422,1.867,444,4.477,465,4.467,479,1.026,487,3.5,488,2.375,542,2.301,548,2.454,556,3.077,593,1.647,600,1.265,757,3.56,832,3.687,849,1.527,917,2.523,935,2.159,938,2.394,939,2.538,1057,4.247,1088,2.566,1255,2.723,1301,3.335,1447,2.482,1536,3.189,1611,1.439,1620,4.738,1632,1.941,1661,2.482,1747,3.027,1811,5.131,1863,3.236,1920,2.509,1930,2.817,2662,4.155,2669,8.013,2698,3.687,2699,4.391,2700,8.957,2701,6.564,2702,7.262,2703,5.676,2704,7.262,2705,7.262,2706,7.262,2707,7.262,2708,7.262,2709,7.262,2710,5.062,2711,6.104,2712,5.486,2713,6.104]],["description//tracks/python-101/standard_library/subprocess",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/smtplib",[6,0.178,1301,1.53,2714,3.46,2715,3.791]],["content//tracks/python-101/standard_library/smtplib",[6,0.404,65,1.323,110,1.641,124,1.569,139,2.219,190,2.714,234,1.936,238,3.661,240,2.748,288,1.335,305,3.489,333,2.539,408,3.288,435,5.123,437,3.627,452,5.531,465,3.788,479,1.073,487,4.775,542,2.917,556,2.406,593,1.288,595,2.847,750,4.003,886,4.351,934,4.591,1110,2.813,1141,5.115,1301,2.948,1307,5.115,1441,4.956,1610,2.813,1611,1.479,1920,2.625,2098,3.544,2099,3.723,2715,7.858,2716,6.349,2717,7.595,2718,6.384,2719,6.865,2720,8.954,2721,5.294,2722,8.327,2723,4.563,2724,5.294,2725,7.595,2726,7.595,2727,4.948,2728,7.595,2729,7.738,2730,9.206,2731,5.551,2732,7.595,2733,9.206,2734,7.595,2735,7.595,2736,7.595,2737,7.595,2738,7.595,2739,7.595,2740,7.595,2741,7.595,2742,7.595]],["description//tracks/python-101/standard_library/smtplib",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/os",[1301,1.998,1377,3.575]],["content//tracks/python-101/standard_library/os",[1,1.996,6,0.396,14,2.942,27,2.321,34,1.54,71,2.016,101,3.016,102,1.69,110,1.419,112,2.665,118,1.824,124,1.356,164,2.269,175,0.708,176,1.706,191,1.526,206,1.739,216,2.401,229,2.69,245,1.674,270,4.117,272,2.803,289,2.145,300,3.395,319,3.851,331,2.721,337,3.269,361,3.529,464,2.348,473,3.016,479,0.928,488,2.148,490,1.628,539,3.762,542,2.08,606,3.538,793,2.269,849,1.381,852,3.862,991,2.771,1036,2.171,1066,3.831,1088,1.971,1255,3.152,1301,2.692,1363,2.462,1377,4.817,1585,2.843,1675,4.348,1747,3.305,1803,3.529,1864,3.762,1890,2.971,1920,2.269,1930,2.577,1931,3.762,1981,5.328,2103,4.285,2145,4.049,2258,4.793,2259,2.926,2261,6.087,2323,5.519,2659,6.49,2662,3.445,2703,4.161,2743,7.6,2744,6.567,2745,6.567,2746,6.567,2747,6.567,2748,6.567,2749,5.935,2750,6.567,2751,8.408,2752,5.935,2753,6.567,2754,6.567,2755,6.567,2756,8.408,2757,6.567,2758,6.567,2759,6.567,2760,6.567,2761,6.567,2762,6.567,2763,6.567,2764,6.567,2765,3.334,2766,6.567,2767,4.96,2768,4.285,2769,6.567,2770,6.567,2771,6.567,2772,6.567,2773,6.567,2774,6.567,2775,6.567,2776,6.567,2777,6.567,2778,4.577,2779,6.567,2780,6.567,2781,6.567,2782,6.567,2783,6.567,2784,6.567,2785,6.567,2786,6.567,2787,6.567,2788,6.567,2789,3.219,2790,6.567,2791,6.567,2792,6.567,2793,6.567,2794,6.567,2795,6.567]],["description//tracks/python-101/standard_library/os",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/logging",[1151,2.912,1301,1.998]],["content//tracks/python-101/standard_library/logging",[6,0.35,32,1.333,38,1.469,71,2.073,75,1.652,80,1.499,107,1.805,137,1.616,164,2.536,175,0.728,176,1.906,191,1.569,208,3.491,212,2.36,230,1.569,234,2.078,240,2.442,288,1.187,289,1.994,351,1.84,356,1.112,359,2.562,421,2.923,422,1.298,432,2.842,437,4.317,452,6.126,459,3.176,470,3.376,476,2.694,479,1.328,518,2.139,536,1.241,542,2.139,556,2.139,620,4.278,670,3.868,767,5.793,787,2.803,817,2.117,828,3.367,845,4.159,905,0.919,938,1.805,1024,1.333,1049,3.009,1069,6.126,1090,6.986,1151,4.757,1226,3.629,1301,3.264,1363,3.905,1484,2.842,1611,1.085,1863,3.009,1920,2.333,2468,3.367,2697,4.278,2796,7.541,2797,5.674,2798,10.417,2799,8.558,2800,6.788,2801,10.195,2802,8.558,2803,7.193,2804,6.751,2805,6.751,2806,6.751,2807,6.751,2808,6.751,2809,6.751,2810,6.751,2811,6.751,2812,6.751,2813,6.751,2814,6.751,2815,6.751,2816,6.751,2817,6.751,2818,6.751,2819,6.751,2820,3.931,2821,7.453,2822,5.674,2823,5.674,2824,6.751,2825,6.102]],["description//tracks/python-101/standard_library/logging",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/datetime_time",[1301,1.998,2826,6.241]],["content//tracks/python-101/standard_library/datetime_time",[2,4.306,6,0.404,14,2.606,18,1.972,30,1.79,33,5.347,34,1.798,47,3.844,58,2.773,102,2.616,110,2.087,112,2.09,114,1.04,136,1.302,137,1.078,149,5.24,152,4.797,175,0.615,176,1.158,191,1.782,203,1.847,212,2.68,216,1.402,240,3.933,245,1.455,337,3.398,356,1.125,369,2.622,375,1.867,422,1.097,465,5.069,467,2.633,474,4.175,478,3.804,542,2.43,556,2.934,563,4.132,593,0.968,606,3.35,608,3.978,643,3.724,758,1.256,771,3.27,910,1.753,938,1.526,1036,2.864,1060,5.159,1100,4.246,1138,1.483,1301,2.965,1410,4.394,1443,3.198,1611,1.232,1649,3.519,1652,3.287,1656,2.68,1708,5.004,1829,3.287,1920,2.65,1925,7.298,1952,3.894,1984,2.898,1996,2.952,2014,4.527,2146,4.565,2218,3.347,2287,6.37,2419,3.429,2555,3.617,2586,7.48,2622,4.527,2629,4.619,2698,2.898,2827,5.708,2828,5.708,2829,5.708,2830,5.708,2831,6.87,2832,5.346,2833,7.67,2834,5.708,2835,5.159,2836,4.797,2837,3.27,2838,3.617,2839,3.198,2840,7.67,2841,4.527,2842,4.797,2843,4.797,2844,4.797,2845,5.708,2846,6.932,2847,5.708,2848,5.708,2849,7.67,2850,5.708,2851,5.708,2852,5.708,2853,7.67,2854,5.708,2855,5.708,2856,5.193,2857,5.708,2858,7.67,2859,3.519,2860,5.708,2861,7.67,2862,7.67,2863,6.932,2864,7.67,2865,7.67,2866,5.708,2867,5.708,2868,5.708,2869,4.797,2870,3.131,2871,5.708,2872,6.958,2873,3.429,2874,5.708,2875,5.159,2876,5.159,2877,5.708,2878,5.708,2879,5.708,2880,4.527,2881,7.67,2882,5.159,2883,5.708,2884,5.708,2885,5.708,2886,4.797,2887,5.708,2888,3.844,2889,5.159,2890,5.708,2891,5.708,2892,5.708,2893,5.708,2894,5.708,2895,7.67,2896,5.708,2897,5.708,2898,5.708,2899,5.708,2900,5.708]],["description//tracks/python-101/standard_library/datetime_time",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/configparser",[1301,1.998,2901,4.95]],["content//tracks/python-101/standard_library/configparser",[6,0.375,26,1.083,38,1.384,49,1.941,65,1.241,73,1.922,110,1.912,112,2.948,136,2.019,137,1.345,175,0.768,191,1.655,205,3.907,221,2.277,234,1.861,240,2.576,254,4.796,289,2.295,301,3.4,337,2.958,344,0.752,354,1.886,369,3.272,408,3.831,468,4.56,476,2.842,479,1.007,488,2.33,556,3.191,655,2.489,767,4.176,777,3.323,817,2.233,845,2.998,1298,4.279,1301,3.083,1364,2.957,1611,1.144,1648,3.683,1680,2.703,1747,2.407,1920,3.058,2132,4.08,2284,4.279,2678,4.513,2692,5.317,2693,3.887,2901,8.374,2902,6.343,2903,9.629,2904,4.576,2905,8.85,2906,4.796,2907,7.122,2908,8.85,2909,8.85,2910,9.362,2911,9.543,2912,8.85,2913,7.122,2914,7.122,2915,5.395,2916,7.122,2917,7.122,2918,7.122,2919,7.122,2920,7.122,2921,7.122,2922,7.122,2923,7.122]],["description//tracks/python-101/standard_library/configparser",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/asyncio",[1301,1.998,2924,4.95]],["content//tracks/python-101/standard_library/asyncio",[5,3.845,6,0.375,27,2.529,32,1.752,34,2.262,53,3.067,55,3.924,65,1.246,67,2.418,110,1.545,137,1.351,175,0.771,176,1.451,234,1.504,268,2.67,346,7.653,356,0.929,358,3.699,366,3.392,372,3.011,383,2.22,388,7.652,395,3.77,436,7.62,462,1.858,593,1.505,606,2.588,626,2.174,859,3.053,915,2.97,918,1.28,1036,3.429,1046,3.248,1282,3.77,1283,3.699,1301,3.089,1611,1.426,1619,4.3,1622,5.084,1652,2.715,1661,2.445,1751,2.887,1769,3.699,1829,2.715,1856,4.986,1861,4.986,1869,2.243,1920,2.472,1979,3.053,2027,5.084,2101,5.471,2154,5.179,2255,5.674,2382,2.715,2454,4.986,2620,7.039,2621,6.466,2712,5.404,2924,8.001,2925,6.013,2926,5.404,2927,9.648,2928,8.875,2929,4.141,2930,7.154,2931,5.404,2932,3.632,2933,7.154,2934,7.154,2935,10.088,2936,7.154,2937,4.533,2938,7.154,2939,7.154,2940,8.875,2941,8.875,2942,8.875,2943,7.154,2944,9.648,2945,8.875,2946,7.154,2947,7.154,2948,7.154,2949,3.053,2950,6.466]],["description//tracks/python-101/standard_library/asyncio",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/argparse",[1301,1.998,2951,5.246]],["content//tracks/python-101/standard_library/argparse",[6,0.372,74,1.721,101,4.764,102,2.669,110,1.675,112,2.724,114,1.413,120,1.887,146,3.937,147,2.014,161,2.431,176,1.573,221,2.399,234,1.96,260,4.254,263,3.135,268,2.333,300,2.839,478,4.094,479,1.096,593,1.315,595,2.907,600,1.351,628,2.286,799,3.801,814,5.405,1086,4.659,1100,4.9,1301,2.483,1611,1.246,1680,2.943,1688,3.937,1834,7.929,1844,4.914,1920,2.68,2331,5.614,2951,8.717,2952,7.009,2953,7.755,2954,9.323,2955,7.009,2956,7.755,2957,7.755,2958,7.755,2959,7.755,2960,7.755,2961,7.755,2962,7.755,2963,7.755,2964,6.083,2965,7.755,2966,7.755,2967,7.755,2968,7.755,2969,7.755,2970,7.755,2971,7.755,2972,7.755,2973,5.614,2974,4.087,2975,4.254,2976,2.65,2977,7.755]],["description//tracks/python-101/standard_library/argparse",[1611,1.021,2651,2.014]],["title//tracks/python-101/standard_library/_index",[1301,1.733,1863,2.413,2978,4.294]],["content//tracks/python-101/standard_library/_index",[2,3.105,14,2.096,33,4.692,34,2.047,38,1.089,58,2.231,65,1.214,68,1.59,71,2.139,75,1.535,89,3.152,101,4.01,102,2.246,105,1.862,110,2.268,136,1.589,149,4.595,176,1.413,191,2.215,206,1.844,214,3.06,221,1.793,235,2.681,245,1.776,260,3.822,263,2.817,266,5.044,268,2.096,288,1.225,289,2.023,331,2.255,332,3.537,356,0.905,366,3.303,397,2.225,435,3.603,436,5.263,464,2.491,465,3.475,468,3.625,487,3.358,490,1.727,542,3.166,593,1.695,626,2.118,755,3.105,758,1.533,767,4.085,774,2.983,914,3.991,1036,2.304,1088,2.047,1100,3.415,1121,4.186,1151,3.251,1301,3.598,1363,2.612,1375,4.415,1377,3.991,1443,3.904,1447,2.381,1611,1.687,1652,2.644,1656,3.493,1678,3.358,1680,3.313,1747,2.354,1802,4.415,1829,2.644,1863,3.105,1869,2.184,1930,2.425,2067,2.207,2584,4.856,2586,5.044,2618,5.526,2659,4.085,2662,3.576,2669,5.263,2699,3.415,2714,6.32,2715,6.924,2716,5.382,2721,4.856,2722,5.856,2796,5.044,2832,4.856,2901,5.526,2924,5.526,2951,5.856,2979,4.692,2980,5.263,2981,5.526,2982,4.856,2983,6.967,2984,6.967,2985,4.415]],["description//tracks/python-101/standard_library/_index",[1611,1.021,2651,2.014]],["title//tracks/python-101/frameworks/tornado",[2986,6.192]],["content//tracks/python-101/frameworks/tornado",[2,4.15,6,0.414,18,2.921,56,3.769,58,2.12,68,1.206,75,1.486,101,3.041,102,1.704,111,1.895,114,1.697,120,2.056,124,1.367,183,2.642,191,1.964,195,3.978,216,1.626,234,1.392,240,2.395,251,3.245,259,2.453,265,2.544,268,2.543,297,3.424,300,2.424,344,0.893,356,0.86,378,4.796,431,2.143,465,3.302,468,2.749,478,2.908,479,1.316,490,1.641,491,5.565,544,3.793,556,2.098,600,1.154,606,3.058,623,1.804,625,4.615,709,3.793,741,2.609,745,3.169,781,3.041,787,2.749,823,3.361,849,1.392,909,2.012,918,1.185,993,2.453,1019,3.131,1036,2.795,1049,2.951,1090,4.32,1101,3.793,1110,3.131,1231,4.793,1300,2.826,1341,3.542,1386,2.995,1611,1.064,1639,2.012,1716,3.882,1729,3.191,1751,2.966,1769,3.424,1829,2.513,1916,4.956,1920,3.218,1958,3.51,1980,5.565,2024,3.978,2264,4.082,2587,4.907,2937,6.675,2986,8.245,2987,5.515,2988,6.621,2989,6.621,2990,6.621,2991,6.621,2992,8.453,2993,9.81,2994,6.621,2995,6.621,2996,8.453,2997,6.621,2998,6.621,2999,6.621,3000,5.46,3001,8.453,3002,6.621,3003,6.621,3004,6.621,3005,6.621,3006,6.621,3007,6.621,3008,4.543,3009,5.211,3010,7.104,3011,6.621]],["description//tracks/python-101/frameworks/tornado",[1611,1.021,2651,2.014]],["title//tracks/python-101/frameworks/flask",[3012,5.565]],["content//tracks/python-101/frameworks/flask",[6,0.415,18,2.203,38,0.997,56,2.449,65,1.111,75,1.7,91,2.928,137,1.204,176,1.673,222,2.916,230,1.481,234,1.735,344,1.021,351,1.737,352,2.063,378,4.336,425,2.916,426,4.525,431,2.96,458,4.293,544,3.652,606,2.306,623,2.884,648,2.48,668,6.909,678,3.296,741,2.512,755,2.841,756,2.085,918,1.141,993,3.056,1057,3.023,1299,3.236,1302,3.976,1308,2.143,1363,2.39,1386,2.884,1404,4.039,1405,2.333,1611,1.024,1618,2.178,1729,3.073,1751,2.866,1827,5.239,1829,3.131,1920,2.851,1958,2.647,2619,4.443,2678,4.039,2985,4.039,2987,5.383,3000,3.738,3012,7.995,3013,3.426,3014,4.816,3015,3.789,3016,8.249,3017,6.933,3018,6.375,3019,8.249,3020,5.762,3021,6.375,3022,6.375,3023,4.615,3024,6.375,3025,6.375,3026,6.375,3027,6.375,3028,7.251,3029,8.249,3030,8.419,3031,10.017,3032,8.249,3033,6.375,3034,8.331,3035,6.375,3036,5.811,3037,9.671,3038,9.053,3039,9.053,3040,9.671,3041,6.375,3042,9.146,3043,9.146,3044,9.146,3045,6.375,3046,6.375,3047,6.375,3048,6.375,3049,6.375,3050,9.146,3051,6.375,3052,6.375,3053,6.375,3054,6.375,3055,6.375,3056,6.375,3057,6.375,3058,6.375,3059,6.375,3060,6.375]],["description//tracks/python-101/frameworks/flask",[1611,1.021,2651,2.014]],["title//tracks/python-101/frameworks/fastapi",[3061,6.192]],["content//tracks/python-101/frameworks/fastapi",[1,2.522,6,0.389,35,3.431,38,1.517,52,2.826,56,3.53,65,1.446,68,1.172,75,1.706,91,3.812,111,1.841,114,1.172,139,1.551,164,1.737,175,0.693,176,1.864,190,1.897,234,1.353,246,1.403,261,2.472,268,1.936,288,1.131,331,2.082,337,2.774,344,0.97,354,1.704,356,1.078,378,3.593,388,7.273,425,2.275,431,2.082,436,6.269,452,4.986,462,1.671,479,0.909,544,3.686,621,5.816,623,2.737,663,3.154,668,6.939,678,3.327,741,2.535,774,2.199,781,2.956,849,1.353,905,1.444,917,1.671,918,1.152,993,3.074,1036,2.128,1101,3.686,1102,4.658,1140,4.333,1308,1.671,1386,2.911,1583,4.077,1611,1.034,1632,1.72,1729,3.101,1751,2.874,1843,4.034,1860,4.65,1861,4.485,1863,2.868,1865,5.104,1920,3.175,1958,3.446,1999,5.408,2078,4.485,2311,7.721,2932,3.267,2987,5.415,3000,3.773,3015,4.458,3017,5.408,3023,7.026,3028,4.658,3061,9.005,3062,4.199,3063,6.435,3064,6.435,3065,3.866,3066,6.435,3067,4.199,3068,8.299,3069,6.435,3070,8.299,3071,6.435,3072,5.816,3073,6.435,3074,6.435,3075,6.435,3076,7.468,3077,6.435,3078,6.435,3079,6.435,3080,6.435,3081,6.435,3082,6.435,3083,6.435,3084,10.046,3085,9.187,3086,9.187,3087,9.187,3088,6.435,3089,6.435,3090,6.435,3091,6.435,3092,4.861,3093,6.435,3094,6.435,3095,6.435,3096,6.435,3097,6.435,3098,5.816,3099,4.485,3100,6.435,3101,6.435]],["description//tracks/python-101/frameworks/fastapi",[1611,1.021,2651,2.014]],["title//tracks/python-101/frameworks/django",[3102,6.192]],["content//tracks/python-101/frameworks/django",[1,1.985,6,0.403,11,3.316,34,2.169,38,1.021,54,4.552,65,1.138,68,1.19,75,1.774,80,1.45,101,3,102,1.681,111,1.869,137,1.233,176,1.877,188,4.349,191,1.947,202,1.814,216,1.604,222,3.45,234,1.762,246,1.424,261,2.509,267,3.511,288,1.148,289,1.963,331,2.113,342,2.749,344,0.885,393,1.763,422,1.256,425,2.309,431,2.113,462,1.696,479,1.184,507,2.091,536,1.201,542,2.069,544,3.741,598,2.573,623,2.814,678,3.377,741,2.573,750,3.442,771,3.741,817,2.627,821,4.552,849,1.762,918,1.169,938,1.746,993,2.419,1042,3.924,1269,2.478,1296,2.509,1364,2.712,1405,2.391,1423,4.179,1470,2.309,1528,3.68,1611,1.346,1618,2.232,1628,2.827,1632,1.746,1670,5.489,1729,3.148,1734,3.51,1745,3.26,1751,2.793,1829,2.478,1869,2.048,1920,3.373,2218,3.829,2949,2.788,2987,4.261,3000,3.829,3009,5.166,3015,3,3017,5.489,3034,8.236,3038,5.903,3039,5.903,3102,8.826,3103,4.552,3104,6.531,3105,6.531,3106,5.489,3107,4.026,3108,6.531,3109,8.379,3110,6.531,3111,6.531,3112,5.903,3113,6.531,3114,4.933,3115,6.531,3116,6.531,3117,6.531,3118,6.531,3119,4.552,3120,4.728,3121,6.531,3122,6.531,3123,9.252,3124,6.531,3125,8.379,3126,6.531,3127,6.531,3128,6.531,3129,8.379,3130,9.252,3131,6.531,3132,6.531,3133,8.379,3134,8.379,3135,8.379,3136,6.531,3137,6.531,3138,6.531,3139,6.531,3140,6.531,3141,6.531,3142,6.531,3143,3.316,3144,6.531,3145,3.583,3146,4.138]],["description//tracks/python-101/frameworks/django",[1611,1.021,2651,2.014]],["title//tracks/python-101/frameworks/_index",[544,3.575,3147,3.424]],["content//tracks/python-101/frameworks/_index",[35,2.595,38,1.41,66,6.169,74,1.629,75,1.927,137,1.843,139,2.173,141,2.942,176,2.119,199,5.822,246,1.966,259,2.719,261,2.82,263,3.645,267,3.704,288,1.29,344,0.952,352,2.375,362,1.943,375,2.401,421,3.177,427,2.82,431,3.487,436,6.811,542,3.225,544,5.831,560,3.007,637,3.007,655,2.565,713,4.41,741,2.892,755,3.271,938,1.962,1143,2.968,1426,3.598,1439,4.41,1504,4.026,1528,3.223,1611,1.635,1618,2.508,1620,4.789,1621,4.943,1632,2.41,1639,3.094,1690,3.372,1734,3.945,2067,2.325,2619,5.116,2699,3.598,2986,7.578,3012,6.811,3015,3.372,3061,7.578,3062,4.789,3098,6.634,3102,7.578,3103,5.116,3148,7.34,3149,5.822,3150,4.026,3151,6.634,3152,5.116,3153,7.34,3154,3.151,3155,6.634,3156,5.116,3157,8.149,3158,6.284,3159,2.687]],["description//tracks/python-101/frameworks/_index",[1611,1.021,2651,2.014]],["title//tracks/python-101/external_packages/requests",[1296,2.398,1404,3.955]],["content//tracks/python-101/external_packages/requests",[6,0.403,34,1.857,35,2.8,56,4.16,67,2.677,111,2.266,137,1.496,139,1.909,164,2.138,191,1.84,234,1.985,263,3.203,381,3.161,426,5.179,435,5.216,542,2.51,593,1.343,655,2.768,918,1.418,993,2.934,1295,4.257,1296,3.043,1301,3.023,1302,3.818,1404,6.861,1611,1.273,1920,3.263,2699,3.883,2723,4.759,2987,6.161,3000,4.644,3009,5.821,3010,6.657,3160,9.442,3161,7.921,3162,9.442,3163,7.921,3164,7.921,3165,7.921,3166,7.921,3167,7.921,3168,7.921,3169,7.921,3170,7.921,3171,7.921,3172,3.818,3173,6.283]],["description//tracks/python-101/external_packages/requests",[1611,1.021,2651,2.014]],["title//tracks/python-101/external_packages/install_packages",[164,1.684,1296,2.398]],["content//tracks/python-101/external_packages/install_packages",[6,0.262,29,2.517,38,1.1,64,2.23,65,1.226,105,2.56,111,2.74,124,1.454,128,5.095,164,2.975,192,3.51,206,1.863,216,2.157,221,1.811,225,2.118,229,2.884,246,2.186,289,1.493,300,2.576,307,2.846,331,2.278,343,1.744,354,2.655,381,2.809,471,3.091,593,1.751,787,2.923,849,2.171,856,2.923,859,3.004,931,2.488,993,3.824,1089,2.576,1110,2.607,1150,4.593,1293,3.944,1295,5.148,1296,4.346,1302,3.392,1307,4.74,1424,2.576,1470,2.488,1592,2.405,1611,1.761,1623,4.906,1651,3.047,1658,4.339,1729,3.392,1869,2.207,1984,3.573,2067,2.23,2290,6.968,2698,3.573,2987,6.967,3143,3.573,3174,2.405,3175,4.127,3176,10.03,3177,9.578,3178,7.038,3179,3.233,3180,9.578,3181,7.038,3182,7.038,3183,6.362,3184,7.597,3185,6.362,3186,7.038,3187,3.45]],["description//tracks/python-101/external_packages/install_packages",[1611,1.021,2651,2.014]],["title//tracks/python-101/external_packages/_index",[530,2.487,1301,1.733,3188,5.414]],["content//tracks/python-101/external_packages/_index",[29,2.954,56,3.174,60,4.964,75,1.452,176,1.964,190,2.436,191,1.919,344,1.022,426,4.532,431,3.322,544,4.733,758,1.817,781,3.795,785,2.59,910,2.537,1055,2.436,1057,3.917,1296,3.174,1302,5.103,1404,5.235,1611,1.756,2009,3.526,2290,6.553,2619,5.758,3012,6.241,3143,4.194,3175,4.844,3189,4.44,3190,7.467,3191,7.467,3192,5.981,3193,8.262,3194,7.467,3195,6.944,3196,6.241]],["description//tracks/python-101/external_packages/_index",[1611,1.021,2651,2.014]],["title//tracks/python-101/enhance_python/testing",[259,2.729]],["content//tracks/python-101/enhance_python/testing",[6,0.38,26,1.031,34,2.012,38,1.06,94,5.031,101,3.114,102,1.745,110,1.465,112,2.338,120,1.649,124,1.4,141,1.959,147,1.761,158,2.605,161,2.952,167,4.074,175,0.731,227,3.104,234,1.98,240,2.453,259,3.666,262,6.27,266,4.908,268,2.04,288,1.192,344,0.716,354,1.795,437,2.671,465,4.695,470,2.317,471,2.978,476,2.706,479,0.958,488,2.218,530,4.325,556,3.135,593,1.455,606,2.453,623,2.565,716,3.164,741,2.671,745,2.04,755,3.824,849,1.426,882,3.506,918,1.213,940,3.573,1043,3.884,1049,3.824,1077,4.908,1103,2.741,1242,3.573,1255,2.542,1301,2.747,1341,2.317,1530,3.975,1611,1.379,1661,2.932,1749,3.769,1751,2.984,1769,3.506,1901,4.206,1914,4.424,1920,2.965,1958,3.563,2002,5.437,2055,3.644,2078,4.726,2206,5.122,2366,5.122,3036,4.074,3072,8.509,3197,10.591,3198,4.296,3199,6.128,3200,6.78,3201,6.78,3202,6.78,3203,6.78,3204,6.78,3205,6.78,3206,9.415,3207,6.78,3208,6.78,3209,6.78,3210,6.78,3211,6.78,3212,8.581,3213,4.18,3214,2.778,3215,6.78,3216,8.581,3217,6.78,3218,6.78,3219,6.78,3220,9.415,3221,4.566,3222,6.78,3223,6.78,3224,6.78,3225,9.415,3226,6.78,3227,6.78,3228,6.78,3229,6.78,3230,6.78,3231,6.78,3232,8.581,3233,6.78,3234,6.78,3235,6.78,3236,6.78,3237,5.378,3238,5.378]],["description//tracks/python-101/enhance_python/testing",[1611,1.021,2651,2.014]],["title//tracks/python-101/enhance_python/lambda",[2168,5.843]],["content//tracks/python-101/enhance_python/lambda",[1,2.644,6,0.4,26,1.323,30,2.981,34,2.639,38,1.36,65,1.207,89,3.935,96,1.595,102,1.782,114,1.262,120,2.426,124,1.431,139,1.67,147,2.47,158,2.661,161,2.727,175,0.937,176,1.405,221,1.782,234,1.456,260,4.771,302,3.182,313,2.063,366,3.284,422,1.332,467,2.89,468,2.876,470,2.972,477,3.517,478,3.042,536,1.599,575,3.661,606,2.506,635,2.29,660,6.297,716,3.232,757,3.395,793,3.006,817,2.172,852,3.182,915,3.612,935,1.67,1023,3.65,1085,5.226,1090,4.52,1100,5.036,1138,1.799,1283,4.498,1284,3.184,1447,2.972,1611,1.113,1632,1.851,1661,2.972,1713,5.494,1745,2.695,1749,4.512,1751,1.982,1789,3.765,1811,4.983,1840,5.447,2124,5.494,2143,6.297,2146,5.011,2165,5.822,2168,8.536,2171,5.675,2174,6.062,2643,3.134,2699,3.395,2974,3.65,3239,6.927,3240,5.494,3241,6.927,3242,4.162,3243,6.261,3244,5.822,3245,6.927,3246,6.261,3247,6.927,3248,6.57,3249,5.494,3250,5.494]],["description//tracks/python-101/enhance_python/lambda",[1611,1.021,2651,2.014]],["title//tracks/python-101/enhance_python/decorators",[2078,5.135]],["content//tracks/python-101/enhance_python/decorators",[6,0.38,17,3.84,34,2.518,38,1.57,63,4.462,65,0.948,68,0.992,74,1.208,96,1.253,110,1.826,114,1.353,120,1.324,137,1.028,144,2.23,160,4.846,164,1.469,175,0.979,176,2.126,221,1.4,224,1.902,225,2.234,240,3.058,241,5.079,245,2.315,246,1.843,261,2.091,289,1.155,331,1.761,354,1.441,356,0.707,362,1.441,372,3.126,375,1.78,462,1.414,465,5.479,467,1.654,470,1.86,477,4.292,478,3.988,490,1.349,525,2.5,548,2.857,556,3.379,606,2.687,623,2.59,745,1.637,755,2.426,756,1.78,778,1.441,817,2.328,845,2.291,848,2.814,901,2.784,907,1.186,910,1.671,915,2.26,1036,2.455,1078,3.05,1100,4.659,1138,1.414,1143,2.2,1280,4.737,1283,2.814,1295,4.543,1300,2.323,1447,2.538,1467,4.317,1482,2.818,1611,1.576,1648,2.814,1661,2.889,1677,2.763,1693,3.551,1741,2.356,1747,1.839,1749,3.261,1750,2.54,1751,2.966,1757,4.317,1760,6.242,1803,3.991,1887,5.381,1914,3.551,1920,2.921,1951,4.111,1958,3.51,1961,2.668,2019,6.242,2042,4.317,2052,2.58,2067,1.724,2075,3.551,2078,7.528,2087,6.242,2095,3.94,2110,8.245,2111,7.633,2208,4.574,2287,3.355,2332,5.89,2419,3.27,2462,5.376,2490,7.105,2525,7.18,2555,3.449,2889,6.712,3036,4.462,3251,5.443,3252,8.208,3253,4.578,3254,6.712,3255,5.443,3256,5.443,3257,5.443,3258,8.208,3259,5.443,3260,5.443,3261,5.443,3262,5.443,3263,5.443,3264,7.426,3265,5.443,3266,5.443,3267,5.443,3268,5.443,3269,9.505,3270,6.386,3271,4.919,3272,3.05,3273,3.191,3274,5.443,3275,7.426,3276,5.443,3277,7.105,3278,5.443,3279,5.443,3280,9.081,3281,1.86,3282,5.443,3283,4.317,3284,4.919,3285,5.443,3286,8.453,3287,5.443,3288,5.443,3289,4.919,3290,5.443,3291,5.443,3292,7.426,3293,5.443,3294,5.443,3295,5.443,3296,5.443,3297,4.919,3298,5.443,3299,4.317,3300,4.574]],["description//tracks/python-101/enhance_python/decorators",[1611,1.021,2651,2.014]],["title//tracks/python-101/enhance_python/debugging",[1463,4.518,1611,1.003]],["content//tracks/python-101/enhance_python/debugging",[14,2.887,15,2.619,26,1.572,34,2.355,53,3.316,65,1.862,102,2.75,111,2.521,112,1.926,158,2.716,175,0.762,221,1.819,225,2.127,230,1.642,261,2.716,268,2.127,288,1.243,295,1.785,297,3.656,343,1.752,354,1.872,372,2.976,381,2.821,393,1.908,397,1.802,420,4.359,439,3.352,462,1.836,471,3.105,477,3.589,542,2.791,585,4.613,598,2.785,623,1.926,647,3.06,702,3.247,755,3.151,758,1.555,774,2.416,848,3.656,849,1.852,917,1.836,918,1.265,932,3.299,938,1.89,1024,1.396,1036,3.173,1073,3.961,1226,3.8,1267,5.34,1297,3.878,1301,3.216,1309,3.06,1463,6.377,1482,2.683,1517,7.204,1611,1.661,1632,1.89,1651,3.813,1652,3.812,1681,4.48,1747,2.977,1829,2.683,1891,5.118,1917,4.145,1920,2.443,1954,2.084,1975,5.118,1976,3.961,2067,2.24,2096,3.961,2214,4.359,2382,2.683,2641,5.34,2856,3.8,3198,4.48,3301,9.342,3302,8.443,3303,7.07,3304,3.656,3305,3.589,3306,4.48,3307,7.07,3308,6.39,3309,7.07,3310,6.39,3311,4.145,3312,4.359,3313,7.07,3314,5.942,3315,5.607,3316,5.34,3317,7.07]],["description//tracks/python-101/enhance_python/debugging",[1611,1.021,2651,2.014]],["title//tracks/python-101/enhance_python/closure",[3318,6.659]],["content//tracks/python-101/enhance_python/closure",[6,0.403,30,2.712,34,2.6,38,1.353,47,4.625,48,6.207,80,1.524,89,3.107,110,1.484,112,2.792,120,2.105,137,1.297,147,2.247,158,2.638,175,0.74,176,1.921,216,1.686,221,1.767,234,2.09,263,2.776,306,4.625,356,0.892,397,1.75,474,3.31,476,2.741,477,5.047,530,3.155,536,1.59,548,2.321,606,3.785,623,2.709,675,2.025,793,2.373,817,2.153,901,2.575,1018,2.86,1078,3.848,1100,5.128,1138,1.784,1244,5.826,1447,3.236,1611,1.103,1661,2.956,1688,3.486,1747,2.924,1749,4.159,1750,4.036,1751,2.845,1764,4.481,1782,5.425,1996,4.897,2052,4.49,2146,3.619,2244,4.027,2297,7.154,3036,4.126,3214,3.544,3318,8.986,3319,6.867,3320,6.867,3321,8.651,3322,9.471,3323,6.867,3324,6.867,3325,5.772,3326,8.651,3327,5.072,3328,6.207,3329,6.867,3330,6.867,3331,8.651,3332,8.56,3333,6.867,3334,9.471,3335,6.867,3336,6.867,3337,6.867,3338,8.651,3339,5.187,3340,5.447]],["description//tracks/python-101/enhance_python/closure",[1611,1.021,2651,2.014]],["title//tracks/python-101/enhance_python/_index",[288,0.952,1917,3.174,3341,4.294]],["content//tracks/python-101/enhance_python/_index",[26,1.402,27,2.689,34,1.784,44,2.859,65,1.891,96,1.751,122,4.82,175,0.82,230,1.767,259,3.414,272,3.247,288,1.62,393,2.487,421,3.293,479,1.075,519,3.159,593,1.29,742,2.014,755,4.107,758,2.027,774,2.6,907,2.009,926,3.685,1055,2.243,1087,4.263,1301,2.951,1363,2.852,1431,6.423,1463,7.177,1466,4.964,1611,1.696,1643,4.678,1646,3.607,1656,2.659,1774,4.263,1904,3.549,1954,2.243,2067,2.92,2078,6.91,2079,5.302,2168,7.309,2169,5.746,2980,7.972,3302,6.394,3342,7.607,3343,4.82,3344,6.394,3345,7.607,3346,7.607,3347,7.607,3348,6.034,3349,6.671,3350,6.876,3351,6.876,3352,6.876,3353,3.607,3354,6.034,3355,7.607,3356,6.876,3357,6.394,3358,5.507,3359,5.507]],["description//tracks/python-101/enhance_python/_index",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/types",[344,0.659,655,2.181]],["content//tracks/python-101/basis/types",[1,3.044,6,0.412,30,2.747,88,5.89,112,2.605,114,1.742,120,2.131,147,2.276,161,2.197,221,1.803,257,3.219,302,4.391,344,1.009,356,0.91,375,2.292,397,2.233,441,3.077,479,1.457,518,2.22,593,1.698,655,3.728,702,3.219,745,3.21,777,3.27,793,3.303,795,3.123,851,5.073,855,4.44,935,1.689,938,1.873,1036,2.317,1088,1.643,1290,5.558,1327,4.572,1341,2.395,1590,6.949,1598,4.53,1611,1.536,1618,2.395,1619,3.123,1652,2.659,1696,4.44,1697,6.334,1747,2.368,1790,6.174,1793,6.744,1795,5.293,1799,5.89,1808,6.334,1809,5.293,1815,5.89,1833,5.073,1835,5.073,1838,5.558,1864,5.737,1868,7.185,1869,3.14,1873,7.364,1964,4.572,2045,3.844,2129,6.107,2158,4.109,2568,5.89,3240,5.558,3360,7.008,3361,7.25,3362,6.942,3363,7.364,3364,5.89,3365,5.293,3366,5.89,3367,5.89,3368,5.89,3369,5.89]],["description//tracks/python-101/basis/types",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/tuples",[1790,4.542]],["content//tracks/python-101/basis/tuples",[1,3.069,6,0.41,30,2.05,38,1.022,67,2.21,80,1.452,96,1.931,110,1.413,114,1.779,118,2.33,120,2.376,137,1.235,147,2.178,161,2.05,175,1.052,176,1.878,197,2.139,221,2.382,234,1.375,263,2.644,301,2.513,302,3.004,319,4.192,344,0.978,372,2.753,376,2.831,459,2.21,467,1.988,473,4.252,479,1.308,490,1.621,527,3.747,556,3.273,600,1.759,606,3.034,625,4.558,655,2.931,745,3.259,756,2.139,758,1.439,774,2.235,778,1.731,793,2.26,910,2.575,1079,2.482,1089,2.394,1585,3.63,1611,1.051,1622,3.747,1710,7.935,1748,5.497,1749,3.683,1789,2.831,1790,6.845,1791,3.206,1795,4.94,1796,4.144,1799,7.049,1805,6.335,1815,5.497,1829,2.482,1864,3.747,2003,4.734,2006,4.949,2007,5.497,2345,4.267,2457,6.371,2601,5.497,3143,3.32,3214,3.436,3361,6.071,3370,5.784,3371,6.54,3372,6.54,3373,6.54,3374,6.54,3375,6.54,3376,7.479,3377,6.54,3378,5.911,3379,6.54,3380,4.558,3381,6.54,3382,7.58,3383,6.54,3384,6.54,3385,4.144,3386,3.835,3387,7.343,3388,6.54,3389,5.497,3390,6.54]],["description//tracks/python-101/basis/tuples",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/strings",[102,1.896]],["content//tracks/python-101/basis/strings",[2,2.606,6,0.424,15,2.166,26,1.334,30,1.833,32,1.386,38,0.61,49,1.063,65,1.019,67,1.318,70,1.276,71,1.198,74,0.866,80,1.298,99,3.278,102,2.835,107,1.042,110,1.684,112,1.912,114,0.711,120,0.949,124,0.805,126,0.874,136,0.89,137,1.104,141,2.028,147,1.519,159,2.021,161,1.833,175,0.945,176,1.186,183,1.556,191,1.63,198,2.866,206,2.064,216,1.914,221,2.34,234,1.475,240,2.538,245,1.491,257,1.791,264,2.044,275,3.278,288,0.686,290,2.404,313,1.161,337,1.304,343,1.449,344,0.741,352,1.262,354,1.032,356,0.506,395,2.055,422,1.349,428,2.718,474,2.819,479,0.551,482,1.82,490,1.739,492,2.017,536,0.717,539,2.234,556,3.133,575,2.462,583,2.343,593,1.19,604,2.096,605,4.076,606,1.411,623,1.063,635,1.934,655,3.064,675,1.15,733,2.055,741,1.536,756,1.913,774,1.333,793,1.348,795,3.474,817,1.223,849,0.82,901,1.462,905,0.531,907,0.85,909,1.185,918,0.698,926,2.986,935,0.94,938,1.042,968,2.946,978,2.946,1017,2.428,1021,1.161,1024,1.386,1049,1.738,1061,1.664,1079,1.48,1086,2.343,1138,1.013,1198,3.821,1227,2.718,1245,3.938,1287,1.82,1289,2.287,1290,3.093,1298,2.343,1301,1.249,1341,2.664,1346,2.823,1365,1.764,1376,4.233,1447,2.398,1528,1.713,1557,2.287,1585,1.688,1601,2.139,1611,1.739,1618,1.333,1619,1.738,1628,2.531,1633,3.525,1646,2.773,1656,1.363,1661,1.998,1680,1.48,1704,1.664,1708,2.545,1710,5.888,1711,2.055,1724,1.98,1729,1.88,1738,3.278,1745,2.275,1747,3.16,1750,1.82,1786,2.568,1789,1.688,1790,2.404,1796,3.705,1818,1.556,1829,1.48,1835,2.823,1843,1.713,1846,5.897,1849,2.545,1855,2.287,1860,4.368,1864,2.234,1867,3.816,1869,1.833,1875,2.946,1880,2.096,1881,4.77,1901,1.911,1912,1.598,1918,3.278,1930,1.625,1946,5.079,1950,2.287,1954,1.15,1956,2.185,1958,1.619,1964,5.933,1974,2.545,1985,2.545,2003,4.233,2008,6.341,2052,1.849,2067,2.223,2070,2.626,2079,2.718,2098,1.82,2099,1.911,2107,7.019,2125,2.287,2129,4.076,2145,2.404,2146,2.055,2150,3.093,2158,4.57,2173,3.278,2213,2.185,2227,2.343,2251,2.139,2260,2.545,2261,2.823,2327,2.823,2333,1.791,2434,3.093,2467,1.88,2598,3.278,2600,2.471,2643,1.764,2692,2.343,2693,2.568,2698,1.98,2699,2.866,2703,2.471,2832,5.821,2880,3.093,2932,1.98,2980,4.417,3028,2.823,3143,1.98,3214,2.396,3244,3.278,3306,2.471,3361,4.233,3370,2.234,3385,2.471,3391,2.823,3392,2.823,3393,3.9,3394,1.642,3395,6.341,3396,3.9,3397,4.215,3398,5.848,3399,5.848,3400,5.565,3401,3.9,3402,5.897,3403,3.9,3404,2.626,3405,3.9,3406,3.525,3407,3.525,3408,3.9,3409,4.915,3410,8.351,3411,3.9,3412,4.915,3413,5.848,3414,5.848,3415,5.848,3416,3.9,3417,3.9,3418,5.848,3419,3.9,3420,3.9,3421,3.9,3422,3.9,3423,3.9,3424,2.404,3425,3.9,3426,2.247,3427,2.823,3428,3.093,3429,6.341,3430,4.915,3431,3.9,3432,2.343,3433,3.278,3434,1.688,3435,3.525,3436,3.278,3437,5.433,3438,3.278,3439,3.525,3440,3.525,3441,3.525,3442,3.278,3443,3.525,3444,3.9,3445,3.278,3446,3.093,3447,3.093,3448,3.278,3449,3.525,3450,3.278,3451,3.525,3452,3.525,3453,3.525,3454,3.525,3455,3.525,3456,3.9,3457,2.823,3458,3.525,3459,3.525,3460,3.525,3461,3.9,3462,3.525,3463,3.9,3464,3.9,3465,3.525,3466,3.9,3467,3.525,3468,3.9,3469,3.9,3470,3.525,3471,3.525,3472,3.525,3473,3.525,3474,3.525,3475,3.9,3476,3.525,3477,3.9,3478,3.9,3479,3.278,3480,3.525,3481,3.525,3482,3.525,3483,3.525,3484,3.525,3485,3.525,3486,3.525,3487,3.525,3488,3.525,3489,5.285,3490,3.525,3491,3.525,3492,3.093,3493,3.9,3494,4.417,3495,1.363,3496,3.9,3497,3.093,3498,3.9,3499,3.093,3500,2.626,3501,3.278,3502,2.823,3503,5.285,3504,2.185,3505,3.278,3506,7.016,3507,3.093,3508,1.945,3509,3.9,3510,3.9,3511,1.577,3512,3.9,3513,3.278,3514,3.093,3515,3.277,3516,2.404,3517,3.278,3518,2.343,3519,2.343,3520,2.946,3521,3.9,3522,3.9,3523,3.525,3524,3.9,3525,3.9,3526,3.9,3527,3.9,3528,3.9,3529,3.9,3530,3.9,3531,5.285,3532,3.9,3533,5.285,3534,3.9,3535,3.9,3536,3.9,3537,2.823,3538,3.9,3539,5.848,3540,3.9,3541,3.9,3542,3.9,3543,3.525,3544,3.093,3545,3.9,3546,2.287]],["description//tracks/python-101/basis/strings",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/sets",[1869,2.31]],["content//tracks/python-101/basis/sets",[1,2.544,6,0.42,30,3.236,34,1.529,83,2.445,114,2.007,120,2.652,124,1.347,147,2.883,161,3.367,167,3.919,175,0.703,176,1.323,331,2.992,359,2.475,441,2.864,479,0.922,556,2.066,575,2.745,606,3.529,678,3.373,745,3.231,859,2.784,918,1.167,1255,3.139,1611,1.048,1622,3.736,1675,4.329,1796,4.133,1809,6.324,1869,3.501,1871,5.638,2129,4.546,2145,5.161,2186,4.021,2765,4.25,3369,8.479,3547,9.331,3548,6.522,3549,6.522,3550,7.567,3551,8.372,3552,8.372,3553,6.64,3554,4.691,3555,8.817,3556,8.372,3557,8.372,3558,6.522,3559,6.522,3560,6.522,3561,6.522,3562,6.522,3563,5.173,3564,6.522,3565,6.522,3566,6.522,3567,5.895,3568,6.522,3569,6.522,3570,6.522,3571,6.522,3572,6.522,3573,6.522,3574,6.522,3575,6.522,3576,6.522,3577,6.522,3578,6.522,3579,6.522,3580,8.372,3581,6.522,3582,5.895,3583,6.522,3584,6.522]],["description//tracks/python-101/basis/sets",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/scope",[1018,2.064,1244,4.203]],["content//tracks/python-101/basis/scope",[6,0.41,30,3.132,34,2.634,57,2.769,112,2.91,124,1.306,167,3.8,175,1.123,203,3.313,234,2.027,300,2.315,343,1.567,356,1.066,372,3.455,462,2.132,470,2.161,477,3.211,479,1.16,488,2.069,490,1.567,518,2.004,778,1.674,793,2.185,803,4.008,817,3.023,848,3.27,938,1.69,1018,3.188,1237,3.783,1243,6.729,1244,6.493,1364,2.626,1447,3.113,1555,5.474,1556,5.316,1611,1.016,1643,4.167,1652,3.115,1745,4.246,1747,3.789,1749,4.999,1750,4.662,1751,2.607,1760,8.761,1764,6.681,1954,1.865,3585,4.777,3586,10.239,3587,4.127]],["description//tracks/python-101/basis/scope",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/operators",[1643,3.74]],["content//tracks/python-101/basis/operators",[1,1.847,6,0.429,26,0.924,30,2.802,32,1.579,38,1.583,102,1.564,110,1.313,112,2.179,114,1.797,120,2.4,147,2.562,202,1.688,221,1.564,234,1.681,240,3.233,311,4.537,319,4.096,352,1.966,402,3.202,422,1.168,459,2.054,525,2.791,745,1.828,793,2.763,1036,2.644,1255,2.997,1521,4.235,1583,3.85,1643,5.566,1677,4.059,1747,2.054,1749,4.814,1750,3.731,1753,8.695,1762,4.399,1791,2.978,1818,3.191,1829,3.034,1844,3.85,1857,3.982,1882,5.107,2043,5.217,2057,3.481,2134,4.399,2137,3.965,2146,5.93,2171,3.965,2182,6.342,2188,9.153,2649,4.82,2697,3.85,2841,6.342,2842,5.107,2843,5.107,3214,3.661,3242,3.651,3340,4.82,3588,6.75,3589,4.82,3590,5.107,3591,3.481,3592,6.076,3593,6.076,3594,4.399,3595,6.076,3596,6.076,3597,6.076,3598,4.399,3599,6.076,3600,6.076,3601,7.226,3602,6.076,3603,6.076,3604,7.995,3605,6.076,3606,4.399]],["description//tracks/python-101/basis/operators",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/numbers",[793,2.546]],["content//tracks/python-101/basis/numbers",[6,0.424,17,5.649,30,2.253,38,1.123,67,2.429,114,1.309,120,1.748,147,2.312,212,2.511,344,0.759,356,0.933,393,2.402,655,2.511,793,3.821,800,3.301,935,2.33,1598,3.716,1611,1.43,1710,8.307,1750,3.353,1818,2.868,1829,2.727,1833,5.202,1835,6.443,1836,6.04,1838,7.668,1842,3.862,1843,3.156,1844,5.639,1851,6.04,1863,3.202,1868,6.203,1974,4.689,2134,5.202,2158,4.213,2841,5.7,2842,7.48,2843,7.48,2982,5.009,3340,7.059,3588,7.993,3589,7.059,3590,7.48,3591,5.098,3607,8.899,3608,8.899,3609,7.186,3610,7.186,3611,7.186,3612,7.186,3613,7.186,3614,10.726,3615,6.495,3616,5.202]],["description//tracks/python-101/basis/numbers",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/loops",[1979,3.144]],["content//tracks/python-101/basis/loops",[1,2.61,6,0.408,26,1.033,30,3.104,38,1.343,58,3.27,65,1.183,102,1.747,110,1.855,114,1.901,120,2.292,137,1.282,143,4.526,147,2.81,161,2.954,181,4.915,234,1.806,300,2.485,301,3.62,313,2.022,354,2.621,462,2.447,470,2.32,474,3.272,525,4.866,635,2.245,668,7.116,716,3.168,745,2.584,793,2.968,925,1.924,1055,2.002,1070,5.129,1073,3.804,1254,3.511,1611,1.091,1642,7.472,1643,5.185,1741,2.939,1749,2.982,1753,5.385,1782,4.92,1789,3.718,1791,3.328,1840,5.397,1975,7.552,1976,5.279,1978,3.89,1979,4.772,1981,6.471,2005,3.386,2026,6.812,2283,4.872,3376,6.218,3387,6.812,3582,6.137,3617,3.578,3618,7.116,3619,4.711,3620,4.732,3621,3.89,3622,7.219,3623,7.763,3624,4.732,3625,4.915,3626,5.385,3627,4.732,3628,5.707,3629,6.79,3630,6.812]],["description//tracks/python-101/basis/loops",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/lists",[1,2.239]],["content//tracks/python-101/basis/lists",[1,3.374,6,0.423,17,4.72,26,1.252,30,2.58,34,1.489,83,3.085,96,1.894,112,1.73,114,1.927,120,2.494,137,1.199,147,2.663,161,2.58,173,1.619,175,1.041,176,1.288,206,2.178,221,2.117,234,1.335,245,1.619,246,1.384,300,3.012,313,1.891,337,2.122,370,2.83,479,0.897,490,2.039,556,3.169,606,2.297,635,2.721,675,1.872,702,2.917,745,3.243,756,2.691,758,1.397,800,4.193,895,5.337,1024,1.254,1055,1.872,1447,2.812,1585,2.749,1611,1.322,1618,2.17,1656,2.219,1790,5.073,1809,7.881,1812,5.739,1871,4.276,1886,3.915,1890,2.872,1954,1.872,2003,5.957,2006,4.474,2218,3.723,2264,3.915,2324,3.483,2645,3.723,2698,3.224,2765,4.177,3119,4.426,3363,6.916,3364,6.916,3376,7.242,3378,5.739,3387,7.659,3515,3.558,3563,5.036,3622,5.337,3623,9.042,3631,5.739,3632,6.35,3633,6.35,3634,8.228,3635,9.128,3636,4.143,3637,5.739,3638,9.657,3639,6.35,3640,6.35,3641,5.337,3642,3.558,3643,5.337,3644,5.337,3645,5.739,3646,6.35,3647,5.337,3648,6.35,3649,7.437,3650,6.35,3651,9.657,3652,6.35,3653,6.35,3654,6.35]],["description//tracks/python-101/basis/lists",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/install",[164,1.684,1611,1.003]],["content//tracks/python-101/basis/install",[6,0.297,18,2.755,64,2.526,65,1.389,101,3.663,102,2.052,105,2.534,164,2.73,175,1.128,216,1.958,221,2.052,246,2.205,267,3.026,268,2.399,354,2.111,398,3.781,419,4.675,425,2.819,611,2.919,640,2.725,843,3.311,849,2.127,993,3.511,1088,1.87,1269,3.026,1295,5.095,1296,3.887,1302,3.843,1611,1.774,1632,2.131,1729,3.843,2662,3.267,3154,2.787,3179,4.354,3655,4.286,3656,6.862,3657,2.851,3658,3.781,3659,4.468,3660,4.286,3661,3.908,3662,6.702,3663,6.702,3664,7.974,3665,5.203]],["description//tracks/python-101/basis/install",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/inputs",[344,0.572,628,1.596,1536,2.378]],["content//tracks/python-101/basis/inputs",[6,0.411,26,1.413,34,2.337,38,1.205,56,3.568,65,1.618,94,4.518,102,2.565,114,1.404,175,0.83,219,2.272,221,1.983,246,2.024,268,2.318,344,1.053,351,2.099,376,3.335,377,3.036,437,3.036,606,3.36,628,3.123,643,5.027,655,2.693,793,3.209,935,2.238,1024,1.834,1036,3.071,1245,5.189,1331,2.272,1341,3.173,1364,3.199,1423,3.843,1447,2.633,1473,6.476,1474,4.317,1536,4.078,1611,1.238,1652,3.783,1708,5.027,1843,3.384,1964,6.059,2688,7.805,2882,6.964,3495,2.693,3666,5.155,3667,6.964,3668,6.964,3669,6.111,3670,5.189,3671,7.705,3672,7.705,3673,7.705,3674,7.705,3675,6.476]],["description//tracks/python-101/basis/inputs",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/imports",[1301,1.998,1933,3.497]],["content//tracks/python-101/basis/imports",[6,0.389,26,0.98,34,2.534,38,1.007,53,2.87,65,1.751,120,1.568,172,2.872,175,1.047,234,1.355,289,2.221,332,3.271,343,1.597,356,0.837,362,1.706,374,1.895,376,2.789,377,2.539,393,1.739,461,2.936,462,2.158,473,3.816,477,4.217,490,1.597,519,2.675,536,1.185,542,2.041,575,2.712,593,1.409,600,1.751,623,1.756,646,2.83,756,2.108,784,4.204,793,2.227,817,2.02,848,3.332,849,1.747,852,2.96,909,1.958,910,1.979,915,2.675,1024,1.272,1052,5.111,1054,2.571,1237,3.449,1283,3.332,1296,3.532,1298,6.183,1301,3.608,1308,1.674,1341,2.202,1377,3.691,1611,1.615,1643,4.217,1652,2.445,1747,2.807,1749,3.648,1751,2.377,1763,4.339,1789,2.789,1820,5.111,1881,3.213,1884,4.339,1920,3.703,1922,5.416,1933,3.61,2047,4.491,2058,7.971,2146,3.396,2584,4.491,2588,5.416,2618,5.111,2669,4.867,2684,6.013,2714,4.665,2715,5.111,2796,4.665,2901,5.111,2924,5.111,3036,4.991,3198,4.083,3199,5.824,3325,5.416,3495,2.252,3585,4.867,3676,5.824,3677,6.588,3678,8.306,3679,9.193,3680,6.443,3681,6.443,3682,9.71,3683,7.508,3684,6.443,3685,5.111,3686,8.308,3687,9.084,3688,6.443,3689,5.824,3690,6.443,3691,5.824,3692,5.824,3693,6.443,3694,6.443,3695,6.443]],["description//tracks/python-101/basis/imports",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/ide",[267,2.369,3696,1.637]],["content//tracks/python-101/basis/ide",[6,0.28,38,1.178,44,2.843,65,1.72,105,2.014,110,1.628,111,2.825,126,2.052,139,1.816,164,2.473,175,0.987,191,1.751,221,2.358,222,2.664,246,1.997,278,3.897,289,1.599,295,2.314,398,3.573,476,3.007,479,1.065,593,1.278,742,1.995,849,1.927,952,4.275,991,2.135,993,3.657,1015,3.826,1055,2.222,1101,4.317,1269,2.86,1284,2.758,1295,4.925,1296,3.52,1331,2.222,1474,5.134,1483,3.971,1611,1.691,1651,3.262,1652,2.86,1661,2.575,1729,3.632,1917,4.418,2099,3.694,2211,4.418,2358,6.334,2382,3.898,2699,3.694,3179,3.461,3311,5.789,3312,6.087,3427,5.455,3655,4.925,3656,6.633,3657,3.276,3658,3.573,3659,4.222,3660,4.05,3696,1.976,3697,5.252,3698,6.334,3699,3.309,3700,3.129,3701,5.692,3702,5.252,3703,4.775,3704,7.536,3705,6.811,3706,7.536,3707,6.334,3708,5.075]],["description//tracks/python-101/basis/ide",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/functions",[34,1.727]],["content//tracks/python-101/basis/functions",[6,0.397,17,4.992,26,0.866,30,1.785,34,2.633,38,0.89,50,3.339,65,1.507,74,1.264,80,1.7,89,4.185,110,1.23,112,2.768,113,3.263,139,1.373,141,2.213,147,1.989,158,2.188,159,1.968,160,3.716,173,1.452,175,0.932,205,3.124,212,1.99,219,2.258,221,1.465,229,2.333,234,2.091,263,3.096,300,3.534,302,2.616,343,2.144,401,4.721,422,1.095,423,1.749,461,3.514,462,1.989,468,3.592,470,1.946,478,4.595,479,1.082,492,2.945,536,1.408,575,2.397,593,0.966,606,2.77,623,2.357,675,1.679,757,3.753,793,2.646,848,3.96,859,2.43,910,1.749,911,3.716,915,4.461,918,1.019,940,3.001,998,2.538,1024,1.708,1053,1.903,1066,2.109,1077,4.122,1078,4.848,1100,5.496,1181,2.616,1228,4.301,1282,3.001,1283,5.555,1302,2.745,1341,1.946,1361,2.945,1364,3.592,1405,2.084,1447,3.299,1597,2.657,1598,2.945,1611,0.915,1628,2.465,1643,2.891,1653,3.061,1694,2.538,1741,2.465,1747,2.588,1750,3.573,1751,2.955,1796,3.608,1820,6.074,1827,3.262,1864,3.262,1869,2.401,1889,3.835,1890,2.576,1901,2.791,1946,4.122,1964,3.716,2131,3.191,2132,4.387,2331,6.263,2332,4.517,2340,5.147,2341,5.147,2600,3.608,2974,3.001,3036,5.8,3099,5.337,3214,2.333,3240,4.517,3242,3.421,3325,4.786,3367,4.786,3368,4.786,3692,5.147,3709,5.694,3710,5.694,3711,5.694,3712,5.694,3713,5.694,3714,4.786,3715,5.694,3716,5.694,3717,5.694,3718,5.694,3719,5.694,3720,5.694,3721,5.694,3722,4.517,3723,5.694,3724,5.694,3725,5.147,3726,5.694,3727,5.694,3728,5.694,3729,5.694,3730,5.694,3731,5.694,3732,5.694,3733,5.694]],["description//tracks/python-101/basis/functions",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/file_io",[191,1.45,289,1.324]],["content//tracks/python-101/basis/file_io",[6,0.345,34,2.465,96,1.51,102,2.6,124,2.135,126,1.469,136,1.496,137,1.586,139,1.581,175,0.999,206,1.736,219,2.477,224,2.936,234,2.055,261,3.228,289,2.401,297,4.793,319,2.723,344,0.887,356,0.852,359,3.188,393,2.638,478,2.88,479,0.927,555,2.551,593,1.112,604,3.525,606,3.353,612,3.859,646,2.88,722,4.608,755,2.922,757,3.214,767,3.845,781,3.012,785,2.056,828,4.19,832,4.265,845,3.536,869,4.954,909,1.993,966,6.663,969,7.593,1017,2.723,1024,1.659,1079,2.489,1100,3.214,1218,6.346,1273,4.608,1295,3.525,1299,3.329,1447,2.241,1600,3.757,1611,1.57,1643,4.962,1648,5.346,1716,5.731,1759,4.926,1786,2.4,1890,2.967,1975,4.747,1979,4.313,1981,4.155,2099,3.214,2101,4.043,2284,6.315,2678,5.323,2692,5.569,2693,4.071,2697,5.874,2906,5.657,3270,4.954,3734,6.346,3735,8.401,3736,9.269,3737,5.201,3738,6.558,3739,6.558,3740,8.401,3741,8.401,3742,6.558,3743,6.558,3744,6.558,3745,6.558,3746,5.927,3747,6.558,3748,5.201,3749,6.558,3750,3.674,3751,8.401]],["description//tracks/python-101/basis/file_io",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/exception_handling",[167,3.75,781,2.867]],["content//tracks/python-101/basis/exception_handling",[2,2.971,6,0.409,7,2.971,15,2.47,18,2.304,34,1.563,38,1.042,49,1.817,58,2.135,65,1.479,110,1.834,114,1.215,137,1.603,167,6.637,175,1.007,219,1.966,234,1.964,246,1.453,288,1.172,313,2.782,354,2.248,422,1.282,429,3.819,459,2.253,474,3.213,477,3.385,536,1.561,578,7.672,628,2.503,655,2.33,716,3.111,769,5.036,781,4.291,793,3.51,848,4.39,938,1.782,1024,1.677,1036,2.807,1085,4.006,1088,1.563,1237,2.768,1273,5.124,1423,3.325,1536,2.928,1611,1.501,1632,1.782,1642,5.288,1643,5.271,1652,3.854,1741,4.495,1745,2.594,1749,4.69,1750,3.111,1820,5.288,1822,5.288,2311,7.851,2316,8.977,2345,4.35,2985,5.38,3036,5.909,3588,5.036,3618,5.036,3628,5.604,3636,6.627,3752,7.674,3753,5.288,3754,6.667,3755,4.35,3756,8.49,3757,9.342,3758,8.49,3759,7.136,3760,8.49,3761,8.443,3762,8.49,3763,5.288,3764,3.909,3765,6.026,3766,6.667,3767,9.835,3768,6.667,3769,4.647,3770,6.667]],["description//tracks/python-101/basis/exception_handling",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/dict",[1864,4.22]],["content//tracks/python-101/basis/dict",[1,2.13,6,0.413,26,1.066,34,1.643,38,1.494,68,1.596,110,1.514,112,2.939,173,1.786,175,0.944,176,2.031,219,2.066,221,1.803,234,1.474,245,2.233,257,3.219,302,5.061,337,3.195,344,0.74,356,1.138,372,2.95,375,2.292,479,0.99,490,1.737,556,2.22,606,3.458,678,3.624,709,4.015,745,2.876,917,1.82,1138,1.82,1254,3.624,1341,3.422,1583,4.44,1598,5.178,1619,3.123,1620,4.572,1622,4.015,1632,1.873,1790,4.32,1792,2.761,1793,4.719,1796,4.44,1827,5.019,1858,2.659,1864,6.409,1865,5.558,1867,4.572,1964,4.572,2006,3.435,2129,4.884,2131,5.356,2132,5.476,2137,4.572,2186,4.32,2568,5.89,2600,4.44,2643,3.17,2937,6.057,3240,5.558,3366,5.89,3367,5.89,3368,5.89,3563,5.558,3771,7.008,3772,7.008,3773,7.008,3774,7.008,3775,7.008,3776,7.008,3777,5.89,3778,7.008,3779,4.44,3780,6.334,3781,7.008,3782,7.008,3783,6.334,3784,7.008,3785,7.008,3786,7.008]],["description//tracks/python-101/basis/dict",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/conditionals",[525,3.384]],["content//tracks/python-101/basis/conditionals",[6,0.407,26,1.011,30,2.084,38,1.325,65,1.768,80,1.476,110,1.436,112,2.873,114,1.211,120,1.617,124,1.373,147,1.727,161,2.084,173,1.695,175,0.913,212,2.324,221,1.711,263,2.688,268,2,289,2.201,313,3.09,319,2.761,342,2.799,343,2.1,352,3.284,354,2.747,437,2.619,461,2.996,462,2.202,525,3.893,538,6.283,600,1.477,640,3.188,702,3.054,995,4.154,1079,2.523,1255,3.177,1298,5.092,1301,2.714,1341,3.188,1447,2.896,1597,3.102,1611,1.499,1618,2.272,1643,5.353,1652,2.523,1694,3.777,1741,4.039,1745,2.587,1747,3.563,1749,4.885,1750,3.102,1769,4.824,1809,6.402,1827,6.263,1890,3.008,2142,7.4,2146,5.178,2270,4.099,2542,7.841,3517,5.588,3618,5.022,3787,5.273,3788,6.649,3789,6.649,3790,6.649,3791,8.88,3792,4.634,3793,6.649,3794,6.649,3795,4.338,3796,6.649,3797,6.649,3798,6.649,3799,2.838,3800,3.102,3801,5.588]],["description//tracks/python-101/basis/conditionals",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/comprehensions",[1888,5.843]],["content//tracks/python-101/basis/comprehensions",[1,3.305,6,0.355,34,1.638,38,1.092,49,1.904,56,2.685,89,3.161,102,1.798,112,2.601,113,2.361,114,1.739,120,1.7,136,1.594,147,1.815,161,3.136,176,1.417,264,2.442,302,3.21,313,3.175,344,0.738,461,2.47,473,3.21,479,1.414,536,1.608,556,2.214,593,1.619,606,3.453,635,3.308,646,3.069,745,2.631,756,3.122,793,3.299,812,5.278,831,6.095,918,1.25,935,2.108,1085,4.198,1208,2.146,1447,2.988,1598,3.613,1611,1.405,1618,2.388,1656,2.442,1677,3.547,1749,4.393,1792,2.753,1842,5.131,1864,5.731,1869,3.136,1888,8.777,1901,4.903,1979,2.982,2002,5.541,2129,6.095,2136,7.35,2206,7.211,2218,4.097,2364,2.415,2624,6.315,3214,2.863,3361,6.331,3366,5.873,3369,7.35,3547,6.315,3687,8.628,3689,7.904,3802,6.987,3803,2.652,3804,6.987,3805,6.987,3806,5.873,3807,6.987,3808,7.904,3809,6.987]],["description//tracks/python-101/basis/comprehensions",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/classes",[465,3.674]],["content//tracks/python-101/basis/classes",[6,0.413,15,1.665,38,1.192,44,2.365,63,5.961,68,1.389,74,0.998,80,0.998,83,2.857,90,3.027,96,1.035,102,2.374,110,1.403,112,1.769,118,1.249,137,0.849,139,1.083,173,1.146,175,0.484,176,1.317,206,2.018,212,1.571,216,1.594,221,1.157,230,1.044,234,1.365,240,3.02,241,5.543,245,1.655,257,2.065,275,3.778,352,2.101,353,2.771,356,1.084,362,2.018,383,1.395,422,1.248,423,1.38,429,2.575,437,2.558,461,1.589,465,5.609,467,1.366,470,1.536,477,4.684,478,2.851,479,0.918,490,1.609,518,1.424,538,4.372,556,3.461,560,1.841,575,1.892,593,0.762,600,0.783,625,3.133,635,1.486,637,1.841,778,1.19,795,2.003,817,1.409,844,2.324,848,3.357,915,2.696,918,0.804,968,3.395,978,3.395,998,2.003,1068,2.324,1079,1.706,1086,2.701,1100,3.182,1106,3.133,1208,1.994,1254,2.324,1283,3.941,1297,2.466,1341,3.556,1346,3.254,1424,1.645,1447,2.852,1482,3.168,1484,1.892,1516,1.589,1528,1.974,1611,1.528,1628,1.946,1656,2.664,1747,1.519,1749,3.347,1751,2.977,1804,4.063,1811,5.285,1855,2.635,1860,2.519,1881,2.242,1882,3.778,1887,5.218,1934,2.933,1940,5.457,1946,3.254,1951,6.305,1956,4.27,1958,4.043,1961,4.339,1964,4.236,1968,6.888,2045,2.466,2052,2.131,2099,2.203,2107,3.778,2137,2.933,2173,3.778,2261,3.254,2357,4.063,2358,5.457,2359,3.778,2363,5.457,2366,6.305,2367,5.757,2370,6.687,2377,4.063,2440,7.441,2448,3.565,2449,5.457,2457,5.776,2467,2.166,2490,7.441,2564,2.033,2565,4.063,2570,2.282,2598,3.778,2835,4.063,2932,2.282,3028,3.254,3143,2.282,3244,3.778,3385,2.848,3429,4.063,3430,3.778,3434,1.946,3435,4.063,3436,3.778,3437,4.525,3438,3.778,3439,4.063,3440,4.063,3441,4.063,3442,3.778,3443,4.063,3445,3.778,3446,3.565,3447,3.565,3448,3.778,3449,4.063,3450,3.778,3451,4.063,3452,4.063,3453,4.063,3454,4.063,3455,4.063,3457,3.254,3458,4.063,3459,4.063,3460,4.063,3462,4.063,3465,4.063,3467,4.063,3470,4.063,3471,4.063,3472,4.063,3473,4.063,3474,4.063,3476,4.063,3479,3.778,3480,4.063,3481,4.063,3482,4.063,3483,4.063,3484,4.063,3485,4.063,3486,4.063,3487,4.063,3488,4.063,3489,4.063,3490,4.063,3683,7.544,3810,3.778,3811,2.131,3812,4.495,3813,4.495,3814,4.495,3815,4.495,3816,4.495,3817,3.254,3818,7.621,3819,6.492,3820,6.492,3821,4.495,3822,4.495,3823,4.495,3824,4.495,3825,4.495,3826,4.495,3827,4.495,3828,4.495,3829,4.063,3830,5.457,3831,3.395,3832,4.495,3833,4.495,3834,4.495,3835,4.495,3836,5.457,3837,4.495,3838,4.063,3839,4.495,3840,4.495,3841,4.495,3842,4.495,3843,4.495,3844,3.778,3845,9.226,3846,7.544,3847,4.495,3848,7.621,3849,4.495,3850,7.621,3851,4.495,3852,4.495,3853,4.495,3854,4.495,3855,6.888,3856,4.495,3857,4.495,3858,4.495,3859,4.495,3860,5.868,3861,5.457,3862,6.621,3863,4.495,3864,6.492,3865,4.495,3866,4.495,3867,4.495,3868,4.495,3869,6.492,3870,4.495,3871,4.495,3872,4.495,3873,4.495,3874,6.492,3875,6.888,3876,4.495]],["description//tracks/python-101/basis/classes",[1611,1.021,2651,2.014]],["title//tracks/python-101/basis/_index",[1208,2.262]],["content//tracks/python-101/basis/_index",[34,1.947,38,1.298,136,1.894,289,1.762,344,1.025,356,1.079,397,2.475,465,4.142,525,3.815,535,2.058,655,2.902,774,2.838,905,1.131,924,4.99,1018,3.402,1301,2.659,1309,3.595,1479,4.99,1485,4.377,1611,1.56,1618,2.838,1619,3.701,1627,4.216,1635,7.506,1643,4.216,1979,3.545,2038,6.98,2668,6.98,2980,6.273,3348,6.587,3349,6.012,3877,6.012,3878,6.273,3879,4.556,3880,4.653,3881,8.305,3882,6.98,3883,5.12,3884,5.788]],["description//tracks/python-101/basis/_index",[1611,1.021,2651,2.014]],["title//tracks/disser/israel-notes",[3885,3.659,3886,4.072]],["content//tracks/disser/israel-notes",[1462,7.09,3886,5.832,3887,6.02]],["description//tracks/disser/israel-notes",[3885,3.728,3886,4.149]],["title//tracks/disser/articles-notes",[260,3.424,903,2.369]],["content//tracks/disser/articles-notes",[56,3.23,173,2.493,582,5.051,640,2.873,1269,3.19,1375,6.196,1612,6.086,2002,5.327,2101,5.183,2859,5.183,3888,8.406,3889,6.35,3890,8.406,3891,4.12,3892,8.406,3893,6.668,3894,9.778,3895,8.406,3896,7.598,3897,8.406,3898,8.406,3899,6.668,3900,7.598,3901,7.598,3902,8.838,3903,8.406,3904,6.35,3905,7.598,3906,8.406,3907,7.598,3908,8.406,3909,8.406,3910,6.668]],["description//tracks/disser/articles-notes",[260,3.043,903,2.105,3885,3.252]],["title//tracks/disser/_index",[3911,6.659]],["content//tracks/disser/_index",[1,2.614,5,4.083,6,0.404,18,2.625,26,1.156,32,1.111,38,1.44,44,1.746,49,1.533,71,1.728,74,1.249,80,1.249,96,1.296,165,3.381,176,1.142,191,1.998,192,2.807,198,2.758,202,1.564,206,1.49,217,1.746,218,3.224,221,1.448,246,1.227,260,3.087,261,2.919,288,1.512,300,2.06,344,0.594,356,0.731,377,2.217,397,1.434,425,2.685,479,0.795,507,1.802,533,4.73,540,3.198,587,2.758,593,0.954,611,2.06,636,3.146,655,1.967,762,3.79,845,2.369,856,4.277,903,2.883,905,0.766,914,3.224,918,1.539,1018,2.843,1019,2.085,1175,5.994,1181,4.731,1269,2.136,1283,2.91,1295,3.025,1302,2.712,1435,2.668,1449,4.464,1524,3.3,1538,3.672,1539,3.224,1618,1.923,1623,5.295,1624,3.922,1675,2.91,1701,2.91,1729,3.661,1731,6.274,1735,6.955,1740,3.224,1745,2.189,1858,2.883,1868,3.922,1916,3.3,1984,2.857,2090,4.251,2207,4.251,2221,3.566,2364,2.972,2467,2.712,2643,3.437,2716,3.47,2721,3.922,2859,3.47,2932,2.857,2949,2.402,3062,3.672,3107,3.47,3143,2.857,3150,3.087,3174,1.923,3253,3.47,3400,4.464,3495,1.967,3617,2.966,3699,3.336,3779,3.566,3787,4.464,3801,6.385,3878,7.263,3912,7.597,3913,5.5,3914,5.086,3915,2.668,3916,6.201,3917,5.086,3918,5.086,3919,9.208,3920,5.628,3921,4.464,3922,6.866,3923,6.82,3924,6.866,3925,5.628,3926,3.566,3927,5.628,3928,4.73,3929,6.866,3930,5.628,3931,7.263,3932,8.322,3933,5.628,3934,6.866,3935,10.128,3936,5.628,3937,8.082,3938,7.597,3939,5.628,3940,5.628,3941,7.597,3942,5.628,3943,5.628,3944,3.566,3945,5.086,3946,3.47,3947,5.628,3948,3.3,3949,8.6,3950,5.086,3951,5.628,3952,5.628,3953,3.672,3954,6.866,3955,5.628,3956,5.086,3957,5.086,3958,4.73,3959,3.672,3960,5.086,3961,5.628,3962,5.628,3963,3.3,3964,3.672,3965,4.464,3966,5.086,3967,7.597,3968,6.866,3969,5.628,3970,4.73,3971,5.628,3972,6.385,3973,4.73,3974,8.082,3975,5.086,3976,4.464,3977,5.628,3978,5.5,3979,4.251,3980,3.087,3981,5.628,3982,5.628,3983,5.628,3984,2.758,3985,5.628,3986,5.628,3987,5.628,3988,4.957,3989,5.628,3990,4.464,3991,5.628,3992,5.086,3993,3.566,3994,5.628,3995,5.628,3996,5.628,3997,4.251,3998,5.628,3999,4.251,4000,4.464,4001,4.251,4002,4.074,4003,5.628,4004,5.628,4005,5.628,4006,5.628,4007,5.628,4008,5.086,4009,5.628]],["description//tracks/disser/_index",[3911,5.747,4010,3.642]],["title//tracks/disser/utils/text_2_short",[2593,4.95,3889,4.715]],["content//tracks/disser/utils/text_2_short",[4011,8.109]],["description//tracks/disser/utils/text_2_short",[1181,2.259,1647,2.453,2593,3.901,3598,3.561]],["title//tracks/disser/canditate-minimum/languages-requirements",[611,1.982,1618,1.85,3953,3.532]],["content//tracks/disser/canditate-minimum/languages-requirements",[30,2.138,55,5.178,107,1.823,175,0.735,191,1.584,244,3.593,246,1.486,300,2.496,340,3.665,344,0.72,354,1.805,356,1.226,393,1.84,414,4.453,472,2.686,541,3.593,569,4.936,611,2.496,635,2.254,844,5.288,1181,4.928,1255,3.718,1287,3.181,1303,3.998,1424,2.496,1600,4.934,1618,3.624,1623,6.002,1624,4.752,1646,3.233,1648,5.128,1724,3.462,1731,6.159,1750,3.181,1770,4.321,1849,6.47,1864,5.681,1985,4.449,1996,3.526,2024,4.097,2043,4.449,2056,4.752,2221,5.981,2491,5.408,2869,7.238,3356,6.163,3598,6.834,3619,3.74,3916,4.592,3932,6.163,3953,6.672,3960,6.163,4010,5.408,4012,6.819,4013,6.819,4014,8.612,4015,6.819,4016,6.163,4017,9.916,4018,8.612,4019,6.678,4020,8.612,4021,6.163,4022,6.163,4023,6.234,4024,6.819,4025,5.731,4026,6.819,4027,6.819,4028,6.819,4029,4.321,4030,6.163,4031,6.163,4032,4.936,4033,8.334,4034,5.457,4035,6.819,4036,7.238,4037,6.819,4038,6.819,4039,3.896,4040,6.819,4041,9.44,4042,8.612,4043,9.44,4044,6.819,4045,6.819,4046,6.163,4047,6.819,4048,6.819,4049,8.612,4050,8.612,4051,6.819,4052,5.408,4053,7.784,4054,6.819,4055,6.163]],["description//tracks/disser/canditate-minimum/languages-requirements",[611,1.468,938,1.072,1618,1.371,3953,2.617,4056,2.617,4057,4.011]],["title//tracks/disser/canditate-minimum/_index",[340,2.3,3880,2.398,4056,2.792,4058,2.571,4059,2.882]],["content//tracks/disser/canditate-minimum/_index",[6,0.194,11,1.707,19,2.926,25,1.498,29,0.702,30,1.637,31,1.804,34,1.833,46,0.962,55,3.512,68,0.613,73,0.53,109,0.686,112,1.423,114,0.613,120,0.818,133,2.073,147,1.145,161,1.382,176,0.682,198,2.161,202,0.546,206,0.89,208,2.28,212,0.686,216,0.482,219,2.018,222,0.694,224,1.825,234,1.643,264,1.541,267,0.745,288,0.345,297,1.739,337,1.124,340,1.807,356,0.573,375,0.642,377,0.774,410,4.028,419,1.971,422,0.377,429,5.184,470,1.507,478,1.936,521,2.13,525,3.702,528,4.466,530,4.157,535,0.833,541,1.035,542,1.065,545,3.528,548,1.984,593,0.996,636,0.671,641,1.483,646,0.862,649,3.78,674,7.429,762,1.322,766,2.718,770,2.526,844,1.015,848,1.015,902,1.739,903,1.276,905,0.458,907,2.333,917,0.873,935,2.118,938,2.55,1018,1.112,1037,1.677,1088,1.692,1138,0.51,1180,2.987,1202,1.18,1205,1.745,1208,0.603,1234,1.175,1243,1.211,1267,1.483,1287,2.057,1363,0.736,1435,3.245,1440,1.18,1466,6.68,1539,5.25,1594,1.18,1610,2.674,1612,3.192,1625,2.13,1629,1.65,1630,2.238,1632,0.899,1669,2.733,1694,4.174,1711,2.752,1724,2.651,1734,4.201,1740,1.926,1742,1.569,1750,2.436,1777,0.997,1789,2.26,1818,2.084,1828,2.54,1829,2.228,1901,2.559,1905,2.718,1917,2.585,1930,2.65,1934,1.281,1950,3.062,1954,0.991,1974,3.407,1985,3.407,1996,2.7,2044,2.264,2047,1.369,2053,1.322,2070,1.322,2125,4.583,2170,1.971,2299,1.055,2334,2.264,2369,5.522,2387,5.916,2570,2.651,2614,1.65,2778,1.369,2859,1.211,2886,6.067,2888,4.861,2931,2.54,2974,2.752,3013,3.441,3062,6.048,3103,1.369,3221,3.516,3397,1.18,3518,2.649,3594,2.434,3636,1.281,3666,1.739,3801,1.65,3803,0.745,3810,2.826,3811,2.476,3880,5.071,3887,5.263,3901,1.775,3902,1.775,3929,1.775,3950,1.775,3953,5.98,3972,2.826,3976,1.557,3979,2.54,3999,2.54,4010,1.125,4056,2.194,4058,5.569,4059,1.322,4060,1.964,4061,1.964,4062,1.964,4063,6.725,4064,4.574,4065,2.54,4066,5.429,4067,5.067,4068,6.368,4069,3.039,4070,3.039,4071,2.194,4072,3.039,4073,3.039,4074,2.826,4075,2.826,4076,3.039,4077,3.039,4078,2.826,4079,1.772,4080,3.039,4081,4.311,4082,6.339,4083,3.039,4084,4.635,4085,4.311,4086,2.667,4087,7.384,4088,5.65,4089,2.826,4090,2.667,4091,2.194,4092,4.72,4093,2.826,4094,2.54,4095,4.142,4096,4.72,4097,6.524,4098,2.667,4099,2.54,4100,3.039,4101,3.039,4102,6.773,4103,1.739,4104,3.039,4105,4.77,4106,5.222,4107,6.402,4108,5.222,4109,4.861,4110,2.826,4111,3.944,4112,3.039,4113,2.826,4114,4.955,4115,3.33,4116,3.039,4117,2.54,4118,3.413,4119,6.524,4120,4.574,4121,3.039,4122,3.039,4123,2.877,4124,3.985,4125,4.142,4126,4.635,4127,3.33,4128,3.192,4129,5.429,4130,5.307,4131,4.311,4132,5.17,4133,5.222,4134,6.402,4135,6.402,4136,3.754,4137,5.452,4138,3.985,4139,3.706,4140,3.706,4141,3.192,4142,3.706,4143,5.307,4144,7.321,4145,5.617,4146,5.222,4147,5.222,4148,5.222,4149,5.725,4150,4.529,4151,3.985,4152,3.985,4153,4.72,4154,3.497,4155,4.819,4156,3.706,4157,2.969,4158,3.192,4159,3.985,4160,5.786,4161,3.33,4162,5.222,4163,5.222,4164,2.343,4165,10.12,4166,3.039,4167,3.362,4168,3.362,4169,2.826,4170,3.039,4171,4.72,4172,3.362,4173,3.362,4174,5.222,4175,3.362,4176,5.307,4177,3.706,4178,5.222,4179,3.362,4180,3.362,4181,3.362,4182,8.632,4183,3.362,4184,5.904,4185,3.362,4186,5.307,4187,6.844,4188,3.039,4189,5.658,4190,5.222,4191,5.222,4192,5.222,4193,2.667,4194,6.741,4195,6.067,4196,3.362,4197,2.826,4198,3.362,4199,5.786,4200,4.836,4201,3.316,4202,4.389,4203,7.218,4204,3.362,4205,3.362,4206,3.362,4207,2.434,4208,3.362,4209,2.826,4210,3.362,4211,3.039,4212,3.362,4213,4.389,4214,3.362,4215,3.362,4216,7.218,4217,3.362,4218,3.039,4219,5.766,4220,3.362,4221,3.039,4222,5.429,4223,5.222,4224,5.222,4225,8.283,4226,4.935,4227,5.871,4228,4.142,4229,1.648,4230,2.54,4231,9.27,4232,7.352,4233,3.362,4234,3.039,4235,3.039,4236,2.434,4237,6.524,4238,3.362,4239,2.826,4240,3.362,4241,2.194,4242,2.826,4243,2.826,4244,2.667,4245,3.706,4246,1.65,4247,2.969,4248,1.421,4249,4.409,4250,4.935,4251,1.964,4252,1.775,4253,1.483,4254,1.775,4255,3.497,4256,1.964,4257,1.964,4258,1.775,4259,1.775,4260,1.775,4261,1.964,4262,1.964,4263,1.964,4264,1.775,4265,1.964,4266,1.964,4267,1.964,4268,1.964,4269,2.343,4270,5.222,4271,0.862,4272,0.946,4273,1.483,4274,1.971,4275,1.964,4276,1.964,4277,1.964,4278,1.964,4279,1.964,4280,1.964,4281,1.964,4282,1.964,4283,1.964,4284,1.557,4285,1.055,4286,1.483,4287,1.964,4288,1.557,4289,1.964,4290,1.483,4291,1.964,4292,4.935,4293,3.985,4294,2.667,4295,1.1,4296,1.483,4297,1.65,4298,1.775,4299,1.964,4300,1.65,4301,1.775,4302,1.775,4303,1.18,4304,3.039,4305,1.65,4306,1.964,4307,2.826,4308,3.039,4309,3.362,4310,3.362,4311,1.964,4312,1.322,4313,3.362,4314,1.035,4315,1.483,4316,1.964,4317,1.65,4318,1.775,4319,1.964,4320,1.775,4321,1.964,4322,1.964,4323,1.964,4324,1.281,4325,1.964,4326,1.964,4327,1.964,4328,1.65,4329,1.964,4330,1.421,4331,1.775,4332,1.964,4333,1.964,4334,1.65,4335,2.667,4336,1.964,4337,1.964,4338,3.362,4339,1.964,4340,1.65,4341,1.65,4342,1.964,4343,1.964,4344,1.964,4345,1.964,4346,1.964,4347,1.964,4348,1.964,4349,1.775,4350,1.964,4351,1.964,4352,1.964,4353,1.964,4354,1.964,4355,1.964,4356,1.775,4357,1.964,4358,1.65]],["description//tracks/disser/canditate-minimum/_index",[91,1.687,340,1.973,3880,2.057,4056,2.396,4058,2.206,4059,2.473,4359,2.559]],["title//tracks/disser/canditate-minimum/05-international-foreign-exchange-market",[30,1.342,907,0.933,4082,2.571,4144,2.983,4145,2.983]],["content//tracks/disser/canditate-minimum/05-international-foreign-exchange-market",[29,2.987,32,0.771,34,1.646,38,1.306,45,3.026,46,1.913,60,2.345,68,0.711,71,1.198,73,2.629,74,0.866,80,0.866,110,1.685,118,1.084,133,3.608,137,1.105,172,1.739,175,0.757,204,1.334,219,2.07,221,1.506,234,1.23,244,4.403,264,1.364,288,0.686,344,0.618,352,1.263,356,0.76,366,1.85,372,2.463,375,2.732,381,2.335,397,1.789,410,1.821,419,2.288,422,1.349,459,2.823,462,2.026,476,1.558,528,5.934,536,0.717,537,3.096,542,1.236,558,3.279,645,2.098,758,0.859,766,4.808,779,1.538,784,6.103,787,1.621,827,3.516,864,1.981,909,1.778,918,0.698,935,0.941,938,1.564,1037,3.501,1085,3.516,1138,1.014,1180,3.898,1205,1.956,1207,5.293,1208,1.198,1363,2.924,1466,6.103,1536,1.714,1539,4.786,1593,2.948,1630,2.971,1632,2.233,1652,1.481,1675,3.026,1694,3.723,1803,2.098,1829,3.754,1869,1.834,1876,2.406,1891,2.825,1913,3.096,1914,2.547,1917,2.288,1933,2.187,1934,4.58,1984,1.981,2047,2.72,2057,3.352,2082,2.72,2125,5.142,2170,4.116,2244,2.288,2570,1.981,2662,2.397,2716,2.406,2931,2.948,2932,1.981,2982,2.72,3013,2.098,3150,2.141,3621,2.236,3696,1.023,3803,1.481,3887,2.628,3891,3.441,3953,6.242,3958,3.28,4029,2.473,4058,6.197,4063,4.58,4068,4.727,4079,4.793,4081,4.727,4082,6.02,4084,2.825,4085,2.628,4103,3.63,4105,4.078,4111,2.948,4114,4.236,4115,4.42,4126,2.825,4139,3.28,4141,5.082,4144,7.844,4145,6.339,4149,8.883,4150,6.502,4151,7.048,4152,7.048,4153,6.345,4154,5.568,4155,6.691,4156,8.189,4157,6.662,4158,5.645,4159,6.345,4169,4.918,4170,3.528,4176,6.345,4177,5.9,4189,6.048,4207,2.825,4219,6.52,4232,4.641,4243,3.28,4245,3.28,4247,4.727,4252,3.528,4271,2.57,4284,3.096,4285,2.098,4292,3.28,4296,2.948,4307,3.28,4315,2.948,4330,2.825,4334,3.28,4356,3.528,4360,3.096,4361,2.628,4362,5.289,4363,5.934,4364,5.906,4365,6.048,4366,6.345,4367,4.893,4368,7.02,4369,3.096,4370,3.903,4371,2.72,4372,3.28,4373,3.903,4374,3.903,4375,3.903,4376,5.568,4377,7.798,4378,5.851,4379,2.948,4380,4.641,4381,5.289,4382,7.048,4383,3.903,4384,3.28,4385,3.28,4386,5.289,4387,5.851,4388,3.528,4389,3.28,4390,3.528,4391,3.903,4392,3.903,4393,3.903,4394,3.903,4395,3.903,4396,3.903,4397,3.903,4398,2.72,4399,2.72,4400,5.851,4401,3.903,4402,3.528,4403,3.28,4404,3.28,4405,3.903,4406,3.903,4407,5.289,4408,3.528,4409,3.903,4410,2.825,4411,5.9,4412,5.851,4413,3.096,4414,3.903,4415,1.739,4416,5.851,4417,2.825,4418,3.096,4419,3.528,4420,6.554,4421,2.825,4422,3.28,4423,2.288,4424,3.797,4425,3.096,4426,3.903,4427,5.851,4428,4.918,4429,5.851,4430,5.851,4431,3.096,4432,2.473,4433,3.28,4434,3.28,4435,7.798,4436,3.28,4437,2.473,4438,3.903,4439,2.406,4440,2.948,4441,3.528,4442,3.528,4443,3.903,4444,3.528,4445,3.528,4446,3.903,4447,2.473,4448,3.903,4449,2.098,4450,3.528,4451,3.528]],["description//tracks/disser/canditate-minimum/05-international-foreign-exchange-market",[91,1.687,340,1.973,3880,2.057,4056,2.396,4058,2.206,4059,2.473,4359,2.559]],["title//tracks/disser/canditate-minimum/04-international-capital-movement",[161,1.342,907,0.933,4082,2.571,4131,2.882,4132,3.232]],["content//tracks/disser/canditate-minimum/04-international-capital-movement",[11,3.207,27,1.53,29,2.259,32,0.855,55,4.092,73,1.168,112,1.18,133,2.669,165,2.601,179,2.159,198,4.275,222,1.53,263,3.016,267,1.643,337,1.447,342,1.822,352,1.401,356,1.065,362,1.975,375,2.066,383,2.544,393,1.705,397,1.901,422,1.751,425,1.53,476,2.521,478,3.276,488,1.416,517,3.096,525,3.767,530,1.988,542,1.371,555,1.684,558,4.18,560,1.773,641,3.27,674,7.223,675,1.276,758,1.39,770,2.48,774,2.159,793,1.496,856,1.797,902,3.267,909,1.92,915,1.797,918,1.131,935,1.043,938,2.331,1020,3.134,1055,1.862,1088,1.481,1138,1.938,1202,3.796,1363,1.623,1466,6.967,1539,5.722,1592,2.159,1594,2.601,1605,3.433,1632,1.157,1639,1.316,1652,1.643,1685,5.011,1694,3.324,1699,6.742,1780,2.601,1829,1.643,1904,2.02,2024,4.927,2170,3.704,2410,3.134,2820,3.427,3008,2.327,3013,2.327,3103,3.017,3518,5.471,3621,3.619,3803,1.643,3880,5.596,3910,3.433,3953,6.892,3972,6.27,4002,3.134,4019,5.523,4058,2.601,4063,5.351,4067,3.329,4068,4.254,4079,3.931,4082,6.495,4084,3.134,4085,5.023,4086,5.011,4087,7.73,4088,2.669,4102,6.27,4113,3.638,4114,4.573,4115,3.27,4117,3.27,4118,3.151,4120,2.743,4126,5.937,4129,3.433,4131,6.959,4132,7.929,4136,5.339,4137,8.136,4138,7.882,4139,8.603,4140,6.27,4141,6.592,4142,6.27,4143,7.412,4155,2.669,4157,5.023,4166,3.912,4169,5.31,4184,6.195,4189,4.573,4209,5.31,4211,3.912,4219,6.347,4241,2.824,4242,3.638,4245,5.31,4246,3.638,4247,5.023,4250,3.638,4255,3.433,4271,3.83,4273,3.27,4274,2.538,4294,7.458,4324,4.867,4334,3.638,4362,5.71,4367,5.199,4381,3.912,4384,5.31,4390,3.912,4399,3.017,4403,3.638,4411,6.893,4420,3.638,4421,3.134,4423,2.538,4424,3.229,4425,3.433,4440,3.27,4441,3.912,4452,7.46,4453,6.313,4454,4.329,4455,4.329,4456,3.912,4457,3.638,4458,3.638,4459,1.901,4460,4.329,4461,5.4,4462,10.122,4463,2.669,4464,7.46,4465,3.433,4466,4.329,4467,4.329,4468,6.317,4469,6.742,4470,6.742,4471,5.71,4472,3.433,4473,4.329,4474,2.48,4475,3.54,4476,7.46,4477,7.46,4478,6.317,4479,5.71,4480,5.942,4481,4.329,4482,4.772,4483,3.912,4484,3.134,4485,3.638,4486,3.912,4487,3.912,4488,3.638,4489,5.71,4490,3.912,4491,4.329,4492,3.912,4493,4.329,4494,3.27,4495,6.317,4496,4.573,4497,2.735,4498,3.912,4499,3.638,4500,4.329,4501,3.433,4502,4.329,4503,6.317,4504,4.329,4505,3.638,4506,3.912,4507,4.329,4508,5.71,4509,5.71,4510,3.912,4511,4.329,4512,4.329,4513,4.329,4514,4.329,4515,3.912,4516,4.329,4517,4.329,4518,3.912,4519,4.329,4520,4.329,4521,4.329,4522,4.329,4523,3.912,4524,4.329,4525,3.329,4526,4.329,4527,4.329,4528,4.329,4529,4.329,4530,2.48,4531,4.329]],["description//tracks/disser/canditate-minimum/04-international-capital-movement",[91,1.687,340,1.973,3880,2.057,4056,2.396,4058,2.206,4059,2.473,4359,2.559]],["title//tracks/disser/canditate-minimum/03-international-policy",[147,1.112,907,0.933,4067,2.255,4082,2.571,4105,2.983]],["content//tracks/disser/canditate-minimum/03-international-policy",[6,0.254,18,1.67,19,4.446,26,0.338,29,2.025,32,0.738,34,1.603,38,0.755,45,3.264,46,1.831,49,1.863,55,1.22,60,1.336,67,0.751,68,1.15,110,0.48,111,0.636,112,1.317,116,1.274,126,0.498,137,1.069,141,0.643,163,4.367,165,2.903,166,1.764,175,0.24,176,0.758,182,1.409,191,0.517,192,1.863,198,1.831,208,1.15,212,0.777,213,1.304,215,1.109,219,1.669,221,1.624,224,0.777,244,4.546,245,0.952,246,0.485,259,0.824,264,2.389,267,0.844,307,0.899,342,2.034,344,0.235,352,1.564,356,0.82,362,1.499,372,1.573,375,1.58,381,1.491,383,1.159,395,1.172,396,1.22,397,1.443,401,1.371,411,1.172,419,2.833,422,0.929,427,0.854,429,1.274,432,0.936,433,1.15,462,1.776,467,1.721,470,0.76,471,2.487,477,1.129,478,1.641,479,0.528,517,1.09,521,1.409,525,1.021,530,2.601,535,0.926,536,0.687,539,1.274,540,0.936,542,0.704,545,1.336,546,2.903,555,1.454,556,1.794,593,1.071,611,1.368,627,3.471,630,1.869,649,4.099,655,0.777,708,5.043,709,2.768,758,1.063,766,1.371,770,1.274,774,0.76,784,2.438,785,0.697,787,1.551,793,0.768,844,1.15,857,1.038,858,1.274,905,0.931,909,0.676,910,1.147,915,1.551,917,0.578,918,0.669,935,1.912,938,1.943,939,0.777,940,1.172,991,0.63,1018,1.235,1033,1.246,1055,1.102,1057,1.054,1066,1.384,1076,2.153,1089,0.814,1138,1.64,1192,1.68,1205,1.893,1234,1.689,1287,2.255,1294,1.451,1298,1.336,1315,0.887,1363,0.834,1460,1.764,1466,6.023,1482,2.396,1536,1.641,1539,4.163,1594,1.336,1605,1.764,1606,1.869,1610,1.79,1622,2.14,1632,1.687,1643,1.129,1654,1.336,1669,0.949,1672,1.246,1685,2.963,1691,1.764,1719,1.869,1729,1.072,1731,2.438,1734,1.195,1774,2.093,1777,1.897,1780,2.903,1826,1.497,1829,0.844,1849,1.451,1908,1.409,1917,2.833,1930,2.397,1933,5.525,1934,3.153,1948,2.705,1954,1.102,1996,1.15,2016,1.497,2024,4.767,2046,1.491,2210,3.832,2266,3.14,2270,1.371,2299,1.195,2334,5.929,2364,2.981,2369,3.694,2387,4.251,2465,2.01,2466,1.55,2570,1.897,2575,1.55,2609,6.411,2614,1.869,2652,2.604,2698,2.453,2716,1.371,2820,2.22,2886,4.061,2931,2.822,2932,2.453,2974,1.172,2981,1.764,3062,3.694,3103,2.604,3154,1.689,3221,1.497,3305,1.129,3327,1.304,3619,1.22,3621,3.617,3626,1.764,3636,1.451,3666,1.15,3676,4.367,3696,0.98,3803,3.716,3880,4.072,3891,1.09,3931,3.65,3953,4.977,3957,2.01,3979,3.65,4021,3.377,4022,3.377,4025,1.869,4029,1.409,4036,4.061,4063,5.629,4064,1.409,4066,7.496,4067,5.16,4068,7.175,4071,1.451,4079,2.984,4081,6.97,4082,5.789,4084,5.261,4085,1.497,4087,7.139,4093,1.869,4095,2.963,4098,4.491,4103,4.103,4105,6.514,4109,4.894,4110,6.411,4111,3.65,4112,9.546,4113,7.532,4114,7.493,4115,4.277,4116,8.629,4117,6.876,4118,3.624,4119,8.782,4120,4,4121,5.706,4122,6.569,4123,3.694,4124,6.179,4125,3.832,4126,3.498,4127,4.277,4128,4.099,4129,2.963,4130,7.616,4137,1.68,4144,4.765,4149,1.764,4150,1.336,4155,4.481,4158,1.61,4177,1.869,4194,6.516,4200,1.68,4202,3.14,4207,2.705,4219,2.604,4222,5.764,4234,3.377,4237,2.01,4241,2.438,4242,4.759,4247,4.604,4253,1.68,4254,2.01,4258,2.01,4269,2.604,4272,1.072,4274,2.191,4285,2.008,4294,1.764,4296,4.277,4297,3.14,4298,3.377,4300,1.869,4305,7.399,4314,2.546,4328,1.869,4330,1.61,4363,3.153,4366,2.01,4367,3.368,4372,1.869,4384,3.14,4404,1.869,4410,1.61,4418,1.764,4421,4.949,4423,2.191,4424,0.963,4437,1.409,4439,5.612,4440,1.68,4444,3.377,4447,2.367,4453,4.099,4458,1.869,4459,3.484,4461,2.705,4463,2.979,4475,3.173,4480,3.153,4482,1.68,4485,1.869,4488,1.869,4496,1.61,4499,1.869,4518,2.01,4532,2.01,4533,1.172,4534,8.804,4535,8.228,4536,1.869,4537,7.171,4538,1.764,4539,4.367,4540,3.14,4541,2.01,4542,5.764,4543,2.01,4544,2.224,4545,0.991,4546,1.304,4547,3.14,4548,2.224,4549,3.14,4550,2.224,4551,6.983,4552,2.01,4553,2.224,4554,2.093,4555,2.963,4556,3.736,4557,5.118,4558,2.01,4559,2.01,4560,5.764,4561,3.377,4562,2.224,4563,2.224,4564,2.224,4565,4.832,4566,2.224,4567,2.224,4568,1.409,4569,1.764,4570,2.01,4571,2.224,4572,4.367,4573,1.869,4574,3.14,4575,2.224,4576,2.01,4577,2.224,4578,2.224,4579,2.224,4580,2.224,4581,2.224,4582,2.224,4583,5.662,4584,5.662,4585,2.224,4586,4.832,4587,3.736,4588,2.224,4589,2.224,4590,2.224,4591,3.736,4592,2.224,4593,2.224,4594,5.662,4595,2.224,4596,2.224,4597,2.224,4598,6.313,4599,2.224,4600,2.224,4601,2.224,4602,2.224,4603,2.224,4604,2.224,4605,2.224,4606,3.736,4607,2.224,4608,2.224,4609,2.224,4610,2.224,4611,2.224,4612,2.224,4613,2.224,4614,2.224,4615,6.313,4616,1.409,4617,2.224,4618,2.01,4619,3.736,4620,1.869,4621,3.377,4622,4.367,4623,4.832,4624,3.736,4625,3.377,4626,2.01,4627,2.224,4628,3.736,4629,2.224,4630,1.869,4631,4.832,4632,3.14,4633,1.869,4634,1.764,4635,6.569,4636,3.736,4637,2.224,4638,2.224,4639,5.306,4640,6.313,4641,2.224,4642,2.224,4643,2.224,4644,2.224,4645,2.224,4646,2.224,4647,2.224,4648,2.224,4649,2.224,4650,2.224,4651,2.224,4652,2.224,4653,2.224,4654,2.224,4655,2.224,4656,2.224,4657,2.224,4658,2.224,4659,2.224,4660,2.224,4661,2.224,4662,2.224,4663,2.224,4664,2.224,4665,4.832,4666,2.224,4667,2.224,4668,2.224,4669,2.224,4670,2.224,4671,2.224,4672,2.224,4673,2.224,4674,2.224,4675,2.224,4676,2.224,4677,2.224,4678,2.224,4679,2.224,4680,2.224,4681,2.224,4682,3.736,4683,2.224,4684,2.224,4685,2.224,4686,2.224,4687,2.224,4688,2.224,4689,2.224,4690,2.224,4691,2.224,4692,2.224,4693,2.224,4694,2.224,4695,2.224,4696,2.224,4697,2.224,4698,2.224,4699,2.01,4700,2.224,4701,2.224,4702,2.224,4703,2.224,4704,2.224,4705,2.224,4706,2.224,4707,2.224,4708,3.736,4709,2.224,4710,2.224,4711,3.14,4712,4.099,4713,1.869,4714,1.764,4715,2.224,4716,2.224,4717,2.224,4718,2.224,4719,2.224,4720,2.224,4721,1.336,4722,2.224,4723,2.01,4724,3.736,4725,2.224,4726,2.224,4727,2.01,4728,2.224,4729,4.759,4730,2.01,4731,2.224,4732,2.224,4733,2.224,4734,1.869,4735,2.224,4736,1.61,4737,3.377,4738,1.61,4739,2.224,4740,2.224,4741,2.224,4742,2.224,4743,1.68,4744,2.224,4745,2.224,4746,2.01,4747,2.224,4748,2.224,4749,2.224,4750,2.01,4751,1.869,4752,2.01,4753,1.68,4754,2.01,4755,1.869,4756,2.224,4757,1.304,4758,2.224,4759,2.01,4760,5.118,4761,2.224,4762,2.01,4763,2.224,4764,2.224,4765,1.497,4766,2.224,4767,4.061,4768,3.498,4769,2.224,4770,3.377,4771,2.224,4772,2.224,4773,2.224,4774,1.764,4775,1.371,4776,1.61,4777,2.224,4778,2.224,4779,2.224,4780,2.224,4781,2.224,4782,2.833,4783,2.224,4784,2.224,4785,2.224,4786,2.01,4787,2.01,4788,2.224,4789,2.01,4790,1.68,4791,1.61]],["description//tracks/disser/canditate-minimum/03-international-policy",[91,1.687,340,1.973,3880,2.057,4056,2.396,4058,2.206,4059,2.473,4359,2.559]],["title//tracks/disser/canditate-minimum/02-international-trade",[120,1.163,907,1.042,4068,3.219,4082,2.872]],["content//tracks/disser/canditate-minimum/02-international-trade",[6,0.306,19,1.506,26,0.665,27,0.95,29,2.503,32,1.382,38,0.42,45,2.856,47,2.943,55,3.84,57,0.817,60,1.615,68,1.501,71,0.825,73,2.363,74,0.597,110,1.708,112,0.732,116,1.54,126,0.602,133,1.657,137,1.043,147,0.698,155,2.695,175,0.595,179,1.341,182,4.435,206,0.712,215,1.341,218,1.54,221,1.125,224,3.193,245,1.408,246,1.204,264,1.93,267,2.847,351,0.732,352,2.427,356,1.207,362,1.462,372,1.84,375,1.807,381,1.073,383,0.834,393,0.725,395,2.911,397,1.408,410,3.844,411,1.417,414,1.39,422,1.924,462,0.698,490,0.666,521,4.753,528,4.151,530,1.235,536,0.803,548,0.908,555,1.7,558,4.616,560,1.101,674,6.944,708,3.164,714,1.417,758,1.399,762,1.81,766,1.657,784,3.604,785,0.843,793,2.592,817,0.843,848,1.39,859,1.147,902,5.303,903,1.02,909,0.817,915,1.116,918,0.988,935,1.808,938,1.476,991,1.238,1018,1.445,1025,5.009,1037,4.109,1055,0.792,1088,1.025,1138,1.818,1198,1.318,1202,3.318,1272,3.95,1273,3.03,1287,1.254,1320,2.968,1431,4.434,1435,2.072,1462,2.132,1466,7.146,1482,1.02,1485,2.911,1539,5.81,1587,1.54,1592,3.122,1594,1.615,1623,1.873,1624,5.51,1639,0.817,1656,0.939,1669,2.987,1675,1.39,1678,1.296,1686,1.81,1689,2.626,1691,2.132,1694,3.902,1734,1.445,1736,1.754,1767,1.754,1774,3.095,1777,1.365,1867,1.754,1869,1.37,1908,1.703,1933,3.565,1954,2.429,1994,4.605,2023,2.03,2024,3.318,2055,1.445,2070,1.81,2082,3.046,2125,2.563,2170,1.576,2211,1.576,2225,1.365,2345,1.754,2570,3.23,2597,2.132,2820,3.631,2926,2.03,2931,4.806,2974,1.417,3008,2.349,3013,5.417,3062,3.604,3154,1.93,3327,1.576,3343,1.703,3591,3.164,3594,6.338,3621,1.54,3625,1.946,3696,0.705,3769,1.873,3810,3.673,3811,3.016,3878,4.172,3880,5.47,3887,6.033,3910,2.132,3921,2.132,3953,4.567,3965,2.132,3975,2.429,3984,1.318,3990,4.381,3999,5.971,4019,2.943,4032,1.946,4058,6.337,4063,4.567,4066,2.132,4067,3.353,4068,7.346,4074,2.259,4079,3.353,4081,6.787,4082,6.294,4083,5.75,4084,5.43,4085,6.153,4086,4.381,4087,7.133,4088,4.624,4089,6.304,4090,5.949,4091,5.158,4092,7.698,4093,6.644,4094,5.666,4095,7.371,4096,8.258,4097,6.326,4098,5.552,4099,4.172,4100,5.75,4101,4.992,4102,5.347,4103,5.137,4104,4.992,4105,3.046,4117,2.03,4118,3.173,4123,2.852,4127,2.03,4128,1.946,4129,2.132,4132,2.03,4137,5.971,4145,3.046,4155,5.251,4160,3.95,4171,3.95,4184,5.287,4188,2.429,4201,2.008,4202,3.673,4207,4.605,4209,4.642,4213,2.259,4221,2.429,4229,1.318,4247,6.351,4255,2.132,4271,2.425,4272,1.296,4274,1.576,4285,2.968,4294,2.132,4303,1.615,4305,4.642,4315,2.03,4318,4.992,4363,1.754,4364,1.81,4365,1.946,4367,1.873,4371,1.873,4402,3.95,4403,2.259,4422,2.259,4424,2.391,4437,2.769,4439,5.398,4447,2.769,4451,2.429,4453,3.164,4461,3.998,4469,2.429,4470,6.779,4471,7.145,4475,4.616,4479,3.95,4486,2.429,4487,2.429,4488,7.81,4490,3.95,4492,2.429,4494,2.03,4496,1.946,4497,2.391,4498,3.95,4499,2.259,4505,2.259,4508,6.326,4509,6.326,4533,1.417,4537,4.992,4540,2.259,4542,2.132,4547,2.259,4551,3.467,4554,1.506,4555,2.132,4557,6.326,4573,3.673,4711,3.673,4712,1.946,4753,2.03,4760,2.429,4762,2.429,4775,2.695,4790,2.03,4792,2.688,4793,2.688,4794,3.95,4795,2.429,4796,5.523,4797,4.371,4798,2.943,4799,2.688,4800,2.688,4801,2.688,4802,1.365,4803,2.688,4804,2.688,4805,1.754,4806,2.132,4807,2.132,4808,2.688,4809,1.946,4810,2.429,4811,2.688,4812,2.429,4813,2.688,4814,2.688,4815,2.688,4816,1.506,4817,7.501,4818,2.688,4819,4.371,4820,2.688,4821,4.371,4822,4.371,4823,2.688,4824,4.371,4825,5.347,4826,2.688,4827,2.769,4828,2.688,4829,2.429,4830,1.576,4831,2.688,4832,2.688,4833,2.688,4834,2.688,4835,3.849,4836,4.371,4837,2.688,4838,2.688,4839,6.326,4840,2.429,4841,2.688,4842,2.688,4843,2.688,4844,2.688,4845,2.429,4846,2.688,4847,2.688,4848,2.429,4849,1.506,4850,2.259,4851,2.429,4852,5.523,4853,2.688,4854,3.673,4855,4.371,4856,2.429,4857,3.673,4858,2.688,4859,2.688,4860,2.688,4861,2.688,4862,2.688,4863,2.688,4864,2.688,4865,2.429,4866,7,4867,2.688,4868,2.688,4869,2.688,4870,1.703,4871,2.688,4872,1.873,4873,2.688,4874,2.688,4875,2.688,4876,4.642,4877,2.688,4878,2.688,4879,2.688,4880,2.688,4881,4.371]],["description//tracks/disser/canditate-minimum/02-international-trade",[91,1.687,340,1.973,3880,2.057,4056,2.396,4058,2.206,4059,2.473,4359,2.559]],["title//tracks/disser/canditate-minimum/01-economic-theory",[114,0.871,907,1.042,4063,3.119,4064,3.029]],["content//tracks/disser/canditate-minimum/01-economic-theory",[6,0.419,26,0.533,32,1.458,33,1.885,34,1.265,45,2.789,46,1.719,49,1.47,52,2.369,53,1.212,55,1.924,58,1.123,73,1.456,74,0.778,80,1.946,109,1.226,114,1.345,120,2.132,121,2.781,147,2.186,161,2.638,165,3.241,172,1.563,182,2.222,191,0.815,208,1.813,212,1.226,221,1.388,224,1.226,234,0.737,246,0.764,333,1.172,344,0.694,356,1.231,372,1.476,374,0.8,380,2.444,381,2.624,383,1.088,393,0.946,419,2.056,461,1.24,471,1.54,479,0.496,507,1.123,517,1.719,519,1.456,528,4.816,530,3.391,535,0.869,536,0.992,548,1.185,554,1.813,555,1.364,558,1.965,610,2.947,625,3.76,637,1.437,675,1.59,754,3.169,758,1.187,766,2.162,770,4.565,778,1.741,787,1.456,799,1.719,803,2.222,851,5.769,856,2.24,859,2.302,864,1.78,910,1.077,918,1.177,935,1.585,938,2.13,1008,2.222,1018,1.159,1033,1.965,1037,2.69,1038,2.056,1049,1.563,1066,2.734,1067,2.162,1088,0.822,1120,5.214,1138,1.708,1143,1.418,1192,2.649,1208,1.077,1232,2.009,1315,1.399,1320,1.885,1363,1.315,1434,4.279,1437,1.885,1440,2.107,1466,6.894,1482,1.331,1516,1.24,1526,1.663,1539,3.766,1599,3.117,1624,2.444,1625,4.677,1669,4.386,1686,3.633,1734,3.533,1780,2.107,1828,5.576,1854,2.162,1867,2.288,1905,4.913,1908,3.418,1913,4.279,1922,2.947,1933,3.023,1948,2.539,1996,1.813,2007,4.534,2011,2.649,2024,2.107,2035,2.959,2046,1.399,2055,1.885,2064,3.169,2164,2.947,2170,3.855,2209,2.947,2237,2.781,2279,4.075,2299,3.533,2334,2.361,2364,1.212,2467,1.69,2974,3.89,2980,2.649,3214,1.437,3273,2.056,3432,2.107,3515,1.965,3621,3.09,3642,1.965,3734,2.649,3769,2.444,3811,1.663,3880,1.965,3976,2.781,4029,6.199,4058,2.107,4063,4.29,4064,6.511,4065,6.834,4066,4.279,4067,3.89,4068,7.047,4069,4.876,4070,7.922,4071,6.536,4072,6.672,4073,7.202,4074,6.697,4075,4.534,4076,6.672,4077,6.672,4078,6.204,4079,4.994,4080,6.672,4081,7.172,4082,3.95,4084,3.905,4086,2.781,4087,2.539,4091,2.288,4098,5.214,4099,7.283,4103,1.813,4105,5.145,4109,2.361,4110,4.534,4114,3.905,4132,2.649,4155,2.162,4161,4.966,4194,2.649,4195,2.947,4222,2.781,4232,5.855,4247,4.427,4260,3.169,4269,4.582,4271,1.54,4293,3.169,4296,4.075,4303,2.107,4314,1.848,4324,2.288,4360,5.214,4367,2.444,4369,2.781,4379,2.649,4385,2.947,4419,3.169,4421,3.905,4425,2.781,4428,2.947,4439,3.326,4440,2.649,4457,2.947,4458,2.947,4465,4.279,4475,5.758,4480,4.29,4489,8.564,4496,2.539,4505,2.947,4515,3.169,4533,1.848,4535,3.169,4539,3.169,4540,2.947,4542,4.279,4547,2.947,4549,4.534,4551,2.781,4555,2.781,4574,2.947,4622,3.169,4632,5.526,4634,4.279,4711,2.947,4713,2.947,4738,2.539,4753,2.649,4757,2.056,4787,5.942,4789,3.169,4806,5.214,4812,3.169,4825,2.947,4827,2.222,4857,2.947,4882,3.507,4883,6.204,4884,3.507,4885,3.169,4886,2.947,4887,3.507,4888,3.507,4889,2.649,4890,4.876,4891,5.942,4892,4.534,4893,3.507,4894,4.534,4895,3.507,4896,3.507,4897,2.947,4898,5.394,4899,3.507,4900,5.394,4901,4.876,4902,5.526,4903,2.947,4904,3.169,4905,3.169,4906,3.507,4907,3.507,4908,3.507,4909,4.876,4910,3.507,4911,5.942,4912,3.507,4913,3.507,4914,3.507,4915,3.507,4916,3.507,4917,3.507,4918,3.507,4919,2.781,4920,3.169,4921,2.649,4922,3.507,4923,3.507,4924,5.526,4925,3.507,4926,3.507,4927,3.169,4928,3.507,4929,3.507,4930,3.169,4931,3.507,4932,3.507,4933,3.507,4934,3.507,4935,3.507,4936,3.507,4937,2.649,4938,3.507,4939,3.507,4940,3.169,4941,3.507,4942,2.947,4943,3.169,4944,3.507,4945,3.507,4946,3.507,4947,6.574,4948,3.507,4949,3.507,4950,3.507,4951,3.507,4952,4.876,4953,5.394,4954,2.649,4955,2.781,4956,5.394,4957,3.507,4958,3.507,4959,2.649,4960,3.507,4961,3.507,4962,3.169,4963,3.507,4964,3.169,4965,2.781,4966,3.507,4967,6.574,4968,3.507,4969,3.169,4970,3.507,4971,2.947,4972,2.947,4973,3.507,4974,3.507,4975,3.169,4976,3.507,4977,3.507,4978,3.507,4979,3.169,4980,3.507,4981,3.507,4982,3.169,4983,3.507,4984,4.876,4985,7.381,4986,8.564,4987,8.765,4988,3.507,4989,1.663,4990,3.169,4991,4.876,4992,3.507,4993,3.507,4994,3.507,4995,3.507,4996,3.169,4997,5.394,4998,3.507,4999,3.507,5000,3.507,5001,3.507,5002,3.169,5003,3.169,5004,2.947,5005,3.507,5006,2.649,5007,3.507]],["description//tracks/disser/canditate-minimum/01-economic-theory",[91,1.687,340,1.973,3880,2.057,4056,2.396,4058,2.206,4059,2.473,4359,2.559]],["title//tracks/aws-certified-developer-associate/_index",[6,0.121,4525,1.716,5008,1.409,5009,2.736,5010,4.603,5011,2.943,5012,2.943]],["content//tracks/aws-certified-developer-associate/_index",[0,4.262,6,0.13,16,4.04,30,1.685,35,1.899,120,0.849,144,2.685,147,1.396,161,2.055,254,2.349,256,2.276,257,4.938,270,1.469,271,3.011,292,3.313,389,4.04,424,1.839,442,3.159,444,3.313,446,2.767,492,2.779,501,2.526,575,2.262,681,3.313,697,3.153,701,3.313,702,3.01,722,1.914,840,3.058,842,2.832,886,4.217,932,2.507,1005,4.707,1046,1.277,1086,2.096,1151,1.628,1184,2.548,1336,1.682,1365,2.431,1386,1.578,1405,1.967,1502,2.151,1552,2.635,1553,2.767,1664,4.744,1749,2.36,1758,2.932,1759,2.046,1837,4.262,1855,2.046,1889,4.413,1900,5.508,1945,2.932,2029,2.349,2122,3.153,2131,3.011,2162,2.211,2174,3.745,2222,3.745,2242,2.432,2247,2.276,2260,3.506,2359,2.932,2382,1.324,2452,5.508,2454,3.745,2468,1.74,2595,4.262,2649,2.767,2678,2.211,2767,2.635,2831,4.262,2836,2.932,2915,1.955,2975,2.948,2976,1.192,3009,2.151,3030,5.508,3036,2.096,3120,2.526,3434,3.441,3457,2.526,3500,4.413,3554,1.955,3737,6.306,3795,2.276,3988,5.187,4236,3.89,4525,5.273,5008,4.919,5009,6.682,5010,9.897,5011,7.185,5012,9.795,5013,3.489,5014,7.632,5015,7.185,5016,2.932,5017,3.153,5018,3.489,5019,5.373,5020,2.432,5021,2.932,5022,2.349,5023,4.516,5024,1.914,5025,6.343,5026,3.548,5027,3.489,5028,3.671,5029,3.405,5030,4.316,5031,2.349,5032,3.489,5033,2.431,5034,3.619,5035,5.198,5036,3.267,5037,5.373,5038,5.373,5039,5.373,5040,4.857,5041,3.489,5042,6.553,5043,4.505,5044,3.489,5045,2.932,5046,3.489,5047,3.489,5048,3.153,5049,3.489,5050,3.489,5051,3.489,5052,2.767,5053,3.489,5054,3.489,5055,3.153,5056,7.058,5057,5.373,5058,2.767,5059,5.373,5060,5.037,5061,2.932,5062,3.153,5063,3.489,5064,4.857,5065,1.628,5066,2.932,5067,4.516,5068,3.489,5069,3.153,5070,3.153,5071,3.153,5072,5.373,5073,3.489,5074,3.937,5075,2.932,5076,3.153,5077,5.373,5078,6.609,5079,3.489,5080,6.553,5081,3.842,5082,5.373,5083,2.432,5084,3.489,5085,5.373,5086,7.185,5087,4.857,5088,4.857,5089,4.857,5090,5.373,5091,2.046,5092,3.745,5093,5.73,5094,4.262,5095,3.153,5096,3.489,5097,4.516,5098,5.373,5099,5.373,5100,1.796,5101,4.262,5102,3.489,5103,4.857,5104,5.373,5105,3.489,5106,2.767,5107,4.516,5108,3.489,5109,3.489,5110,3.489,5111,6.553,5112,5.373,5113,5.373,5114,5.373,5115,5.373,5116,5.373,5117,5.373,5118,6.553,5119,6.553,5120,6.553,5121,5.373,5122,3.901,5123,3.489,5124,3.489,5125,3.489,5126,2.767,5127,1.875,5128,2.779,5129,1.875,5130,4.262,5131,5.373,5132,3.313,5133,3.506,5134,5.373,5135,2.635,5136,5.198,5137,3.153,5138,4.038,5139,3.489,5140,4.262,5141,3.89,5142,5.373,5143,2.046,5144,3.489,5145,3.489,5146,2.211,5147,3.489,5148,3.489,5149,4.568,5150,3.489,5151,5.373,5152,2.276,5153,1.51,5154,3.489,5155,2.932,5156,3.619,5157,2.948,5158,1.219,5159,2.767,5160,7.362,5161,2.276,5162,2.276,5163,3.489,5164,3.506,5165,3.153,5166,2.932,5167,3.153,5168,3.489,5169,3.489,5170,3.153,5171,2.151,5172,3.153,5173,1.804,5174,2.767,5175,3.489,5176,3.489,5177,2.211,5178,2.046,5179,5.373,5180,2.349,5181,3.489,5182,1.603,5183,4.059,5184,4.857,5185,3.489,5186,3.489,5187,3.489,5188,2.932,5189,3.489,5190,3.489,5191,2.932,5192,3.489,5193,3.489,5194,5.853,5195,4.413,5196,4.516,5197,3.489,5198,3.619,5199,3.153,5200,5.373,5201,3.619,5202,4.857,5203,2.526,5204,5.373,5205,3.489,5206,3.489,5207,2.276,5208,3.489,5209,3.489,5210,5.373,5211,3.489,5212,6.553,5213,3.489,5214,4.262,5215,3.842,5216,3.153,5217,1.914,5218,3.489,5219,3.489,5220,5.373,5221,3.153,5222,2.526,5223,3.489,5224,2.767,5225,3.489,5226,3.489,5227,2.635,5228,3.153,5229,3.489,5230,3.489,5231,3.489,5232,3.489,5233,3.153,5234,2.635]],["description//tracks/aws-certified-developer-associate/_index",[16,2.264,4525,1.935,5008,1.589,5009,3.086,5014,2.774,5020,2.559,5056,3.086]],["title//tracks/aws-certified-developer-associate/lambda/",[2174,5.135]],["content//tracks/aws-certified-developer-associate/lambda/",[1,1.706,6,0.413,26,0.854,32,1.109,34,2.373,35,1.985,38,0.878,43,3.292,54,3.913,56,2.914,65,1.321,73,1.515,80,1.684,91,3.484,96,1.293,102,2.21,110,1.213,112,1.53,114,1.565,120,2.09,144,2.3,146,2.85,173,1.431,176,1.139,219,1.655,227,3.107,240,3.476,246,1.653,248,2.959,259,2.08,261,2.914,272,2.396,313,1.672,344,0.801,351,1.53,356,0.985,361,4.077,366,4.361,369,2.579,370,2.502,374,1.73,389,3.461,397,1.431,410,2.62,437,2.988,452,5.161,462,1.97,467,1.706,478,2.466,488,2.481,492,5.323,525,2.579,536,1.394,548,1.897,594,4.065,601,3.373,626,2.305,627,2.85,679,6.488,701,3.461,762,3.781,781,2.579,785,1.76,800,2.579,818,3.781,844,2.903,886,3.216,907,2.005,917,1.458,918,1.005,925,1.591,932,2.62,951,4.447,952,2.62,994,4.949,1005,3.331,1019,2.08,1068,2.903,1069,3.373,1076,2.502,1089,2.055,1090,3.663,1151,2.62,1245,3.781,1341,1.919,1374,2.579,1405,3.144,1424,2.055,1426,3.718,1430,2.662,1470,1.985,1524,3.292,1528,2.466,1545,4.241,1611,0.902,1618,1.919,1718,4.241,1745,2.184,1880,3.018,1881,2.8,1987,2.878,2027,4.345,2052,2.662,2095,5.491,2132,3.216,2174,6.696,2287,3.461,2555,3.558,2564,2.54,2778,3.913,2872,5.108,2985,3.558,3030,4.719,3145,3.08,3277,4.719,3400,6.813,3406,5.075,3432,3.373,3518,3.373,3587,3.663,3670,3.781,3753,4.453,3904,5.729,3915,2.662,4079,4.527,4314,2.959,4816,3.146,5008,3.982,5026,2.706,5028,3.783,5065,2.62,5078,5.394,5087,6.855,5088,7.763,5103,5.075,5130,4.453,5132,3.461,5146,3.558,5149,3.913,5155,4.719,5164,3.663,5235,5.614,5236,5.614,5237,4.719,5238,4.453,5239,5.614,5240,4.719,5241,3.461,5242,5.075,5243,5.614,5244,5.614,5245,9.199,5246,7.585,5247,7.585,5248,7.585,5249,4.453,5250,5.614,5251,5.614,5252,5.614,5253,5.614,5254,5.614,5255,5.614,5256,5.614,5257,5.614,5258,4.453,5259,5.614,5260,4.065,5261,4.719,5262,6.47,5263,6.375,5264,4.719,5265,5.614,5266,5.614,5267,5.075,5268,4.453,5269,5.614,5270,3.781,5271,7.585,5272,5.614,5273,5.614,5274,7.585,5275,5.614,5276,5.614,5277,5.614,5278,5.614,5279,5.614,5280,5.614,5281,5.614,5282,5.614,5283,7.585,5284,7.585,5285,5.614,5286,7.585,5287,3.663,5288,5.614,5289,5.614,5290,5.075,5291,4.065,5292,5.075,5293,5.614,5294,5.108,5295,4.453,5296,5.614,5297,4.241,5298,5.614]],["description//tracks/aws-certified-developer-associate/lambda/",[2174,3.428,2949,2.099,5008,2.129,5299,2.756]],["title//tracks/aws-certified-developer-associate/iam/",[5141,5.333]],["content//tracks/aws-certified-developer-associate/iam/",[7,3.039,26,1.037,31,2.356,38,1.066,45,3.526,68,1.242,83,3.229,110,1.473,176,1.747,184,4.936,245,2.607,263,2.757,271,5.289,278,3.526,289,1.447,302,3.956,334,3.401,344,1.047,352,2.206,427,2.62,464,2.438,471,2.994,479,1.401,488,2.23,507,2.183,593,1.156,627,4.372,628,3.192,636,2.33,640,2.33,741,3.393,762,4.592,852,3.132,907,1.486,918,1.775,925,1.932,946,4.975,951,5.049,1019,3.673,1024,1.346,1055,2.01,1076,3.039,1138,1.771,1190,4.321,1220,5.731,1246,4.372,1255,2.556,1405,3.455,1480,3.286,1535,3.998,1536,2.994,1610,3.19,1869,2.138,1982,5.731,2270,4.204,2364,2.976,2588,5.731,2678,4.321,2929,4.018,3099,4.752,3154,3.01,3189,3.665,3587,4.449,4103,3.526,4118,3.401,4229,4.86,4398,4.752,4424,2.952,5008,4.687,5078,5.535,5092,6.911,5107,5.731,5122,3.973,5136,6.831,5141,7.767,5149,6.002,5240,7.934,5261,5.731,5300,3.286,5301,5.151,5302,6.579,5303,6.163,5304,2.721,5305,1.97,5306,6.819,5307,6.819,5308,5.619,5309,3.821,5310,6.819,5311,5.408,5312,6.819,5313,4.295,5314,4.449,5315,4.204,5316,5.731,5317,6.819]],["description//tracks/aws-certified-developer-associate/iam/",[271,1.897,355,1.096,2949,1.445,5008,1.466,5122,1.425,5136,2.685,5141,2.451,5299,1.897]],["title//tracks/aws-certified-developer-associate/elasticbeanstalk/",[5093,3.659,5094,4.95]],["content//tracks/aws-certified-developer-associate/elasticbeanstalk/",[6,0.199,7,2.385,26,1.275,30,1.678,31,1.849,32,1.057,38,0.837,49,2,55,4.027,57,1.627,65,1.279,68,1.722,75,1.954,96,1.232,105,2.793,109,1.87,111,1.531,112,1.458,113,2.481,118,1.487,120,1.786,139,1.769,165,3.215,176,1.489,183,2.136,191,1.947,195,3.215,201,2.222,204,1.829,227,2.656,234,1.125,235,2.573,246,1.167,251,3.598,261,2.056,268,2.209,278,2.767,331,1.732,340,2.876,342,2.253,344,0.565,355,1.732,356,0.953,374,1.221,395,2.82,406,2.717,441,3.224,459,1.809,479,0.756,494,3.598,506,3.874,507,2.683,519,2.222,536,0.984,593,1.245,595,2.006,600,0.932,626,1.627,628,1.578,636,2.509,675,2.164,678,2.767,718,1.959,741,2.892,840,3.425,852,3.849,859,2.284,907,2.128,918,1.5,938,1.43,951,5.723,994,3.492,1007,2.458,1019,1.982,1024,1.057,1059,2.669,1076,2.385,1088,1.255,1110,1.982,1181,2.458,1187,2.537,1234,1.87,1240,2.136,1284,1.959,1293,2.999,1311,3.066,1320,2.876,1361,2.767,1386,2.421,1405,2.687,1424,2.687,1426,4.107,1430,3.973,1439,3.215,1440,3.215,1451,2.936,1456,4.043,1470,3.34,1478,2.222,1487,4.868,1649,3.299,1702,2.902,1741,3.627,1803,2.876,1814,3.874,1857,3.272,1858,2.031,1887,2.936,1954,1.578,2035,2.936,2158,3.138,2240,4.526,2382,2.031,2470,2.623,2778,5.117,2888,3.604,3159,2.687,3184,5.823,3495,1.87,3499,5.823,3661,2.623,3696,2.365,3750,2.999,3904,5.545,3923,3.604,4079,2.82,4361,3.604,4533,2.82,4569,4.245,4736,3.874,4757,3.138,4791,3.874,4870,3.391,5008,4.225,5026,3.538,5029,4.652,5092,3.73,5093,6.126,5094,8.288,5129,3.946,5132,4.526,5133,4.79,5135,6.33,5155,4.498,5270,3.604,5287,3.492,5304,2.136,5316,4.498,5318,5.352,5319,4.245,5320,5.117,5321,3.73,5322,4.498,5323,3.869,5324,3.425,5325,5.352,5326,5.352,5327,3.299,5328,5.352,5329,5.823,5330,4.245,5331,5.352,5332,4.652,5333,5.352,5334,5.352,5335,3.299,5336,5.352,5337,3.138,5338,5.352,5339,4.498,5340,5.352,5341,5.352,5342,5.352,5343,5.315,5344,7.341,5345,4.245,5346,5.352,5347,5.352,5348,4.245,5349,5.352,5350,3.874,5351,4.245,5352,8.38,5353,5.352,5354,5.823,5355,7.494,5356,5.352,5357,5.352,5358,5.352,5359,5.352,5360,3.299,5361,5.352,5362,5.352,5363,5.352,5364,5.352,5365,5.352,5366,3.874,5367,4.498,5368,4.837,5369,5.352,5370,5.352,5371,5.352,5372,5.352,5373,2.876,5374,5.352,5375,5.352,5376,4.837,5377,4.027,5378,4.837,5379,5.352,5380,4.837,5381,5.352]],["description//tracks/aws-certified-developer-associate/elasticbeanstalk/",[75,0.515,2949,1.25,5008,2.028,5093,2.746,5094,3.715,5299,1.641,5382,2.462]],["title//tracks/aws-certified-developer-associate/ec2/",[5092,5.135]],["content//tracks/aws-certified-developer-associate/ec2/",[6,0.344,14,1.717,17,2.952,32,1.127,35,2.711,91,3.523,103,3.519,109,1.995,110,1.657,113,1.929,114,1.397,120,1.389,137,1.078,144,2.338,175,0.615,176,1.879,191,1.326,193,4.132,202,1.586,203,2.482,214,2.507,226,2.403,229,2.338,242,3.844,243,7.99,245,1.455,247,4.371,261,2.193,269,3.617,271,3.198,289,1.211,302,4.438,334,2.847,336,2.952,355,1.847,397,1.455,417,3.429,427,2.193,441,2.507,468,2.37,479,1.084,494,3.759,501,4.132,507,1.828,593,0.968,626,1.735,628,1.683,655,1.995,675,2.261,741,3.022,778,1.511,785,1.79,800,2.622,818,3.844,840,4.042,849,1.2,907,1.244,918,1.022,931,2.018,946,4.042,951,3.347,1005,2.507,1019,2.841,1026,2.663,1047,4.132,1076,2.544,1110,2.114,1190,3.617,1287,3.579,1293,3.198,1300,2.436,1363,2.14,1374,3.979,1417,4.797,1426,2.798,1480,2.751,1502,6.37,1514,7.28,1536,2.507,1887,3.131,1930,1.586,1938,4.797,1942,4.132,1983,3.519,2029,3.844,2074,4.86,2131,3.198,2260,3.724,2364,1.972,2382,2.166,2470,2.798,2629,4.32,2662,2.338,2731,3.198,2915,5.865,2975,3.131,3015,2.622,3023,4.132,3189,3.068,3479,4.797,3495,1.995,3497,4.527,3499,7.663,3696,1.497,3861,6.446,4079,3.008,4361,3.844,5008,4.009,5023,4.797,5029,4.86,5033,2.582,5036,2.221,5074,3.429,5078,6.256,5083,3.978,5091,3.347,5092,7.644,5093,3.347,5107,6.446,5122,4.279,5128,2.952,5129,3.068,5143,6.058,5180,3.844,5238,6.083,5242,5.159,5303,5.159,5316,7.784,5332,3.617,5337,3.347,5383,5.708,5384,6.446,5385,6.932,5386,3.978,5387,5.159,5388,3.978,5389,4.32,5390,5.708,5391,3.978,5392,5.708,5393,5.552,5394,5.159,5395,6.083,5396,7.67,5397,5.204,5398,4.797,5399,8.662,5400,5.708,5401,7.67,5402,6.037,5403,5.708,5404,4.608,5405,3.519,5406,5.159,5407,3.519,5408,10.165,5409,5.708,5410,5.708,5411,4.312,5412,6.932,5413,6.932,5414,5.708,5415,5.708,5416,5.708,5417,5.708,5418,5.708,5419,4.527,5420,5.708,5421,5.708,5422,5.159,5423,5.708,5424,5.708,5425,5.159]],["description//tracks/aws-certified-developer-associate/ec2/",[2949,2.099,5078,2.884,5092,3.428,5299,2.756]],["title//tracks/archive/",[1855,4.32]],["content//tracks/archive/",[6,0.375,1855,5.193,3009,5.46,5426,9.107,5427,9.107]],["description//tracks/archive/",[]],["title//tracks/algorithms-101/leetcode/_index",[5428,1.65]],["content//tracks/algorithms-101/leetcode/_index",[]],["description//tracks/algorithms-101/leetcode/_index",[]],["title//tracks/algorithms-101/leetcode/medium/_index",[3343,4.668]],["content//tracks/algorithms-101/leetcode/medium/_index",[]],["description//tracks/algorithms-101/leetcode/medium/_index",[]],["title//tracks/algorithms-101/leetcode/medium/28.en",[733,2.041,795,1.726,1086,2.327,2242,2.7,3143,1.966,5429,3.255]],["content//tracks/algorithms-101/leetcode/medium/28.en",[6,0.416,114,1.974,120,1.836,313,3.136,623,2.918,733,4.833,795,3.364,880,5.984,1046,3.616,1327,4.925,1751,2.624,1789,3.267,1811,5.254,1843,4.028,1860,5.758,1958,3.808,2027,5.66,2382,2.864,2468,4.574,3143,5.016,5198,6.176,5234,5.701,5405,4.653,5428,2.213,5429,7.708,5430,6.343,5431,10.936,5432,10.837,5433,7.547,5434,9.171,5435,9.171,5436,9.171,5437,9.171,5438,9.171,5439,7.547,5440,7.547,5441,7.547,5442,7.547]],["description//tracks/algorithms-101/leetcode/medium/28.en",[733,1.935,795,1.636,1086,2.206,2242,2.559,3143,1.864,5428,0.822,5429,3.086]],["title//tracks/algorithms-101/leetcode/medium/151",[795,2.13,2090,3.611,3119,3.332,5443,4.018]],["content//tracks/algorithms-101/leetcode/medium/151",[6,0.366,29,2.674,32,2.023,52,3.284,102,2.847,124,1.544,158,2.873,246,1.63,356,0.971,467,2.273,470,2.555,472,2.946,473,3.435,535,1.853,539,5.224,600,1.303,606,2.705,623,2.037,635,3.253,864,3.796,905,1.34,907,2.233,1179,5.211,1283,5.792,1308,1.942,1592,2.555,1611,1.201,1751,2.139,1791,3.665,1860,5.11,1867,4.879,1881,3.729,2005,3.729,2052,3.545,2090,5.648,2323,6.284,2324,4.101,2327,8.009,2365,5.648,2373,5.648,2643,4.125,2645,4.384,2870,5.002,2929,3.489,3281,2.555,3362,6.626,3504,5.513,3647,7.664,5198,5.035,5428,1.675,5443,6.284,5444,6.758,5445,5.93,5446,7.477,5447,7.477,5448,7.477,5449,7.477]],["description//tracks/algorithms-101/leetcode/medium/151",[102,0.945,905,0.5,1283,1.899,5428,0.822,5443,3.086,5445,2.912,5450,1.525]],["title//tracks/algorithms-101/leetcode/medium/735/",[5451,4.55,5452,4.893,5453,5.414]],["content//tracks/algorithms-101/leetcode/medium/735/",[6,0.393,7,2.975,14,3.057,26,1.016,80,1.886,83,2.503,112,2.876,114,1.793,175,0.916,212,3.267,219,1.968,246,1.455,313,2.784,356,0.867,370,2.975,467,2.029,518,2.115,527,3.825,535,2.106,548,2.256,562,4.116,606,2.415,623,1.819,670,3.825,716,3.115,745,3.214,817,2.093,905,1.273,935,1.609,1103,2.699,1180,3.965,1308,1.734,1362,5.328,1520,7.805,1521,7.239,1661,2.281,1751,1.91,1842,3.588,1849,4.356,1890,3.844,1928,5.611,2057,3.825,2345,4.356,2765,4.314,3065,4.011,3213,5.239,3214,2.735,3242,5.106,3281,2.281,3304,5.735,3619,3.662,3769,4.653,3792,4.653,4071,6.886,4120,4.23,4775,5.239,5428,1.496,5451,5.611,5452,9.388,5454,4.653,5455,10.16,5456,6.676,5457,2.699,5458,8.893,5459,6.034,5460,6.676,5461,3.518,5462,8.893,5463,6.676,5464,5.86,5465,8.498,5466,7.68]],["description//tracks/algorithms-101/leetcode/medium/735/",[905,0.546,1928,3.371,5428,0.898,5450,1.665,5451,3.371,5455,3.625]],["title//tracks/algorithms-101/leetcode/medium/649/",[5467,4.55,5468,4.55,5469,4.55]],["content//tracks/algorithms-101/leetcode/medium/649/",[6,0.401,7,3.451,14,2.33,18,2.001,26,1.477,32,1.529,80,2.068,83,2.171,96,2.144,102,2.245,141,2.692,172,2.581,173,1.476,175,0.624,356,1.006,380,4.036,383,1.797,439,3.672,459,1.957,462,1.504,474,2.791,479,0.818,507,1.854,518,1.835,525,2.66,535,1.435,562,3.57,600,1.349,606,2.095,623,1.578,675,2.283,785,1.815,817,3.044,901,3.271,905,1.322,909,2.354,910,1.778,911,3.778,935,1.396,1066,2.145,1088,1.816,1138,1.504,1308,1.504,1315,3.09,1479,5.833,1592,2.646,1625,6.33,1661,1.979,1666,4.374,1716,5.462,1751,1.657,1767,7.071,1780,3.479,1791,2.838,1858,2.939,1860,4.339,1876,3.57,1890,3.503,1920,2.001,1989,4.374,2006,5.081,2104,4.192,2237,4.593,2629,4.351,2643,2.62,2645,3.395,3213,3.57,3281,1.979,3316,4.374,3504,4.339,3518,4.653,3619,3.176,3627,4.036,3642,4.889,3800,2.702,4010,3.317,4158,4.192,4304,9.03,4757,3.395,4774,6.142,4816,3.245,5428,1.297,5457,2.341,5467,4.867,5468,4.867,5469,4.867,5470,7.744,5471,10.943,5472,10.366,5473,9.99,5474,11.302,5475,5.791,5476,9.315,5477,5.791,5478,9.99,5479,5.791,5480,5.234,5481,9.709,5482,3.395,5483,5.791,5484,4.036,5485,4.867,5486,4.374,5487,4.867,5488,5.791,5489,5.791,5490,5.791,5491,5.234,5492,6.999,5493,3.9,5494,5.791,5495,5.234,5496,4.593,5497,5.791,5498,4.867,5499,5.791,5500,4.867,5501,5.791,5502,5.791,5503,3.778,5504,7.333,5505,5.791,5506,5.791,5507,5.791,5508,5.791,5509,5.791,5510,5.791,5511,5.791,5512,5.791,5513,5.791,5514,5.791]],["description//tracks/algorithms-101/leetcode/medium/649/",[905,0.546,5428,0.898,5450,1.665,5467,3.371,5468,3.371,5469,3.371]],["title//tracks/algorithms-101/leetcode/medium/454/",[2978,4.294,5515,4.55,5516,5.414]],["content//tracks/algorithms-101/leetcode/medium/454/",[1,2.075,6,0.417,17,5.485,18,2.979,38,1.068,53,2.36,80,1.913,112,2.349,114,1.57,139,1.646,176,1.385,216,2.117,313,2.813,344,0.721,422,1.313,479,0.965,535,2.136,555,2.656,556,2.163,623,1.861,716,3.186,745,2.054,800,4.699,905,1.174,935,1.646,1089,2.499,1138,1.774,1308,1.774,1335,7.13,1432,5.805,1598,5.402,1661,2.333,1675,4.457,1751,1.954,1781,8.967,1790,4.21,1792,2.69,1842,4.633,1880,5.821,1920,2.36,1955,3.237,2009,2.914,2244,4.004,2298,4.598,2629,5.102,2703,6.62,2964,6.816,2973,4.943,2974,5.229,3281,2.333,3386,4.004,3519,6.277,4246,5.739,4545,3.043,4989,3.237,5428,1.53,5457,2.761,5503,4.455,5515,5.739,5517,6.172,5518,6.828,5519,9.921,5520,9.921,5521,8.59,5522,6.511,5523,5.805,5524,2.914,5525,5.739,5526,6.828,5527,6.172,5528,6.828,5529,6.828,5530,6.828]],["description//tracks/algorithms-101/leetcode/medium/454/",[793,1.269,905,0.5,3759,3.086,5428,0.822,5450,1.525,5515,3.086,5531,3.319]],["title//tracks/algorithms-101/leetcode/medium/443/",[795,2.413,5532,4.294,5533,5.414]],["content//tracks/algorithms-101/leetcode/medium/443/",[6,0.397,14,2.232,26,1.129,32,1.465,114,1.654,124,1.874,225,2.232,234,1.56,313,2.703,333,2.48,344,0.783,370,4.553,507,2.375,535,1.839,536,1.364,593,1.258,623,2.022,745,2.232,767,5.322,845,3.123,857,3.462,905,1.391,910,3.274,1043,4.25,1079,2.816,1308,1.927,1521,6.326,1599,3.518,1648,3.836,1661,2.535,1751,2.123,1791,3.637,1843,3.258,1881,5.437,1955,3.518,2009,4.361,2057,4.25,2218,4.35,2233,6.326,2467,3.576,2697,4.701,3281,3.101,3386,4.35,3617,4.783,4743,5.604,5428,1.662,5461,3.91,5462,6.706,5532,5.885,5534,6.236,5535,7.419,5536,7.419,5537,4.806,5538,10.902,5539,10.902,5540,7.419,5541,5.885,5542,3.767,5543,7.419,5544,6.112,5545,7.419,5546,7.419]],["description//tracks/algorithms-101/leetcode/medium/443/",[102,0.664,137,0.487,905,0.351,1881,1.287,2207,1.95,2233,1.799,3386,1.513,3617,1.36,5428,0.578,5450,1.072,5532,2.047,5537,1.265]],["title//tracks/algorithms-101/leetcode/medium/437/",[2964,3.119,3341,3.791,5547,4.018,5548,2.872]],["content//tracks/algorithms-101/leetcode/medium/437/",[6,0.403,14,2.68,31,2.087,32,1.572,52,2.652,73,1.63,80,2.244,91,2.774,112,2.427,114,1.623,124,1.247,126,1.353,139,1.455,175,0.651,196,3.664,206,1.599,207,2.96,288,1.566,295,2.25,313,3.011,344,0.638,369,2.774,413,3.065,422,1.161,472,2.379,474,4.294,479,1.125,535,1.973,536,1.11,553,3.383,560,2.474,600,1.552,623,2.427,640,3.364,716,2.817,733,3.182,742,2.108,778,1.599,793,2.087,905,1.213,910,3.023,939,2.11,996,2.863,1066,4.057,1255,2.264,1308,1.568,1376,5.764,1470,2.815,1628,3.447,1639,1.835,1650,3.54,1661,2.063,1677,3.065,1721,4.209,1747,2.041,1751,2.549,1792,2.379,1843,3.497,1844,3.826,1856,6.601,1858,2.291,1958,2.507,1961,2.96,2191,6.233,2218,4.668,2244,3.54,2298,4.066,2410,4.371,2461,4.561,2573,4.561,2964,3.94,2974,5.579,3214,2.474,3281,2.063,3385,6.238,3386,4.668,3432,3.628,3495,3.31,3803,2.291,3964,3.94,4131,4.066,4546,3.54,5428,1.353,5457,2.441,5522,4.561,5523,4.066,5524,2.577,5547,5.075,5549,5.457,5550,3.383,5551,5.238,5552,5.457,5553,5.075,5554,4.209,5555,6.856,5556,6.038,5557,6.014,5558,5.492,5559,6.038,5560,5.457,5561,4.066,5562,2.817,5563,4.789,5564,5.764,5565,3.723,5566,4.371,5567,4.371,5568,3.628,5569,3.628,5570,4.371,5571,3.94,5572,4.371,5573,3.245,5574,5.075,5575,7.637,5576,9.471,5577,8.908,5578,5.075,5579,7.962,5580,4.371,5581,7.962,5582,4.789,5583,5.075,5584,5.075,5585,4.561,5586,6.038,5587,5.075]],["description//tracks/algorithms-101/leetcode/medium/437/",[462,0.67,742,0.683,793,0.892,905,0.351,910,0.793,1066,0.956,5428,0.578,5450,1.072,5531,2.333,5547,2.169,5550,1.446,5551,1.265]],["title//tracks/algorithms-101/leetcode/medium/394/",[795,2.413,3817,3.919,5588,4.55]],["content//tracks/algorithms-101/leetcode/medium/394/",[6,0.426,14,3.227,17,3.046,26,1.339,27,2.082,49,2.134,80,1.307,83,2.936,96,1.803,102,2.883,120,2.282,124,1.216,147,2.536,158,2.263,159,2.035,175,0.844,219,2.594,221,1.516,246,1.284,288,1.035,333,1.969,344,0.827,356,0.765,422,1.506,470,2.013,490,1.46,507,1.886,535,1.941,536,1.083,600,1.026,604,5.041,623,1.605,714,3.104,773,5.916,779,2.321,793,3.706,800,2.706,869,5.916,905,1.198,935,1.42,1038,3.453,1052,6.212,1055,2.309,1138,1.53,1227,4.105,1308,1.53,1331,1.737,1371,3.732,1598,4.85,1745,3.047,1747,2.647,1751,1.685,1782,4.487,1792,2.321,1795,4.449,1796,6.796,1858,2.235,1860,4.389,1881,5.11,1890,3.543,1952,2.99,2103,3.843,2364,2.035,2462,4.264,2929,2.748,2985,3.732,3156,4.105,3214,2.413,3281,2.013,3304,5.447,3315,4.672,3340,4.672,3361,4.264,3392,4.264,3504,3.3,3519,4.706,3617,3.104,3769,4.105,3792,5.459,3800,3.654,3915,2.793,4545,2.625,4554,3.3,5428,1.319,5444,5.324,5457,2.381,5461,3.104,5464,3.231,5466,5.324,5498,4.95,5534,8.206,5588,4.95,5589,4.95,5590,7.832,5591,5.89,5592,5.89,5593,5.89,5594,5.89,5595,5.324,5596,4.105,5597,5.459,5598,5.89,5599,5.89,5600,7.079,5601,4.449,5602,5.89,5603,7.832,5604,5.324,5605,5.324,5606,5.89,5607,10.039,5608,8.799,5609,5.89,5610,5.89,5611,5.89,5612,7.832]],["description//tracks/algorithms-101/leetcode/medium/394/",[70,0.958,102,0.754,474,1.412,905,0.399,1854,1.806,2466,2.042,5428,0.656,5450,1.216,5588,2.462,5613,2.929]],["title//tracks/algorithms-101/leetcode/medium/387/",[733,2.255,795,1.907,3502,3.098,5614,3.597,5615,4.279]],["content//tracks/algorithms-101/leetcode/medium/387/",[6,0.394,11,3.659,33,3.874,80,2.149,91,3.311,96,1.659,102,2.79,114,1.929,137,1.361,139,1.737,143,3.798,313,2.147,344,0.761,439,3.417,479,1.26,535,1.786,623,2.429,905,1.214,1040,3.659,1088,1.69,1089,2.638,1103,4.202,1138,1.872,1255,2.702,1284,2.638,1308,2.316,1432,6.004,1666,5.444,1751,2.062,1843,3.165,1858,3.674,1860,4.039,1880,5.875,1881,5.516,2006,4.37,2045,4.891,2564,3.261,2979,4.854,3143,4.526,3281,2.463,3504,4.996,4123,4.703,5373,5.436,5428,1.615,5457,2.914,5524,4.132,5534,7.494,5614,6.058,5616,9.88,5617,9.801,5618,5.228,5619,7.208,5620,7.208,5621,7.208,5622,8.916,5623,7.208,5624,7.208]],["description//tracks/algorithms-101/leetcode/medium/387/",[102,0.945,905,0.5,1881,1.831,2045,2.014,5428,0.822,5450,1.525,5614,3.086]],["title//tracks/algorithms-101/leetcode/medium/384/",[696,3.646,5625,4.55,5626,4.893]],["content//tracks/algorithms-101/leetcode/medium/384/",[6,0.379,49,2,90,4.943,137,1.703,139,1.769,158,3.911,175,0.791,176,1.489,225,3.273,288,1.29,356,0.953,370,4.74,422,1.411,465,4.867,478,3.223,479,1.379,535,2.235,542,2.325,556,3.413,597,4.651,623,2.457,745,2.208,755,3.271,834,5.544,905,1.329,1010,5.883,1061,4.344,1302,3.538,1308,2.342,1611,1.179,1747,3.047,1751,2.792,1782,5.165,1842,3.945,1863,3.271,1920,2.536,1958,3.048,1961,3.598,2009,4.459,2564,3.32,2585,5.313,2643,3.32,2926,5.544,3253,4.525,3281,3.081,4545,4.018,5198,4.943,5428,1.644,5457,2.968,5625,6.169,5626,9.2,5627,8.821,5628,7.34,5629,7.34,5630,8.149,5631,9.016,5632,9.016,5633,9.016,5634,7.34,5635,7.34,5636,7.34,5637,7.34,5638,7.34]],["description//tracks/algorithms-101/leetcode/medium/384/",[905,0.546,2009,1.712,5428,0.898,5450,1.665,5625,3.371,5627,3.625]],["title//tracks/algorithms-101/leetcode/medium/341/",[702,1.966,2150,3.394,2151,3.868,2157,3.394,5639,3.868]],["content//tracks/algorithms-101/leetcode/medium/341/",[1,3.231,6,0.388,11,3.721,26,1.484,34,2.112,38,1.146,124,1.514,172,3.266,205,4.02,313,2.183,337,2.45,344,0.774,356,0.952,439,3.475,458,4.935,473,3.366,479,1.036,535,2.417,556,2.322,597,4.644,606,3.259,623,2.455,635,3.596,716,3.419,745,3.199,793,2.532,905,1.226,935,1.766,939,2.561,1255,2.748,1308,1.904,1675,3.79,1689,4.403,1751,2.911,1791,3.592,1842,3.939,1843,3.218,1853,4.782,1958,3.043,1961,3.592,1981,4.644,2096,5.047,2103,7.152,2153,9.439,2154,7.06,2157,5.813,2191,5.553,2307,6.159,2564,3.315,2937,4.644,3281,2.504,5382,7.571,5618,4.297,5640,7.329,5641,2.887,5642,8.142,5643,7.329,5644,9.753,5645,7.329,5646,7.329,5647,7.329,5648,6.624,5649,7.329,5650,7.329,5651,7.329,5652,7.329,5653,7.329,5654,6.624,5655,7.329]],["description//tracks/algorithms-101/leetcode/medium/341/",[1,1.029,11,1.719,905,0.461,2103,2.209,2154,2.451,5428,0.758,5450,1.406,5639,3.06]],["title//tracks/algorithms-101/leetcode/medium/334/",[5656,4.32,5657,4.32,5658,4.78,5659,3.791]],["content//tracks/algorithms-101/leetcode/medium/334/",[6,0.398,14,2.887,49,1.926,96,1.627,112,2.615,158,2.716,202,2.448,216,1.736,288,1.243,301,2.716,311,4.872,319,3.985,344,0.746,370,3.926,525,4.047,535,1.752,536,1.619,606,3.472,623,2.4,713,5.766,745,3.022,793,3.471,799,3.465,901,3.875,905,1.307,1067,4.359,1089,2.588,1103,3.562,1138,2.288,1335,4.927,1431,4.927,1747,2.389,1751,2.023,1782,5.047,1791,5.066,1842,5.158,1844,4.48,1853,4.613,2006,3.465,2009,3.017,2564,3.198,2575,4.927,2932,3.589,3156,4.927,3281,3.01,3397,5.293,3519,4.248,3792,4.927,3915,4.177,4417,5.118,4533,3.726,5234,5.34,5428,1.584,5461,3.726,5660,9.597,5661,5.607,5662,6.655,5663,5.34,5664,5.118,5665,10.804,5666,10.969,5667,10.539,5668,8.809,5669,5.118,5670,6.655,5671,5.118,5672,7.07,5673,7.07,5674,7.07,5675,5.607,5676,8.809]],["description//tracks/algorithms-101/leetcode/medium/334/",[675,0.864,742,0.775,793,1.012,1791,1.436,2006,1.436,2009,1.25,3518,1.76,5428,0.656,5656,2.647,5662,2.213]],["title//tracks/algorithms-101/leetcode/medium/328/",[702,1.966,5677,3.597,5678,3.868,5679,3.868,5680,2.398]],["content//tracks/algorithms-101/leetcode/medium/328/",[1,3.295,6,0.418,7,2.037,11,2.321,14,2.315,26,1.454,30,3.067,44,1.419,68,1.402,74,1.015,83,2.885,96,1.053,111,1.308,112,2.666,114,1.815,120,2.558,139,1.102,141,1.321,147,2.588,161,3.124,173,1.165,175,0.829,181,3.31,196,3.554,217,2.387,234,0.961,305,2.1,319,1.898,344,0.694,356,0.594,375,1.495,413,5.461,472,1.801,517,2.241,535,2.209,548,3.012,606,1.654,623,2.097,635,3.294,636,1.562,675,1.348,777,2.133,785,2.061,852,4.577,905,1.048,925,1.862,1040,2.321,1055,2.48,1066,1.694,1079,2.92,1103,3.865,1138,1.188,1308,1.707,1470,1.616,1747,1.545,1751,2.202,1777,2.321,1789,2.845,1827,4.408,1890,2.068,1954,1.938,1958,2.729,1961,2.241,2004,1.924,2005,3.837,2006,3.222,2052,3.116,2067,1.448,2096,4.311,2145,2.819,2564,2.973,3248,8.268,3281,2.246,3598,3.31,3619,2.508,3620,3.187,3642,4.311,3803,1.735,3915,4.399,4546,2.681,5198,3.079,5373,2.457,5428,1.024,5457,2.657,5461,3.464,5491,4.132,5495,4.132,5537,5.379,5542,4.271,5552,4.132,5565,2.819,5568,2.747,5569,2.747,5671,4.758,5677,3.843,5678,9.349,5679,9.433,5681,3.079,5682,4.572,5683,9.078,5684,4.572,5685,6.103,5686,4.572,5687,10.436,5688,8.912,5689,4.572,5690,7.379,5691,10.517,5692,6.103,5693,3.454,5694,4.572,5695,6.572,5696,6.572,5697,8.413,5698,10.65,5699,5.94,5700,4.572,5701,4.572,5702,3.843,5703,4.132,5704,5.524,5705,5.94,5706,3.079,5707,2.747,5708,4.572,5709,4.572,5710,4.132,5711,4.572,5712,4.572,5713,5.812,5714,3.454,5715,3.31,5716,4.572]],["description//tracks/algorithms-101/leetcode/medium/328/",[1,0.701,196,1.677,905,0.314,2006,1.889,3248,1.743,5428,0.517,5450,0.958,5677,1.939,5681,1.554,5683,1.939,5705,2.085]],["title//tracks/algorithms-101/leetcode/medium/300/",[4023,3.46,5657,4.32,5659,3.791,5717,4.32]],["content//tracks/algorithms-101/leetcode/medium/300/",[6,0.408,38,1.071,80,2.321,112,2.577,114,1.723,139,1.651,143,3.609,158,2.631,159,2.366,175,0.931,181,6.251,202,1.902,206,2.286,225,2.06,313,2.039,344,0.723,370,4.73,479,0.968,535,2.461,555,2.664,606,2.477,623,2.353,742,2.286,745,3.23,785,2.147,799,4.636,823,4.384,905,1.352,1024,1.352,1038,4.015,1089,2.507,1308,1.779,1329,4.773,1335,4.773,1470,3.052,1619,3.052,1680,2.599,1696,4.339,1704,2.923,1751,1.959,1782,3.923,1792,3.402,1842,3.68,1856,7.136,1858,2.599,1946,6.251,1979,3.686,2009,4.583,2298,4.611,2333,4.932,2564,3.098,3281,2.34,3513,7.258,4002,7.412,4023,4.957,4029,4.339,5428,1.534,5457,2.769,5618,4.015,5662,7.734,5718,7.734,5719,6.848,5720,10.239,5721,8.347,5722,5.173,5723,9.458,5724,8.635,5725,8.635,5726,8.635,5727,6.848,5728,5.431,5729,6.189,5730,6.848,5731,6.848]],["description//tracks/algorithms-101/leetcode/medium/300/",[905,0.5,4002,2.658,4023,2.658,5428,0.822,5450,1.525,5662,2.774,5718,2.774]],["title//tracks/algorithms-101/leetcode/medium/287/",[1086,2.872,1840,2.738,5732,4.018,5733,4.78]],["content//tracks/algorithms-101/leetcode/medium/287/",[1,2.248,6,0.415,32,1.461,53,2.556,68,1.348,112,2.015,114,1.784,120,1.799,124,1.528,137,1.397,143,3.898,144,3.03,206,1.958,319,3.071,340,3.975,344,0.781,356,0.961,370,3.296,375,2.419,478,3.248,518,2.343,535,2.245,536,1.36,623,2.015,646,3.248,745,2.225,793,3.13,901,3.396,905,1.333,925,2.567,1086,4.444,1103,3.663,1180,3.451,1308,1.921,1751,2.116,1782,4.237,1975,5.354,1979,3.157,2005,3.689,2009,3.157,2192,5.866,3281,3.096,4738,5.354,5428,1.657,5461,3.898,5486,5.587,5537,4.44,5562,3.451,5661,7.185,5732,6.216,5734,7.396,5735,11.1,5736,11.1,5737,7.396,5738,7.396,5739,4.057,5740,5.155,5741,5.866,5742,7.396,5743,8.188,5744,7.396,5745,8.188,5746,7.396,5747,9.059,5748,9.059,5749,7.396,5750,7.396,5751,7.396]],["description//tracks/algorithms-101/leetcode/medium/287/",[742,1.062,793,1.386,2009,1.712,2192,3.181,5428,0.898,5732,3.371]],["title//tracks/algorithms-101/leetcode/medium/2844/",[1557,2.271,1840,2.219,4530,2.219,5052,3.072,5191,3.255,5752,3.255]],["content//tracks/algorithms-101/leetcode/medium/2844/",[6,0.411,30,3.293,32,1.591,49,2.195,60,3.693,80,1.364,100,5.425,102,2.702,114,1.738,120,2.409,124,1.269,143,3.239,181,6.904,183,2.453,212,2.148,217,1.907,230,1.428,246,1.756,288,1.676,311,4.09,313,3.217,331,1.989,337,2.054,344,0.851,353,3.789,356,0.798,393,1.659,422,1.182,439,3.819,535,1.523,623,2.698,648,2.391,670,4.615,713,4.84,714,3.239,758,1.352,778,1.627,785,1.927,793,3.776,817,1.927,844,4.931,857,2.868,864,3.12,901,3.881,905,1.224,910,2.759,935,1.481,1024,1.214,1053,3.004,1055,2.375,1088,1.441,1089,2.949,1103,4.003,1255,2.304,1289,3.604,1308,2.093,1470,2.173,1641,6.263,1661,2.1,1675,5.12,1708,4.01,1747,2.722,1751,1.759,1782,4.615,1818,2.453,1829,3.856,1843,2.699,1860,3.444,1881,3.065,1954,1.812,1955,2.914,2137,6.629,2211,3.604,2244,3.604,2333,2.823,2467,2.962,2564,3.644,2870,4.929,3214,2.518,3281,2.753,3386,4.723,3392,5.832,3620,4.284,3759,5.166,5428,1.377,5537,4.405,5663,4.643,5728,4.875,5752,5.166,5753,5.555,5754,6.146,5755,8.986,5756,7.553,5757,5.555,5758,6.146,5759,6.146,5760,6.146,5761,9.901,5762,10.159,5763,4.643,5764,10.159,5765,5.555,5766,4.139,5767,5.555]],["description//tracks/algorithms-101/leetcode/medium/2844/",[1557,2.352,1840,2.298,4530,2.298,5052,3.181,5191,3.371,5752,3.371]],["title//tracks/algorithms-101/leetcode/medium/277/",[1086,3.253,5768,4.55,5769,4.893]],["content//tracks/algorithms-101/leetcode/medium/277/",[6,0.389,17,5.266,34,2.116,35,2.598,96,1.692,112,2.003,114,1.779,120,1.788,124,1.518,175,0.792,216,1.805,288,1.292,313,2.688,319,3.052,344,0.776,412,5.831,422,1.413,535,1.822,567,9.275,606,2.659,623,2.661,716,3.43,742,1.946,901,3.661,905,1.229,932,4.211,1103,4.118,1255,2.756,1308,1.909,1320,3.951,1747,2.484,1751,2.582,1763,4.95,1843,4.59,1853,6.372,1958,3.052,1989,5.553,2570,3.732,2600,4.658,2612,6.178,3281,3.084,3606,5.322,5034,6.078,5198,4.95,5329,5.831,5428,1.647,5461,3.874,5763,5.553,5768,6.178,5769,6.644,5770,7.351,5771,7.351,5772,8.785,5773,6.644,5774,6.644,5775,4.851,5776,7.351,5777,7.351,5778,7.351,5779,9.025,5780,6.178,5781,4.658,5782,6.644,5783,7.351,5784,7.351,5785,9.766,5786,7.351,5787,7.351,5788,7.351,5789,6.644,5790,6.644,5791,6.644,5792,7.351]],["description//tracks/algorithms-101/leetcode/medium/277/",[37,2.206,742,0.972,3696,0.963,4229,1.8,5428,0.822,5768,3.086,5772,3.086]],["title//tracks/algorithms-101/leetcode/medium/251/",[2157,3.791,5793,4.018,5794,3.611,5795,4.32]],["content//tracks/algorithms-101/leetcode/medium/251/",[6,0.413,11,3.665,14,2.914,26,1.582,32,1.762,49,1.967,67,2.439,90,4.861,102,1.857,114,1.626,118,2.479,175,0.778,311,3.665,313,3.014,319,2.997,472,3.516,535,1.789,556,2.827,600,1.258,606,3.661,623,2.432,716,3.368,745,3.187,905,1.215,1306,6.067,1308,1.875,1747,3.016,1751,2.896,1829,2.739,1843,3.17,1853,4.71,1919,5.453,1958,2.997,1961,3.538,2006,4.748,2096,5,2154,6.46,2307,6.067,2575,5.031,3036,5.362,3281,2.467,5428,1.617,5461,3.804,5642,8.066,5654,6.524,5739,3.96,5793,6.067,5794,8.002,5795,6.524,5796,9.574,5797,4.71,5798,7.218,5799,7.078,5800,8.066,5801,7.218,5802,8.924,5803,6.524,5804,7.218,5805,10.12,5806,10.12,5807,8.924,5808,7.218,5809,8.924,5810,7.218,5811,7.218]],["description//tracks/algorithms-101/leetcode/medium/251/",[1708,2.396,5428,0.822,5793,3.086,5794,2.774,5796,5.05,5812,3.672]],["title//tracks/algorithms-101/leetcode/medium/240/",[2978,3.394,5554,2.983,5794,3.232,5813,3.597,5814,3.394]],["content//tracks/algorithms-101/leetcode/medium/240/",[6,0.37,38,1.197,80,2.292,102,1.97,139,2.23,143,4.035,175,0.997,212,2.676,311,4.697,319,3.841,344,0.808,402,5.239,527,5.916,535,1.897,555,2.978,556,2.425,623,2.521,745,2.783,785,2.9,793,2.646,901,2.87,905,1.26,935,1.845,1040,3.887,1089,3.78,1180,3.572,1228,5.783,1308,2.403,1529,4.115,1749,3.362,1751,2.191,1920,2.646,2551,6.435,2856,4.115,3192,7.654,3281,2.616,5373,4.115,5428,1.715,5457,3.095,5524,3.268,5575,8.21,5797,4.995,5799,6.072,5813,6.435,5814,6.072,5815,7.656,5816,7.337,5817,9.251,5818,4.6,5819,6.435,5820,7.656,5821,7.656,5822,7.656,5823,7.656,5824,7.775,5825,7.656,5826,7.656,5827,7.656]],["description//tracks/algorithms-101/leetcode/medium/240/",[742,1.062,745,1.207,3192,2.903,5428,0.898,5794,3.03,5813,3.371]],["title//tracks/algorithms-101/leetcode/medium/238/",[696,2.882,1951,3.232,2316,3.597,5031,2.882,5828,3.597]],["content//tracks/algorithms-101/leetcode/medium/238/",[6,0.423,14,2.463,46,3.088,80,2.019,91,2.894,96,1.45,112,1.717,114,2.033,120,2.428,147,1.636,158,2.42,159,2.177,175,0.882,313,1.876,344,0.665,370,4.291,473,3.76,513,6.869,535,1.561,623,1.717,675,1.857,745,3.002,767,3.694,773,6.184,793,2.177,901,3.904,905,1.115,1103,3.31,1138,2.126,1180,2.939,1282,3.32,1300,3.494,1308,1.636,1388,7.636,1534,4.391,1541,6.484,1628,3.544,1661,2.153,1751,2.342,1782,5.859,1789,2.727,1829,2.391,1842,4.4,1844,3.992,1958,2.616,2009,3.494,2211,5.332,2364,2.829,3242,4.918,3281,2.153,3514,4.997,3588,4.759,3625,4.561,3777,5.295,4120,5.187,5428,1.411,5457,2.547,5580,4.561,5618,4.8,5675,7.636,5721,8.387,5728,6.493,5757,5.694,5763,6.184,5790,7.399,5818,3.785,5819,5.295,5828,5.295,5829,8.186,5830,9.412,5831,6.3,5832,6.3,5833,9.019,5834,9.628,5835,10.672,5836,10.228,5837,6.3,5838,5.295,5839,6.3,5840,6.3,5841,6.3,5842,6.3,5843,8.186,5844,6.3,5845,4.242,5846,6.3,5847,6.3,5848,6.3,5849,6.3,5850,6.3,5851,6.3,5852,6.3,5853,6.3]],["description//tracks/algorithms-101/leetcode/medium/238/",[225,0.826,370,1.223,745,1.685,2009,1.171,3242,1.649,5428,0.615,5524,1.171,5828,2.306,5830,2.48]],["title//tracks/algorithms-101/leetcode/medium/237/",[702,1.966,996,2.029,3000,2.509,5680,2.398,5854,3.597]],["content//tracks/algorithms-101/leetcode/medium/237/",[1,2.823,6,0.385,14,2.999,26,1.637,34,1.807,49,2.099,112,2.932,159,3.209,167,4.629,183,3.075,196,3.772,197,2.52,245,2.638,331,3.005,344,0.814,413,5.254,535,1.91,600,1.618,905,1.264,1138,2.001,1288,3.984,1308,2.001,1597,3.595,1751,2.657,1958,3.199,1961,3.777,2096,4.317,2765,4.715,3281,2.633,5428,1.726,5457,3.115,5565,4.75,5568,4.629,5569,4.629,5578,6.476,5681,6.254,5713,5.82,5714,5.82,5715,5.578,5722,5.82,5854,6.476,5855,7.705,5856,7.705,5857,6.964,5858,9.287,5859,7.705,5860,7.705,5861,7.705,5862,7.705]],["description//tracks/algorithms-101/leetcode/medium/237/",[1,1.219,183,1.601,413,2.036,5428,0.898,5681,2.701,5854,3.371]],["title//tracks/algorithms-101/leetcode/medium/236/",[5863,3.255,5864,3.873,5865,2.608,5866,3.873,5867,2.7,5868,2.388]],["content//tracks/algorithms-101/leetcode/medium/236/",[6,0.4,14,3.084,32,1.71,38,1.354,80,1.527,112,2.359,143,4.563,158,2.642,196,3.59,295,1.737,383,2.134,413,5.313,422,1.971,474,4.173,535,2.146,556,2.743,606,3.428,623,2.71,827,4.132,905,1.29,1089,2.517,1308,1.786,1432,4.631,1661,2.35,1751,2.478,1827,5.429,1856,7.295,1857,3.065,1890,3.917,1958,2.856,1961,3.371,1981,4.358,2191,5.338,2218,4.032,2244,4.032,2251,5.624,2252,7.744,2364,2.992,2789,4.645,3281,2.35,5428,1.541,5457,2.78,5524,3.696,5550,3.853,5551,4.876,5555,6.861,5557,5.195,5558,4.24,5564,7.422,5565,4.24,5566,4.979,5567,4.979,5568,4.132,5569,4.132,5570,4.979,5571,6.49,5572,4.979,5573,5.346,5582,8.131,5663,5.195,5664,4.979,5767,7.826,5818,5.202,5863,5.78,5869,7.826,5870,9.947,5871,6.541,5872,6.216,5873,6.877,5874,6.877,5875,7.277,5876,6.877,5877,6.877,5878,6.877,5879,6.877]],["description//tracks/algorithms-101/leetcode/medium/236/",[202,0.814,383,0.909,905,0.399,5428,0.656,5450,1.216,5550,1.641,5551,1.436,5664,2.121,5863,2.462,5869,2.647]],["title//tracks/algorithms-101/leetcode/medium/2352/",[5799,3.394,5880,3.868,5881,3.868,5882,3.868,5883,3.868]],["content//tracks/algorithms-101/leetcode/medium/2352/",[1,1.999,6,0.4,32,1.299,44,2.04,57,1.999,80,2.297,102,2.824,114,1.198,172,2.931,175,0.907,176,1.334,198,3.223,212,2.298,216,2.066,241,3.951,301,2.526,302,3.021,313,2.764,344,0.694,362,2.228,374,2.232,379,4.76,410,3.068,467,1.999,535,2.3,538,4.428,593,1.115,600,1.617,608,4.583,611,2.407,623,1.792,640,2.247,716,3.068,745,2.532,756,2.151,778,1.741,800,3.021,817,2.062,819,3.465,832,3.338,867,2.198,901,2.465,905,1.377,910,2.85,926,2.351,935,1.585,1103,2.659,1180,3.068,1254,3.4,1308,2.186,1497,4.428,1592,3.172,1598,3.4,1716,3.856,1751,1.882,1780,3.951,1790,6.766,1792,2.591,1795,4.967,1842,4.523,1843,2.888,1857,2.931,1864,5.794,1869,2.062,1952,3.338,1955,3.118,2045,3.607,2052,3.118,2264,4.054,2643,3.807,2645,3.856,3192,6.092,3213,4.054,3214,2.694,3249,7.362,3281,2.247,3382,5.943,3385,5.881,3389,8.224,3598,4.76,4809,4.76,4816,3.685,5373,3.534,5428,1.473,5457,2.659,5523,4.428,5563,5.216,5763,6.357,5797,6.95,5799,7.362,5800,5.943,5803,5.943,5884,9.281,5885,6.576,5886,5.527,5887,8.844,5888,5.943,5889,6.576,5890,6.576,5891,5.527,5892,4.967,5893,6.576,5894,4.583,5895,6.576,5896,6.576,5897,6.576,5898,6.576,5899,6.576,5900,6.576,5901,6.576]],["description//tracks/algorithms-101/leetcode/medium/2352/",[102,0.754,905,0.399,1598,1.515,3192,2.121,3214,1.2,3386,1.717,5428,0.656,5450,1.216,5797,1.911,5880,2.647]],["title//tracks/algorithms-101/leetcode/medium/215/",[680,3.232,696,2.882,5902,3.597,5903,4.279,5904,4.279]],["content//tracks/algorithms-101/leetcode/medium/215/",[49,2.187,139,1.935,175,0.865,356,1.043,370,4.521,397,2.046,535,2.359,555,3.123,600,1.398,606,2.904,623,2.187,742,2.125,745,3.267,905,1.296,1079,3.85,1308,2.085,1639,2.44,1751,2.297,1770,5.086,1782,4.598,2004,4.006,2009,3.426,2643,3.631,3281,3.252,3519,6.642,5428,1.798,5457,3.245,5816,8.046,5902,6.747,5905,9.816,5906,7.999,5907,7.255,5908,8.027,5909,8.027,5910,8.027,5911,7.255]],["description//tracks/algorithms-101/leetcode/medium/215/",[742,0.832,745,0.945,2009,1.341,3519,1.887,5428,0.704,5902,2.64,5905,2.839,5906,2.64,5907,2.839]],["title//tracks/algorithms-101/leetcode/medium/2130/",[702,1.779,2964,2.527,5680,2.17,5912,3.255,5913,3.255,5914,3.255]],["content//tracks/algorithms-101/leetcode/medium/2130/",[1,3.217,6,0.422,14,1.918,30,1.999,44,2.56,80,1.831,96,2.226,112,2.796,114,1.928,120,2.225,124,1.317,196,3.577,207,3.125,234,1.34,245,2.103,313,2.88,344,0.673,370,4.076,372,2.683,423,1.958,462,2.143,490,2.045,535,1.58,600,1.437,623,1.737,635,3.024,670,3.652,742,1.688,799,4.91,901,3.626,905,1.317,1103,4.149,1288,3.296,1308,1.656,1320,3.426,1639,1.938,1724,4.188,1747,2.154,1751,2.36,1789,2.76,1792,2.512,1818,2.544,1843,2.8,1876,5.086,1907,4.816,1958,3.425,1961,3.125,2009,3.521,2096,3.572,2333,3.789,2466,4.443,2555,4.039,2564,2.884,2973,4.615,2974,5.503,3248,4.816,3281,2.178,3641,5.358,4545,4.076,4903,8.624,5198,4.293,5373,4.434,5428,1.428,5457,2.577,5461,3.36,5565,3.93,5568,3.83,5569,4.956,5681,5.555,5685,6.543,5690,5.75,5713,6.231,5714,4.816,5715,4.615,5912,5.358,5914,7.687,5915,10.695,5916,5.358,5917,5.358,5918,10.017,5919,4.615,5920,6.375,5921,7.687,5922,6.375,5923,5.358,5924,6.375,5925,6.375,5926,8.249,5927,6.375,5928,6.375,5929,6.375]],["description//tracks/algorithms-101/leetcode/medium/2130/",[702,1.443,905,0.428,2964,2.049,5428,0.704,5450,1.304,5680,1.76,5912,2.64,5913,2.64,5914,2.64]],["title//tracks/algorithms-101/leetcode/medium/210/",[2978,3.791,5158,1.671,5930,4.018,5931,4.018]],["content//tracks/algorithms-101/leetcode/medium/210/",[6,0.425,17,4.461,34,1.603,80,1.518,114,1.722,124,1.782,175,0.737,212,2.39,246,1.491,313,2.956,344,0.722,370,4.729,479,0.966,506,7.409,518,2.166,535,2.138,536,1.257,611,2.503,623,1.863,901,3.234,905,1.287,1300,2.919,1308,1.776,1309,3.735,1552,6.517,1650,5.059,1751,1.957,1767,4.462,1828,5.165,1858,3.274,1883,5.424,1886,4.216,1890,3.093,1920,2.363,2564,3.093,2643,4.276,3250,7.873,3281,2.948,3591,5.863,3705,6.18,4150,6.449,5089,7.798,5158,3.015,5428,1.532,5457,2.765,5461,3.604,5486,7.14,5503,4.462,5504,5.747,5524,2.919,5527,6.18,5618,4.009,5930,5.747,5932,6.838,5933,9.926,5934,6.838,5935,5.81,5936,9.926,5937,9.25,5938,7.798,5939,6.838,5940,5.424,5941,6.838,5942,6.838,5943,8.627,5944,6.18,5945,8.627,5946,6.838,5947,9.452,5948,6.838,5949,6.838,5950,6.838,5951,6.838,5952,6.838,5953,6.838,5954,6.838,5955,6.838]],["description//tracks/algorithms-101/leetcode/medium/210/",[288,0.515,358,1.515,611,1.072,926,1.047,2645,1.717,4150,1.76,5428,0.656,5930,2.462,5935,1.973,5956,2.121]],["title//tracks/algorithms-101/leetcode/medium/2095/",[702,1.779,996,1.836,2030,2.926,3000,2.271,5680,2.17,5957,3.255]],["content//tracks/algorithms-101/leetcode/medium/2095/",[1,3.201,6,0.412,32,1.306,33,3.554,57,2.01,73,2.279,80,1.875,96,1.522,124,1.366,156,8.134,158,2.54,159,2.285,175,0.713,183,2.639,196,3.145,344,0.698,413,5.143,535,1.639,556,2.095,600,1.152,623,2.301,635,3.077,636,2.886,675,1.949,702,3.037,742,1.751,745,1.989,779,2.605,852,3.037,905,1.267,925,2.636,1055,1.949,1066,2.449,1079,3.531,1103,3.762,1138,1.718,1308,1.718,1470,2.337,1628,2.862,1639,3.299,1751,2.416,1827,4.838,1958,2.745,1961,3.241,2052,4.004,2096,5.494,2299,3.554,2765,4.288,3281,2.259,3339,6.379,3343,6.419,3803,2.509,3915,4.004,4743,6.379,4889,6.379,5428,1.481,5457,2.673,5461,3.485,5537,5.494,5565,4.076,5568,3.973,5569,3.973,5680,3.705,5685,5.244,5690,6.486,5699,5.976,5702,5.557,5713,7.029,5714,4.995,5715,4.787,5739,3.627,5957,5.557,5958,6.612,5959,6.612,5960,4.608,5961,6.612,5962,6.612,5963,9.156,5964,5.557,5965,8.862,5966,8.862,5967,6.612,5968,8.445,5969,9.305,5970,6.612,5971,6.612,5972,6.612]],["description//tracks/algorithms-101/leetcode/medium/2095/",[1,0.955,196,1.061,331,1.016,905,0.428,3343,1.99,5428,0.704,5450,1.304,5685,2.491,5957,2.64]],["title//tracks/algorithms-101/leetcode/medium/1679/",[814,2.7,1840,2.219,2964,2.527,3519,2.327,5883,3.501,5973,3.255]],["content//tracks/algorithms-101/leetcode/medium/1679/",[6,0.418,38,1.089,114,1.941,137,1.316,313,2.6,333,2.918,344,0.736,370,4.249,474,3.358,476,2.78,479,0.985,535,2.164,600,1.214,623,1.898,742,2.311,745,2.626,793,2.408,799,3.415,800,4.379,852,4.01,867,2.329,905,1.361,910,2.139,935,1.679,939,2.435,1089,2.55,1308,1.81,1520,5.526,1521,4.856,1598,5.168,1639,2.118,1751,1.993,1782,3.991,1842,4.692,1843,3.06,1886,4.295,2009,4.265,2207,7.201,2298,4.692,2643,3.949,2974,5.534,3214,3.576,3250,5.526,3281,2.381,3359,5.044,3504,5.342,3519,6.576,3642,4.891,3645,6.297,3792,4.856,4399,4.856,4546,4.085,5428,1.561,5457,2.817,5486,5.263,5522,5.263,5523,4.692,5537,5.044,5662,6.594,5728,5.526,5741,5.526,5911,6.297,5965,9.63,5966,9.63,5973,5.856,5974,6.967,5975,6.297,5976,8.729,5977,8.729,5978,9.533,5979,6.967]],["description//tracks/algorithms-101/leetcode/medium/1679/",[137,0.414,742,0.58,799,1.074,905,0.298,910,0.673,1598,1.133,1842,1.177,2207,1.655,2974,1.155,3214,0.898,3519,1.316,5428,0.491,5450,0.91,5537,1.074,5973,1.841]],["title//tracks/algorithms-101/leetcode/medium/1448/",[996,1.836,3385,2.454,5867,2.7,5868,2.388,5980,3.255,5981,3.873]],["content//tracks/algorithms-101/leetcode/medium/1448/",[6,0.404,14,3.215,31,2.191,34,1.487,38,0.991,68,1.155,80,1.825,89,2.869,112,3.003,114,1.155,120,1.543,139,1.528,161,1.988,175,0.683,196,3.772,206,1.679,295,1.601,313,2.717,335,3.553,344,0.67,372,2.669,413,4.9,535,2.392,556,2.89,623,2.486,785,1.988,786,4.79,799,4.902,823,3.219,905,1.395,909,1.927,910,1.947,925,2.329,939,2.216,996,3.007,1066,3.795,1088,1.487,1143,2.564,1149,5.731,1308,1.647,1329,6.97,1636,3.909,1677,3.219,1751,2.61,1843,2.785,1856,7.142,1857,2.826,1955,3.898,1958,2.633,1961,3.108,2191,6.165,2218,4.82,2298,4.27,2367,4.79,3213,3.909,3214,2.598,3281,2.167,3327,3.718,3385,6.336,3391,4.591,3915,3.007,4546,3.718,4554,3.553,5428,1.42,5457,2.564,5493,5.536,5522,4.79,5523,5.536,5550,3.553,5551,5.112,5555,6.604,5557,4.79,5558,6.43,5563,5.03,5564,5.952,5565,3.909,5566,4.591,5567,4.591,5568,3.81,5569,3.81,5570,4.591,5571,4.138,5572,4.591,5573,3.408,5574,5.33,5578,6.91,5583,5.33,5584,5.33,5587,5.33,5871,6.21,5875,5.33,5980,5.33,5982,4.648,5983,6.341,5984,4.42,5985,6.341,5986,10]],["description//tracks/algorithms-101/leetcode/medium/1448/",[196,0.99,905,0.638,3386,1.717,5428,0.656,5450,1.216,5550,1.641,5551,1.436,5980,2.462,5982,1.305]],["title//tracks/algorithms-101/leetcode/medium/138/",[702,1.966,2186,2.638,2585,3.098,5987,3.597,5988,3.232]],["content//tracks/algorithms-101/leetcode/medium/138/",[1,3.21,6,0.416,68,1.22,80,1.486,96,1.541,111,2.436,112,2.32,118,1.86,124,1.758,139,1.614,164,1.807,172,2.984,196,3.647,225,2.963,302,3.075,344,0.707,356,0.87,369,3.075,401,6.073,413,4.752,462,1.739,471,2.94,479,1.469,535,2.32,556,2.121,623,2.32,635,2.815,675,1.974,771,3.835,778,1.772,852,3.075,905,1.274,938,2.633,939,2.34,996,4.438,1061,4.606,1103,3.982,1138,1.739,1234,2.34,1241,4.847,1308,1.739,1320,3.598,1545,5.057,1650,4.991,1749,2.94,1751,2.436,1827,5.362,1843,2.94,1858,2.541,1864,5.643,1919,5.057,1958,2.78,1961,3.282,2052,3.174,2096,4.77,2189,4.022,2190,3.528,2221,5.394,2585,6.776,3281,2.288,4545,2.984,4546,4.991,5428,1.5,5457,2.707,5537,4.985,5568,4.022,5681,4.509,5690,6.524,5715,4.847,5782,6.051,5921,8.736,5923,7.867,5987,5.627,5989,6.695,5990,6.695,5991,9.85,5992,6.695,5993,6.695,5994,6.695,5995,6.695,5996,6.695,5997,6.695,5998,6.695,5999,6.695,6000,6.695,6001,6.695,6002,6.695]],["description//tracks/algorithms-101/leetcode/medium/138/",[1,0.834,176,0.557,375,0.898,401,1.692,905,0.374,1061,1.171,2189,1.649,5428,0.615,5450,1.139,5537,1.345,5987,2.306]],["title//tracks/algorithms-101/leetcode/medium/1372/",[5548,2.327,5717,3.501,5867,2.7,5868,2.388,6003,3.255,6004,3.255]],["content//tracks/algorithms-101/leetcode/medium/1372/",[6,0.409,7,3.056,14,2.063,26,1.043,38,1.072,50,4.021,52,3.012,80,1.522,112,1.869,114,1.81,196,2.318,295,2.183,300,2.51,313,2.959,362,1.816,381,2.737,461,2.424,518,2.173,535,2.142,548,2.318,602,3.546,623,2.355,646,3.012,733,3.614,742,1.816,785,2.15,799,4.639,905,1.289,971,8.981,996,3.251,1066,3.794,1067,4.228,1078,3.842,1100,3.361,1234,2.397,1308,1.781,1329,4.78,1363,2.571,1432,4.618,1434,5.439,1470,2.424,1520,6.855,1521,6.024,1555,5.193,1661,2.343,1747,2.318,1751,2.708,1803,3.686,1843,3.012,1858,2.602,1958,2.847,1961,3.361,2005,4.31,2191,4.228,2244,4.021,2298,4.618,2333,4.804,3281,2.343,3432,4.12,3619,3.762,4120,5.997,4131,5.82,4253,5.18,4371,4.78,5428,1.536,5457,2.773,5524,2.927,5550,3.842,5551,3.361,5553,5.764,5554,4.78,5555,7.193,5557,5.18,5558,4.228,5564,6.257,5565,4.228,5566,4.964,5567,4.964,5568,4.12,5569,4.12,5570,4.964,5571,6.684,5572,4.964,5573,5.341,5574,5.764,5582,5.439,5583,7.264,5584,7.264,5587,7.264,5739,3.762,6003,5.764,6004,7.955,6005,5.764,6006,10.458,6007,7.812,6008,6.857,6009,6.857,6010,6.857,6011,6.857,6012,5.764]],["description//tracks/algorithms-101/leetcode/medium/1372/",[202,0.762,785,0.86,905,0.374,1066,1.017,2333,1.261,5428,0.615,5450,1.139,5550,1.538,5551,1.345,6003,2.306,6004,2.306]],["title//tracks/algorithms-101/leetcode/medium/11/",[1950,3.174,3434,2.344,6013,4.55]],["content//tracks/algorithms-101/leetcode/medium/11/",[6,0.408,14,2.525,26,0.996,32,1.293,80,1.863,109,2.289,114,1.688,159,2.263,191,1.521,202,1.819,212,2.289,313,2.5,344,0.691,362,2.222,370,3.741,459,2.213,470,2.238,479,0.926,528,4.273,535,1.623,536,1.543,556,2.075,562,5.175,600,1.141,606,2.369,623,1.784,675,1.931,713,3.935,716,3.056,721,6.375,742,2.222,745,1.97,756,2.142,784,4.273,785,2.053,799,4.951,864,3.325,905,1.33,909,2.551,910,2.577,925,2.378,935,1.578,939,2.289,1079,3.185,1103,2.648,1180,3.056,1240,3.35,1271,3.942,1308,2.18,1327,4.273,1329,6.809,1470,2.315,1598,3.386,1661,2.238,1742,3.056,1745,3.801,1751,1.874,1843,2.876,1950,3.84,2004,2.757,2009,4.17,2244,3.84,2467,3.156,2552,6.658,2564,3.797,2609,5.504,2926,4.947,2973,4.741,3281,3.165,3594,4.741,3621,3.752,3915,3.105,4131,5.653,4271,2.876,4482,4.947,4546,3.84,4568,4.15,5428,1.467,5457,2.648,5537,5.066,5541,5.194,5562,3.056,5571,6.375,5573,5.251,5675,5.194,5739,4.604,5988,4.947,6005,5.504,6014,8.211,6015,6.658,6016,8.394,6017,8.394,6018,10.642,6019,9.263,6020,6.549,6021,5.194,6022,5.919,6023,6.549,6024,6.549,6025,6.549,6026,5.919,6027,3.105,6028,6.549,6029,5.919,6030,9.263,6031,8.394,6032,6.549,6033,8.394,6034,6.549,6035,6.549]],["description//tracks/algorithms-101/leetcode/medium/11/",[143,1.544,756,0.958,799,1.436,905,0.399,910,0.899,1271,1.085,1950,1.717,5428,0.656,5450,1.216,6015,2.323]],["title//tracks/algorithms-101/leetcode/medium/1004/",[814,2.983,3341,3.394,3795,2.792,6036,3.597,6037,4.279]],["content//tracks/algorithms-101/leetcode/medium/1004/",[6,0.413,53,2.415,80,1.551,114,1.877,137,1.319,139,1.684,278,5.434,313,3.238,344,0.738,370,3.114,422,1.343,479,0.988,490,1.732,535,2.167,536,1.285,555,2.718,556,2.214,558,3.915,608,4.87,623,1.904,742,1.85,745,2.631,793,2.415,799,4.679,823,3.547,905,1.3,910,2.685,925,1.98,1040,3.547,1046,3.77,1079,2.652,1103,2.825,1308,1.815,1329,4.87,1470,2.47,1745,2.718,1747,2.361,1751,1.999,1780,4.198,1858,2.652,2006,3.425,2009,4.074,2027,5.469,2298,4.705,2333,4.385,2345,4.559,2564,3.161,2979,4.705,3242,5.254,3281,2.388,3380,4.87,3515,5.888,3519,6.648,3594,5.058,3618,5.278,3627,4.87,3915,4.146,4029,5.541,4253,5.278,4714,5.542,4989,3.313,5373,3.755,5428,1.565,5457,2.825,5541,7.571,5542,3.547,5718,7.211,5818,4.198,6036,5.873,6038,6.987,6039,5.542,6040,10.508,6041,7.35,6042,6.987,6043,6.987,6044,6.987,6045,6.987,6046,6.987]],["description//tracks/algorithms-101/leetcode/medium/1004/",[905,0.461,1791,1.659,3341,2.685,4002,2.451,4029,2.145,5428,0.758,5450,1.406,6036,2.846]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 9/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 9/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 9/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 8/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 8/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 8/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 7/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 7/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 7/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 15/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 15/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 15/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 14/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 14/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 14/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 13/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 13/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 13/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 12/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 12/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 12/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 11/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 11/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 11/",[]],["title//tracks/algorithms-101/leetcode/medium/-01 copy 10/",[]],["content//tracks/algorithms-101/leetcode/medium/-01 copy 10/",[]],["description//tracks/algorithms-101/leetcode/medium/-01 copy 10/",[]],["title//tracks/algorithms-101/leetcode/hard/_index",[6047,5.843]],["content//tracks/algorithms-101/leetcode/hard/_index",[]],["description//tracks/algorithms-101/leetcode/hard/_index",[]],["title//tracks/algorithms-101/leetcode/hard/42/",[2457,3.119,6013,4.018,6048,4.78,6049,4.78]],["content//tracks/algorithms-101/leetcode/hard/42/",[6,0.399,14,2.909,80,2.146,83,2.694,112,1.958,114,1.621,139,1.732,143,3.787,173,1.832,202,2.472,206,1.902,207,3.522,212,2.511,313,2.14,344,0.759,365,6.495,370,3.966,380,5.009,381,2.868,383,3.135,535,2.206,600,1.252,623,1.958,713,4.317,720,5.7,721,6.999,745,3.183,799,5.09,901,2.694,905,1.376,935,1.732,1308,1.867,1541,5.993,1636,4.43,1650,4.213,1747,3.008,1751,2.056,1842,3.862,1858,3.377,2009,4.126,2024,5.347,2211,5.218,2457,4.689,2973,6.443,3214,2.944,3242,4.317,3281,2.456,4019,7.126,4295,4.026,5373,3.862,5428,1.61,5457,2.905,5461,4.69,5741,5.7,5753,6.495,5763,5.428,6013,7.48,6015,8.393,6029,6.495,6039,5.7,6050,4.689,6051,7.186,6052,7.186,6053,6.495,6054,8.738,6055,6.495,6056,7.186,6057,9.668,6058,7.186,6059,7.186,6060,8.899,6061,7.186,6062,7.186,6063,7.186]],["description//tracks/algorithms-101/leetcode/hard/42/",[370,1.509,905,0.461,2457,2.209,5428,0.758,5450,1.406,6015,2.685,6053,3.06,6054,3.06]],["title//tracks/algorithms-101/leetcode/hard/4/",[161,1.342,696,2.882,1327,2.792,3644,3.597,6064,4.279]],["content//tracks/algorithms-101/leetcode/hard/4/",[6,0.408,47,4.989,112,2.018,114,1.652,120,2.484,139,1.786,143,3.904,147,1.924,161,2.322,313,2.206,344,0.782,370,4.041,383,2.813,535,1.836,555,2.882,600,1.291,623,2.471,742,2.594,745,3.072,785,2.322,901,3.996,905,1.235,909,2.251,910,2.784,925,2.776,1089,2.712,1180,3.456,1308,2.355,1751,2.12,2009,4.687,2030,5.596,2046,3.619,2125,4.343,2145,6.041,2324,5.375,2856,3.981,3248,6.849,3250,5.876,3281,2.531,3343,5.745,4399,5.163,5428,1.659,5457,2.995,5683,7.621,5816,8.309,5975,6.695,6065,9.067,6066,9.799,6067,9.229,6068,9.067,6069,7.408,6070,5.363,6071,7.408,6072,7.408,6073,9.799]],["description//tracks/algorithms-101/leetcode/hard/4/",[161,1.061,742,0.896,905,0.461,2009,1.445,5428,0.758,5450,1.406,5816,2.685,6067,3.06]],["title//tracks/algorithms-101/leetcode/easy/_index",[1680,2.796]],["content//tracks/algorithms-101/leetcode/easy/_index",[]],["description//tracks/algorithms-101/leetcode/easy/_index",[]],["title//tracks/algorithms-101/leetcode/easy/933/",[1047,3.46,1757,3.791,1840,2.738,6074,4.018]],["content//tracks/algorithms-101/leetcode/easy/933/",[6,0.364,14,2.225,50,4.337,68,1.348,80,2.011,83,2.773,158,2.842,173,1.885,175,0.797,183,2.952,344,0.781,465,3.689,479,1.045,535,1.833,562,4.56,597,4.687,602,3.825,623,2.015,675,2.181,745,2.225,778,1.958,779,2.914,793,2.556,905,1.333,910,2.782,1055,3.009,1078,6.151,1138,2.353,1180,4.227,1308,1.921,1751,2.592,1767,7.041,1843,3.978,1858,3.438,1876,4.56,1890,3.346,1920,2.556,1958,3.071,1961,3.625,2564,3.346,2765,3.755,3242,4.444,3281,2.527,3370,5.999,3386,4.337,3642,5.076,5428,1.657,5503,4.826,5504,7.614,5563,5.866,6021,5.866,6074,6.216,6075,9.059,6076,8.305,6077,8.559,6078,9.224,6079,7.396,6080,7.396,6081,5.866,6082,6.216,6083,7.396,6084,7.396,6085,7.396,6086,7.396,6087,7.396,6088,7.396,6089,7.396]],["description//tracks/algorithms-101/leetcode/easy/933/",[11,1.393,905,0.374,1055,0.809,1078,1.538,3386,1.609,5428,0.615,5450,1.139,5523,1.848,6074,2.306,6077,2.177,6078,2.48]],["title//tracks/algorithms-101/leetcode/easy/9/",[1840,3.101,1901,2.654,6090,5.414]],["content//tracks/algorithms-101/leetcode/easy/9/",[6,0.417,14,2.883,30,3.146,83,2.643,102,2.263,114,1.602,120,2.139,137,1.331,147,1.831,161,2.21,221,1.814,313,2.099,356,0.915,359,2.675,383,2.728,422,1.69,479,0.996,535,1.747,600,1.532,623,1.921,756,2.306,793,3.879,817,2.757,905,1.197,910,2.165,925,2.491,935,1.699,1055,2.826,1066,2.611,1308,1.831,1656,2.463,1747,2.382,1749,3.862,1750,4.818,1751,2.017,1791,3.455,1829,2.675,1843,3.096,1853,4.599,2004,2.967,2068,8.662,2134,5.103,2221,5.572,2345,5.738,2410,5.103,2603,5.591,2765,3.579,3213,4.346,3214,2.888,3249,5.591,3281,2.409,3392,7.624,3409,5.924,3594,5.103,3647,5.924,3675,5.924,5428,1.579,5445,8.472,5457,2.85,5461,3.715,5493,5.922,5541,5.591,6026,6.371,6091,8.662,6092,7.049,6093,8.793,6094,8.793,6095,4.346,6096,7.049,6097,7.049,6098,9.584,6099,7.049,6100,7.049,6101,7.049]],["description//tracks/algorithms-101/leetcode/easy/9/",[422,0.706,793,1.269,905,0.5,1901,1.8,5428,0.822,5450,1.525,6091,3.319]],["title//tracks/algorithms-101/leetcode/easy/872/",[5868,2.947,6102,4.018,6103,4.32,6104,4.018]],["content//tracks/algorithms-101/leetcode/easy/872/",[1,2.944,6,0.403,18,2.494,80,2.15,83,2.706,112,1.967,139,1.74,196,3.666,337,2.413,344,0.762,356,0.938,422,1.716,462,1.875,520,4.337,535,2.508,551,4.71,600,1.258,623,2.758,635,2.951,640,2.467,785,2.263,786,5.453,905,1.215,939,2.523,1143,2.918,1255,2.706,1308,2.318,1432,4.861,1636,4.45,1677,3.665,1751,2.772,1791,4.374,1857,3.217,1955,3.422,1958,2.997,1961,3.538,2057,4.135,2191,5.502,2461,5.453,2789,3.538,3281,2.467,4164,5.031,4546,5.232,5428,1.617,5457,2.918,5493,6.01,5550,5.428,5551,5.423,5558,4.45,5564,5.226,5565,4.45,5566,5.226,5567,5.226,5568,4.337,5569,4.337,5570,5.226,5571,4.71,5572,5.226,5573,3.88,5722,6.741,5875,6.067,6102,6.067,6103,6.524,6104,6.067,6105,7.218,6106,8.924,6107,9.687,6108,8.903,6109,7.218,6110,7.218,6111,7.218,6112,7.218,6113,7.218,6114,7.218,6115,7.218,6116,7.218]],["description//tracks/algorithms-101/leetcode/easy/872/",[196,1.061,905,0.428,1857,1.4,5428,0.704,5450,1.304,5550,1.76,5551,1.54,6102,2.64,6108,2.64]],["title//tracks/algorithms-101/leetcode/easy/605/",[1214,4.55,6117,4.55,6118,5.414]],["content//tracks/algorithms-101/leetcode/easy/605/",[6,0.384,14,2.303,80,2.054,114,1.395,147,1.989,207,3.753,216,1.88,313,2.961,333,2.559,344,0.808,356,0.994,518,2.425,535,1.897,600,1.334,623,2.086,716,4.639,758,2.035,901,4.028,905,1.354,1079,2.905,1308,1.989,1751,2.647,1890,4.783,1910,6.988,2000,9.333,2333,3.517,2345,4.995,2364,3.197,3281,2.616,3515,4.29,3642,4.29,5075,6.435,5428,1.715,5498,6.435,5523,5.156,5595,6.919,5818,4.6,6117,6.435,6119,9.556,6120,7.656,6121,7.337,6122,9.941,6123,6.919,6124,9.941,6125,10.572,6126,9.251,6127,6.919,6128,6.919,6129,7.656,6130,9.941,6131,7.656]],["description//tracks/algorithms-101/leetcode/easy/605/",[901,1.098,1230,2.121,2466,2.042,5428,0.656,6117,2.462,6119,2.647,6121,3.715,6123,2.647,6128,2.647]],["title//tracks/algorithms-101/leetcode/easy/392/",[5659,4.95,6132,5.246]],["content//tracks/algorithms-101/leetcode/easy/392/",[6,0.4,14,2.087,18,2.397,26,1.324,32,1.37,49,1.89,68,1.264,80,1.54,102,2.867,114,1.586,175,0.748,202,1.927,221,1.785,225,2.087,311,3.522,313,2.834,319,2.88,331,2.245,344,0.732,379,6.302,380,4.835,422,1.976,439,3.289,518,2.198,535,1.719,593,1.176,600,1.209,623,1.89,640,2.37,758,1.526,817,2.175,852,3.186,905,1.185,1024,1.37,1066,2.57,1079,3.304,1103,2.805,1230,5.022,1308,1.802,1440,4.168,1740,4.987,1751,1.985,1853,4.526,1860,4.878,1881,5.416,1905,4.277,2575,4.835,3281,2.37,3370,6.221,3504,6.128,3518,4.168,3764,4.067,4552,6.27,5428,1.554,5457,2.805,5461,3.656,5524,2.961,5537,5.419,5542,5.066,5718,7.923,6127,7.868,6132,5.83,6133,6.27,6134,6.27,6135,6.937,6136,6.937,6137,6.937,6138,6.937,6139,9.978,6140,9.514,6141,7.317,6142,6.937,6143,6.937,6144,6.937]],["description//tracks/algorithms-101/leetcode/easy/392/",[32,0.725,102,0.945,422,0.706,640,1.255,5428,0.822,5718,2.774,6132,3.086]],["title//tracks/algorithms-101/leetcode/easy/345/",[795,2.13,3119,3.332,6145,4.018,6146,4.018]],["content//tracks/algorithms-101/leetcode/easy/345/",[6,0.416,26,1.346,102,2.826,114,1.887,124,1.471,158,2.736,175,0.768,202,2.459,246,1.553,313,2.121,333,2.381,474,3.433,535,1.765,583,4.279,623,1.941,635,2.926,777,3.323,905,1.311,1079,3.654,1089,2.607,1300,3.04,1308,1.85,1362,3.552,1639,2.165,1661,2.434,1860,3.991,1869,2.233,1907,5.38,1954,2.839,1981,4.513,2213,3.991,3249,5.649,3281,2.434,3339,5.38,3391,6.407,3427,5.156,3428,5.649,3504,3.991,3642,3.991,4295,4.959,4558,6.437,5428,1.595,5445,5.649,5457,2.879,5461,3.753,5537,5.175,5571,7.118,5573,5.815,5597,7.219,5706,5.96,5739,5.282,5888,6.437,6141,5.986,6145,5.986,6146,8.093,6147,10.819,6148,5.156,6149,7.122,6150,7.122,6151,7.122,6152,7.122,6153,7.122,6154,8.85,6155,8.85,6156,7.122]],["description//tracks/algorithms-101/leetcode/easy/345/",[795,1.509,905,0.461,3119,2.36,5428,0.758,5430,2.846,5450,1.406,6145,2.846,6146,2.846]],["title//tracks/algorithms-101/leetcode/easy/283/",[6157,4.893,6158,4.55,6159,4.55]],["content//tracks/algorithms-101/leetcode/easy/283/",[6,0.386,14,2.91,26,1.355,32,1.421,38,1.125,73,1.942,74,1.977,96,1.657,110,1.555,112,2.427,114,1.311,124,1.486,126,1.995,175,0.776,176,1.46,246,1.569,300,2.634,313,3.152,333,2.406,344,0.76,356,0.935,358,3.721,370,3.207,432,3.029,535,1.784,556,2.28,600,1.254,670,4.123,713,4.324,745,3.261,777,4.156,793,2.487,852,4.092,905,1.213,910,2.21,1061,3.072,1103,4.087,1308,1.869,1320,4.788,1751,2.059,1770,4.56,1782,4.123,1827,4.123,1829,2.731,1844,4.56,1905,4.437,1932,5.492,1954,2.98,2005,3.589,2006,3.528,2009,4.664,2645,4.22,3242,4.324,3281,2.459,3515,4.032,3518,5.812,3642,4.032,3755,4.696,4545,3.207,5428,1.612,5457,2.91,5461,3.793,5537,5.357,5542,3.654,5675,5.708,5707,4.324,5721,8.131,5729,6.505,5824,8.131,6160,4.437,6161,9.137,6162,5.016,6163,7.197,6164,8.908]],["description//tracks/algorithms-101/leetcode/easy/283/",[313,0.726,745,0.733,905,0.332,1905,1.502,2009,1.04,2645,1.429,3642,1.365,4545,1.086,5428,0.546,5450,1.012,6157,2.202,6160,1.502,6161,2.202]],["title//tracks/algorithms-101/leetcode/easy/206/",[702,2.196,3119,3.332,5680,2.678,6165,4.018]],["content//tracks/algorithms-101/leetcode/easy/206/",[1,3.253,6,0.416,14,3.187,26,1.526,32,1.264,57,2.514,68,1.507,73,1.727,105,1.711,114,1.67,120,2.229,141,1.85,158,2.459,159,3.466,172,2.852,196,2.163,207,3.137,234,1.346,344,0.873,413,3.249,462,1.663,472,2.522,535,1.586,536,1.177,556,2.028,593,1.085,623,1.744,635,3.03,745,3.289,777,2.986,852,4.209,903,2.429,905,1.366,939,2.237,1055,1.887,1079,3.477,1088,1.501,1308,1.663,1314,4.461,1661,2.187,1751,2.367,1777,3.249,1803,3.44,1827,5.745,1856,4.461,1958,2.658,1961,3.137,1979,2.732,2005,3.192,2052,3.921,2096,5.857,2244,3.753,2564,2.895,2767,6.248,2870,3.511,3281,2.187,3518,3.845,3523,9.065,3627,4.461,4120,6.355,4536,6.951,4545,2.852,5428,1.434,5457,2.588,5461,4.359,5537,5.246,5542,4.652,5565,3.946,5568,3.845,5569,3.845,5641,3.259,5681,6.523,5690,4.461,5707,5.505,5713,4.835,5714,4.835,5715,4.633,5722,4.835,5739,3.511,5921,8.633,5923,6.951,5963,9.824,6165,5.379,6166,6.4,6167,5.077,6168,6.4,6169,6.4,6170,7.475,6171,6.4,6172,6.4,6173,6.4,6174,6.4]],["description//tracks/algorithms-101/leetcode/easy/206/",[635,1.214,905,0.5,5382,3.086,5428,0.822,5450,1.525,5681,2.473,6165,3.086]],["title//tracks/algorithms-101/leetcode/easy/1768/",[795,2.13,6070,3.46,6175,4.018,6176,4.018]],["content//tracks/algorithms-101/leetcode/easy/1768/",[6,0.414,18,2.521,32,1.774,80,2.255,83,3.368,96,1.679,102,2.851,114,1.851,175,0.786,207,3.576,313,2.675,344,0.77,359,3.694,361,3.921,439,4.615,535,1.808,600,1.271,623,1.988,905,1.325,1234,2.55,1283,5.393,1308,1.895,1335,7.27,1751,2.087,1860,5.454,1881,5.202,1981,5.692,2218,4.277,2324,4.002,2333,4.471,2564,4.064,2643,4.064,3036,4.383,3281,2.493,3642,4.088,3750,4.088,5428,1.634,5537,4.771,5562,3.404,5597,6.261,6175,6.131,6177,9.733,6178,9.733,6179,8.983,6180,10.62,6181,7.295,6182,7.295,6183,8.983,6184,8.983,6185,8.983,6186,8.983,6187,7.295]],["description//tracks/algorithms-101/leetcode/easy/1768/",[795,1.509,5234,2.557,5428,0.758,6070,2.451,6175,2.846,6176,2.846,6188,2.28,6189,3.06]],["title//tracks/algorithms-101/leetcode/easy/1732/",[1086,2.872,6190,4.32,6191,4.78,6192,4.78]],["content//tracks/algorithms-101/leetcode/easy/1732/",[6,0.415,14,3.076,26,1.037,30,3.206,31,2.356,53,3.609,68,1.569,80,1.514,91,3.132,112,1.858,114,1.863,158,3.309,161,2.138,172,3.039,246,1.486,313,3.224,344,0.909,370,3.039,439,3.233,459,2.304,471,2.994,488,2.23,535,1.69,536,1.583,600,1.188,602,3.526,606,2.467,623,1.858,646,2.994,721,7.16,745,2.591,785,2.959,799,4.221,901,3.539,905,1.35,925,1.932,926,3.079,1103,2.757,1289,3.998,1308,1.771,1628,2.952,1650,3.998,1751,1.951,1844,4.321,1861,4.752,1984,3.462,2009,3.676,2333,3.132,2973,4.936,3213,4.204,3214,3.528,3281,2.33,3518,5.958,3746,6.163,4271,4.145,4959,5.151,5428,1.527,5461,3.593,5525,5.731,5964,7.238,6190,6.163,6193,9.242,6194,5.408,6195,5.8,6196,9.916,6197,6.819,6198,9.242,6199,6.819,6200,6.819,6201,10.728,6202,10.604,6203,6.819,6204,6.819,6205,6.819]],["description//tracks/algorithms-101/leetcode/easy/1732/",[721,2.396,905,0.5,1089,1.344,4271,1.612,4538,2.912,5450,1.525,6193,3.319]],["title//tracks/algorithms-101/leetcode/easy/1071/",[795,1.907,5865,2.882,6206,3.597,6207,3.868,6208,3.868]],["content//tracks/algorithms-101/leetcode/easy/1071/",[6,0.404,32,1.769,34,1.703,47,4.89,50,5.252,55,3.984,74,1.612,102,2.862,128,5.257,158,3.441,216,2.385,232,4.738,372,3.057,379,5.257,383,2.253,422,1.396,462,1.886,518,2.301,535,1.8,562,4.477,623,2.647,793,2.509,901,2.723,905,1.22,1255,2.723,1308,1.886,1628,4.205,1749,3.189,1751,2.078,1860,5.443,1890,3.285,2005,3.622,2171,5.845,2191,5.522,2333,3.336,2555,5.676,2765,3.687,2856,3.903,3214,2.975,3281,2.482,3315,5.76,3589,5.76,3617,3.827,4002,5.257,4560,5.76,5428,1.627,6206,6.104,6209,10.945,6210,10.945,6211,7.262,6212,8.755,6213,6.564,6214,7.262,6215,7.262,6216,7.529,6217,9.713,6218,9.713,6219,7.262,6220,7.262,6221,7.262,6222,7.262,6223,7.262,6224,8.957,6225,9.713,6226,7.262,6227,7.262]],["description//tracks/algorithms-101/leetcode/easy/1071/",[795,1.4,5234,2.373,5428,0.704,5865,2.115,6188,2.115,6189,2.839,6206,2.64,6207,2.839,6208,2.839]],["title//tracks/algorithms-101/leetcode/easy/104/",[5553,3.597,5867,2.983,5868,2.638,5913,3.597,6228,3.394]],["content//tracks/algorithms-101/leetcode/easy/104/",[6,0.396,14,2.087,71,2.13,80,1.932,114,1.733,158,2.665,172,3.091,175,0.748,196,3.474,212,2.424,264,2.424,313,2.834,344,0.732,352,2.245,413,4.83,462,1.802,467,2.108,470,2.37,535,2.158,556,2.198,623,2.372,742,2.642,778,1.836,783,4.671,799,5.038,905,1.295,910,2.13,926,2.48,1066,2.57,1079,2.632,1308,1.802,1329,6.631,1636,4.277,1694,3.091,1751,2.491,1890,3.938,1924,6.27,1958,2.88,1961,3.4,2189,4.168,2191,5.866,2364,3.448,2461,5.24,2789,3.4,3214,3.898,3281,2.975,3621,4.987,3844,5.83,4546,4.067,4743,5.24,5428,1.554,5457,2.805,5524,2.961,5549,7.868,5550,5.759,5551,5.323,5558,5.367,5564,5.022,5565,4.277,5566,5.022,5567,5.022,5568,4.168,5569,4.168,5570,5.022,5571,4.526,5572,5.022,5573,3.728,5582,8.319,5818,5.995,5871,8.31,6108,5.83,6228,5.502,6229,5.83,6230,4.835,6231,6.27,6232,6.27,6233,6.27,6234,6.937,6235,6.937,6236,6.937,6237,6.937,6238,8.706,6239,6.937,6240,6.937]],["description//tracks/algorithms-101/leetcode/easy/104/",[799,1.54,905,0.428,5428,0.704,5450,1.304,5486,2.373,5550,1.76,5551,1.54,5871,2.373,6228,2.491]],["title//tracks/algorithms-101/leetcode/easy/-01 copy 4/",[]],["content//tracks/algorithms-101/leetcode/easy/-01 copy 4/",[]],["description//tracks/algorithms-101/leetcode/easy/-01 copy 4/",[]],["title//tracks/algorithms-101/leetcode/easy/-01 copy 3/",[]],["content//tracks/algorithms-101/leetcode/easy/-01 copy 3/",[]],["description//tracks/algorithms-101/leetcode/easy/-01 copy 3/",[]],["title//tracks/algorithms-101/data-structures/segment-tree",[5551,3.059,6241,4.715]],["content//tracks/algorithms-101/data-structures/segment-tree",[6,0.421,11,3.298,14,1.354,26,1.27,30,1.411,34,1.788,38,0.703,49,1.226,56,3.208,58,1.44,67,1.52,68,1.184,80,0.999,110,1.804,112,2.515,114,2.014,120,2.585,147,2.76,161,2.618,175,0.485,176,0.913,196,2.196,202,1.25,212,2.665,216,1.105,225,1.354,246,0.981,264,1.572,307,1.819,313,3.164,342,1.894,343,1.115,344,0.475,351,1.226,354,1.191,356,0.844,362,1.191,369,2.067,370,2.895,397,1.656,413,3.871,422,0.865,425,2.297,462,1.688,465,2.244,474,3.675,478,1.976,488,2.125,489,2.133,507,1.44,556,1.425,593,1.293,597,4.832,600,0.784,623,2.275,675,1.915,678,2.326,696,3.03,745,3.214,778,1.191,779,1.773,785,1.411,793,1.555,796,6.432,901,3.46,905,1.038,918,0.805,1036,1.488,1046,2.791,1055,1.326,1103,3.083,1138,1.169,1179,3.136,1187,3.08,1208,1.382,1231,4.703,1309,1.948,1362,2.244,1470,2.695,1534,5.82,1541,3.03,1555,2.703,1643,2.284,1646,2.133,1694,3.398,1696,2.851,1716,4.896,1724,5.18,1751,2.641,1789,1.948,1792,1.773,1803,2.418,1818,4.072,1829,3.824,1842,2.418,1901,2.205,1958,1.868,1961,2.205,1979,1.92,1993,2.774,2006,4.341,2009,4.402,2055,2.418,2075,2.936,2079,3.136,2125,2.638,2142,3.568,2191,4.701,2211,2.638,2245,4.368,2364,1.555,2461,3.399,2573,3.399,2593,3.568,2703,5.612,2964,4.239,2974,5.528,3143,2.284,3386,4.471,3427,3.257,3755,2.936,4164,3.136,4432,2.851,4807,3.568,4903,5.46,5517,4.066,5550,3.64,5551,5.34,5818,2.703,5868,5.46,5938,7.548,6021,3.568,6095,2.774,6241,7.923,6242,4.499,6243,7.625,6244,7.625,6245,5.872,6246,4.499,6247,2.851,6248,4.499,6249,4.066,6250,4.499,6251,4.499,6252,3.568,6253,4.499,6254,4.499,6255,4.499,6256,4.499,6257,4.499,6258,4.499,6259,4.499,6260,4.499,6261,4.499,6262,4.499,6263,2.371,6264,4.499,6265,4.499,6266,6.497,6267,4.499,6268,4.499,6269,4.499,6270,4.499,6271,4.499,6272,4.499,6273,6.497,6274,4.499,6275,7.548,6276,4.499,6277,6.497,6278,4.499,6279,4.499,6280,4.499,6281,4.499,6282,4.499,6283,7.548,6284,4.499,6285,4.499,6286,4.499,6287,4.499,6288,4.499,6289,4.499,6290,4.499,6291,6.497,6292,4.499,6293,6.497,6294,4.499,6295,6.497,6296,4.499,6297,4.499,6298,4.499,6299,4.499]],["description//tracks/algorithms-101/data-structures/segment-tree",[5551,3.117,6241,4.803]],["title//tracks/algorithms-101/data-structures/prefix-sum",[2974,3.289,5580,4.518]],["content//tracks/algorithms-101/data-structures/prefix-sum",[6,0.42,14,2.7,30,3.372,68,1.327,112,2.766,114,1.9,120,2.536,147,2.794,159,3.101,161,3.049,202,2.024,313,2.897,393,1.966,778,1.928,918,1.304,1529,3.915,1711,5.126,1716,5.262,1724,4.556,1789,4.21,1818,4.051,1901,4.399,1974,5.856,2006,3.57,2009,3.109,2056,7.267,2167,5.392,2280,5.502,2296,7.669,2344,5.777,2364,2.517,2488,5.777,2703,6.163,2974,5.595,3214,2.984,3281,2.489,3386,4.271,5525,6.122,5580,5.273,5838,6.122,6241,5.502,6300,7.284,6301,7.284,6302,7.284,6303,7.284,6304,7.284,6305,7.284,6306,9.726,6307,7.284,6308,8.974,6309,7.284]],["description//tracks/algorithms-101/data-structures/prefix-sum",[2974,3.351,5580,4.603]],["title//tracks/algorithms-101/data-structures/fenwick-tree",[5551,3.059,6310,4.95]],["content//tracks/algorithms-101/data-structures/fenwick-tree",[6,0.408,114,1.47,225,2.427,313,2.843,337,3.191,370,4.53,402,4.252,462,2.096,646,3.543,918,1.444,1661,2.757,1708,6.228,1751,2.308,2006,5.15,2009,4.339,2974,4.252,3036,5.735,3143,4.096,3386,4.73,3519,5.735,5177,5.112,5551,5.256,5580,5.84,5867,5.623,5868,5.885,6133,7.292,6310,7.571,6311,8.067,6312,6.094,6313,8.067,6314,10.166,6315,8.067,6316,8.067,6317,8.067,6318,8.067]],["description//tracks/algorithms-101/data-structures/fenwick-tree",[5551,3.117,6310,5.043]],["title//tracks/algorithms-101/data-structures/_index",[882,3.227,6319,5.246]],["content//tracks/algorithms-101/data-structures/_index",[6,0.422,114,1.883,313,2.992,623,2.816,680,6.655,882,3.656,901,3.303,996,3.352,1388,7.612,1716,5.165,1749,4.215,1751,3.015,1762,7.629,1958,3.658,1961,4.318,2132,5.047,2249,6.39,2703,5.582,2767,5.34,2950,6.39,2964,5.748,2975,3.878,3143,4.472,3311,4.145,3430,5.942,3502,5.118,3504,4.936,3795,4.613,5020,4.927,5030,4.145,5221,6.39,5551,4.318,5569,4.248,5867,4.927,5868,6.372,6141,5.942,6159,5.942,6275,6.39,6283,9.847,6310,6.987,6312,5.34,6319,5.942,6320,7.07,6321,7.07,6322,7.07,6323,7.07,6324,7.07,6325,7.07,6326,10.046,6327,6.39,6328,7.07,6329,7.07,6330,7.07,6331,8.809,6332,7.07,6333,7.07,6334,7.07,6335,7.07,6336,7.07,6337,7.07,6338,7.07,6339,7.07,6340,7.07,6341,7.07,6342,3.247,6343,5.942,6344,7.07,6345,8.809,6346,4.735,6347,7.07]],["description//tracks/algorithms-101/data-structures/_index",[]],["title//tracks/algorithms-101/codeforces/_index",[6348,6.192]],["content//tracks/algorithms-101/codeforces/_index",[535,2.211,6348,8.504,6349,7.499]],["description//tracks/algorithms-101/codeforces/_index",[535,1.375,905,0.755,6348,4.662]],["title//tracks/90daysofdevops/day90",[75,0.84,344,0.505,759,2.947,2163,2.678]],["content//tracks/90daysofdevops/day90",[1,1.423,2,2.087,6,0.174,14,2.346,18,1.618,26,1.186,30,2.096,32,1.54,35,3.007,38,0.732,49,1.276,50,2.746,53,1.618,57,2.032,64,2.118,68,1.421,71,1.438,73,1.264,74,1.04,75,1.644,91,2.151,96,1.795,113,1.583,114,0.853,118,2.363,126,1.747,136,1.525,137,1.263,141,1.353,152,3.936,156,3.538,175,0.917,176,1.356,183,1.869,184,3.39,188,3.476,191,1.554,202,1.301,216,1.642,217,1.453,226,1.971,227,1.694,229,1.919,230,1.088,234,1.406,259,2.477,267,1.777,288,1.495,301,1.799,331,1.516,333,2.235,343,2.229,344,1.017,351,1.822,352,1.516,354,1.77,356,1.013,362,1.24,366,2.221,369,2.151,374,2.197,396,2.569,397,1.194,411,2.468,422,0.9,423,1.438,425,1.656,432,1.971,459,1.583,465,3.335,490,1.657,518,1.484,536,1.229,542,1.484,545,2.814,593,1.134,595,1.756,598,1.845,600,1.359,611,3.114,635,1.549,647,2.027,655,1.637,742,1.24,755,2.087,758,1.471,759,4.808,774,1.6,787,1.945,818,3.154,819,2.468,840,2.185,848,2.422,849,1.406,858,2.683,867,1.565,903,1.777,905,1.062,907,1.021,908,3.715,910,2.053,918,1.197,930,1.971,938,1.252,939,2.337,951,2.746,952,3.12,991,2.21,1002,2.032,1007,2.151,1017,1.945,1021,1.395,1024,0.925,1053,1.565,1055,1.381,1073,2.624,1076,2.087,1088,1.568,1107,2.378,1138,1.217,1187,2.221,1229,2.683,1234,1.637,1266,1.756,1284,2.448,1287,2.185,1289,2.746,1298,2.814,1311,2.683,1315,1.869,1331,1.381,1374,2.151,1405,1.714,1422,2.814,1424,1.714,1430,4.033,1482,1.777,1489,1.822,1516,1.656,1539,2.683,1592,1.6,1599,2.221,1639,1.423,1646,2.221,1651,2.027,1654,2.814,1686,3.154,1688,2.378,1702,2.053,1708,5.55,1740,2.683,1745,1.822,1818,1.869,1829,1.777,1858,3.228,1861,3.264,1863,2.087,1869,1.468,1886,2.887,1904,2.185,1917,2.746,1933,2.624,1954,2.508,1978,2.683,1984,2.378,2067,1.484,2163,3.747,2185,4.661,2271,3.538,2276,3.936,2387,3.154,2462,3.39,2470,3.278,2626,3.936,2660,3.056,2716,4.123,2724,4.661,2820,2.151,2859,4.123,2870,2.569,2915,2.624,3000,2.746,3159,2.448,3172,2.257,3174,1.6,3187,2.296,3272,5.615,3391,3.39,3426,2.569,3508,2.336,3511,2.704,3554,2.624,3619,2.569,3620,3.264,3750,2.624,3763,3.715,3800,2.185,3806,3.936,3811,2.221,3948,2.746,3984,2.296,4039,2.119,4079,2.468,4103,2.422,4157,3.154,4199,4.233,4228,3.715,4272,2.257,4363,3.056,4364,3.154,4415,3.476,4423,2.746,4437,2.968,4533,2.468,4538,3.715,4568,2.968,4633,3.936,4802,2.378,4806,3.715,4909,4.233,5024,2.569,5036,1.822,5100,3.35,5305,1.353,5323,4.11,5324,2.185,5402,3.264,5482,2.746,5524,1.999,5739,2.569,5775,2.517,5781,2.968,5894,3.264,6047,3.715,6095,2.887,6160,4.123,6350,2.027,6351,3.538,6352,3.538,6353,4.841,6354,4.233,6355,4.466,6356,1.919,6357,5.929,6358,3.538,6359,4.683,6360,4.683,6361,3.072,6362,3.747,6363,6.555,6364,6.186,6365,3.154,6366,3.12,6367,5.62,6368,3.264,6369,3.936,6370,5.089,6371,3.538,6372,3.538,6373,4.683,6374,5.929,6375,5.929,6376,3.936,6377,2.422,6378,3.715,6379,5.304,6380,2.296,6381,3.538,6382,4.503,6383,4.841,6384,3.715,6385,3.715,6386,3.39,6387,3.39,6388,5.304,6389,5.051,6390,5.62,6391,3.264,6392,4.233,6393,3.39,6394,5.436,6395,3.936,6396,4.233,6397,4.233,6398,2.968,6399,2.601,6400,2.185,6401,4.233,6402,4.233,6403,3.538,6404,5.089,6405,3.154,6406,3.39,6407,3.154,6408,2.968,6409,3.39,6410,3.39,6411,3.39,6412,3.154,6413,3.39,6414,3.154,6415,4.841,6416,3.056,6417,3.39,6418,2.814,6419,3.936,6420,4.683,6421,4.683,6422,4.233,6423,4.683,6424,4.683,6425,1.971,6426,3.39,6427,2.378,6428,2.422,6429,4.683,6430,2.517,6431,4.683,6432,3.154,6433,4.683,6434,3.264,6435,3.715]],["description//tracks/90daysofdevops/day90",[]],["title//tracks/90daysofdevops/day89",[3272,3.033,6357,3.773,6376,4.55]],["content//tracks/90daysofdevops/day89",[6,0.376,7,2.412,18,1.217,26,1.215,31,1.217,33,2.909,35,1.245,38,0.846,53,1.217,56,1.353,57,1.07,67,1.19,68,1.728,70,1.152,75,1.743,83,2.029,96,1.518,102,0.906,105,1.447,109,1.231,110,0.761,111,1.008,113,1.19,114,0.986,118,2.056,124,1.649,126,0.789,136,0.803,149,1.698,159,1.87,169,2.171,173,1.38,175,0.946,176,1.501,197,1.152,202,1.832,203,1.14,219,1.944,225,1.06,226,2.775,235,1.082,238,2.609,240,1.274,244,1.856,245,2.149,256,5.5,263,1.424,264,2.304,265,2.08,278,3.409,288,1.301,295,0.889,304,2.748,331,1.14,334,1.757,343,1.979,344,0.957,351,0.96,352,1.14,354,2.114,355,1.14,358,2.799,359,2.054,362,2.114,374,2.262,393,1.779,396,1.932,397,1.38,419,2.065,441,3.249,465,1.757,467,2.249,479,1.402,482,1.643,485,1.932,486,2.298,487,3.177,488,1.77,490,1.834,507,2.111,518,1.116,536,1.36,593,1.118,595,2.029,600,1.778,603,2.171,611,2.413,635,1.165,640,1.204,648,3.106,718,1.289,755,1.57,758,1.191,759,3.337,777,1.643,778,1.433,795,1.57,817,1.697,819,1.856,821,2.455,840,1.643,844,1.821,849,1.556,857,1.643,859,1.503,867,1.177,892,2.96,901,1.32,907,0.768,918,0.969,925,1.868,927,2.455,930,2.278,935,1.305,940,1.856,952,1.643,990,2.55,991,0.998,993,1.305,995,3.231,1002,1.645,1007,1.618,1012,2.699,1015,1.788,1019,1.305,1021,1.049,1023,2.853,1024,1.461,1028,3.101,1030,2.171,1036,1.165,1046,1.289,1049,1.57,1055,1.038,1061,3.598,1073,1.974,1107,5.288,1108,2.065,1110,2.005,1138,0.915,1205,1.177,1224,1.37,1240,1.406,1242,2.853,1266,1.32,1284,1.289,1288,2.799,1298,2.116,1300,1.503,1311,2.018,1331,2.354,1362,1.757,1364,2.247,1374,2.486,1391,6.686,1405,1.289,1422,3.252,1423,2.699,1424,2.413,1426,2.653,1430,3.508,1480,1.698,1504,5.372,1515,2.372,1516,2.615,1526,1.67,1528,1.547,1536,2.377,1599,1.67,1610,1.305,1627,1.788,1639,1.645,1644,6.367,1646,1.67,1702,1.082,1802,2.232,1805,2.661,1818,1.406,1828,2.661,1871,2.372,1904,1.643,1920,1.217,1930,0.979,1933,4.919,1954,1.944,2001,1.932,2067,1.715,2132,3.101,2163,1.974,2170,2.065,2185,2.455,2190,4.442,2213,3.033,2251,1.932,2259,1.57,2381,2.661,2600,2.232,2608,2.794,2629,2.699,2690,2.455,2692,2.116,2693,2.377,2714,3.918,2723,3.252,2727,2.909,2837,2.018,2915,1.974,3187,1.726,3238,2.794,3272,4.919,3304,1.821,3353,1.67,3427,2.55,3434,1.525,3495,1.231,3511,1.424,3554,1.974,3685,2.794,3696,1.419,3699,1.547,3734,2.661,3803,1.337,3817,3.918,3913,6.559,4067,5.334,4136,2.065,4228,4.293,4241,3.532,4272,3.566,4369,2.794,4415,2.412,4424,2.343,4439,2.171,4449,1.893,4497,1.525,4545,1.57,4736,2.55,4776,2.55,5024,1.932,5036,1.37,5078,2.065,5100,2.818,5143,4.338,5149,4.595,5300,1.698,5323,1.856,5391,2.455,5402,2.455,5524,2.31,5596,2.455,5601,4.089,5617,3.183,5641,2.133,5707,2.116,5739,1.932,6027,1.67,6162,6.119,6188,2.372,6355,4.583,6356,1.443,6357,4.595,6363,6.218,6364,5.868,6366,4.228,6374,3.773,6375,3.773,6377,3.409,6380,4.303,6381,2.661,6382,6.925,6383,7.494,6385,4.293,6386,2.55,6389,2.661,6394,3.773,6400,1.643,6404,4.301,6405,2.372,6406,2.55,6407,2.372,6408,2.232,6409,2.55,6410,2.55,6411,2.55,6412,2.372,6413,2.55,6414,2.372,6428,1.821,6436,1.37,6437,2.96,6438,3.183,6439,3.183,6440,2.455,6441,3.522,6442,3.174,6443,2.55,6444,1.821,6445,2.018,6446,3.183,6447,5.868,6448,2.96,6449,1.788,6450,5.541,6451,6.038,6452,5.029,6453,3.033,6454,4.892,6455,4.892,6456,4.892,6457,5.589,6458,4.892,6459,4.892,6460,4.293,6461,4.892,6462,4.892,6463,4.892,6464,4.089,6465,4.338,6466,2.116,6467,2.661,6468,3.183,6469,2.96,6470,2.232,6471,2.794,6472,2.455,6473,2.55,6474,3.183,6475,2.96,6476,2.171,6477,3.183,6478,2.96,6479,2.96,6480,1.503,6481,2.794,6482,2.661,6483,3.183,6484,2.96,6485,2.96,6486,2.55,6487,2.96,6488,2.96,6489,3.522,6490,2.96,6491,2.171,6492,3.183,6493,3.183,6494,3.183,6495,3.183,6496,3.183,6497,3.183,6498,3.694,6499,3.183,6500,2.794,6501,2.794,6502,2.794,6503,2.661,6504,3.183,6505,3.522,6506,1.406,6507,2.372,6508,3.183,6509,2.55,6510,3.522,6511,2.55,6512,3.522,6513,2.372]],["description//tracks/90daysofdevops/day89",[]],["title//tracks/90daysofdevops/day88",[75,0.752,1107,2.172,1645,2.398,2190,2.255,6514,3.868]],["content//tracks/90daysofdevops/day88",[6,0.418,18,0.995,26,1.237,34,0.675,38,1.035,44,1.796,49,0.785,58,0.922,64,0.912,65,0.502,67,0.973,70,0.942,74,1.47,75,1.607,96,0.663,105,0.77,107,0.77,109,1.615,110,0.998,111,1.322,118,0.8,120,0.701,124,1.368,126,1.035,136,1.054,137,0.544,147,0.748,158,1.106,159,0.995,173,1.178,175,0.911,176,1.343,183,1.149,191,0.669,201,1.919,202,1.284,212,1.006,216,1.135,222,1.633,224,1.006,225,1.39,227,1.042,234,0.606,244,1.518,246,0.628,247,1.303,260,1.58,271,1.614,288,1.017,295,1.167,300,1.054,301,1.106,313,0.858,331,0.932,334,1.436,344,1.108,351,0.785,354,1.753,356,0.86,359,1.093,362,0.762,374,2.124,425,3.163,427,2.223,441,2.029,454,5.051,459,0.973,462,1.503,464,1.652,467,1.404,470,1.579,471,1.265,479,1.025,485,1.58,517,1.412,542,0.912,548,1.562,575,1.212,593,1.379,600,1.52,603,1.775,611,1.054,626,0.875,640,0.984,646,1.265,647,2.505,650,3.897,675,1.362,679,3.491,718,1.054,722,1.58,758,1.273,779,1.135,787,1.196,800,2.658,832,1.462,840,1.344,849,1.958,857,1.344,867,1.545,882,2.389,887,2.007,901,3.049,903,1.754,918,1.185,925,0.816,926,1.03,935,0.694,938,0.77,991,1.64,993,1.712,995,2.265,1021,1.376,1024,0.912,1026,3.612,1036,0.952,1054,2.643,1057,1.365,1061,3.095,1088,0.675,1107,4.428,1138,0.748,1210,3.665,1224,1.12,1255,1.08,1271,1.067,1281,2.42,1300,2.47,1315,2.894,1331,1.362,1336,3.731,1341,2.645,1386,3.824,1405,3.095,1430,1.365,1432,1.939,1455,2.42,1482,1.754,1502,4.083,1515,3.112,1516,2.046,1524,1.689,1561,3.015,1632,0.77,1644,3.491,1645,1.614,1656,1.006,1701,2.389,1702,2.034,1736,1.879,1742,3.09,1745,1.12,1747,0.973,1767,1.879,1770,1.825,1791,1.412,1811,1.65,1818,1.149,1834,2.284,1858,1.093,1869,0.903,1880,1.548,1954,1.362,1988,1.489,2046,1.149,2067,1.833,2075,3.776,2131,2.589,2185,4.034,2190,3.49,2213,4.557,2258,1.365,2263,3.491,2287,1.775,2296,2.175,2331,4.189,2692,1.73,2693,1.265,2731,3.243,2789,4.144,2831,2.284,2915,4.337,2929,1.344,2975,1.58,3000,3.393,3112,7.351,3143,4.129,3172,1.388,3272,4.887,3353,1.365,3370,2.647,3515,1.614,3520,5.477,3554,1.614,3619,1.58,3643,7.331,3703,1.825,3817,2.085,3904,2.175,3913,5.604,3915,1.365,3928,2.42,4358,2.42,4456,2.603,4530,2.647,4545,1.283,4568,1.825,4757,1.689,4768,3.345,4776,2.085,5008,2,5024,1.58,5031,6.027,5036,1.12,5100,2.991,5122,1.212,5127,2.484,5133,1.879,5143,4.252,5149,3.221,5171,1.775,5180,1.939,5263,2.42,5315,1.775,5323,1.518,5324,1.344,5337,1.689,5377,3.175,5402,2.007,5404,6.164,5419,2.284,5454,2.007,5548,3.477,5601,2.175,5618,1.689,5641,1.135,5743,5.231,5882,2.603,6148,5.249,6355,2.951,6357,2.007,6362,1.614,6366,2.7,6374,2.007,6375,2.007,6377,4.728,6378,2.284,6380,1.412,6382,1.939,6394,2.007,6398,3.667,6403,2.175,6404,5.516,6405,3.897,6406,2.085,6407,1.939,6408,1.825,6409,2.085,6410,2.085,6411,2.085,6412,1.939,6413,2.085,6414,1.939,6419,2.42,6428,1.489,6430,1.548,6444,1.489,6447,2.284,6450,8.751,6452,5.494,6464,2.175,6465,5.807,6466,1.73,6480,2.47,6491,5.014,6498,4.337,6507,1.939,6508,5.231,6515,2.42,6516,1.825,6517,2.603,6518,2.88,6519,8.264,6520,8.949,6521,9.811,6522,1.939,6523,3.345,6524,2.42,6525,2.085,6526,4.176,6527,2.88,6528,6.623,6529,2.88,6530,2.88,6531,2.88,6532,2.88,6533,2.88,6534,6.623,6535,2.085,6536,2.88,6537,2.88,6538,2.88,6539,2.88,6540,2.88,6541,2.88,6542,2.88,6543,2.88,6544,2.88,6545,4.621,6546,5.787,6547,5.787,6548,4.621,6549,6.623,6550,3.897,6551,7.035,6552,5.787,6553,5.787,6554,5.787,6555,5.231,6556,5.787,6557,5.787,6558,4.246,6559,4.621,6560,4.176,6561,4.176,6562,7.827,6563,9.707,6564,2.88,6565,2.88,6566,2.88,6567,2.88,6568,2.88,6569,2.88,6570,2.88,6571,2.88,6572,2.88,6573,2.88,6574,2.88,6575,2.88,6576,2.88,6577,2.88,6578,2.88,6579,2.88,6580,2.88,6581,2.175,6582,7.741,6583,7.251,6584,2.42,6585,5.231,6586,2.88,6587,2.88,6588,2.88,6589,2.603,6590,2.175,6591,2.88,6592,1.939,6593,2.175,6594,2.88,6595,2.007,6596,2.88,6597,5.787,6598,2.88,6599,4.621,6600,2.88,6601,2.88,6602,4.621,6603,7.251,6604,7.251,6605,7.251,6606,5.787,6607,5.787,6608,5.787,6609,5.787,6610,2.88,6611,2.88,6612,4.176,6613,2.88,6614,2.88,6615,2.88,6616,4.621,6617,2.88,6618,4.621,6619,2.88,6620,2.88,6621,4.621,6622,2.88,6623,2.88,6624,2.88,6625,4.189,6626,2.085,6627,5.787,6628,7.741,6629,4.621,6630,2.88,6631,4.621,6632,2.88,6633,1.879,6634,2.88,6635,2.88,6636,2.88,6637,2.88,6638,2.284,6639,2.88,6640,2.085,6641,2.88,6642,3.884,6643,4.621,6644,2.88,6645,2.88,6646,2.88,6647,2.007,6648,2.88,6649,2.603,6650,4.621,6651,1.775,6652,2.88,6653,2.603,6654,2.88,6655,2.88,6656,2.88,6657,2.88,6658,2.88,6659,1.879,6660,2.88,6661,2.88,6662,2.603]],["description//tracks/90daysofdevops/day88",[]],["title//tracks/90daysofdevops/day87",[1107,2.427,2190,2.519,3272,2.678,6663,4.32]],["content//tracks/90daysofdevops/day87",[6,0.382,26,1.368,30,1.309,31,1.442,38,0.653,42,2.29,44,1.295,53,1.442,57,1.269,65,0.727,68,1.121,70,2.012,73,1.66,74,0.927,75,1.786,109,2.15,112,1.137,113,2.724,114,1.331,118,1.709,120,1.016,124,1.27,139,1.483,143,2.2,146,3.123,158,1.604,169,2.574,173,1.568,175,1.082,176,0.847,197,1.365,203,1.351,217,1.295,224,1.459,225,1.256,226,1.757,230,0.97,238,2.012,240,1.51,244,3.242,245,1.568,256,4.014,261,1.604,265,2.363,278,2.159,288,0.734,289,0.886,295,1.054,311,2.119,319,1.733,343,2.228,344,1.073,354,2.275,355,2.364,356,0.949,358,2.159,359,1.584,362,1.105,374,2.259,375,1.365,376,1.807,377,1.645,423,1.282,425,2.849,441,3.208,465,4.02,479,0.59,482,1.948,488,1.365,490,1.81,507,1.337,529,3.311,536,1.343,548,1.411,564,2.391,575,1.757,593,0.708,600,1.62,601,2.508,635,2.034,640,1.426,641,3.153,742,1.105,758,1.978,759,2.574,795,1.86,819,2.2,840,1.948,849,1.807,857,1.948,901,2.738,905,0.568,907,1.341,910,1.282,917,1.084,918,0.747,925,1.183,927,2.91,935,1.483,993,2.279,995,2.046,1002,1.87,1007,1.918,1010,2.724,1012,3.068,1015,3.708,1018,2.415,1020,3.022,1021,1.832,1023,2.2,1024,1.697,1028,2.391,1036,1.38,1046,1.528,1054,1.666,1059,2.082,1061,2.625,1088,0.979,1107,4.363,1110,1.546,1137,3.773,1187,1.979,1198,2.046,1207,2.645,1208,1.282,1224,1.624,1237,2.554,1240,1.666,1242,2.2,1266,2.306,1288,2.159,1300,1.782,1311,2.391,1331,1.814,1361,2.159,1374,1.918,1391,6.393,1405,1.528,1422,2.508,1423,2.082,1424,1.528,1430,1.979,1477,4.014,1479,2.508,1504,5.099,1526,1.979,1536,1.833,1592,2.936,1632,1.116,1644,3.153,1649,2.574,1656,1.459,1661,2.496,1680,1.584,1688,2.119,1702,1.889,1742,1.948,1818,1.666,1858,2.772,1863,1.86,1912,1.71,1958,2.554,2067,1.323,2069,2.391,2190,4.248,2213,2.339,2251,4.007,2381,4.647,2629,2.082,2690,2.91,2692,2.508,2693,1.833,2697,2.645,2714,3.022,2723,2.508,2727,3.306,2902,2.508,2915,2.339,2929,1.948,3159,1.528,3174,1.426,3179,1.918,3272,5.345,3353,1.979,3434,1.807,3511,1.688,3554,2.339,3800,1.948,3817,3.022,4271,3.54,4272,2.012,4380,3.311,4424,1.807,4437,2.645,4439,2.574,4449,2.244,4545,1.86,4768,3.022,5024,2.29,5036,1.624,5048,3.773,5100,3.189,5143,3.607,5315,2.574,5321,2.91,5350,3.022,5402,2.91,5482,2.448,5524,2.625,5601,3.153,5894,5.091,6012,3.508,6350,1.807,6355,4.143,6356,1.71,6357,2.91,6365,2.811,6366,3.761,6370,4.014,6374,2.91,6375,2.91,6377,4.807,6379,7.13,6380,3.58,6382,7.116,6383,7.553,6385,4.879,6388,6.393,6389,6.491,6390,3.508,6391,2.91,6394,2.91,6398,2.645,6404,4.766,6405,2.811,6406,3.022,6407,2.811,6408,2.645,6409,3.022,6410,3.022,6411,3.022,6412,2.811,6413,3.022,6414,2.811,6418,2.508,6442,2.448,6445,2.391,6449,4.363,6451,5.731,6452,4.617,6453,3.447,6454,3.773,6455,3.773,6456,3.773,6457,5.518,6458,3.773,6459,3.773,6460,3.311,6461,3.773,6462,3.773,6463,3.773,6464,3.153,6465,3.607,6471,3.311,6484,3.508,6485,3.508,6486,3.022,6487,3.508,6488,3.508,6490,3.508,6491,4.503,6492,3.773,6493,3.773,6494,3.773,6495,3.773,6496,3.773,6497,3.773,6498,2.339,6499,3.773,6503,4.647,6511,3.022,6535,3.022,6595,4.287,6664,3.153,6665,3.773,6666,3.508,6667,3.508,6668,3.773,6669,3.508,6670,3.773,6671,4.174,6672,6.151,6673,3.773,6674,4.174,6675,4.174,6676,4.174,6677,5.17,6678,5.56,6679,5.56,6680,4.174,6681,3.311,6682,5.17,6683,4.628,6684,2.119,6685,4.174,6686,3.508,6687,3.153,6688,4.174,6689,3.773,6690,3.773,6691,3.508,6692,3.773,6693,3.311,6694,3.773,6695,4.014,6696,4.174,6697,3.773,6698,3.773,6699,3.508,6700,2.645,6701,4.174,6702,3.773,6703,2.91,6704,3.508,6705,4.174,6706,3.773,6707,3.508,6708,4.174,6709,2.811,6710,2.391,6711,3.773,6712,2.91,6713,2.574,6714,4.174,6715,3.773]],["description//tracks/90daysofdevops/day87",[]],["title//tracks/90daysofdevops/day86",[1107,2.427,2190,2.519,3159,1.75,6716,4.018]],["content//tracks/90daysofdevops/day86",[1,0.793,5,1.403,6,0.097,8,3.983,14,1.284,15,1.581,26,1.049,27,1.913,32,1.361,38,0.408,42,1.432,44,1.324,49,2.128,55,2.341,59,1.972,64,1.715,65,0.943,68,1.139,72,1.432,74,1.733,75,1.212,80,0.579,96,0.982,102,0.672,105,1.447,107,1.671,110,0.564,114,0.986,118,1.504,120,1.521,124,0.881,126,2.03,139,1.029,141,0.754,146,2.167,147,1.406,149,1.258,158,1.003,159,1.475,164,1.461,173,1.088,175,0.976,176,0.53,190,1.258,196,1.829,197,0.854,198,1.28,202,1.737,203,2.023,207,2.653,215,1.302,216,1.693,217,0.81,221,1.098,224,1.491,225,1.881,226,1.099,227,1.544,230,0.606,234,0.897,235,2.272,244,3.899,246,1.363,255,3.857,260,1.432,265,1.003,272,1.114,288,1.301,289,2.078,295,1.579,331,1.381,333,1.426,343,2.089,344,1.149,351,1.704,352,1.381,354,1.655,355,0.845,356,1.126,359,1.62,362,1.655,374,2.213,393,0.704,397,0.665,398,1.238,411,1.376,422,1.041,423,2.117,425,2.437,432,1.796,435,2.799,448,1.758,459,1.442,462,1.624,467,0.793,472,1.028,479,1.303,487,2.609,490,1.342,518,1.352,519,1.772,527,3.101,530,1.199,535,1.342,536,1.497,539,1.495,548,2.639,551,1.703,558,1.463,560,2.218,568,3.756,587,2.092,592,1.495,593,1.381,595,0.979,598,1.681,600,1.579,611,2.288,626,1.297,637,1.069,638,1.96,647,1.847,648,1.016,655,2.185,702,1.199,718,1.981,756,0.854,758,1.375,774,0.892,778,1.13,779,1.681,781,1.199,785,0.818,800,2.486,817,2.161,821,2.974,828,1.302,832,2.748,840,1.991,843,1.084,845,1.796,849,2.059,857,2.526,859,1.114,867,1.426,902,2.207,903,1.62,905,0.355,909,1.297,910,0.802,916,1.89,918,0.467,925,1.209,927,4.804,931,1.509,934,1.302,935,1.507,937,2.071,939,0.912,991,1.534,1002,1.9,1010,3.532,1017,1.084,1019,1.581,1021,0.777,1023,1.376,1024,1.069,1036,1.411,1043,2.445,1053,2.09,1056,1.89,1061,4.379,1066,2.005,1067,2.631,1088,1.616,1106,1.819,1107,5.316,1108,3.174,1180,1.218,1205,0.873,1206,2.128,1224,2.106,1232,2.445,1237,2.248,1239,2.359,1240,1.703,1252,2.704,1273,1.432,1284,0.956,1287,1.991,1293,1.463,1308,1.109,1311,2.445,1320,2.294,1331,1.258,1362,1.302,1363,0.979,1405,1.981,1410,2.445,1423,2.128,1424,0.956,1430,2.023,1440,2.564,1443,1.463,1451,1.432,1477,4.498,1479,1.568,1480,1.258,1487,1.302,1489,1.66,1516,1.509,1526,2.023,1561,4.498,1592,2.355,1593,3.224,1600,1.495,1601,2.969,1608,2.071,1610,0.967,1626,2.161,1630,1.325,1632,1.671,1639,1.297,1646,1.238,1652,1.62,1653,2.294,1658,1.609,1675,1.35,1686,1.758,1688,1.325,1705,2.974,1706,2.359,1719,2.194,1720,1.609,1731,2.785,1740,2.445,1762,1.89,1764,3.532,1777,1.325,1792,1.681,1818,1.042,1858,2.616,1869,1.338,1904,1.218,1912,1.748,1930,2.263,1932,1.609,1943,2.704,1954,2.671,1988,2.207,1993,2.631,2005,2.128,2079,2.974,2080,2.071,2082,1.819,2181,1.654,2190,5.379,2277,1.85,2284,1.568,2299,2.294,2333,1.199,2438,1.703,2466,1.819,2470,1.28,2496,1.89,2556,2.359,2629,2.7,2662,1.748,2697,2.704,2698,2.167,2729,3.587,2765,2.167,2820,1.199,2870,1.432,2904,4.212,2915,1.463,2932,1.325,2949,1.114,3065,1.568,3159,1.981,3174,1.458,3214,1.069,3272,4.375,3305,2.167,3306,1.654,3327,1.531,3353,2.566,3426,2.402,3495,0.912,3508,1.302,3511,2.991,3516,1.609,3554,1.463,3621,1.495,3657,0.933,3677,2.071,3696,1.119,3697,1.819,3699,1.146,3752,3.857,3764,1.531,3787,2.071,3811,2.964,3963,1.531,3964,1.703,4071,1.703,4150,1.568,4157,2.874,4201,1.199,4235,2.359,4239,2.194,4271,2.377,4272,1.258,4273,1.972,4284,3.385,4285,1.403,4295,1.463,4371,4.804,4423,1.531,4424,1.13,4437,1.654,4463,1.609,4474,1.495,4494,1.972,4497,1.13,4510,5.651,4541,4.892,4757,2.502,4816,2.391,4924,2.194,4954,4.723,4965,2.071,5004,2.194,5024,1.432,5036,3.454,5100,1.809,5127,3.36,5146,5.626,5149,2.974,5260,3.089,5300,2.057,5304,3.46,5313,2.128,5335,2.631,5366,1.89,5402,1.819,5454,1.819,5496,2.071,5524,1.821,5561,1.758,5596,2.974,5693,1.972,5774,2.359,5891,2.194,5894,1.819,5956,1.89,5982,1.163,6095,1.609,6162,1.819,6263,1.376,6350,3.38,6355,2.786,6361,1.96,6366,4.886,6374,1.819,6375,1.819,6394,3.773,6399,1.66,6403,1.972,6404,3.532,6405,2.874,6406,1.89,6407,1.758,6408,1.654,6409,1.89,6410,1.89,6411,1.89,6412,1.758,6413,1.89,6414,1.758,6415,1.89,6425,1.796,6436,1.016,6437,2.194,6438,2.359,6442,1.531,6443,3.919,6446,2.359,6447,5.467,6449,2.167,6471,5.868,6509,3.089,6524,2.194,6585,4.892,6638,3.385,6640,1.89,6665,8.189,6666,4.55,6717,1.972,6718,1.819,6719,1.819,6720,2.194,6721,4.268,6722,4.268,6723,2.359,6724,3.919,6725,2.194,6726,2.61,6727,3.857,6728,2.61,6729,2.61,6730,2.61,6731,2.61,6732,2.61,6733,2.61,6734,2.61,6735,2.194,6736,4.25,6737,1.819,6738,3.857,6739,2.071,6740,2.61,6741,1.819,6742,3.089,6743,2.61,6744,2.61,6745,2.359,6746,3.857,6747,2.61,6748,4.55,6749,2.61,6750,1.703,6751,2.194,6752,2.194,6753,2.194,6754,1.972,6755,2.071,6756,2.194,6757,2.359,6758,2.61,6759,2.071,6760,2.359,6761,1.238,6762,2.359,6763,2.61,6764,2.61,6765,2.194,6766,3.089,6767,2.61,6768,2.071,6769,1.89,6770,1.703,6771,2.359,6772,2.359,6773,2.61,6774,2.61,6775,1.758,6776,2.61,6777,3.532,6778,2.359,6779,4.268,6780,2.61,6781,1.463,6782,4.892,6783,2.359,6784,4.089,6785,2.61,6786,2.61,6787,4.268,6788,4.268,6789,4.268,6790,3.089,6791,3.587,6792,6.252,6793,4.268,6794,4.268,6795,3.587,6796,3.857,6797,4.268,6798,3.089,6799,8.146,6800,8.146,6801,8.146,6802,3.781,6803,3.919,6804,4.268,6805,4.268,6806,6.893,6807,2.61,6808,2.61,6809,1.972,6810,2.071,6811,2.359,6812,2.359,6813,2.071,6814,2.61,6815,4.268,6816,1.819]],["description//tracks/90daysofdevops/day86",[]],["title//tracks/90daysofdevops/day85",[344,0.572,427,2.08,6515,4.55]],["content//tracks/90daysofdevops/day85",[1,1.117,15,1.362,18,1.27,19,2.06,27,1.977,29,1.314,32,1.104,33,3.006,35,1.299,38,1.183,49,1.002,53,1.933,56,2.601,58,1.177,65,1.179,67,1.89,71,1.129,73,0.992,75,1.33,102,1.439,110,1.462,112,2.658,118,1.021,124,0.759,136,1.276,137,1.428,139,1.632,144,1.506,159,1.27,175,0.73,190,1.649,191,1.299,192,3.376,196,1.89,212,1.954,216,1.662,217,1.14,218,2.106,219,1.996,221,0.946,224,1.954,225,1.682,226,1.547,227,1.33,229,1.506,230,0.854,234,1.591,240,2.023,241,3.36,244,1.937,245,0.937,267,1.395,288,1.33,301,2.149,302,4.48,307,2.261,332,1.866,343,0.911,344,1.201,362,1.481,370,1.638,372,1.547,374,0.839,375,1.202,397,1.426,406,1.866,408,1.591,422,1.454,425,3.958,426,2.016,427,2.601,431,1.189,437,1.448,448,2.475,462,1.453,467,1.7,470,1.256,482,1.715,485,2.016,507,1.177,518,2.144,527,2.106,531,4.7,535,1.386,536,1.028,541,1.937,542,1.165,551,2.398,556,1.165,598,1.448,636,1.911,637,2.291,638,1.688,645,1.976,646,1.614,655,2.996,708,2.106,755,2.492,756,1.202,758,1.886,766,3.448,770,3.204,771,2.106,774,1.256,778,0.973,781,2.569,805,3.474,828,1.833,845,1.547,855,2.329,905,0.5,907,1.219,909,1.117,917,2.315,918,1.001,930,1.547,991,1.584,1018,1.849,1024,1.337,1066,1.362,1089,2.478,1101,4.334,1108,2.155,1138,1.758,1143,2.261,1150,2.398,1206,1.833,1208,1.129,1229,2.106,1237,1.526,1240,2.232,1254,1.901,1266,1.378,1273,2.016,1283,1.901,1289,2.155,1291,2.777,1302,1.772,1308,2.114,1309,1.591,1351,2.203,1361,1.901,1424,1.346,1439,4.067,1467,2.916,1478,1.526,1479,2.208,1485,1.937,1538,2.398,1587,2.106,1598,1.901,1610,1.362,1618,1.256,1621,4.558,1625,2.329,1629,3.089,1639,2.057,1645,3.134,1648,1.901,1652,1.395,1669,1.569,1677,2.839,1690,2.569,1694,2.492,1700,2.208,1731,6.26,1742,1.715,1750,1.715,1777,2.839,1791,1.802,1792,3.511,1829,2.122,1858,3.089,1867,2.398,1869,2.372,1880,1.976,1916,2.155,1925,2.777,1930,2.748,1994,2.661,1995,2.562,2006,2.741,2024,2.208,2037,2.777,2045,2.016,2067,1.165,2145,2.266,2152,3.322,2163,2.06,2189,2.208,2210,4.436,2270,2.266,2387,2.475,2419,2.208,2459,2.777,2564,1.663,2570,1.866,2587,2.947,2597,2.916,2646,2.777,2698,1.866,2699,1.802,2820,1.688,2839,2.06,2869,3.089,2876,3.322,2915,4.239,2932,2.839,2976,1.911,3015,4.219,3150,3.713,3154,2.366,3158,3.898,3270,2.777,3283,4.436,3394,1.547,3426,1.412,3696,0.964,3699,1.614,3750,2.06,3764,2.155,3891,1.802,3893,7.068,3946,2.266,3979,2.777,3980,2.016,4136,2.155,4250,3.089,4271,2.456,4272,1.772,4285,1.976,4303,4.067,4314,2.947,4324,2.398,4413,2.916,4424,2.421,4453,2.661,4463,2.266,4472,2.916,4533,1.937,4570,3.322,4625,3.322,4712,2.661,4751,4.7,4754,3.322,4775,3.448,4782,3.279,4802,1.866,4964,3.322,4989,1.743,5006,2.777,5064,3.322,5081,3.969,5100,1.229,5106,7.284,5153,1.591,5158,2.644,5165,3.322,5215,3.279,5240,3.089,5404,4.067,5670,2.777,5703,3.322,5775,1.976,5797,2.398,5887,3.322,5937,6.837,5940,4.436,6050,2.398,6361,1.688,6365,5.773,6366,3.158,6428,1.901,6436,1.43,6473,2.661,6516,2.329,6592,4.558,6653,3.322,6816,3.898,6817,5.592,6818,3.676,6819,3.676,6820,3.089,6821,3.322,6822,3.676,6823,3.676,6824,3.676,6825,3.676,6826,3.676,6827,3.322,6828,3.089,6829,3.676,6830,3.676,6831,3.676,6832,2.916,6833,5.055,6834,6.84,6835,3.322,6836,6.769,6837,3.676,6838,2.661,6839,5.055,6840,4.7,6841,4.7,6842,3.676,6843,2.916,6844,5.592,6845,3.676,6846,3.322,6847,3.322,6848,5.689,6849,8.815,6850,3.322,6851,3.322,6852,3.676,6853,3.676,6854,3.676,6855,3.676,6856,3.676,6857,3.676,6858,7.565,6859,3.676,6860,3.089,6861,3.676,6862,3.676,6863,6.769,6864,3.676,6865,3.676,6866,3.676,6867,3.322,6868,3.676,6869,5.592,6870,3.676,6871,3.676,6872,3.322,6873,5.592,6874,5.592,6875,3.676,6876,3.322,6877,3.676,6878,3.089,6879,3.322,6880,3.676,6881,3.322,6882,3.676,6883,3.676,6884,3.676,6885,5.592,6886,2.777,6887,5.592,6888,3.676,6889,5.592,6890,3.676,6891,3.089,6892,3.089,6893,2.777,6894,2.916,6895,3.878,6896,3.322,6897,2.777,6898,2.644,6899,3.322,6900,1.772,6901,3.089,6902,3.676,6903,3.676,6904,3.676]],["description//tracks/90daysofdevops/day85",[]],["title//tracks/90daysofdevops/day84",[344,0.572,917,1.406,6905,4.893]],["content//tracks/90daysofdevops/day84",[5,2.352,6,0.279,15,1.621,25,1.95,26,0.969,27,1.547,31,1.512,32,1.257,37,2.629,43,3.733,45,2.263,49,1.192,53,1.512,55,2.4,64,2.775,68,0.797,71,2.531,74,2.146,75,1.449,105,1.17,107,1.17,118,1.769,126,0.98,136,1.453,141,1.265,155,2.698,166,3.471,191,1.744,201,1.817,215,2.182,219,1.877,226,1.842,227,2.715,230,1.744,244,3.356,245,2.33,246,2.107,259,1.621,264,2.623,267,2.849,288,1.119,344,1.202,352,1.416,356,1.138,362,1.159,372,2.68,374,1.88,377,1.724,383,1.358,393,1.718,397,1.913,411,3.956,422,1.224,425,2.653,427,3.167,459,1.479,461,2.251,467,1.935,482,2.042,488,2.083,518,1.386,535,1.578,536,0.804,542,1.386,545,2.629,555,1.702,600,1.109,611,2.331,628,1.29,637,1.793,638,2.01,655,1.529,675,1.877,714,3.356,745,1.317,758,0.963,759,2.698,777,2.042,785,1.372,805,3.204,817,1.996,818,2.947,849,0.92,857,2.971,858,2.507,867,1.463,882,2.263,902,2.263,903,2.849,905,0.867,907,0.954,909,1.935,910,1.344,915,1.817,917,2.69,918,0.783,935,1.987,1018,2.482,1036,1.447,1061,3.518,1066,2.359,1076,2.838,1085,2.629,1087,4.206,1088,1.493,1102,3.168,1107,4.641,1108,2.566,1138,1.654,1143,1.769,1179,3.05,1198,2.145,1205,2.128,1206,2.182,1311,2.507,1315,1.746,1320,2.352,1363,2.814,1437,2.352,1447,1.495,1451,2.4,1461,3.306,1479,2.629,1484,1.842,1536,3.296,1590,3.471,1591,2.4,1592,2.817,1594,2.629,1610,2.359,1626,1.996,1627,3.233,1639,1.33,1646,2.075,1652,1.661,1655,3.306,1674,2.222,1689,2.629,1700,2.629,1702,1.344,1704,1.868,1734,3.422,1789,1.894,1791,3.679,1792,1.724,1818,1.746,1854,2.698,1858,2.416,1861,3.05,1869,1.996,1904,2.971,1908,2.773,1912,1.793,1930,1.769,1952,2.222,1953,3.306,1954,1.877,1955,2.075,1979,2.718,1987,1.661,1988,2.263,2054,3.568,2067,1.386,2106,3.955,2190,3.956,2270,2.698,2277,1.495,2467,2.109,2651,1.386,2698,2.222,2820,2.01,2915,2.452,2979,2.947,3008,2.352,3015,2.01,3065,2.629,3150,2.4,3159,2.331,3214,1.793,3253,2.698,3272,4.908,3273,2.566,3305,3.233,3353,2.075,3391,3.168,3495,3.061,3554,2.452,3591,2.507,3621,2.507,3666,2.263,3696,1.67,3764,2.566,3800,2.042,3803,2.416,3811,2.075,3879,3.493,3948,2.566,3965,3.471,3984,2.145,4032,3.168,4067,2.306,4071,2.855,4079,2.306,4125,3.471,4141,4.61,4201,2.01,4239,3.678,4271,1.922,4272,2.109,4273,3.306,4367,3.05,4421,3.168,4423,5.668,4436,3.678,4447,2.773,4459,2.796,4475,2.452,4494,3.306,4721,2.629,4798,2.947,4802,3.811,4856,3.955,4954,3.306,4989,2.075,5024,2.4,5036,2.477,5100,2.509,5122,1.842,5184,3.955,5301,3.306,5305,2.642,5402,3.05,5524,1.868,5892,3.306,5894,3.05,5982,1.95,6014,3.678,6027,2.075,6263,2.306,6357,3.05,6361,2.01,6374,3.05,6375,3.05,6387,3.168,6394,3.05,6399,2.92,6403,6.227,6404,4.898,6405,2.947,6406,3.168,6407,2.947,6408,2.773,6409,3.168,6410,3.168,6411,3.168,6412,2.947,6413,3.168,6414,2.947,6425,3.16,6428,2.263,6436,1.702,6439,5.755,6449,2.222,6506,1.746,6638,5.954,6718,3.05,6719,3.05,6766,3.168,6906,4.376,6907,4.376,6908,2.566,6909,2.773,6910,4.376,6911,3.955,6912,3.678,6913,3.05,6914,4.376,6915,4.376,6916,3.168,6917,4.376,6918,3.306,6919,2.452,6920,4.376,6921,3.678,6922,4.376,6923,2.947,6924,4.376,6925,6.368,6926,4.376,6927,3.168,6928,6.368,6929,3.955,6930,4.376,6931,4.376,6932,4.376,6933,8.759,6934,3.05,6935,4.376,6936,2.629,6937,5.755,6938,3.955,6939,6.368,6940,6.368,6941,4.376,6942,4.376,6943,3.955,6944,4.376,6945,4.376,6946,3.168]],["description//tracks/90daysofdevops/day84",[]],["title//tracks/90daysofdevops/day83",[344,0.505,3196,3.611,6947,4.018,6948,3.46]],["content//tracks/90daysofdevops/day83",[6,0.334,26,1.251,30,1.18,32,0.744,34,1.335,35,1.331,38,0.589,43,2.208,44,1.168,56,2.639,57,2.088,58,1.206,60,4.601,65,0.656,67,1.272,68,1.576,70,1.232,74,0.836,83,1.412,96,1.581,102,0.969,109,1.316,110,1.23,113,1.272,114,1.038,124,1.856,136,1.567,137,1.075,139,0.908,143,1.984,149,1.815,159,1.301,164,1.537,173,1.452,175,1.021,176,0.764,196,1.272,197,1.863,202,1.582,203,1.218,206,0.997,219,2.425,224,1.316,225,1.133,226,2.397,227,2.06,238,1.815,245,1.751,246,1.497,257,1.73,263,1.522,265,2.639,272,2.431,288,0.662,304,1.912,333,1.904,344,1.126,351,1.026,354,1.508,356,0.74,359,1.429,361,2.024,362,1.819,366,1.785,374,2.387,375,1.232,376,1.63,377,1.483,397,1.751,404,2.536,408,2.465,410,1.757,411,1.984,420,2.321,422,0.724,423,1.156,425,1.331,435,1.947,437,1.483,461,1.331,462,0.978,479,1.162,490,0.933,507,1.823,519,2.365,520,2.262,525,1.73,527,2.157,536,0.692,542,1.804,548,1.925,556,1.193,560,1.543,575,2.397,593,1.395,600,1.709,612,2.616,628,2.425,635,2.532,640,2.347,647,1.63,648,2.216,733,3.001,742,0.997,756,1.863,758,1.903,778,0.997,783,3.835,785,1.18,819,1.984,840,1.757,842,5.301,843,1.563,849,1.889,856,3.933,857,1.757,858,2.157,859,1.607,864,1.912,882,1.947,901,2.871,905,0.513,907,2.017,915,1.563,917,1.479,918,1.472,935,1.373,938,1.522,952,2.657,955,3.339,989,1.947,991,1.067,995,1.846,1002,2.63,1007,1.73,1012,1.878,1018,1.245,1019,2.837,1021,1.696,1024,1.512,1028,2.157,1030,3.511,1033,2.11,1046,1.378,1054,2.273,1089,1.378,1110,2.11,1138,0.978,1151,3.573,1184,2.7,1207,2.386,1208,1.156,1234,1.316,1240,1.503,1246,1.912,1249,2.386,1266,1.412,1289,2.208,1309,1.63,1310,2.986,1331,2.258,1362,1.878,1374,2.616,1375,2.386,1405,2.514,1422,3.422,1423,2.84,1426,2.792,1428,2.457,1430,3.257,1443,3.191,1447,1.287,1474,2.11,1488,1.563,1491,2.457,1504,4.512,1516,2.013,1532,2.844,1535,2.208,1536,1.654,1592,1.287,1598,1.947,1632,2.198,1643,1.912,1646,1.785,1656,1.316,1658,2.321,1661,1.287,1677,1.912,1689,2.262,1702,2.109,1725,2.844,1734,2.024,1742,2.657,1769,1.947,1786,1.378,1869,1.18,1880,2.024,1886,2.321,1920,1.301,1952,1.912,1954,1.11,1955,1.785,1976,2.11,1978,2.157,2005,1.878,2039,1.912,2067,1.193,2277,1.287,2333,2.616,2364,1.301,2467,1.815,2468,1.878,2611,2.208,2690,2.624,2692,2.262,2693,2.501,2727,3.692,2796,4.973,2797,3.165,2929,1.757,2949,1.607,3008,3.061,3107,3.511,3150,3.124,3154,1.99,3159,2.085,3184,2.986,3195,6.436,3196,7.293,3214,1.543,3304,1.947,3327,2.208,3344,3.165,3353,1.785,3426,2.639,3434,1.63,3495,1.316,3508,1.878,3591,2.157,3657,1.346,3696,2.008,3699,1.654,3800,1.757,3887,2.536,3944,2.386,3963,2.208,4094,2.844,4201,2.616,4290,2.844,4314,1.984,4371,2.624,4415,1.678,4474,2.157,4545,1.678,4616,2.386,4849,4.609,5033,1.703,5034,2.536,5036,1.465,5081,4.027,5100,1.904,5122,2.891,5152,3.716,5217,2.065,5304,1.503,5305,2.597,5313,3.819,5332,2.386,5337,2.208,5397,2.262,5464,2.065,5524,1.607,5641,2.706,5982,1.678,6050,2.457,6077,2.986,6167,4.517,6342,1.73,6355,3.856,6356,2.814,6370,3.716,6377,4.898,6380,4.032,6384,2.986,6386,4.123,6393,2.726,6399,1.465,6425,1.585,6445,2.157,6449,1.912,6451,5.071,6452,3.935,6453,3.849,6498,3.849,6506,1.503,6712,2.624,6713,2.321,6736,2.321,6784,2.844,6881,3.403,6948,7.528,6949,6.263,6950,2.726,6951,3.165,6952,3.765,6953,3.765,6954,3.765,6955,2.986,6956,6.502,6957,6.785,6958,3.765,6959,3.765,6960,3.165,6961,3.835,6962,2.986,6963,3.403,6964,1.331,6965,3.403,6966,2.844,6967,3.403,6968,3.765,6969,3.97,6970,5.773,6971,3.765,6972,3.765,6973,3.765,6974,3.765,6975,2.844,6976,3.765,6977,3.765,6978,3.165,6979,3.403,6980,3.765,6981,3.403,6982,3.765,6983,2.157,6984,3.165,6985,5.148,6986,3.765,6987,3.165,6988,3.403,6989,3.403,6990,3.403,6991,3.765,6992,3.765,6993,3.403,6994,2.844,6995,3.403,6996,2.986,6997,2.986,6998,3.403,6999,2.844,7000,5.148,7001,2.986,7002,2.726,7003,3.765,7004,3.765,7005,2.844,7006,3.765,7007,3.765,7008,2.986,7009,2.457,7010,2.726,7011,2.457,7012,2.262,7013,2.844,7014,2.624,7015,2.726]],["description//tracks/90daysofdevops/day83",[]],["title//tracks/90daysofdevops/day82",[5464,2.97,6962,4.294,7016,4.893]],["content//tracks/90daysofdevops/day82",[1,1.433,4,4.865,6,0.359,7,2.102,26,1.426,30,1.478,31,1.63,38,1.224,49,1.285,54,3.287,56,1.812,58,1.51,64,1.494,65,0.822,68,0.859,70,1.542,71,1.448,74,1.492,75,1.5,96,1.086,105,1.26,107,1.26,109,1.648,110,1.691,114,1.224,120,1.635,124,0.974,136,1.786,137,0.89,147,1.745,159,2.322,173,2.175,175,0.844,212,1.648,219,2.308,220,2.907,224,1.648,225,1.419,227,1.706,230,1.982,234,0.992,245,1.202,246,1.028,264,1.648,265,1.812,288,1.181,295,1.697,297,2.438,301,3.008,343,1.169,344,1.108,354,1.248,366,2.236,369,2.166,374,2.25,375,2.561,376,2.041,377,1.858,393,1.273,408,2.041,422,0.907,423,1.448,425,1.667,432,1.985,467,1.433,476,1.882,479,0.95,488,1.542,490,1.665,507,1.51,520,2.833,526,3.176,536,1.235,542,1.494,546,2.833,548,2.271,560,1.932,593,1.447,598,2.647,600,1.571,602,3.475,612,2.166,640,1.611,648,1.835,718,1.726,756,1.542,757,3.837,774,1.611,777,2.2,778,1.248,805,2.013,840,2.2,842,4.941,843,1.958,849,1.971,856,3.251,867,1.576,901,3.199,905,0.642,907,1.465,909,1.433,917,1.225,918,0.844,925,2.218,926,1.686,930,1.985,952,3.135,989,2.438,1002,2.042,1015,3.411,1017,1.958,1019,1.747,1021,2.541,1024,1.685,1040,2.394,1046,1.726,1049,2.102,1054,1.882,1056,3.414,1069,2.833,1073,2.642,1089,1.726,1110,1.747,1151,4.602,1184,3.186,1197,2.485,1206,2.352,1224,1.835,1237,1.958,1240,1.882,1269,1.79,1309,2.041,1331,1.981,1361,2.438,1362,2.352,1363,1.768,1375,4.96,1405,1.726,1423,2.352,1430,2.236,1462,3.74,1474,3.765,1478,1.958,1504,2.587,1516,1.667,1530,2.765,1587,4.888,1610,1.747,1648,2.438,1649,2.907,1651,2.909,1652,1.79,1702,2.62,1742,2.2,1786,1.726,1858,1.79,1920,1.63,1930,1.867,1976,2.642,2006,2.311,2023,3.562,2046,3.124,2124,3.74,2145,2.907,2170,2.765,2468,2.352,2643,2.133,2647,2.236,2692,2.833,2693,2.071,2727,3.612,2796,3.414,2837,2.701,2872,4.525,2929,2.2,3008,2.535,3145,3.686,3154,1.648,3172,2.273,3179,2.166,3304,4.989,3434,2.041,3699,2.071,3887,3.176,3980,4.681,4415,2.102,4560,3.74,4765,4.525,4849,3.765,5033,2.133,5034,3.176,5036,1.835,5081,5.003,5093,2.765,5100,2.852,5122,3.295,5152,4.384,5162,3.077,5217,2.587,5305,2.709,5321,3.287,5388,3.287,5464,4.681,5487,3.963,5524,2.013,5641,2.647,5661,5.33,5706,3.176,5739,2.587,5818,4.037,5892,3.562,6342,2.166,6355,4.178,6356,1.932,6362,2.642,6370,4.384,6377,4.664,6380,3.837,6386,3.414,6425,1.985,6436,1.835,6451,2.907,6453,3.765,6498,5.253,6500,3.74,6506,1.882,6511,3.414,6834,3.963,6947,3.963,6949,6.535,6956,3.176,6957,5.108,6961,5.746,6962,8.171,6967,4.262,6975,6.445,6994,3.562,7008,3.74,7009,3.077,7010,3.414,7011,3.077,7012,2.833,7013,3.562,7014,6.875,7015,3.414,7017,4.525,7018,6.72,7019,3.74,7020,3.287,7021,6.72,7022,4.716,7023,4.716,7024,4.716,7025,5.648,7026,3.562,7027,4.716,7028,4.716,7029,4.716,7030,4.716,7031,6.72,7032,4.262,7033,3.963,7034,2.833,7035,4.716,7036,7.712,7037,3.176,7038,2.988,7039,4.716,7040,4.262]],["description//tracks/90daysofdevops/day82",[]],["title//tracks/90daysofdevops/day81",[7014,3.773,7019,4.294,7041,4.893]],["content//tracks/90daysofdevops/day81",[2,2.747,4,5.296,6,0.362,18,1.446,27,1.479,30,1.312,32,0.826,35,1.479,38,0.654,46,2.051,64,1.953,65,0.729,67,2.083,74,0.929,75,1.512,80,1.368,107,1.119,109,1.463,110,1.58,111,1.198,113,1.414,114,0.763,118,2.032,124,0.864,126,0.938,136,1.406,137,1.164,141,1.209,146,3.129,147,1.087,164,1.129,175,0.927,176,0.849,190,1.817,191,0.972,196,2.727,206,1.108,217,1.299,219,1.234,221,1.586,224,1.463,225,1.259,227,1.514,229,1.715,230,1.432,235,1.285,246,0.912,265,1.608,272,1.786,288,1.286,289,1.825,295,1.057,301,1.608,304,2.125,305,1.923,311,3.129,333,1.399,336,2.164,340,2.249,343,1.037,344,1.122,352,2.367,356,0.544,374,0.955,381,1.67,389,2.58,408,2.668,425,2.179,431,1.354,435,2.164,461,1.479,472,1.649,479,0.592,480,4.656,487,2.017,488,1.369,518,1.326,546,2.515,555,1.628,575,1.762,593,1.241,600,1.406,626,1.272,655,1.463,660,3.03,713,2.515,718,2.256,755,1.865,756,1.369,758,0.921,767,2.454,778,2.137,781,2.831,783,2.818,787,1.738,800,1.923,805,1.786,828,2.087,840,1.953,842,4.742,849,1.296,856,3.351,867,1.399,880,4.021,882,2.164,903,1.588,907,0.912,915,1.738,918,1.309,926,1.497,935,1.486,989,2.164,993,1.55,995,3.021,996,1.984,1002,2.223,1005,1.838,1012,2.087,1024,0.826,1054,1.67,1059,2.087,1069,2.515,1080,2.818,1138,1.087,1151,4.014,1184,2.922,1206,3.648,1208,1.285,1271,2.283,1284,2.256,1288,2.164,1330,2.398,1332,6.783,1341,3.262,1375,3.905,1428,2.731,1437,2.249,1443,2.345,1447,2.106,1451,3.381,1493,3.03,1516,1.479,1528,1.838,1529,2.249,1530,2.454,1585,1.812,1593,4.656,1597,1.953,1621,2.818,1626,1.312,1631,3.453,1632,1.647,1672,4.522,1677,3.129,1680,2.339,1694,1.865,1701,3.187,1702,1.285,1708,2.731,1718,3.162,1720,2.58,1742,1.953,1811,3.531,1887,2.296,1920,1.446,1925,3.162,1954,2.157,1974,2.731,1976,2.345,1995,2.917,2046,1.67,2143,3.03,2146,2.206,2158,2.454,2159,2.917,2284,2.515,2287,2.58,2468,2.087,2587,4.253,2690,2.917,2727,2.249,2796,3.03,2820,2.831,2821,3.32,2856,2.249,2902,4.395,2955,3.783,2981,3.32,2985,3.905,3154,1.463,3156,2.917,3174,1.43,3272,2.345,3305,2.125,3358,3.03,3404,2.818,3426,1.608,3434,1.812,3437,2.917,3516,2.58,3546,2.454,3696,1.098,3803,1.588,3811,1.984,3831,3.162,3889,3.162,3980,4.719,4023,3.03,4088,2.58,4136,2.454,4236,3.03,4271,1.838,4417,3.03,4759,3.783,4782,2.454,4802,2.125,5024,2.296,5033,1.893,5034,2.818,5036,1.628,5081,4.289,5093,2.454,5100,3.11,5122,3.079,5152,4.021,5166,5.18,5217,3.381,5304,2.46,5305,2.6,5308,4.021,5309,2.345,5324,1.953,5464,2.296,5548,2.515,5561,2.818,5641,2.882,5692,3.32,5765,3.783,5766,2.818,6312,8.101,6342,1.923,6343,3.518,6355,2.747,6365,2.818,6368,2.917,6377,3.783,6425,1.762,6452,3.531,6453,2.345,6491,4.51,6498,4.82,6501,3.32,6535,3.03,6592,2.818,6640,3.03,6673,3.783,6684,2.125,6713,2.58,6838,3.03,6891,3.518,6901,3.518,6936,2.515,6957,4.773,6961,2.818,6964,1.479,6975,5.526,6987,5.18,7005,3.162,7008,3.32,7009,2.731,7010,3.03,7011,2.731,7012,2.515,7013,3.162,7014,7.475,7015,3.03,7019,6.401,7026,3.162,7037,5.793,7038,2.652,7042,6.163,7043,3.518,7044,6.163,7045,3.162,7046,4.185,7047,3.518,7048,6.163,7049,4.656,7050,4.185,7051,2.917,7052,3.162,7053,4.185,7054,3.518,7055,3.32,7056,4.185,7057,3.518,7058,3.162,7059,3.783,7060,2.652,7061,3.783,7062,4.185,7063,10.767,7064,2.58,7065,3.783,7066,3.518,7067,4.185,7068,3.518,7069,4.185,7070,4.462,7071,5.18,7072,3.162,7073,4.185,7074,4.185,7075,4.185,7076,4.185,7077,4.185,7078,4.185,7079,4.185,7080,6.163,7081,6.163,7082,4.185,7083,4.185,7084,4.185,7085,4.185,7086,4.185,7087,4.185,7088,4.185,7089,3.783,7090,4.185,7091,6.163,7092,4.185,7093,4.185,7094,4.185,7095,3.783,7096,3.162,7097,4.185,7098,4.185,7099,4.185,7100,4.185,7101,3.32,7102,4.185,7103,4.185,7104,4.185,7105,4.185,7106,4.975,7107,4.185,7108,4.185,7109,4.185,7110,6.612,7111,4.185,7112,4.185,7113,4.185,7114,4.185,7115,5.18,7116,6.163,7117,6.163,7118,4.185,7119,4.185,7120,4.185]],["description//tracks/90daysofdevops/day81",[]],["title//tracks/90daysofdevops/day80",[2162,3.43,5464,2.97,6961,3.646]],["content//tracks/90daysofdevops/day80",[1,1.577,2,2.313,6,0.348,26,0.79,30,1.627,32,1.025,38,1.124,56,2.761,70,1.697,71,1.594,72,2.847,75,0.912,96,1.195,110,1.553,118,1.442,141,1.5,173,1.832,175,0.889,190,2.431,196,1.754,203,1.679,206,1.374,216,1.274,217,1.61,224,2.882,246,1.131,264,1.814,268,1.561,289,1.101,295,1.31,297,2.684,300,1.9,301,1.994,308,6.496,337,1.735,342,2.184,344,1.158,356,1.071,359,1.969,361,2.789,366,2.461,369,2.384,374,1.881,381,2.071,397,1.832,408,2.247,414,2.684,421,2.247,422,0.998,424,2.735,429,2.973,442,2.501,461,1.834,470,1.773,471,2.279,487,2.501,488,2.351,490,1.781,536,0.954,546,3.118,550,2.019,578,3.92,582,3.118,585,3.386,595,1.946,598,2.045,600,1.252,608,3.617,628,1.53,632,3.617,635,1.716,643,4.69,647,2.247,648,2.796,655,2.512,670,2.973,741,2.045,757,2.544,758,1.958,778,1.903,779,2.832,781,2.384,840,2.421,842,5.095,856,2.984,882,2.684,903,1.969,907,1.131,915,2.155,916,3.757,918,1.286,930,3.025,934,2.588,939,1.814,989,2.684,1002,2.184,1007,2.384,1021,1.546,1024,1.628,1037,2.588,1040,2.635,1046,2.631,1049,2.313,1056,3.757,1059,2.588,1103,2.098,1121,3.118,1151,4.361,1184,3.408,1197,2.735,1206,2.588,1234,1.814,1246,3.649,1269,2.728,1271,1.922,1284,1.9,1309,2.247,1330,2.973,1331,1.53,1361,2.684,1487,2.588,1504,3.943,1516,1.834,1610,1.922,1632,1.387,1649,3.2,1651,2.247,1658,4.431,1674,2.635,1702,1.594,1704,2.215,1766,4.362,1792,2.045,1833,3.757,1869,2.253,1904,2.421,1920,1.793,1925,3.92,1930,1.442,1952,3.649,1954,1.53,1976,2.908,1995,3.617,2004,2.184,2005,2.588,2067,2.277,2221,3.288,2284,3.118,2468,2.588,2619,3.617,2629,2.588,2949,2.215,3008,2.789,3174,2.456,3196,6.723,3304,4.833,3397,3.118,3426,1.994,3434,2.247,3699,3.156,3891,2.544,3893,4.116,3896,4.691,3944,3.288,3980,5.127,4109,3.495,4201,2.384,4272,2.501,4303,3.118,4415,3.203,4727,4.691,5024,2.847,5033,2.348,5034,3.495,5036,2.019,5043,2.588,5081,5.48,5083,3.617,5093,5.812,5122,3.471,5152,4.69,5174,5.701,5217,2.847,5304,2.071,5305,2.794,5313,3.584,5464,5.805,5542,2.635,5618,3.043,5641,2.832,5982,2.313,6167,5.701,6263,2.735,6342,2.384,6350,2.247,6362,2.908,6386,3.757,6451,4.431,6761,2.461,6839,4.691,6936,3.118,6948,5.203,6949,6.514,6956,3.495,6957,6.309,6961,7.065,6964,3.146,7008,4.116,7009,3.386,7010,3.757,7011,3.386,7012,3.118,7013,3.92,7014,3.617,7015,3.757,7017,5.994,7059,4.691,7121,4.691,7122,5.19,7123,4.116,7124,5.19,7125,4.691,7126,3.288,7127,3.118,7128,5.19,7129,3.92,7130,4.116,7131,4.362,7132,4.691,7133,5.19,7134,5.19,7135,3.617,7136,4.834,7137,5.19,7138,4.362,7139,4.691,7140,4.362,7141,4.691,7142,3.118,7143,4.691,7144,5.19,7145,5.19]],["description//tracks/90daysofdevops/day80",[]],["title//tracks/90daysofdevops/day79",[1151,2.526,5122,2.279,7146,4.893]],["content//tracks/90daysofdevops/day79",[6,0.163,7,1.957,8,3.455,14,1.321,18,2.599,30,1.377,37,2.639,38,0.687,49,1.197,56,2.89,64,1.391,65,1.31,71,1.961,74,1.67,75,1.785,89,1.987,96,1.47,102,1.935,107,1.174,110,0.949,111,1.827,118,1.22,126,1.685,136,1.456,141,1.269,143,2.315,155,2.708,166,5.064,175,0.473,190,1.882,192,2.19,193,3.18,206,1.69,208,4.733,216,1.078,217,1.363,218,2.516,220,2.708,221,1.643,224,2.231,225,1.921,226,1.849,227,3.173,230,1.483,234,1.845,240,1.589,245,2.105,264,1.535,336,4.27,343,1.089,344,0.794,351,1.74,355,1.421,356,1.139,362,1.69,366,2.082,374,1.002,375,1.437,383,1.981,393,1.723,397,1.627,408,1.901,421,3.256,422,1.759,423,1.349,425,2.257,427,3.37,431,2.839,433,2.271,437,3.813,461,2.257,462,1.141,467,1.335,472,1.73,473,2.017,478,1.929,479,0.621,480,3.318,487,3.077,490,1.864,518,1.391,519,1.824,535,1.582,536,1.174,542,1.391,546,2.639,555,2.484,558,2.461,568,2.639,585,2.866,592,3.658,593,1.083,600,0.765,606,1.589,620,2.783,628,3.026,639,2.315,709,2.516,742,1.991,751,3.97,778,1.163,805,1.875,840,2.049,842,4.978,848,2.271,849,0.924,855,2.783,867,1.468,915,1.824,917,2.514,918,1.143,938,1.174,939,1.535,989,2.271,1002,1.335,1017,1.824,1018,1.452,1019,2.786,1021,1.308,1024,1.485,1038,2.575,1053,1.468,1069,2.639,1088,1.03,1089,3.35,1138,1.954,1151,4.093,1181,2.933,1184,3.027,1197,2.315,1205,1.468,1231,3.18,1237,3.8,1282,2.315,1307,2.958,1311,3.658,1331,2.218,1332,3.691,1375,5.232,1423,2.19,1435,3.027,1459,3.691,1474,2.461,1497,2.958,1504,2.409,1529,2.361,1587,3.658,1592,2.182,1610,1.627,1632,1.174,1651,1.901,1658,2.708,1661,2.822,1678,2.117,1680,2.855,1693,2.866,1702,1.349,1765,2.575,1774,2.461,1786,2.337,1792,2.515,1794,3.318,1869,2.002,1905,2.708,1920,1.518,1930,1.22,1948,5.445,1976,2.461,1979,1.875,2046,1.753,2054,2.461,2245,2.516,2468,2.19,2580,3.97,2600,2.783,2723,2.639,2797,6.322,3013,2.361,3154,1.535,3159,2.337,3189,3.431,3304,3.301,3305,2.23,3394,2.687,3397,3.836,3511,1.776,3585,3.318,3666,2.271,3670,2.958,3696,1.674,3700,1.824,3879,2.409,3891,3.129,3921,3.484,3980,6.011,4071,2.866,4229,2.153,4424,1.901,4463,2.708,4475,4.627,4497,2.764,4621,3.97,4782,2.575,4802,2.23,4806,3.484,4849,2.461,4955,3.484,5008,1.901,5033,1.987,5034,2.958,5036,2.484,5081,5.784,5086,5.77,5122,3.166,5152,2.866,5217,2.409,5305,2.796,5309,3.577,5464,2.409,5485,3.691,5618,2.575,5641,1.73,5780,3.691,5982,1.957,5984,3.061,6342,2.017,6362,3.577,6365,2.958,6367,3.691,6444,2.271,6451,2.708,6457,3.318,6466,2.639,6640,3.18,6687,3.318,6691,5.366,6709,2.958,6725,3.691,6741,3.061,6798,3.18,6851,3.97,6886,4.823,6919,4.215,6949,7.076,6957,4.166,6961,6.36,7005,4.823,7009,2.866,7010,3.18,7011,2.866,7012,2.639,7013,3.318,7014,4.45,7015,3.18,7017,6.837,7038,2.783,7147,3.484,7148,4.392,7149,3.936,7150,9.152,7151,3.318,7152,3.97,7153,4.392,7154,4.392,7155,4.392,7156,6.384,7157,3.691,7158,5.366,7159,4.392,7160,4.392,7161,2.153,7162,3.97,7163,3.18,7164,4.392,7165,4.392,7166,3.97,7167,3.484,7168,7.522,7169,3.97,7170,4.392,7171,3.318,7172,3.691,7173,3.691,7174,3.97,7175,2.958,7176,3.97,7177,4.392,7178,4.392,7179,4.392,7180,4.392,7181,4.392,7182,1.929,7183,3.061]],["description//tracks/90daysofdevops/day79",[]],["title//tracks/90daysofdevops/day78",[842,2.519,1184,2.266,5227,3.611,7184,4.32]],["content//tracks/90daysofdevops/day78",[6,0.306,26,1.089,30,1.618,35,1.825,38,0.807,44,1.602,49,1.407,52,2.267,53,2.474,64,1.635,67,1.744,68,0.94,74,1.146,77,2.234,80,1.146,96,1.188,109,1.804,113,1.744,118,1.434,136,1.178,137,1.352,139,1.244,146,3.635,158,2.751,159,1.784,164,1.932,175,1.04,176,1.047,190,2.424,197,1.688,203,2.317,204,1.764,206,1.896,216,1.758,217,1.602,219,2.111,227,3.374,235,1.585,238,2.488,245,1.316,261,1.983,265,1.983,268,1.553,272,2.203,288,0.907,289,1.095,301,1.983,307,2.087,331,1.67,337,2.393,344,0.985,351,1.951,352,1.67,354,1.367,356,0.93,374,1.876,375,1.688,383,1.602,397,1.316,421,2.234,422,0.992,425,1.825,431,1.67,444,3.182,464,1.846,487,2.488,488,2.904,489,2.447,490,1.279,519,2.143,530,2.371,535,1.279,536,1.316,554,2.669,556,2.605,575,2.173,593,0.875,598,2.821,600,1.547,602,3.703,604,2.774,647,2.234,675,1.522,722,2.831,757,2.53,758,1.575,774,1.764,779,2.034,805,2.203,842,5.087,849,1.506,867,1.725,907,1.125,909,2.176,915,2.143,917,1.341,918,1.281,926,1.846,989,2.669,993,1.912,1021,1.537,1028,2.957,1030,3.182,1054,2.858,1055,1.522,1057,2.447,1076,2.3,1138,1.341,1184,3.395,1187,2.447,1190,3.271,1197,2.72,1205,1.725,1229,2.957,1232,2.957,1271,1.912,1295,2.774,1303,3.026,1308,1.341,1309,2.234,1331,2.424,1341,1.764,1435,2.447,1470,1.825,1482,1.959,1585,2.234,1587,2.957,1598,2.669,1599,2.447,1618,2.447,1619,2.3,1622,2.957,1630,2.621,1632,2.198,1639,1.569,1643,3.635,1649,3.182,1674,2.621,1681,3.271,1701,2.669,1702,2.964,1742,3.341,1764,3.368,1792,2.034,1858,1.959,1890,2.335,1904,2.408,1920,1.784,1930,1.989,1965,4.338,1976,2.892,1987,1.959,1988,2.669,2171,3.368,2213,2.892,2251,2.831,2264,3.182,2277,1.764,2364,1.784,2468,2.574,2611,3.026,2629,2.574,2703,3.271,2716,3.182,2721,3.598,2727,2.774,2902,3.101,3154,1.804,3196,5.409,3305,2.621,3426,1.983,3511,2.087,3636,3.368,3696,1.354,3811,2.447,3946,3.182,3980,2.831,3984,3.51,4095,4.094,4201,2.371,4271,2.267,4272,2.488,4285,2.774,4439,3.182,4484,3.737,4616,3.271,4782,3.026,4827,3.271,4849,5.227,5036,2.008,5100,3.226,5152,3.368,5180,3.476,5305,2.566,5337,3.026,5641,2.821,6342,2.371,6355,3.191,6356,2.115,6377,2.669,6380,4.03,6445,4.71,6452,4.102,6453,2.892,6466,3.101,6472,3.598,6480,2.203,6491,5.951,6498,2.892,6535,3.737,6626,3.737,6633,4.672,6664,3.899,6684,3.635,6712,3.598,6736,3.182,6750,3.368,6838,3.737,6913,3.598,6948,3.737,6956,6.9,6957,7.271,6960,4.338,6964,2.531,6969,4.991,6970,6.018,6988,4.665,6996,4.094,7000,6.472,7001,4.094,7009,3.368,7010,6.428,7011,3.368,7012,3.101,7064,3.182,7068,4.338,7149,3.182,7185,4.665,7186,5.162,7187,7.161,7188,5.162,7189,7.161,7190,5.162,7191,5.162,7192,5.162,7193,5.162,7194,5.162,7195,5.162,7196,3.598,7197,4.665,7198,5.162,7199,5.162,7200,5.162,7201,5.162,7202,5.162,7203,5.162,7204,5.162,7205,5.162,7206,5.162]],["description//tracks/90daysofdevops/day78",[]],["title//tracks/90daysofdevops/day77",[4849,3.497,7207,5.641]],["content//tracks/90daysofdevops/day77",[15,2.732,18,1.862,25,3.747,26,1.551,29,1.927,30,1.689,38,0.842,42,2.955,49,1.468,54,3.755,64,1.707,65,0.939,68,0.982,71,2.265,72,2.955,74,1.867,75,1.59,91,3.863,105,1.971,110,1.817,118,2.512,136,1.918,137,1.017,141,1.557,175,0.795,190,3.235,191,1.252,192,2.687,202,1.497,204,1.841,206,1.426,216,1.323,217,2.288,221,1.386,224,2.577,225,1.621,226,2.268,227,3.042,229,2.207,238,2.597,246,1.174,264,2.939,272,2.3,288,1.478,333,1.801,344,0.888,352,1.743,355,1.743,356,1.174,374,2.231,383,2.288,397,1.373,422,1.036,423,1.654,425,1.904,427,2.07,431,2.721,461,2.972,462,1.4,464,1.927,476,2.15,479,0.761,527,3.086,535,2.482,536,1.356,537,4.273,548,2.492,558,3.019,595,2.02,600,1.745,602,4.348,628,1.588,632,3.755,637,2.207,639,2.839,640,2.52,716,2.514,721,3.515,758,1.185,774,2.52,778,1.426,817,1.689,842,5.154,905,1.004,907,1.174,910,1.654,915,2.237,918,1.618,935,1.299,989,2.786,1002,1.638,1017,2.237,1018,1.781,1021,2.196,1049,2.401,1055,1.588,1088,1.729,1108,3.159,1138,1.4,1184,3.497,1192,4.07,1234,1.883,1266,2.02,1269,2.045,1284,1.972,1287,3.441,1288,3.814,1529,2.896,1592,1.841,1597,2.514,1632,2.614,1672,3.019,1680,2.045,1689,3.237,1742,2.514,1750,3.441,1776,3.414,1777,2.735,1780,3.237,1869,2.312,1904,2.514,1912,3.021,1914,3.515,1920,1.862,1930,2.336,1976,3.019,1989,4.07,1993,3.322,2024,3.237,2046,2.15,2079,3.755,2159,3.755,2170,3.159,2470,2.641,2611,3.159,2646,4.07,3159,2.7,3172,2.597,3187,2.641,3214,2.207,3353,2.554,3516,3.322,3587,3.515,3666,2.786,3803,2.045,3879,2.955,3884,3.755,3891,2.641,4019,3.628,4039,2.437,4155,3.322,4272,2.597,4290,4.07,4317,4.528,4424,2.332,4463,3.322,4497,4.234,4616,3.414,4802,2.735,4849,6.168,4972,4.528,5100,1.801,5152,3.515,5305,2.613,5314,3.515,5332,4.673,5386,3.755,5894,3.755,6342,2.475,6362,3.019,6442,3.159,6516,4.673,6525,3.9,6736,4.547,6741,3.755,6771,4.87,6908,3.159,6957,4.812,6960,8.22,6996,4.273,7009,3.515,7055,4.273,7058,4.07,7161,2.641,7208,5.388,7209,5.388,7210,4.273,7211,5.388,7212,4.87,7213,4.87,7214,5.388,7215,5.388,7216,3.515,7217,3.322,7218,4.87,7219,4.87,7220,5.388,7221,5.861,7222,5.388,7223,4.87,7224,5.388,7225,4.87,7226,4.528,7227,5.388,7228,5.388,7229,5.388,7230,2.896,7231,5.339,7232,3.9]],["description//tracks/90daysofdevops/day77",[]],["title//tracks/90daysofdevops/day76",[1478,2.248,7233,4.893,7234,3.532]],["content//tracks/90daysofdevops/day76",[6,0.355,7,2.448,26,1.137,38,1.168,53,1.898,57,1.669,64,1.74,68,1.547,73,2.573,74,1.659,75,1.769,105,2.27,124,1.134,126,1.674,136,1.253,154,3.22,175,0.915,197,2.444,202,1.526,203,1.777,207,2.692,215,2.739,219,1.619,230,1.276,235,1.687,238,3.602,245,1.4,265,2.11,288,1.493,293,2.604,307,2.221,333,1.836,337,1.836,343,1.361,344,0.58,351,1.497,356,1.184,362,1.454,374,1.937,375,1.797,377,2.164,393,1.482,408,2.378,419,3.22,422,1.056,423,1.687,427,3.263,431,1.777,462,1.427,467,1.669,479,1.056,485,3.013,489,2.604,517,2.692,536,1.01,541,2.895,548,1.856,550,2.137,593,1.546,595,2.059,600,0.957,628,1.619,640,2.554,645,2.952,655,1.92,698,3.976,742,1.454,756,1.797,757,2.692,774,1.877,779,2.164,787,2.281,849,1.786,857,2.563,901,3.575,907,1.629,909,1.669,915,2.281,917,1.941,918,0.983,925,2.406,935,1.324,991,1.556,995,2.692,1012,2.739,1018,2.471,1024,1.677,1040,2.788,1054,2.192,1055,1.619,1066,2.035,1088,1.288,1110,2.035,1187,2.604,1205,1.836,1206,2.739,1237,2.281,1282,2.895,1314,3.828,1405,2.01,1437,2.952,1477,3.584,1478,2.281,1480,2.647,1488,2.281,1489,2.907,1591,3.013,1592,1.877,1625,5.382,1632,1.468,1639,1.669,1702,3.021,1713,4.356,1725,4.149,1742,2.563,1770,3.48,1955,2.604,1978,3.146,1979,2.344,1990,4.356,2004,2.312,2054,3.078,2213,3.078,2258,2.604,2382,2.084,2629,2.739,2662,2.25,2693,2.412,2712,4.149,2727,2.952,2929,3.487,2976,2.554,3107,4.607,3154,2.612,3174,2.554,3179,2.523,3349,3.976,3353,2.604,3394,2.312,3511,2.221,3516,3.386,3619,3.013,3696,1.96,3697,3.828,4136,3.22,4222,4.356,4423,3.22,4459,3.282,4616,3.48,4830,4.381,4845,4.964,4989,2.604,5026,2.647,5028,2.739,5100,2.498,5143,4.381,5182,2.523,5313,2.739,5319,4.356,5377,4.099,5397,4.49,5407,3.386,5585,4.149,5641,2.164,5670,4.149,5707,3.3,5739,3.013,5772,4.616,5982,2.448,6350,2.378,6355,2.448,6363,7.138,6364,6.737,6377,5.087,6379,4.356,6380,3.663,6400,2.563,6428,2.84,6436,2.137,6445,3.146,6449,2.788,6452,3.146,6453,3.078,6464,4.149,6465,3.22,6491,3.386,6498,3.078,6506,2.192,6647,3.828,6684,2.788,6703,3.828,6712,3.828,6742,3.976,6898,1.92,6908,4.381,6927,3.976,6950,3.976,7051,3.828,7126,3.48,7234,7.123,7235,5.492,7236,5.032,7237,7.473,7238,2.739,7239,5.492,7240,5.492,7241,4.356,7242,5.492,7243,4.356,7244,5.492,7245,4.964,7246,5.492,7247,5.492,7248,3.3,7249,5.492,7250,5.492,7251,3.976,7252,5.492,7253,5.492,7254,4.964,7255,5.492,7256,5.492,7257,4.964,7258,4.616,7259,4.616,7260,5.492,7261,3.699,7262,5.032,7263,4.616,7264,6.754,7265,3.3,7266,5.492,7267,4.759,7268,3.828,7269,3.078]],["description//tracks/90daysofdevops/day76",[]],["title//tracks/90daysofdevops/day75",[1478,1.985,1489,1.86,5377,2.622,5756,4.018]],["content//tracks/90daysofdevops/day75",[1,1.176,6,0.367,15,1.433,31,1.337,32,1.379,44,1.803,46,1.896,56,2.233,57,1.176,58,2.799,64,1.841,65,1.762,68,1.272,73,1.044,74,1.29,75,1.227,77,2.516,80,1.29,83,1.45,89,1.75,94,2.268,105,1.554,107,2.075,110,0.836,120,0.941,122,2.451,124,1.2,126,0.867,137,1.098,139,0.932,144,3.181,147,1.005,154,2.268,161,1.213,172,1.724,173,0.986,175,1.028,176,0.785,190,1.14,191,0.899,206,1.024,207,2.849,208,3.006,217,1.803,219,2.059,221,0.995,225,1.164,230,2.167,232,2.524,234,1.468,259,2.586,261,1.486,263,1.564,268,2.101,288,1.227,289,1.855,295,1.96,301,1.486,307,1.564,331,1.252,342,1.628,343,1.441,344,0.408,351,1.584,356,0.755,362,2.203,366,4.144,369,2.67,374,2.281,375,1.265,383,1.2,389,2.385,397,1.78,421,1.675,423,1.188,429,2.216,461,1.367,462,1.51,470,1.322,471,3.066,479,1.097,490,0.959,507,1.239,536,1.427,542,1.226,550,1.505,595,1.45,600,1.353,603,3.583,604,2.079,626,2.756,638,1.777,640,1.322,647,1.675,648,1.505,742,1.024,758,1.708,765,2.922,766,2.385,769,2.922,817,1.213,819,2.039,843,1.606,848,2,857,1.805,867,1.293,905,1.235,907,1.522,910,1.188,914,2.216,917,1.005,918,1.04,925,2.704,926,2.078,930,2.447,932,3.258,935,0.932,952,1.805,990,2.8,991,3.088,992,2.605,993,1.433,995,1.896,996,1.834,1002,1.767,1015,2.951,1018,1.279,1021,1.731,1023,5.123,1024,1.842,1034,2.216,1036,1.279,1049,1.724,1053,1.943,1088,2.561,1136,3.068,1181,1.777,1187,2.756,1208,2.144,1224,2.261,1227,2.696,1237,3.224,1241,2.8,1242,2.039,1255,2.179,1266,2.618,1268,2.079,1282,2.039,1300,1.651,1308,1.005,1315,3.619,1331,1.14,1341,2.844,1365,2.629,1424,1.416,1435,2.756,1437,2.079,1478,1.606,1482,2.65,1489,4.109,1516,2.744,1524,3.408,1526,1.834,1535,2.268,1550,2.605,1585,1.675,1592,1.322,1597,2.712,1630,1.964,1639,1.176,1651,1.675,1669,1.651,1700,2.324,1701,2,1702,2.144,1745,1.505,1747,1.964,1768,2.385,1769,2,1770,2.451,1786,1.416,1869,2.189,1884,2.605,1904,1.805,1912,1.585,1954,1.14,1985,2.524,1993,2.385,1995,2.696,2039,1.964,2046,2.32,2055,2.079,2067,1.841,2069,2.216,2258,2.756,2299,2.079,2382,2.206,2448,7.569,2643,1.75,2647,1.834,2976,1.986,3147,2.122,3159,1.416,3172,1.864,3174,3.489,3187,1.896,3306,2.451,3353,1.834,3426,2.233,3516,2.385,3617,3.063,3655,2.079,3657,1.383,3658,3.31,3696,1.014,3700,1.606,3803,1.468,4155,2.385,4272,1.864,4417,2.8,4432,2.451,4568,2.451,4791,2.8,4921,4.391,5022,3.914,5026,1.864,5028,1.929,5143,2.268,5182,1.777,5291,2.8,5304,2.32,5324,1.805,5377,5.729,5397,2.324,5407,2.385,5482,2.268,5542,1.964,5596,2.696,5693,2.922,6027,1.834,6350,1.675,6353,2.8,6366,3.258,6371,2.922,6399,2.261,6400,2.712,6436,1.505,6449,1.964,6466,2.324,6470,2.451,6473,2.8,6480,3.552,6506,1.544,6511,2.8,6516,2.451,6522,2.605,6525,2.8,6551,2.922,6558,2.122,6626,4.208,6684,3.941,6775,2.605,6781,2.167,6898,1.352,6936,2.324,6997,3.068,7064,2.385,7161,1.896,7196,2.696,7216,2.524,7218,3.496,7234,4.556,7241,3.068,7267,4.35,7268,2.696,7269,3.912,7270,3.496,7271,3.251,7272,3.868,7273,3.868,7274,5.812,7275,5.812,7276,3.068,7277,3.251,7278,3.868,7279,3.496,7280,6.311,7281,3.068,7282,6.311,7283,3.868,7284,5.253,7285,3.496,7286,3.496,7287,3.068,7288,3.868,7289,3.496,7290,3.868,7291,7.763,7292,9.721,7293,5.253,7294,3.068,7295,3.868,7296,3.868,7297,6.982,7298,5.812,7299,5.812,7300,3.868,7301,3.868,7302,3.868,7303,3.868,7304,3.868,7305,3.868,7306,3.868,7307,2.696,7308,3.251,7309,3.868,7310,3.868,7311,3.868,7312,3.868,7313,5.812,7314,3.868,7315,3.251,7316,3.868,7317,3.868,7318,3.868,7319,2.524,7320,3.868,7321,3.068,7322,3.496,7323,3.868,7324,3.868,7325,2.8,7326,3.868,7327,3.496]],["description//tracks/90daysofdevops/day75",[]],["title//tracks/90daysofdevops/day74",[1386,1.752,2098,1.807,2099,1.899,7265,2.327,7328,3.501,7329,2.926]],["content//tracks/90daysofdevops/day74",[26,1.125,31,3.131,32,1.461,38,1.157,44,1.679,49,1.475,57,1.645,64,1.715,65,1.289,68,1.536,72,2.969,73,2.445,75,0.951,80,1.201,105,2.618,109,1.891,110,1.169,111,1.549,114,1.348,120,2.05,124,1.118,126,1.212,137,1.397,139,1.783,159,2.556,173,2.148,175,1.055,183,2.16,215,2.699,216,1.329,219,1.596,225,1.628,226,2.278,234,1.138,235,2.272,245,1.38,251,2.653,268,2.226,288,0.951,289,1.57,295,1.367,343,1.833,344,0.89,351,1.475,356,1.095,369,3.398,374,2.389,375,1.77,431,1.751,435,2.799,467,2.562,468,2.247,472,2.132,479,1.046,487,2.608,490,1.341,536,1.549,550,2.105,560,2.217,593,0.918,595,2.773,600,1.289,605,3.772,626,1.645,675,2.671,756,1.77,779,2.132,845,3.114,849,1.138,856,3.072,907,1.837,909,1.645,918,1.324,925,2.096,926,1.935,930,2.278,935,1.304,952,3.452,995,2.653,998,2.412,1007,2.486,1023,2.852,1030,3.337,1042,5.064,1055,2.485,1059,2.699,1088,1.269,1198,2.653,1208,1.662,1211,2.969,1224,2.105,1242,2.852,1271,2.005,1300,3.157,1330,3.1,1331,2.181,1370,4.293,1386,2.448,1410,4.238,1430,2.566,1441,3.531,1470,2.615,1474,3.032,1489,4.027,1493,3.918,1499,3.772,1504,2.969,1516,2.615,1599,2.566,1614,4.891,1639,1.645,1660,4.088,1702,2.272,1747,1.829,1786,1.981,1858,2.054,1886,3.337,1916,3.173,1952,2.748,1955,2.566,2035,2.969,2039,4.816,2098,2.525,2099,2.653,2240,3.337,2245,3.1,2258,2.566,2470,3.626,2711,4.549,2723,3.252,2825,4.891,2976,2.528,3172,2.608,3174,3.707,3187,2.653,3394,2.278,3511,2.991,3696,1.419,3800,2.525,4415,2.412,4449,2.909,4545,2.412,5006,4.088,5026,3.566,5028,3.689,5100,2.473,5182,4.162,5300,4.062,5304,2.952,5309,4.145,5368,4.891,5377,4.058,5407,3.337,5524,3.157,5542,2.748,5707,3.252,5741,4.293,5984,3.772,6355,3.297,6362,3.032,6380,2.653,6425,2.278,6451,3.337,6470,3.429,6476,3.337,6506,2.16,6509,3.918,6647,3.772,6651,3.337,6700,3.429,6735,4.549,6802,2.969,6898,1.891,6936,5.443,6964,2.979,7161,2.653,7234,4.827,7265,5.884,7267,5.801,7268,3.772,7269,3.032,7329,6.844,7330,4.088,7331,6.367,7332,6.988,7333,5.412,7334,3.1,7335,4.549,7336,5.412,7337,4.891,7338,4.293,7339,7.398,7340,5.412,7341,4.891,7342,4.891,7343,5.412,7344,5.412,7345,5.412,7346,5.412,7347,5.412,7348,5.412,7349,3.918,7350,5.412,7351,4.293,7352,5.412]],["description//tracks/90daysofdevops/day74",[]],["title//tracks/90daysofdevops/day73",[4164,3.332,6936,2.872,7267,2.678,7353,4.32]],["content//tracks/90daysofdevops/day73",[6,0.423,26,0.654,31,3.243,32,0.849,58,1.377,68,1.146,74,1.65,75,0.756,107,1.681,118,1.195,124,1.535,136,0.981,139,1.516,141,1.817,144,2.576,159,1.486,173,1.096,175,0.979,176,1.659,190,1.268,191,0.999,219,1.268,230,0.999,234,0.904,235,1.931,236,5.285,242,2.897,243,4.75,245,1.603,251,2.108,256,2.807,262,2.726,263,1.739,268,1.294,271,2.41,288,0.756,295,1.086,300,2.302,333,1.438,344,1.016,351,1.172,354,1.139,356,1.062,359,1.632,374,2.306,378,2.722,383,1.951,393,1.161,423,1.321,462,1.117,479,1.05,482,2.007,490,1.066,507,1.377,520,2.584,534,3.114,536,0.791,550,1.673,593,1.066,595,3.261,598,1.695,600,0.749,603,2.652,626,1.307,638,1.976,639,3.314,640,1.47,647,1.862,648,1.673,650,4.235,675,1.268,745,1.892,758,1.914,774,1.47,817,2.33,828,2.145,838,3.888,844,2.224,845,2.647,848,2.224,849,0.904,859,1.836,903,1.632,907,1.62,918,1.125,932,2.934,935,1.516,939,1.503,952,2.007,998,2.802,1002,1.307,1007,3.414,1015,2.184,1019,2.329,1021,1.873,1023,2.267,1024,1.468,1026,4.059,1030,2.652,1036,1.422,1049,1.917,1053,1.438,1079,1.632,1088,1.743,1191,2.584,1211,2.36,1254,2.224,1266,1.613,1268,2.312,1271,1.593,1303,2.522,1331,1.268,1336,4.193,1341,3.105,1362,2.145,1405,1.575,1410,2.464,1424,1.575,1426,2.108,1430,4.124,1447,1.47,1450,3.687,1488,1.786,1489,3.743,1504,2.36,1516,2.223,1555,2.584,1592,1.47,1649,2.652,1660,3.249,1661,1.47,1674,2.184,1688,2.184,1724,2.184,1767,2.807,1768,3.877,1769,2.224,2001,2.36,2035,3.449,2037,3.249,2039,4.151,2069,2.464,2125,2.522,2131,2.41,2240,2.652,2264,2.652,2331,5.919,2470,2.108,2622,6.485,2714,3.114,2731,2.41,2937,2.726,2976,2.149,3154,1.503,3174,2.794,3221,2.897,3277,3.615,3306,2.726,3404,2.897,3426,2.416,3433,3.615,3434,3.217,3511,2.542,3546,2.522,3617,2.267,3658,2.981,3836,3.615,3944,2.726,3948,2.522,4088,2.652,4164,2.998,4295,2.41,4415,1.917,4545,1.917,4765,2.897,5026,3.031,5028,3.136,5097,3.615,5100,3.037,5122,2.647,5143,4.794,5182,2.889,5300,4.807,5313,2.145,5351,3.412,5377,3.449,5394,3.888,5407,2.652,5548,2.584,5618,2.522,5641,2.478,5818,3.778,5956,3.114,6229,3.615,6355,3.644,6377,2.224,6380,3.643,6425,1.811,6445,2.464,6451,2.652,6465,2.522,6470,2.726,6480,1.836,6498,3.523,6506,1.717,6509,3.114,6584,3.615,6593,4.75,6647,4.383,6684,3.773,6762,3.888,6898,1.503,6923,2.897,6936,5.638,6964,3.525,6979,3.888,6994,3.249,7129,3.249,7140,3.615,7234,4.103,7238,2.145,7265,5.638,7267,5.913,7268,2.998,7269,2.41,7329,3.249,7332,6.706,7334,2.464,7338,4.988,7354,3.888,7355,3.888,7356,3.615,7357,3.114,7358,3.412,7359,3.412,7360,4.302,7361,4.302,7362,4.302,7363,4.302,7364,4.302,7365,5.005,7366,5.684,7367,5.285,7368,4.988,7369,3.888,7370,3.888,7371,4.302,7372,5.919,7373,4.302,7374,4.302,7375,3.615,7376,3.412,7377,8.177,7378,6.288,7379,4.302,7380,4.302,7381,4.302,7382,4.302,7383,5.285,7384,4.302,7385,3.843,7386,4.302,7387,3.888,7388,4.302,7389,4.302,7390,4.302,7391,4.302,7392,4.302,7393,4.302,7394,4.302,7395,4.302,7396,4.302,7397,4.302,7398,2.897,7399,4.302,7400,4.302,7401,4.302,7402,4.302,7403,4.302,7404,4.302,7405,4.302,7406,3.412,7407,4.302,7408,3.888,7409,6.718,7410,3.888,7411,4.302,7412,3.888,7413,4.302,7414,3.615,7415,4.302,7416,6.288,7417,3.888,7418,3.249,7419,3.615]],["description//tracks/90daysofdevops/day73",[]],["title//tracks/90daysofdevops/day72",[191,1.258,7267,3.033,7420,4.893]],["content//tracks/90daysofdevops/day72",[6,0.402,15,1.499,26,1.208,29,1.447,31,3.072,34,0.949,46,1.984,49,1.103,52,1.778,53,1.399,57,1.23,64,2.273,65,1.048,68,0.737,73,1.092,74,1.592,75,0.712,96,0.932,105,1.082,107,1.917,109,1.415,110,0.874,111,1.72,112,1.103,118,1.125,124,1.64,126,1.779,136,1.372,137,0.764,139,0.976,141,1.17,158,1.555,159,1.399,164,1.936,173,1.829,175,0.914,176,1.22,201,2.497,206,1.072,207,1.984,208,2.093,217,1.866,219,1.193,225,1.218,227,1.464,229,2.463,230,0.94,234,0.851,235,2.203,245,1.829,254,2.726,257,1.859,259,2.227,262,2.565,265,1.555,268,2.158,285,5,288,0.712,289,1.522,295,1.811,304,2.055,313,1.791,333,1.353,343,1.49,344,0.635,351,1.103,354,1.592,356,0.932,369,1.859,374,2.303,406,2.055,423,1.243,425,1.431,427,1.555,432,1.704,462,1.051,470,1.383,472,2.369,479,1.014,489,1.919,490,1.778,519,1.681,520,2.432,536,1.46,548,2.032,550,1.575,568,2.432,575,1.704,593,1.667,595,2.689,600,1.794,612,2.762,627,3.642,628,2.115,638,1.859,646,1.778,675,1.193,678,2.093,741,2.369,742,1.072,745,1.218,758,1.578,767,2.373,774,1.383,800,1.859,817,1.269,823,3.053,828,2.019,845,1.704,849,2.031,857,1.889,867,1.353,901,2.689,905,0.551,907,1.564,918,0.724,925,2.519,930,1.704,931,1.431,932,3.347,934,2.019,939,1.415,940,2.133,991,1.147,993,2.227,1002,2.18,1007,2.762,1012,2.019,1015,2.055,1019,1.499,1024,1.568,1028,2.319,1046,1.482,1053,1.353,1054,1.615,1059,2.019,1078,2.268,1088,1.989,1103,1.636,1197,2.133,1205,2.01,1206,2.019,1224,1.575,1226,2.176,1252,2.565,1266,2.254,1271,1.499,1288,2.093,1300,1.728,1304,2.726,1315,1.615,1330,3.445,1331,1.193,1364,1.681,1374,2.762,1405,1.482,1422,4.31,1424,1.482,1430,3.401,1470,1.431,1489,2.339,1504,2.22,1516,1.431,1594,2.432,1628,1.752,1651,1.752,1661,1.383,1702,2.903,1704,1.728,1716,2.373,1741,1.752,1742,1.889,1880,2.176,1954,1.193,1959,3.402,1984,3.053,1987,2.282,1988,2.093,1993,2.495,1994,2.93,2001,3.298,2004,1.704,2039,4.031,2052,1.919,2069,2.319,2072,3.402,2102,3.658,2181,2.565,2247,2.641,2382,2.282,2604,2.93,2643,1.831,2693,3.487,2723,2.432,2727,3.232,2731,2.268,2937,2.565,2976,2.055,3000,2.373,3067,2.641,3107,3.707,3154,1.415,3174,2.451,3221,2.726,3306,2.565,3353,1.919,3404,2.726,3426,1.555,3432,2.432,3495,1.415,3546,2.373,3617,2.133,3659,2.268,3661,1.984,3665,2.641,4272,1.951,4432,2.565,4459,2.641,4546,2.373,4886,3.402,4989,1.919,5026,3.457,5028,3.578,5100,2.398,5122,2.531,5182,3.647,5294,2.726,5300,2.898,5313,2.999,5314,2.641,5321,2.821,5351,3.21,5377,3.298,5389,2.019,5407,2.495,5493,4.049,5562,1.889,5641,2.369,5956,2.93,5960,2.821,5982,1.804,6014,3.402,6355,3.781,6356,1.658,6366,1.889,6370,2.641,6377,4.76,6380,4.158,6400,3.705,6415,2.93,6425,1.704,6445,2.319,6451,2.495,6452,3.445,6453,3.369,6465,4.974,6474,3.658,6476,2.495,6491,5.829,6498,4.449,6501,6.298,6535,4.353,6592,4.049,6640,2.93,6651,2.495,6664,3.058,6684,3.053,6693,3.21,6695,2.641,6713,3.707,6798,2.93,6809,4.542,6898,1.415,6919,2.268,6923,2.726,6936,5.681,6987,3.402,7037,2.726,7057,3.402,7068,3.402,7167,3.21,7217,2.495,7234,3.923,7236,2.726,7248,2.432,7251,4.353,7265,5.53,7267,6.23,7268,2.821,7269,2.268,7329,6.409,7330,3.058,7334,2.319,7338,4.769,7358,3.21,7365,2.726,7383,3.402,7385,2.093,7398,2.726,7408,3.658,7410,3.658,7412,3.658,7421,3.402,7422,2.93,7423,2.319,7424,4.048,7425,4.048,7426,4.048,7427,4.048,7428,4.048,7429,4.048,7430,6.013,7431,4.048,7432,2.821,7433,6.484,7434,4.048,7435,6.013,7436,4.048,7437,4.048,7438,6.013,7439,4.048,7440,4.048,7441,3.923,7442,3.658,7443,3.658,7444,4.048,7445,4.048,7446,4.048,7447,3.21,7448,6.013,7449,4.048,7450,4.048,7451,2.373,7452,4.048,7453,3.658,7454,3.658,7455,3.21,7456,2.93,7457,4.048,7458,4.048,7459,3.658,7460,2.93]],["description//tracks/90daysofdevops/day72",[]],["title//tracks/90daysofdevops/day71",[3666,2.799,7267,3.033,7461,4.893]],["content//tracks/90daysofdevops/day71",[6,0.167,25,2.886,27,2.289,29,1.601,30,1.404,31,1.547,32,1.279,34,1.05,35,1.583,38,1.012,44,1.389,45,2.316,65,1.826,67,1.513,68,0.816,70,1.465,73,2.249,74,0.994,75,1.465,76,3.552,80,1.437,89,2.026,94,2.626,96,1.031,105,1.197,107,1.197,110,1.8,114,0.816,116,2.565,118,1.799,120,1.089,122,2.838,124,1.337,126,1.003,139,1.833,147,1.163,161,1.404,164,2.249,173,1.141,175,0.82,190,2.716,191,1.767,197,2.118,201,2.689,206,2.013,212,1.565,217,2.36,219,1.32,220,2.761,222,2.945,224,2.658,225,2.772,227,1.62,234,1.859,235,1.375,246,1.411,259,3.087,262,5.601,267,2.457,285,4.513,288,1.465,289,0.95,297,2.316,307,1.811,333,1.497,344,0.684,352,2.696,355,1.449,356,1.148,358,2.316,362,1.186,393,1.209,395,2.36,396,4.172,397,1.65,410,2.089,422,1.245,423,1.375,425,1.583,431,1.449,432,1.885,439,2.123,462,1.163,479,0.633,487,2.158,518,1.419,519,1.859,520,2.691,536,1.532,542,1.419,544,2.565,550,1.742,554,3.348,556,1.419,557,3.764,593,1.098,594,6.032,595,1.679,598,1.764,600,0.78,626,1.968,646,2.844,716,2.089,741,1.764,742,1.186,755,2.886,774,2.213,778,1.186,787,1.859,843,2.689,858,2.565,864,2.273,905,1.036,907,0.976,910,1.375,918,0.801,925,2.692,930,1.885,935,1.079,939,2.263,991,1.269,1002,2.8,1018,2.515,1023,2.36,1024,0.884,1036,1.481,1079,1.699,1088,2.073,1101,2.565,1138,1.163,1143,2.618,1150,2.922,1198,2.195,1205,2.542,1224,1.742,1226,2.407,1242,2.36,1255,1.679,1271,1.659,1284,1.639,1287,2.089,1294,2.922,1296,1.72,1309,1.938,1361,2.316,1363,2.427,1447,1.53,1451,4.172,1470,1.583,1489,2.959,1499,3.121,1528,3.34,1530,3.796,1591,2.456,1597,3.021,1599,2.123,1611,0.719,1618,1.53,1626,1.404,1632,2.363,1639,1.361,1649,2.761,1650,2.626,1652,1.699,1674,2.273,1680,1.699,1690,4.232,1692,3.764,1702,2.335,1704,1.911,1722,3.121,1775,3.242,1777,2.273,1786,1.639,1789,1.938,1818,1.787,1857,1.996,1869,2.384,1904,2.089,1912,1.835,1930,1.244,1955,2.123,1979,1.911,1987,3.162,2001,2.456,2013,2.565,2039,5.175,2067,1.419,2070,3.016,2620,5.136,2648,5.442,2662,2.653,2870,3.552,2873,2.691,2976,2.213,2979,3.016,3106,3.764,3152,3.121,3154,1.565,3159,2.37,3174,2.847,3189,2.407,3511,1.811,3655,3.48,3657,2.315,3800,2.089,3803,1.699,3884,3.121,3885,2.626,3915,2.123,3926,4.103,4088,2.761,4091,2.922,4201,3.828,4295,2.509,4303,5.006,4312,3.016,4314,3.412,4410,3.242,4424,1.938,4449,2.407,4463,2.761,4474,2.565,4475,2.509,4501,3.552,4721,3.89,4776,3.242,4830,2.626,5026,2.158,5028,2.233,5100,2.164,5182,2.057,5299,2.509,5301,3.383,5324,3.549,5366,3.242,5377,3.552,5397,2.691,5407,2.761,6355,1.996,6380,2.195,6399,2.959,6400,3.021,6416,4.225,6425,2.725,6428,2.316,6442,2.626,6719,3.121,6898,1.565,6908,5.183,6909,2.838,6936,2.691,6964,1.583,6997,3.552,6998,4.047,7037,5.611,7064,2.761,7115,3.764,7126,2.838,7127,2.691,7167,3.552,7234,4.225,7265,2.691,7267,6.214,7268,3.121,7269,2.509,7349,3.242,7351,3.552,7387,5.852,7462,4.478,7463,4.36,7464,6.475,7465,3.552,7466,2.691,7467,5.442,7468,4.891,7469,4.047,7470,4.478,7471,4.478,7472,4.047,7473,4.478,7474,3.242,7475,4.478,7476,4.047,7477,4.047,7478,2.922,7479,3.242,7480,4.478,7481,4.047,7482,3.764,7483,4.478,7484,4.478,7485,4.478,7486,4.478,7487,3.764,7488,4.478,7489,4.047,7490,4.478,7491,3.764,7492,4.047,7493,4.478,7494,4.478,7495,4.478,7496,4.478,7497,4.478,7498,3.242,7499,6.475]],["description//tracks/90daysofdevops/day71",[]],["title//tracks/90daysofdevops/day70",[2161,4.55,6936,3.253,7269,3.033]],["content//tracks/90daysofdevops/day70",[2,1.872,6,0.23,7,2.754,9,3.04,11,2.132,15,1.556,16,2.589,18,1.451,25,1.872,26,1.115,29,1.502,30,1.317,31,2.533,34,1.449,38,0.657,43,2.463,44,1.303,46,2.059,49,1.144,58,1.345,64,2.561,65,1.832,68,1.336,72,2.304,73,1.978,74,0.932,75,1.637,77,1.818,83,1.575,89,1.9,105,1.652,107,1.123,109,1.468,110,0.907,114,0.765,126,1.384,136,1.672,137,0.793,141,2.118,144,1.721,154,2.463,175,0.79,197,2.021,201,1.744,202,1.717,219,1.822,221,1.081,222,2.184,225,1.859,229,3.003,234,0.883,235,2.645,259,3.45,262,5.122,267,3.269,285,5.634,288,1.086,332,2.132,342,1.768,351,1.684,352,1.359,356,0.803,362,1.112,374,2.055,383,1.303,393,1.133,422,1.554,425,2.591,459,2.477,479,0.873,488,1.374,490,1.531,517,2.059,518,1.331,519,3.044,536,1.136,550,1.634,553,2.353,554,2.172,555,2.852,560,1.721,568,2.523,600,0.732,605,2.927,626,2.228,638,1.929,655,1.468,716,3.42,745,2.205,758,1.359,767,2.463,778,1.941,779,1.655,785,1.317,842,2.213,849,1.7,867,2.065,905,0.572,907,1.347,915,1.744,918,0.752,925,2.29,930,1.768,932,1.96,938,1.652,939,1.468,946,2.213,991,2.29,1019,1.556,1020,3.04,1024,0.829,1053,1.404,1055,1.238,1076,2.754,1088,2.287,1138,1.091,1143,2.498,1181,1.929,1198,2.059,1205,3.435,1206,3.082,1207,2.661,1208,2.251,1226,2.257,1234,1.468,1237,2.566,1242,2.213,1284,1.537,1299,3.137,1304,4.937,1309,1.818,1311,2.406,1331,1.238,1435,2.93,1440,3.712,1447,1.435,1480,2.024,1482,1.594,1488,1.744,1489,3.145,1517,2.927,1526,1.991,1583,2.661,1585,1.818,1591,2.304,1592,1.435,1597,1.96,1628,1.818,1632,1.959,1639,2.618,1653,2.257,1669,1.793,1674,2.132,1678,2.024,1690,3.957,1702,2.767,1721,2.927,1786,2.262,1829,1.594,1876,2.589,1912,3.003,1934,2.74,1955,1.991,1979,3.129,1984,2.132,1986,3.796,1987,3.9,2020,3.796,2027,2.406,2039,3.722,2054,2.353,2067,1.331,2189,2.523,2245,2.406,2275,2.927,2288,3.53,2382,1.594,2575,2.927,2712,3.173,2832,2.927,2906,2.828,2976,2.111,3013,2.257,3062,4.783,3152,2.927,3159,1.537,3174,3.333,3187,2.059,3305,2.132,3497,3.331,3511,1.698,3617,2.213,3696,2.601,3700,1.744,3761,3.796,3799,1.793,3803,1.594,3877,3.04,3915,1.991,3946,2.589,4064,2.661,4091,2.74,4145,2.927,4154,3.331,4193,3.331,4288,3.331,4312,2.828,4449,2.257,4459,1.844,4525,2.213,4530,2.406,4533,2.213,4802,2.132,4830,3.623,4942,3.53,5026,3.533,5028,3.082,5031,4.161,5067,3.53,5083,4.307,5100,1.404,5182,1.929,5287,2.74,5305,2.49,5321,2.927,5324,1.96,5377,4.021,5397,5.596,5407,2.589,5454,2.927,5503,2.74,5641,2.434,5670,3.173,5745,3.796,5781,2.661,5984,5.109,6027,1.991,6081,3.331,6230,2.927,6233,3.796,6355,1.872,6356,1.721,6358,3.173,6366,1.96,6400,4.204,6425,1.768,6428,2.172,6436,1.634,6695,2.74,6703,4.307,6710,2.406,6713,2.589,6755,3.331,6775,2.828,6898,1.468,6908,3.623,6909,2.661,6916,3.04,6936,4.857,6964,2.184,6969,2.927,7033,3.53,7131,3.53,7161,2.059,7167,3.331,7232,3.04,7234,5.274,7238,2.095,7265,2.523,7267,4.827,7268,2.927,7269,5.465,7332,4.307,7334,3.54,7335,3.53,7349,3.04,7367,3.53,7376,4.901,7423,4.935,7482,3.53,7487,3.53,7492,3.796,7500,7.33,7501,4.2,7502,2.927,7503,4.2,7504,3.331,7505,4.2,7506,4.2,7507,4.2,7508,3.796,7509,4.2,7510,4.2,7511,4.2,7512,3.796,7513,4.2,7514,4.2,7515,4.2,7516,2.463,7517,4.2,7518,7.33,7519,3.796,7520,6.179,7521,4.2,7522,4.2,7523,4.2,7524,2.463,7525,3.53,7526,2.927,7527,4.2,7528,3.331,7529,3.331,7530,4.2,7531,4.2,7532,3.53,7533,3.53,7534,3.04,7535,2.74,7536,4.2,7537,4.2,7538,3.796,7539,3.173,7540,4.2,7541,4.2,7542,3.331,7543,3.796,7544,3.915,7545,3.53,7546,4.2,7547,3.796,7548,4.473,7549,4.2,7550,4.2,7551,4.2,7552,4.2,7553,3.53,7554,4.2,7555,3.796,7556,3.796,7557,4.2,7558,4.2,7559,4.2,7560,4.2,7561,4.2,7562,2.927,7563,3.331,7564,3.796]],["description//tracks/90daysofdevops/day70",[]],["title//tracks/90daysofdevops/day69",[6399,1.376,6523,2.561,7565,3.198,7566,1.901,7567,2.973,7568,2.973,7569,2.973]],["content//tracks/90daysofdevops/day69",[6,0.303,26,1.424,29,1.526,32,0.843,45,3.233,57,1.9,65,1.089,68,1.348,70,2.664,71,2.663,74,1.388,75,0.75,105,1.141,107,1.141,109,1.491,110,1.76,113,1.442,114,0.777,115,3.089,124,0.881,126,1.657,136,1.688,137,0.806,141,1.233,149,2.057,164,1.997,175,0.797,176,1.268,191,0.991,206,1.13,216,1.048,219,1.258,222,3.203,224,2.185,225,1.284,230,0.991,234,0.897,235,2.272,245,1.594,246,0.93,251,2.092,259,2.316,265,1.639,267,2.372,268,1.284,272,1.821,288,0.75,289,1.728,293,2.023,300,1.562,304,2.166,306,2.874,337,1.426,343,1.058,344,0.451,354,1.959,356,1.058,374,2.19,393,1.152,402,2.249,410,3.801,421,1.847,422,1.202,423,1.92,462,1.108,479,0.603,490,1.549,507,1.366,517,2.092,535,1.058,536,1.666,550,1.66,553,2.391,593,1.255,598,2.463,600,1.289,612,1.96,628,1.843,636,1.458,647,2.706,650,2.874,722,2.341,741,2.463,742,1.13,755,1.902,756,2.045,758,1.627,760,4.756,785,1.338,832,2.166,849,1.823,851,3.089,867,1.426,901,3.251,905,0.581,907,1.89,917,2.494,918,1.552,925,1.209,930,1.796,938,1.141,991,1.771,1002,1.297,1005,3.249,1018,2.693,1021,1.271,1024,1.234,1030,2.631,1033,2.391,1037,2.128,1046,1.562,1054,3.251,1055,1.258,1065,3.089,1070,3.223,1088,1.735,1089,1.562,1110,1.581,1138,1.108,1181,1.96,1190,2.704,1191,2.564,1202,2.564,1208,1.92,1224,1.66,1254,2.207,1255,1.6,1269,1.619,1288,3.233,1294,2.784,1331,1.258,1341,1.458,1405,1.562,1410,2.445,1422,2.564,1423,2.128,1436,3.385,1488,1.772,1489,1.66,1490,6.218,1491,2.784,1516,1.508,1526,2.023,1535,2.502,1557,2.502,1585,2.706,1601,2.341,1631,2.391,1632,2.318,1634,3.857,1643,2.166,1694,1.902,1701,2.207,1702,2.501,1726,3.857,1729,3.013,1742,3.801,1750,1.991,1789,1.847,1793,2.874,1855,2.502,1869,1.338,1912,1.748,1931,2.445,1932,2.631,1954,1.258,1978,2.445,2004,2.631,2067,1.352,2131,2.391,2213,2.391,2218,2.502,2225,2.166,2283,2.207,2299,2.293,2324,2.341,2387,2.874,2651,2.344,2692,2.564,2693,1.874,2731,2.391,2949,1.821,3107,3.854,3159,2.708,3174,2.963,3179,1.96,3426,1.639,3546,2.502,3696,1.639,3799,3.158,3817,3.089,3891,2.092,3926,3.961,4034,2.704,4118,2.128,4136,2.502,4201,1.96,4274,2.502,4295,2.391,4314,2.249,4398,2.974,4463,2.631,4482,3.223,4484,3.089,4530,4.238,4533,2.249,4870,2.704,4921,3.223,5008,1.847,5026,2.057,5033,1.93,5043,2.128,5100,2.723,5122,1.796,5127,2.293,5143,2.502,5153,1.847,5157,2.341,5262,2.874,5313,3.118,5324,2.917,5335,2.631,5337,2.502,5562,1.991,5573,2.293,5641,1.681,6263,3.295,6342,1.96,6355,3.63,6356,1.748,6377,4.212,6380,4.441,6399,3.642,6417,3.089,6418,2.564,6428,2.207,6430,3.36,6452,2.445,6464,3.223,6470,2.704,6472,2.974,6498,4.145,6500,3.385,6506,1.703,6513,2.874,6523,5.897,6593,3.223,6595,2.974,6647,2.974,6713,3.854,6750,2.784,6768,3.385,6772,3.857,6909,2.704,6934,2.974,6951,3.586,6955,3.385,7038,2.704,7175,4.21,7257,3.857,7261,4.982,7263,5.254,7265,2.564,7269,3.503,7271,3.586,7289,3.857,7293,3.857,7368,3.385,7451,2.502,7478,2.784,7539,3.223,7566,6.013,7567,6.218,7568,9.3,7569,7.288,7570,6.315,7571,6.218,7572,6.218,7573,3.586,7574,4.267,7575,4.267,7576,3.385,7577,3.089,7578,4.267,7579,4.267,7580,4.267,7581,4.267,7582,4.267,7583,4.267,7584,4.267,7585,7.398,7586,3.385,7587,4.267,7588,4.267,7589,4.267,7590,3.223,7591,3.223,7592,4.526,7593,4.267,7594,4.267,7595,5.157,7596,3.385,7597,2.502,7598,3.857,7599,4.267,7600,4.267,7601,6.461,7602,6.251,7603,2.974,7604,3.089,7605,3.223]],["description//tracks/90daysofdevops/day69",[]],["title//tracks/90daysofdevops/day68",[190,0.96,235,1,344,0.344,425,1.151,1747,1.1,5309,1.824,7606,2.736,7607,2.736]],["content//tracks/90daysofdevops/day68",[2,1.237,6,0.417,15,1.029,26,0.986,29,0.993,32,1.115,42,1.523,46,1.361,49,1.223,57,1.364,64,1.789,65,0.484,68,1.46,70,0.908,71,1.991,73,1.524,74,0.616,75,0.488,80,0.616,102,0.714,105,0.742,107,0.742,109,0.97,111,0.794,112,0.757,113,0.938,114,0.506,118,0.771,124,1.47,126,1.706,136,1.288,154,1.628,159,0.959,164,0.749,173,2.042,175,0.953,176,0.563,183,1.791,190,2.608,196,1.516,197,1.468,202,1.247,216,0.682,221,1.453,230,1.312,234,0.584,235,1.991,245,0.708,246,0.605,247,2.554,257,1.275,261,1.724,263,1.814,264,0.97,268,1.699,270,2.996,289,2.137,295,2.106,300,1.016,302,1.275,331,0.898,334,1.385,343,1.607,344,0.934,351,0.757,353,1.712,354,1.717,355,0.898,356,0.583,359,1.054,361,1.492,362,1.188,374,2.373,378,1.202,383,0.861,393,0.749,397,0.708,408,3.729,410,3.025,422,0.534,423,1.378,424,3.417,425,2.948,431,2.699,432,1.169,437,1.768,439,1.316,442,1.338,448,3.022,454,1.812,459,1.516,461,1.586,462,1.467,470,0.949,471,1.219,473,1.275,477,1.41,479,1.361,490,1.607,494,1.361,518,2.054,519,1.153,536,1.309,546,1.668,550,1.08,555,1.08,560,1.838,570,3.559,593,1.359,600,1.777,612,1.275,626,1.364,627,1.41,628,2.245,635,1.484,639,3.417,648,1.746,655,0.97,675,0.819,679,2.097,702,1.275,718,1.642,745,0.835,750,1.463,756,1.468,758,0.987,778,1.188,785,0.87,817,2.232,827,1.668,836,3.559,845,1.169,849,2.024,852,1.275,859,1.185,905,1.091,907,0.605,909,0.844,910,0.853,917,0.721,918,0.803,925,1.271,931,2.948,938,0.742,939,0.97,942,3.896,946,3.417,951,2.631,993,2.402,995,3.178,998,1.237,1002,1.364,1005,2.48,1017,1.153,1019,1.662,1021,1.931,1024,1.701,1036,1.484,1046,1.016,1053,0.928,1054,1.791,1055,0.819,1059,1.385,1079,1.054,1103,1.123,1109,2.163,1110,1.662,1138,0.721,1183,2.928,1187,2.677,1208,0.853,1224,1.08,1237,1.863,1242,2.365,1243,1.712,1266,2.117,1292,2.976,1300,2.41,1315,1.108,1331,1.323,1341,3.326,1354,1.812,1363,1.041,1365,1.256,1371,1.759,1405,2.605,1410,1.591,1424,2.067,1437,1.492,1451,1.523,1482,1.703,1515,1.87,1516,1.586,1526,1.316,1611,0.907,1626,1.77,1645,1.556,1650,1.628,1656,1.568,1661,1.533,1694,2.516,1696,2.843,1702,1.378,1704,1.185,1741,1.202,1747,3.322,1786,1.016,1792,1.094,1874,1.87,1887,1.523,1953,2.097,1954,1.665,1956,1.556,1979,1.915,2004,1.169,2044,1.87,2098,3.025,2162,2.843,2181,1.759,2186,1.712,2251,2.461,2258,3.074,2277,0.949,2324,1.523,2333,1.275,2587,1.463,2651,0.88,2731,2.514,2789,3.178,2800,3.559,2837,3.715,2856,2.412,2902,2.696,2904,2.32,2911,4.055,2915,5.069,2937,1.759,2949,1.185,2987,2.928,3076,4.519,3145,2.461,3146,2.843,3154,0.97,3172,1.338,3174,0.949,3175,1.628,3179,1.275,3308,4.055,3394,1.169,3397,1.668,3537,2.01,3659,2.514,3660,2.412,3696,0.728,3697,1.935,3764,1.628,3799,1.185,3838,2.51,3891,1.361,3959,1.812,4034,1.759,4150,1.668,4229,3.927,4533,1.463,4546,1.628,4809,4.694,4835,1.935,5022,1.87,5031,1.87,5033,1.256,5043,1.385,5065,1.296,5153,1.202,5224,3.559,5262,5.801,5297,2.097,5300,1.338,5304,1.108,5305,2.057,5308,6.203,5309,5.394,5313,2.816,5314,1.812,5315,1.712,5323,2.365,5327,1.712,5360,2.766,5389,2.816,5391,1.935,5404,5.784,5482,1.628,5551,1.361,5558,1.712,5573,1.492,5589,2.334,5618,1.628,5865,6.092,5988,2.097,6148,3.248,6160,1.712,6342,1.275,6350,3.296,6398,1.759,6399,1.08,6434,1.935,6448,2.334,6476,1.712,6480,1.915,6625,3.248,6683,4.109,6684,1.41,6709,1.87,6809,2.097,6923,1.87,7038,1.759,7047,2.334,7049,2.097,7060,4.51,7095,2.51,7096,5.751,7106,6.001,7262,3.022,7334,1.591,7417,2.51,7441,2.928,7548,2.01,7566,5.591,7592,7.18,7595,1.935,7601,2.202,7603,1.935,7604,2.01,7605,2.097,7606,4.746,7607,2.334,7608,2.51,7609,2.777,7610,4.487,7611,6.038,7612,6.236,7613,6.004,7614,5.377,7615,5.143,7616,5.143,7617,5.646,7618,5.143,7619,2.097,7620,4.898,7621,6.834,7622,6.166,7623,5.646,7624,2.334,7625,4.746,7626,2.777,7627,2.777,7628,2.777,7629,4.487,7630,2.777,7631,2.777,7632,2.777,7633,5.646,7634,3.389,7635,5.646,7636,4.055,7637,4.487,7638,4.487,7639,4.487,7640,4.055,7641,4.055,7642,2.777,7643,2.777,7644,2.777,7645,2.777,7646,2.01,7647,2.777,7648,3.802,7649,2.777,7650,2.777,7651,2.777,7652,2.777,7653,2.51,7654,2.51,7655,2.777,7656,3.235,7657,6.433,7658,2.097,7659,2.777,7660,5.646,7661,2.777,7662,2.777,7663,5.103,7664,3.578,7665,5.646,7666,6.484,7667,4.479,7668,3.771,7669,2.51,7670,2.777,7671,2.777,7672,2.777,7673,2.777,7674,2.777,7675,4.746,7676,2.777,7677,2.777,7678,2.777,7679,2.334,7680,5.646,7681,2.334,7682,2.777,7683,4.487,7684,4.487,7685,4.487,7686,5.646,7687,4.487,7688,5.646,7689,4.487,7690,4.487,7691,2.777,7692,2.777,7693,2.777,7694,2.777,7695,2.51,7696,4.487,7697,2.777,7698,2.777,7699,4.487,7700,2.777,7701,2.777]],["description//tracks/90daysofdevops/day68",[]],["title//tracks/90daysofdevops/day67",[410,1.997,1702,1.314,5323,2.255,5360,2.638,7702,3.868]],["content//tracks/90daysofdevops/day67",[6,0.402,26,1.239,29,2.53,31,2.445,49,1.383,57,2.151,65,1.233,68,1.289,73,1.91,74,1.571,75,0.892,80,1.126,83,1.902,95,3.674,102,1.306,107,1.356,111,2.025,114,0.925,124,1.461,137,0.958,139,1.223,141,1.466,164,2.379,173,2.077,175,1.035,190,2.733,191,1.179,197,1.66,202,1.41,230,1.644,235,2.173,245,1.293,246,1.106,268,1.527,288,0.892,289,2.132,295,2.226,300,2.59,302,2.331,343,1.258,344,0.536,351,1.928,355,2.29,356,0.919,361,2.727,362,1.343,366,2.406,374,2.383,375,1.66,378,2.197,383,2.979,398,2.406,408,3.527,410,4.988,422,1.36,431,2.636,433,2.624,442,3.41,467,2.151,471,2.229,476,2.025,479,1,486,3.311,490,1.754,519,2.107,536,0.933,548,1.715,550,1.974,554,2.624,570,4.025,593,0.861,638,2.331,640,2.418,675,1.496,712,4.265,718,1.857,742,1.343,758,1.557,787,2.107,817,2.218,823,2.576,844,2.624,849,1.488,867,1.696,905,0.963,907,1.106,918,1.266,931,3.277,935,1.223,942,4.251,991,2.005,993,1.88,995,2.487,1002,1.542,1017,2.107,1028,2.907,1055,2.402,1079,1.926,1109,3.927,1110,3.265,1138,1.838,1187,2.406,1224,1.974,1234,1.773,1292,2.674,1296,1.95,1330,2.907,1336,2.446,1341,2.418,1410,2.907,1470,1.794,1516,1.794,1539,2.907,1626,1.591,1630,2.576,1632,1.356,1651,2.197,1653,2.727,1661,1.734,1694,3.631,1741,3.527,1786,2.59,1930,1.966,1954,1.496,2004,2.136,2098,3.302,2162,3.215,2186,3.128,2258,2.406,2277,1.734,2643,2.296,2651,1.608,2800,4.025,2837,4.054,2856,2.727,2932,2.576,2937,3.215,2949,2.166,3076,4.932,3146,3.215,3154,1.773,3172,2.446,3175,2.975,3432,3.049,3658,2.406,3660,2.727,3697,3.537,3799,2.166,3811,2.406,3883,3.128,4272,2.446,4533,2.674,5030,2.975,5033,2.296,5043,2.531,5153,2.197,5262,5.487,5315,3.128,5360,3.128,5389,3.529,5573,2.727,5865,6.767,5868,3.128,6263,2.674,6342,2.331,6350,3.063,6356,2.079,6366,2.368,6476,4.363,6506,2.025,6625,3.674,6684,2.576,6781,2.843,7038,3.215,7060,6.367,7064,3.128,7096,5.345,7106,5.715,7262,6.465,7463,3.417,7548,3.674,7566,5.557,7592,5.898,7595,3.537,7601,4.025,7603,3.537,7604,3.674,7605,3.833,7611,5.898,7612,5.898,7613,5.679,7614,5.345,7615,5.613,7616,5.613,7617,5.613,7618,5.613,7619,5.345,7620,6.154,7621,3.833,7622,4.932,7636,4.586,7640,4.586,7641,4.586,7648,5.487,7656,4.054,7663,6.396,7668,4.265,7669,4.586,7675,5.947,7703,4.025,7704,5.074,7705,5.074,7706,4.265,7707,4.265,7708,5.074,7709,7.076,7710,7.076,7711,4.025,7712,8.147,7713,5.074,7714,5.074,7715,5.074,7716,5.074,7717,5.074,7718,5.074]],["description//tracks/90daysofdevops/day67",[]],["title//tracks/90daysofdevops/day66",[120,1.041,393,1.155,7566,2.3,7619,3.232,7622,2.983]],["content//tracks/90daysofdevops/day66",[6,0.376,15,1.931,18,1.801,26,1.097,34,1.222,57,2.845,65,0.908,68,1.506,73,1.945,74,1.834,105,1.393,107,2.209,114,0.95,120,1.268,124,1.489,126,2.097,136,1.189,137,0.984,139,1.256,161,2.26,175,0.961,176,1.462,190,2.629,196,1.761,216,1.28,217,1.617,270,3.034,289,2.146,295,1.82,300,1.908,333,2.41,342,2.194,344,0.761,356,0.936,362,1.38,374,2.209,383,1.617,404,3.51,408,2.256,410,4.631,422,1.002,425,1.842,431,2.674,459,1.761,461,1.842,467,1.584,470,1.781,479,1.168,536,1.325,550,2.028,595,1.954,600,1.553,640,2.463,718,1.908,742,1.909,779,2.054,784,3.401,849,1.516,852,2.394,864,2.646,867,1.742,905,1.125,907,1.944,916,3.773,917,1.873,918,1.29,925,1.477,931,2.921,938,1.927,942,3.132,1002,2.943,1005,3.166,1009,3.633,1018,1.723,1024,1.424,1042,4.331,1046,1.908,1055,2.125,1066,1.931,1079,1.978,1090,5.392,1110,1.931,1224,2.804,1299,2.646,1305,3.633,1341,3.391,1364,2.164,1365,2.358,1410,2.986,1482,1.978,1516,2.921,1535,3.056,1597,2.432,1606,4.381,1626,2.796,1651,2.256,1680,1.978,1694,3.213,1702,2.214,1765,3.056,1768,3.213,1786,1.908,1930,1.448,1954,1.537,1956,4.631,1994,3.773,2004,2.194,2069,4.13,2098,2.432,2181,3.303,2277,1.781,2643,2.358,2645,4.227,2651,1.651,2652,3.633,2837,2.986,2904,2.695,2906,4.855,2926,3.937,2949,2.225,3145,2.859,3146,4.568,3172,2.512,3174,2.824,3306,3.303,3362,3.51,3508,2.599,3657,1.864,3660,2.801,3799,2.225,4136,3.056,4415,2.323,4533,2.747,4545,2.323,4568,3.303,5022,3.51,5030,3.056,5033,2.358,5043,2.599,5153,2.256,5215,3.056,5262,3.51,5315,3.213,5323,2.747,5360,3.213,5482,3.056,5562,2.432,5573,2.801,5865,3.51,6160,3.213,6342,2.394,6350,2.256,6399,2.028,6445,4.13,6480,2.225,6683,4.568,6700,3.303,6739,5.718,7038,3.303,7060,3.303,7096,3.937,7106,3.213,7147,4.134,7262,3.51,7276,4.134,7441,4.704,7474,6.776,7566,5.895,7592,7.525,7595,3.633,7601,7.872,7603,3.633,7604,3.773,7605,3.937,7611,3.773,7612,3.773,7613,3.633,7614,3.937,7615,4.134,7616,4.134,7617,4.134,7618,4.134,7619,3.937,7620,7.071,7622,5.76,7625,4.381,7648,3.51,7656,2.986,7664,5.65,7667,5.718,7668,4.381,7675,4.381,7679,6.059,7703,4.134,7706,4.381,7707,4.381,7719,5.212,7720,5.212,7721,5.212,7722,5.212,7723,5.212,7724,4.711,7725,5.212,7726,5.212,7727,3.633,7728,4.711,7729,4.711,7730,4.381,7731,7.209,7732,5.212,7733,3.51,7734,5.212,7735,5.212,7736,5.212,7737,5.212,7738,7.209,7739,5.212,7740,4.711,7741,5.212,7742,5.212,7743,5.212,7744,5.212,7745,5.212,7746,5.212]],["description//tracks/90daysofdevops/day66",[]],["title//tracks/90daysofdevops/day65",[114,0.78,393,1.155,7566,2.3,7622,2.983,7747,3.597]],["content//tracks/90daysofdevops/day65",[1,0.87,2,2.048,6,0.41,15,1.06,18,0.989,26,1.099,30,0.897,31,1.588,32,0.908,38,0.901,42,1.569,49,0.78,56,1.099,57,0.87,58,1.845,64,2.445,65,0.498,67,0.967,68,0.837,73,0.772,75,0.503,80,1.465,82,2.161,89,1.294,96,1.058,105,0.765,107,1.229,109,1,110,0.993,111,1.649,113,1.553,114,0.837,118,0.795,120,0.696,121,2.269,124,1.363,126,0.641,136,1.649,137,0.54,139,1.59,141,1.328,147,1.194,161,1.441,164,0.772,173,1.967,175,0.938,176,0.58,190,2.785,191,0.665,196,3.192,197,0.936,202,0.795,203,1.864,204,1.571,206,0.757,215,1.427,219,1.355,221,1.483,225,0.861,230,1.068,235,2.59,236,6.074,245,0.729,246,1.002,247,2.079,261,1.099,263,1.858,264,1.606,268,2.174,270,1.935,288,0.808,289,2.133,295,2.13,296,2.269,299,2.071,300,1.047,302,1.314,305,2.647,331,1.864,336,2.377,337,0.956,342,1.204,343,1.791,351,1.798,354,2.147,355,1.864,356,0.939,358,1.479,359,1.086,362,0.757,374,2.338,375,0.936,376,1.99,377,1.127,378,3.866,383,0.888,393,1.781,395,1.508,397,1.682,408,1.238,413,2.334,417,2.762,422,0.55,423,0.879,425,1.011,427,2.214,431,2.498,432,2.777,433,1.479,437,1.127,439,1.356,442,2.215,459,2.23,462,0.743,464,1.023,467,0.87,470,0.978,472,1.811,477,2.925,479,0.404,482,1.335,488,0.936,490,1.139,518,1.456,519,1.909,525,1.314,535,0.709,536,0.845,541,1.508,546,2.762,548,1.553,550,1.113,560,1.172,571,1.719,593,0.78,595,2.474,600,1.62,626,2.005,628,1.355,640,2.47,655,1,701,1.764,718,1.047,742,1.217,758,1.267,760,3.619,774,0.978,778,1.217,805,1.221,817,2.068,827,1.719,849,1.955,852,1.314,859,1.221,867,0.956,886,1.639,896,4.068,905,1.395,907,1.839,909,0.87,910,0.879,914,2.633,917,2.107,918,1.031,925,1.632,930,1.204,931,2.037,938,0.765,939,1.606,942,2.762,991,1.632,995,2.253,996,2.179,1001,2.161,1002,0.87,1005,2.019,1024,1.836,1034,1.639,1036,1.52,1042,2.762,1046,1.047,1053,0.956,1054,1.834,1055,1.355,1076,1.275,1090,4.305,1109,3.909,1110,1.06,1138,0.743,1177,2.161,1197,1.508,1202,1.719,1205,1.926,1224,1.113,1242,1.508,1243,1.764,1255,1.073,1266,1.073,1268,1.538,1269,1.086,1271,1.06,1292,3.809,1301,0.916,1312,2.834,1315,1.142,1320,1.538,1331,0.843,1336,2.215,1341,3.227,1361,1.479,1362,1.427,1364,1.188,1365,1.294,1371,2.913,1377,1.639,1410,2.633,1422,2.762,1423,2.292,1424,1.047,1428,2.999,1431,1.994,1447,0.978,1458,2.405,1469,1.994,1474,1.603,1479,1.719,1480,1.379,1484,1.204,1516,1.011,1597,2.145,1611,0.46,1618,0.978,1625,2.913,1626,2.644,1632,0.765,1651,1.238,1661,0.978,1677,1.452,1680,1.086,1741,1.99,1747,1.947,1765,1.677,1786,2.109,1818,1.142,1825,2.405,1857,2.048,1863,1.275,1907,2.161,1912,1.172,1930,2.008,1948,2.071,1954,0.843,1955,2.179,1972,2.161,1983,2.834,1987,1.744,1988,1.479,2004,3.042,2027,3.78,2045,1.569,2055,1.538,2067,1.456,2098,1.335,2104,2.071,2146,1.508,2185,1.994,2186,5.001,2210,2.269,2211,1.677,2214,1.764,2258,2.732,2277,1.969,2333,1.314,2600,1.813,2647,2.179,2651,0.906,2662,1.883,2680,2.269,2789,2.253,2800,3.646,2822,2.405,2856,2.471,2904,2.377,2906,3.095,2915,1.603,2949,1.962,3076,4.016,3099,1.994,3146,4.181,3147,2.521,3154,2.014,3158,1.994,3174,0.978,3370,1.639,3380,1.994,3394,1.204,3495,1,3511,1.157,3627,1.994,3657,2.06,3658,3.846,3660,1.538,3661,1.402,3696,1.511,3699,1.256,3763,2.269,3799,1.221,3803,1.086,3811,1.356,3883,1.764,3915,1.356,3948,1.677,4023,2.071,4034,1.813,4229,3.542,4474,1.639,4530,1.639,4532,2.586,4533,1.508,4616,1.813,4765,3.095,4775,1.764,4798,1.927,4972,2.405,5022,3.095,5028,1.427,5031,1.927,5033,1.294,5043,1.427,5100,0.956,5128,1.479,5153,1.238,5215,1.677,5268,2.269,5304,2.299,5313,3.604,5373,1.538,5389,4.636,5411,2.161,5482,1.677,5484,1.994,5573,1.538,5739,1.569,5916,2.405,6027,1.356,6076,5.732,6077,2.269,6263,2.422,6342,1.314,6350,1.238,6356,1.172,6362,1.603,6371,2.161,6381,2.161,6427,1.452,6436,1.113,6445,2.633,6466,1.719,6480,1.962,6482,2.161,6507,1.927,6651,1.764,6683,3.651,6684,2.925,6709,1.927,6710,1.639,6713,1.764,6911,2.586,7038,1.813,7064,1.764,7096,2.161,7106,5.506,7196,3.204,7216,1.867,7238,1.427,7262,4.443,7334,1.639,7372,2.071,7441,1.867,7474,6.465,7566,5.637,7592,7.419,7595,1.994,7603,1.994,7604,2.071,7605,2.161,7607,3.863,7608,6.976,7611,5.587,7612,3.328,7613,3.204,7614,2.161,7615,2.269,7616,2.269,7617,2.269,7620,4.984,7621,2.161,7622,4.016,7648,1.927,7654,2.586,7656,4.421,7657,5.963,7658,2.161,7664,4.181,7667,3.646,7679,3.863,7706,7.315,7707,6.817,7724,4.154,7727,3.204,7728,2.586,7729,4.154,7730,2.405,7740,4.154,7748,2.861,7749,2.071,7750,2.405,7751,5.762,7752,4.597,7753,2.861,7754,2.586,7755,2.586,7756,4.597,7757,2.861,7758,2.861,7759,2.861,7760,2.861,7761,2.861,7762,2.861,7763,2.586,7764,2.405,7765,4.597,7766,2.861,7767,2.861,7768,2.269,7769,2.405,7770,5.963,7771,5.963,7772,4.597,7773,6.598,7774,2.861,7775,4.597,7776,2.861,7777,4.597,7778,2.861,7779,2.861,7780,2.861,7781,2.861,7782,2.586,7783,2.861,7784,2.586,7785,5.762,7786,2.861,7787,2.861,7788,2.586,7789,4.154,7790,2.861,7791,2.405,7792,2.861,7793,2.861,7794,2.861,7795,2.861,7796,2.861,7797,2.861,7798,2.861,7799,2.586,7800,2.695,7801,4.154,7802,3.863,7803,2.405,7804,2.586,7805,2.861,7806,3.378,7807,2.586,7808,2.861,7809,2.861,7810,2.861,7811,2.269,7812,2.405,7813,2.269,7814,2.586,7815,2.861,7816,2.861,7817,2.861,7818,2.861,7819,2.269,7820,2.405,7821,1.508,7822,2.861,7823,1.994,7824,2.586]],["description//tracks/90daysofdevops/day65",[]],["title//tracks/90daysofdevops/day64",[3666,2.799,7566,2.91,7825,4.55]],["content//tracks/90daysofdevops/day64",[6,0.285,14,1.968,15,1.682,26,0.691,32,0.897,38,1.023,49,1.238,52,2.873,58,1.454,64,1.439,65,0.791,68,0.827,70,1.486,71,2.009,73,1.226,74,1.452,83,1.703,91,2.086,96,1.046,107,1.748,111,1.3,114,0.827,124,0.938,136,1.749,137,1.448,139,1.577,164,2.069,173,1.954,175,0.998,190,1.928,191,1.781,196,3.362,201,1.886,203,2.117,204,1.552,206,1.202,214,3.367,217,2.029,219,1.339,221,1.973,224,1.587,225,1.366,230,1.52,235,2.009,245,1.158,246,1.426,268,1.366,288,1.15,289,2.072,295,2.118,300,2.394,305,2.086,307,1.836,333,2.562,334,3.262,336,2.348,342,1.912,343,2.295,344,0.48,352,1.47,354,2.221,356,0.59,361,2.441,362,2.353,369,2.086,374,2.177,375,1.486,397,1.158,413,2.306,427,1.745,431,1.47,432,1.912,467,1.988,471,2.873,474,3.153,479,0.924,487,2.189,488,1.486,490,2.079,507,1.454,526,3.058,536,1.409,541,2.393,548,2.834,575,1.912,582,2.729,587,4.111,592,2.602,593,1.109,600,1.461,611,1.662,626,1.988,628,1.339,636,1.552,640,2.62,678,3.382,709,2.602,718,1.662,741,1.789,742,1.202,774,1.552,817,2.63,843,3.483,844,3.964,849,2.172,867,1.518,905,1.044,907,0.99,909,1.38,917,2.623,918,0.813,925,1.287,934,2.265,993,2.423,995,2.226,1002,2.33,1005,1.995,1021,1.353,1024,1.928,1036,2.163,1049,2.915,1053,1.518,1054,1.812,1081,3.431,1109,3.153,1110,1.682,1148,2.878,1205,1.518,1208,1.395,1234,1.587,1266,2.452,1288,2.348,1292,4.685,1301,2.454,1315,1.812,1320,2.441,1336,2.189,1361,2.348,1365,2.055,1410,2.602,1424,2.394,1428,4.268,1431,3.165,1447,1.552,1469,3.165,1480,2.189,1483,2.393,1516,1.605,1526,2.153,1528,1.995,1529,2.441,1585,1.966,1601,4.205,1626,2.787,1628,1.966,1630,2.306,1632,1.748,1639,1.38,1661,1.552,1734,2.441,1825,3.817,1857,2.024,1869,2.051,1874,3.058,1930,2.805,1987,1.724,1994,3.288,1999,3.817,2185,3.165,2190,2.393,2259,2.024,2277,1.552,2283,2.348,2299,2.441,2324,2.491,2410,3.288,2467,2.189,2525,3.431,2647,2.153,2651,1.439,2662,1.861,2856,4.778,2870,2.491,2929,2.119,3015,3.005,3154,2.931,3172,2.189,3198,2.878,3351,4.105,3412,3.817,3508,2.265,3546,2.663,3616,3.288,3655,2.441,3657,3.557,3658,2.153,3659,4.7,3660,4.508,3696,1.715,3799,1.938,3803,1.724,3862,3.602,3907,4.105,3926,2.878,4229,4.111,4424,1.966,4474,2.602,4545,2.024,4775,2.8,4937,3.431,5033,2.055,5153,1.966,5300,2.189,5304,2.61,5324,2.119,5389,4.617,5573,2.441,5780,3.817,5865,3.058,6027,2.153,6076,7.343,6230,3.165,6342,2.086,6399,1.767,6400,3.052,6425,2.753,6449,2.306,6467,3.431,6476,2.8,6502,3.602,6506,2.61,6710,2.602,6737,3.165,6770,2.963,6802,2.491,6810,3.602,6821,4.105,7020,3.165,7106,5.171,7129,4.941,7173,3.817,7236,3.058,7238,3.262,7489,4.105,7498,3.288,7566,5.995,7595,3.165,7603,3.165,7611,4.735,7613,3.165,7646,3.288,7653,4.105,7800,2.663,7826,5.912,7827,4.542,7828,4.105,7829,3.602,7830,4.542,7831,4.542,7832,4.542,7833,4.105,7834,3.817,7835,6.541,7836,4.542,7837,3.165,7838,3.165,7839,5.912,7840,4.105,7841,4.542,7842,3.817,7843,4.542,7844,3.058,7845,4.542,7846,4.542,7847,3.817]],["description//tracks/90daysofdevops/day64",[]],["title//tracks/90daysofdevops/day63",[235,1.314,917,1.112,1632,1.144,7848,3.868,7849,4.279]],["content//tracks/90daysofdevops/day63",[6,0.417,26,0.673,31,1.529,32,0.874,38,0.692,44,1.991,64,1.402,65,1.444,67,1.495,68,0.806,70,1.447,73,1.732,75,1.457,77,1.915,80,0.982,82,3.342,87,5.801,89,2.002,94,2.594,105,1.183,107,1.183,114,0.806,118,1.229,126,1.692,136,2.093,137,1.212,139,1.066,141,2.542,164,2.038,175,0.893,190,2.959,191,1.028,196,1.495,197,1.447,201,3.44,202,1.229,216,1.086,217,1.373,224,1.546,225,1.331,229,1.813,230,1.755,235,3.272,246,0.965,260,2.427,261,1.7,268,1.931,300,2.349,331,2.077,343,1.591,352,2.444,354,1.699,355,2.681,356,0.575,372,1.862,377,2.529,422,0.851,429,3.677,431,1.432,470,1.512,494,2.169,534,3.203,535,1.097,542,1.402,545,2.658,548,2.553,550,1.721,554,2.288,555,1.721,558,2.479,560,1.813,593,1.089,637,1.813,663,2.169,681,5.657,714,2.332,718,1.62,758,0.973,778,1.699,821,3.084,852,2.948,859,1.888,867,2.145,905,1.028,907,1.647,909,2.674,910,1.359,917,2.736,918,0.792,938,1.716,939,1.546,1033,2.479,1036,1.463,1059,2.207,1088,1.037,1101,2.535,1143,2.595,1184,3.043,1193,3.509,1206,2.207,1208,2.319,1240,1.766,1252,2.804,1284,2.765,1308,1.667,1367,3.509,1370,3.509,1410,2.535,1443,2.479,1451,4.545,1482,1.679,1485,2.332,1488,1.837,1516,1.564,1538,2.887,1539,2.535,1586,3.084,1592,1.512,1597,3.524,1611,0.711,1618,3.235,1620,2.887,1622,2.535,1627,2.246,1630,2.246,1631,2.479,1632,2.718,1639,2.518,1680,2.436,1688,2.246,1701,2.288,1702,1.971,1718,6.259,1766,3.719,1791,2.169,1793,2.98,1869,1.387,1903,6.132,1912,1.813,1930,2.302,1993,4.657,2044,2.98,2053,2.98,2067,2.034,2101,2.728,2170,2.594,2245,2.535,2258,2.098,2283,3.906,2382,1.679,2647,2.098,2651,1.402,2652,3.084,2932,2.246,3008,3.45,3013,2.378,3065,2.658,3146,4.067,3154,2.243,3158,4.474,3175,4.429,3495,1.546,3553,3.509,3666,2.288,3696,2.173,3703,2.804,3831,3.342,3883,3.957,3963,2.594,3993,4.786,4088,2.728,4118,2.207,4136,2.594,4142,3.719,4314,2.332,4424,1.915,4459,3.317,4474,2.535,4497,3.808,4775,2.728,4919,3.509,5024,2.427,5033,2.002,5122,2.702,5127,2.378,5129,3.45,5146,4.067,5153,1.915,5164,4.188,5419,5.991,5573,2.378,5596,3.084,5669,3.203,5775,2.378,5982,1.972,6342,2.032,6361,2.032,6372,3.342,6399,2.497,6425,1.862,6437,5.395,6683,2.804,6684,4.467,6755,5.091,6759,3.509,6766,3.203,6919,2.479,6927,4.647,7051,3.084,7129,3.342,7161,2.169,7236,4.322,7248,4.978,7319,2.887,7354,3.999,7419,3.719,7479,3.203,7553,5.395,7563,3.509,7566,5.756,7592,4.647,7595,3.084,7603,3.084,7823,4.474,7850,3.203,7851,5.506,7852,4.424,7853,4.424,7854,3.084,7855,3.719,7856,3.999,7857,4.424,7858,4.424,7859,9.176,7860,4.424,7861,4.424,7862,4.424,7863,4.424,7864,4.424,7865,3.509,7866,6.259,7867,4.424,7868,4.424,7869,6.419,7870,4.424,7871,6.419,7872,4.424,7873,5.406,7874,3.203,7875,3.999,7876,7.553,7877,5.801,7878,6.572,7879,6.419,7880,6.419,7881,3.084,7882,3.999,7883,7.553,7884,3.509,7885,4.424,7886,3.509,7887,5.108,7888,4.424,7889,3.999,7890,4.424,7891,7.553,7892,4.474,7893,6.419,7894,4.424]],["description//tracks/90daysofdevops/day63",[]],["title//tracks/90daysofdevops/day62",[259,1.585,1312,2.638,1632,1.144,7851,2.347,7895,3.868]],["content//tracks/90daysofdevops/day62",[1,1.299,6,0.415,7,2.79,8,1.964,9,3.095,14,1.286,16,4.566,18,1.477,25,1.905,26,1.127,27,1.511,32,0.844,34,1.002,36,3.229,37,2.568,43,2.506,45,2.21,57,1.299,60,2.568,64,1.354,65,1.847,70,1.398,71,1.313,73,1.689,74,1.644,75,0.751,77,1.85,95,3.095,96,1.705,105,1.673,110,1.6,118,1.739,136,1.428,137,1.182,141,1.235,172,1.905,175,1.009,179,2.132,183,1.706,191,0.993,197,1.398,206,1.132,208,2.21,212,1.494,224,1.494,225,1.286,226,3.117,227,1.546,230,1.454,234,0.899,235,2.876,246,0.932,259,3.558,270,2.635,288,1.433,331,1.383,333,1.429,351,1.165,356,1.059,358,2.21,374,1.689,383,2.298,397,1.09,422,0.822,429,2.449,439,2.027,461,1.511,464,2.238,470,1.461,476,1.706,478,1.877,479,0.604,494,3.996,530,1.964,535,1.059,536,1.361,542,1.983,544,3.586,548,3.064,550,1.663,553,2.395,600,0.745,611,1.565,620,2.709,637,1.751,701,4.566,730,2.253,741,1.684,742,1.132,755,2.79,758,1.909,777,3.456,785,1.34,787,2.599,796,2.979,805,1.825,809,3.391,818,2.879,849,1.316,856,1.775,867,1.429,880,2.789,886,2.449,905,0.852,907,1.777,909,1.299,917,2.118,918,1.12,925,1.211,926,1.529,932,2.921,935,1.785,939,1.494,1002,1.299,1018,2.449,1024,0.844,1076,2.79,1086,2.568,1089,1.565,1140,2.879,1184,2.027,1195,2.345,1208,1.313,1234,1.494,1237,1.775,1240,1.706,1254,3.83,1268,2.298,1269,1.622,1280,3.507,1301,1.369,1302,2.06,1312,5.35,1320,2.298,1336,2.06,1341,1.461,1351,1.684,1365,1.934,1367,3.391,1404,2.709,1405,1.565,1478,1.775,1517,2.979,1530,2.506,1538,2.789,1557,2.506,1583,2.709,1599,2.027,1610,2.743,1611,0.687,1618,1.461,1631,2.395,1632,2.423,1645,2.395,1647,2.132,1672,2.395,1700,2.568,1702,2.503,1764,4.084,1792,1.684,1821,3.864,1857,1.905,1898,3.391,1903,2.979,1912,1.751,1954,1.26,1978,2.449,1996,2.21,2018,3.864,2019,3.593,2042,3.391,2055,2.298,2070,2.879,2074,2.709,2095,3.095,2225,3.178,2258,2.027,2299,2.298,2334,2.879,2382,3.293,2467,2.06,2619,2.979,2768,2.789,2823,3.593,2975,2.345,2976,2.531,3015,1.964,3145,2.345,3172,2.06,3213,2.635,3253,2.635,3304,2.21,3327,2.506,3339,3.229,3394,1.799,3424,2.635,3437,2.979,3501,3.593,3511,2.531,3554,2.395,3696,2.275,3699,1.877,3803,1.622,3883,4.566,3884,2.979,3891,2.095,3946,2.635,3974,3.593,3988,2.789,3992,3.864,3993,3.966,4067,3.299,4118,2.132,4193,3.391,4285,2.298,4340,3.593,4399,2.979,4424,1.85,4475,2.395,4497,4.311,4827,2.709,4955,3.391,5008,3.529,5026,2.06,5035,4.965,5036,3.376,5043,2.132,5058,3.391,5060,2.709,5065,2.921,5122,2.635,5137,3.864,5138,2.345,5158,2.849,5171,2.635,5178,2.506,5195,2.879,5201,4.215,5217,2.345,5287,2.789,5305,1.235,5791,7.368,5919,3.095,5982,1.905,6095,2.635,6230,2.979,6342,1.964,6346,2.298,6361,2.875,6400,1.995,6427,2.17,6428,2.21,6436,1.663,6449,2.17,6633,2.789,6724,4.532,6761,2.968,6770,2.789,6898,2.849,6951,3.593,7002,3.095,7034,2.568,7064,2.635,7110,3.864,7127,2.568,7149,2.635,7182,1.877,7248,4.898,7355,3.864,7356,3.593,7385,3.237,7502,2.979,7562,2.979,7566,2.298,7570,2.979,7577,3.095,7597,4.78,7667,3.391,7850,5.361,7851,6.09,7873,2.789,7892,2.979,7896,4.275,7897,4.275,7898,6.26,7899,4.275,7900,4.275,7901,4.275,7902,4.275,7903,6.26,7904,4.275,7905,4.275,7906,3.095,7907,4.275,7908,4.275,7909,4.275,7910,3.864,7911,4.275,7912,3.593,7913,4.275,7914,3.864,7915,4.275,7916,4.275,7917,4.728,7918,4.275,7919,4.275,7920,4.275,7921,4.275,7922,4.275,7923,4.275,7924,4.275,7925,4.275,7926,4.275,7927,2.879,7928,6.26,7929,4.275,7930,3.864,7931,6.26,7932,4.275,7933,4.275,7934,3.593,7935,3.864,7936,8.465,7937,4.275,7938,3.095,7939,3.593,7940,4.275,7941,3.593,7942,2.979,7943,3.864,7944,2.979,7945,2.979,7946,4.275]],["description//tracks/90daysofdevops/day62",[]],["title//tracks/90daysofdevops/day61",[2373,3.611,3696,1.254,5100,1.598,7947,4.32]],["content//tracks/90daysofdevops/day61",[4,3.279,6,0.425,32,1.289,46,2.22,65,1.547,67,1.531,68,1.189,70,1.481,73,1.222,74,1.449,96,1.043,110,0.978,120,1.588,124,1.348,126,1.014,137,1.445,139,1.092,147,1.176,159,2.256,169,2.792,175,1.052,179,2.259,191,1.052,197,1.481,204,1.548,212,1.583,222,1.601,226,1.906,227,2.361,230,1.052,234,0.952,235,1.391,240,1.638,265,1.74,267,1.719,289,1.624,295,1.144,331,1.466,333,1.514,343,1.897,352,2.112,354,2.026,356,0.848,374,2.175,425,2.307,433,3.375,462,1.176,470,1.548,473,2.08,479,0.923,482,2.113,536,0.833,548,2.206,550,1.762,593,1.298,600,1.333,640,1.548,663,2.22,681,4.719,708,2.594,730,2.387,742,1.728,758,0.996,778,1.199,785,1.42,803,4.136,817,1.42,849,1.761,867,1.514,886,2.594,901,1.698,907,1.826,917,1.696,918,1.499,931,2.307,932,3.046,935,1.573,938,1.211,991,2.169,1009,3.157,1019,1.678,1024,1.654,1026,2.113,1030,2.792,1051,4.093,1054,3.054,1057,3.095,1059,2.259,1085,2.721,1088,1.531,1143,2.639,1184,2.147,1205,1.514,1226,2.434,1229,2.594,1237,1.88,1269,1.719,1271,1.678,1284,1.658,1297,2.484,1300,2.786,1301,2.09,1304,4.396,1308,1.696,1331,1.335,1341,2.862,1351,1.784,1361,2.342,1365,2.049,1386,3.462,1470,1.601,1482,1.719,1516,1.601,1610,1.678,1622,2.594,1626,2.047,1632,1.745,1669,1.933,1680,1.719,1689,2.721,1693,2.955,1694,2.909,1702,2.996,1742,3.908,1743,3.806,1745,1.762,1775,3.279,1792,1.784,1867,2.955,1931,3.74,1956,2.538,1979,1.933,1996,2.342,2004,1.906,2054,2.538,2057,2.594,2067,1.435,2104,3.279,2162,4.85,2258,3.095,2259,2.018,2277,2.231,2299,2.434,2373,4.931,2382,2.477,2564,2.049,2699,2.22,2727,4.502,2975,4.198,2976,2.615,3146,2.87,3174,1.548,3299,3.592,3397,2.721,3424,2.792,3434,2.826,3554,2.538,3696,2.007,3948,2.655,3963,2.655,3988,2.955,4255,3.592,4272,3.146,4447,2.87,4449,2.434,4475,2.538,4497,1.96,4830,2.655,5028,3.817,5043,2.259,5100,3.51,5138,2.484,5153,1.96,5158,2.927,5171,2.792,5178,2.655,5201,3.05,5217,2.484,5305,1.309,5324,2.113,5337,2.655,5641,3.015,6055,6.918,6355,4.249,6377,3.375,6380,3.2,6387,3.279,6444,3.375,6449,3.314,6452,3.74,6453,2.538,6470,4.85,6491,2.792,6503,3.421,6513,3.05,6595,5.838,6886,5.782,6898,2.927,6964,2.307,6969,3.157,7034,2.721,7060,6.299,7072,3.421,7248,3.922,7251,4.726,7319,2.955,7368,6.071,7385,3.375,7586,3.592,7591,3.421,7597,3.827,7800,2.655,7823,5.335,7851,6.029,7873,2.955,7944,3.157,7945,3.157,7948,4.529,7949,4.529,7950,3.592,7951,4.093,7952,3.592,7953,4.529,7954,4.529,7955,4.529,7956,4.529,7957,4.529,7958,4.529,7959,6.528,7960,4.093,7961,5.9,7962,4.529,7963,6.528,7964,4.529,7965,4.529,7966,4.529,7967,4.529,7968,4.529,7969,4.529,7970,3.806,7971,4.529,7972,4.529,7973,3.421,7974,4.093,7975,3.806,7976,4.529,7977,4.093,7978,4.529,7979,4.529,7980,6.528,7981,4.529,7982,5.178,7983,3.592,7984,4.529,7985,4.529,7986,4.529]],["description//tracks/90daysofdevops/day61",[]],["title//tracks/90daysofdevops/day60",[1271,1.585,1301,1.37,2160,3.394,6444,2.213,6964,1.513]],["content//tracks/90daysofdevops/day60",[6,0.425,26,0.64,27,2.187,32,1.222,38,0.658,65,1.41,68,0.767,70,1.376,71,1.292,74,0.934,75,0.74,96,0.969,107,1.125,118,1.719,124,1.515,126,1.644,137,1.386,139,1.491,141,1.216,146,2.136,155,2.594,164,1.135,172,1.875,175,1.03,176,1.489,179,2.098,203,2.375,204,1.438,206,1.638,216,1.033,221,1.083,222,2.187,235,2.484,238,2.028,245,1.072,246,0.917,259,1.558,265,1.616,270,1.771,288,0.74,289,1.557,295,1.062,300,1.54,304,2.136,306,2.833,311,2.136,331,2.618,343,1.043,344,0.444,354,1.638,356,1.051,359,1.597,374,2.295,376,1.821,377,1.658,381,1.679,421,2.678,422,1.189,425,1.487,431,2.002,453,2.932,462,1.093,464,1.504,477,3.141,479,1.037,482,1.963,507,1.347,548,1.422,550,1.637,571,3.717,593,1.372,595,2.32,600,1.278,626,2.23,637,1.724,646,1.848,663,2.062,675,1.24,681,4.524,714,2.217,730,2.217,742,1.114,756,1.376,758,1.78,770,2.41,817,1.319,836,4.907,849,1.701,886,2.41,905,0.842,907,1.879,917,1.607,918,1.711,926,1.504,931,1.487,932,2.887,935,1.014,939,1.47,1002,1.88,1021,1.843,1024,1.78,1026,3.424,1088,0.986,1103,1.701,1109,2.028,1110,1.558,1173,4.907,1184,1.995,1224,1.637,1266,1.577,1269,1.597,1271,3.675,1299,2.136,1301,3.177,1308,1.093,1312,2.594,1314,2.932,1331,1.24,1336,2.028,1341,3.081,1351,1.658,1354,2.745,1365,2.799,1428,2.745,1429,3.337,1447,1.438,1450,2.467,1482,2.348,1487,2.098,1526,1.995,1585,1.821,1610,1.558,1626,2.301,1630,2.136,1632,1.654,1651,1.821,1669,1.796,1701,3.199,1702,1.292,1741,2.678,1793,2.833,1912,2.535,1932,2.594,1942,3.046,1956,3.467,1996,2.176,2004,1.771,2013,2.41,2067,1.333,2074,2.666,2162,3.92,2176,3.803,2211,2.467,2259,1.875,2277,2.114,2299,2.261,2382,2.348,2470,2.062,2647,2.933,2652,2.932,2727,3.325,2975,4.945,2976,2.765,3023,5.312,3424,2.594,3426,1.616,3553,3.337,3554,2.357,3696,1.622,3755,2.745,3800,1.963,3988,2.745,4010,2.41,4123,2.745,4229,2.062,4497,3.176,5043,2.098,5100,2.882,5135,3.178,5138,2.308,5157,2.308,5158,2.827,5171,2.594,5178,2.467,5201,2.833,5217,2.308,5305,1.216,5337,4.302,5388,2.932,5404,3.717,5575,3.178,5641,2.438,5982,1.875,6095,2.594,6355,1.875,6356,3.006,6396,3.803,6430,2.261,6444,4.662,6445,2.41,6449,3.141,6465,2.467,6506,1.679,6551,4.674,6687,3.178,6813,3.337,6898,2.827,6964,3.794,6997,3.337,7060,5.126,7136,4.744,7158,3.536,7232,3.046,7248,3.717,7251,4.479,7261,2.833,7322,3.803,7385,3.199,7398,2.833,7447,5.82,7566,2.261,7591,3.178,7597,2.467,7614,4.674,7664,3.92,7800,2.467,7814,3.803,7823,2.932,7851,5.968,7866,3.178,7873,2.745,7878,3.337,7942,2.932,7944,2.932,7945,2.932,7952,4.907,7983,4.907,7987,2.932,7988,3.337,7989,2.932,7990,6.187,7991,6.187,7992,4.207,7993,4.207,7994,4.207,7995,8.09,7996,4.207,7997,6.187,7998,4.674,7999,6.838,8000,4.207,8001,4.207,8002,4.207,8003,6.632,8004,4.207,8005,8.09,8006,3.803,8007,6.187,8008,4.207,8009,4.207,8010,4.207,8011,4.207,8012,4.207,8013,3.803,8014,4.207,8015,4.207,8016,4.207,8017,4.207,8018,4.207,8019,3.803,8020,4.207,8021,5.2,8022,4.207,8023,4.207,8024,4.207,8025,4.207,8026,4.207,8027,3.536,8028,5.592,8029,4.207,8030,3.536]],["description//tracks/90daysofdevops/day60",[]],["title//tracks/90daysofdevops/day59",[176,0.786,593,0.657,1626,1.214,2277,1.324,7851,2.125,8031,3.501]],["content//tracks/90daysofdevops/day59",[2,2.269,6,0.42,16,5.032,26,0.774,57,1.547,58,1.63,65,1.538,68,1.292,70,1.665,71,2.178,73,1.374,96,1.172,102,1.31,114,1.292,120,2.147,124,1.051,126,1.589,137,0.961,147,1.322,173,1.298,175,0.951,176,1.439,179,2.539,183,2.032,191,1.183,196,2.397,203,1.647,206,1.348,215,2.539,216,1.25,217,2.2,222,1.799,230,1.183,234,1.07,235,2.506,270,2.143,289,1.969,295,2.061,319,2.114,344,0.538,354,1.348,356,0.661,358,3.667,374,2.117,397,1.298,413,2.584,432,2.143,462,1.322,467,1.547,472,2.006,473,2.338,479,0.719,536,1.304,548,2.397,550,1.98,554,2.632,593,1.574,600,1.851,626,1.547,663,3.476,721,3.322,730,2.683,742,1.348,795,2.269,817,3.091,849,1.491,886,2.916,907,1.11,910,1.563,918,1.461,926,1.82,931,3.12,932,3.309,935,1.227,940,2.683,942,4.261,991,1.442,996,2.414,1002,2.155,1009,4.943,1021,1.516,1024,1.4,1026,2.375,1033,2.852,1053,1.702,1059,2.539,1088,1.194,1140,3.428,1184,2.414,1197,2.683,1224,1.98,1282,2.683,1300,2.173,1330,2.916,1331,1.501,1341,1.74,1351,2.006,1355,4.601,1365,2.303,1423,2.539,1424,2.596,1437,2.736,1447,1.74,1516,2.885,1517,3.548,1526,2.414,1626,3.091,1628,2.204,1639,1.547,1656,1.779,1701,2.632,1702,1.563,1741,2.204,1745,2.759,1747,3.399,1786,1.863,1811,4.063,1920,1.759,1930,1.97,1956,2.852,1996,2.632,2074,3.226,2082,3.548,2098,2.375,2099,2.495,2132,4.063,2258,2.414,2277,3.284,2321,3.685,2382,2.691,2467,2.454,2470,2.495,2645,2.985,2975,3.89,2976,2.789,3172,2.454,3385,4.494,3424,3.138,3508,2.539,3554,2.852,3661,2.495,3698,4.279,3750,2.852,3883,4.372,3988,3.322,4271,2.236,4272,2.454,4415,3.16,4449,3.812,5043,2.539,5138,2.792,5158,3.085,5171,3.138,5178,2.985,5201,3.428,5217,2.792,5304,2.032,5305,1.471,5324,2.375,5337,2.985,5422,4.601,6361,3.258,6436,2.759,6444,4.564,6448,4.279,6470,3.226,6898,3.085,7049,3.845,7055,4.038,7161,2.495,7175,3.428,7248,4.261,7251,6.39,7385,3.667,7451,2.985,7597,2.985,7656,4.063,7800,6.231,7803,4.279,7851,6.106,7865,4.038,7873,3.322,7944,3.548,7945,3.548,7952,4.038,7983,4.038,7989,3.548,8032,2.792,8033,4.279,8034,5.091,8035,5.091,8036,7.092,8037,5.091,8038,5.091,8039,5.091,8040,5.091,8041,5.091,8042,5.091,8043,5.091,8044,5.091,8045,5.091,8046,4.279,8047,5.091,8048,5.091,8049,5.091,8050,5.091,8051,5.091,8052,5.091,8053,7.092,8054,5.091,8055,4.601,8056,5.091,8057,5.091,8058,5.091,8059,6.41,8060,4.601]],["description//tracks/90daysofdevops/day59",[]],["title//tracks/90daysofdevops/day58",[235,1.314,1618,1.462,7597,2.509,7938,3.098,8061,3.868]],["content//tracks/90daysofdevops/day58",[5,1.739,6,0.422,8,1.486,9,2.342,15,1.198,16,3.851,18,1.118,26,1.075,30,1.014,31,1.118,32,0.639,35,1.144,49,0.881,52,1.421,57,1.54,58,1.036,64,1.025,65,1.716,67,1.093,68,0.589,72,1.775,73,0.873,74,1.807,91,1.486,107,1.889,109,1.131,110,1.349,111,0.926,112,0.881,113,1.712,114,0.923,118,0.899,120,0.787,124,0.668,126,1.583,136,0.738,137,0.611,139,1.506,141,0.935,146,1.642,161,1.589,173,1.592,175,0.976,179,1.613,190,0.954,202,1.408,203,2.288,204,1.105,214,1.421,217,1.004,219,1.842,220,1.994,221,0.832,222,2.208,230,1.783,234,1.712,235,2.5,240,1.17,246,1.673,251,1.586,259,1.198,261,1.243,268,1.524,288,0.569,289,2.004,295,1.577,300,1.184,331,1.64,333,1.081,343,1.902,344,0.746,351,0.881,352,1.047,354,1.654,356,0.42,362,0.856,374,2.114,376,1.4,383,1.004,393,0.873,397,0.825,406,1.642,421,1.4,422,0.622,431,1.047,441,1.421,461,1.144,462,1.316,464,1.157,467,1.54,471,2.225,474,2.442,479,1.245,488,1.657,489,1.534,494,1.586,518,1.025,536,1.148,540,1.362,548,2.751,550,1.258,554,1.673,560,2.076,582,1.944,593,1.059,595,2.65,598,1.275,600,1.578,601,1.944,626,1.54,628,0.954,637,1.325,638,2.328,645,1.739,655,1.771,663,1.586,675,0.954,681,4.358,718,1.184,730,1.705,756,1.657,778,1.654,785,1.014,795,1.442,805,1.381,809,2.566,817,1.958,845,1.362,849,1.948,856,1.343,859,1.381,867,1.081,886,1.853,903,1.228,905,0.44,907,1.105,918,1.621,925,0.917,931,2.878,932,2.364,935,0.78,939,1.131,940,1.705,991,0.917,998,2.258,1017,2.594,1021,1.509,1024,1.396,1036,1.07,1053,1.081,1057,1.534,1059,1.613,1073,1.813,1076,1.442,1079,1.228,1088,0.758,1103,1.308,1138,1.836,1184,1.534,1208,0.993,1224,1.258,1229,1.853,1232,1.853,1252,2.05,1266,2.342,1268,1.739,1282,1.705,1284,1.184,1301,1.036,1304,2.178,1311,1.853,1330,1.853,1331,0.954,1341,2.134,1351,1.275,1362,1.613,1364,1.343,1365,3.472,1405,1.855,1410,1.853,1423,2.527,1447,1.105,1470,1.144,1479,1.944,1482,1.228,1484,1.362,1487,1.613,1489,1.258,1516,1.791,1526,1.534,1530,1.897,1536,1.421,1557,2.971,1592,1.732,1597,1.509,1610,2.314,1611,0.52,1618,2.908,1619,2.784,1620,2.111,1626,1.014,1627,1.642,1639,0.983,1647,1.613,1656,2.183,1661,1.732,1694,1.442,1702,1.918,1741,1.4,1745,1.258,1768,1.994,1786,1.855,1792,1.996,1811,3.578,1858,1.228,1874,3.412,1887,3.426,1912,1.325,1916,1.897,1919,2.444,1930,1.408,1931,1.853,1952,2.572,1954,1.494,1956,3.5,1984,2.572,1996,1.673,2053,2.178,2067,1.605,2098,3.799,2099,3.465,2132,2.903,2227,1.944,2240,1.994,2259,2.258,2277,1.105,2382,2.37,2470,2.484,2564,1.463,2587,1.705,2647,1.534,2659,2.971,2902,1.944,2975,4.466,2976,2.134,3147,1.775,3159,1.855,3174,1.732,3179,1.486,3187,1.586,3214,1.325,3305,3.171,3365,2.444,3394,2.133,3404,2.178,3424,1.994,3546,1.897,3554,1.813,3659,2.839,3661,2.484,3696,1.638,3699,2.225,3700,2.104,3755,2.111,3764,1.897,3803,2.37,3884,2.255,3885,1.897,3904,4.718,3988,2.111,3993,2.05,4000,2.566,4103,1.673,4229,1.586,4241,3.306,4272,1.559,4274,1.897,4286,2.444,4358,5.25,4424,1.4,4449,1.739,4497,3.06,4886,2.719,5008,4.212,5026,3.011,5028,1.613,5033,1.463,5036,1.258,5043,1.613,5052,2.566,5065,1.509,5092,4.927,5097,4.259,5100,1.081,5127,2.723,5132,1.994,5133,2.111,5135,3.828,5138,1.775,5149,2.255,5158,2.47,5171,1.994,5178,1.897,5188,4.259,5201,2.178,5217,1.775,5300,1.559,5305,0.935,5308,4.076,5323,1.705,5324,1.509,5337,3.662,5412,5.646,5551,1.586,5562,1.509,5641,2.785,5663,2.444,5671,2.342,5722,2.444,5781,2.05,5935,2.178,5960,2.255,5982,1.442,5984,2.255,6027,1.534,6263,1.705,6350,3.323,6356,2.559,6361,2.328,6399,1.258,6408,2.05,6418,1.944,6428,2.62,6430,1.739,6436,1.258,6442,1.897,6444,5.092,6445,3.578,6447,2.566,6453,1.813,6466,1.944,6506,1.291,6519,2.924,6558,1.775,6683,2.05,6695,2.111,6700,2.05,6754,2.444,6761,1.534,6898,2.47,6912,4.259,6964,1.144,6978,2.719,7163,2.342,7172,4.259,7175,2.178,7182,2.225,7196,2.255,7248,3.044,7251,4.522,7385,2.62,7453,2.924,7498,2.342,7597,4.5,7730,4.259,7800,1.897,7823,2.255,7833,2.924,7850,2.342,7851,6.114,7873,2.111,7887,1.994,7938,4.522,7944,2.255,7945,2.255,7952,4.954,7983,4.019,7988,4.019,8032,1.775,8055,5.646,8062,3.235,8063,2.719,8064,2.255,8065,2.255,8066,3.235,8067,3.235,8068,2.444,8069,4.58,8070,6.246,8071,6.246,8072,3.235,8073,3.235,8074,6.246,8075,3.235,8076,5.067,8077,5.067,8078,5.067,8079,5.067,8080,3.235,8081,3.235,8082,5.067,8083,4.58,8084,5.067,8085,2.719,8086,3.235,8087,5.067,8088,3.235,8089,3.235,8090,3.235,8091,3.235,8092,3.235,8093,3.235,8094,2.924,8095,5.067,8096,3.235,8097,5.067,8098,2.924,8099,3.235,8100,3.235,8101,5.067,8102,3.235,8103,4.58,8104,2.719,8105,2.924,8106,3.235,8107,2.342,8108,2.719,8109,2.566,8110,2.255,8111,3.235,8112,3.235,8113,2.924,8114,3.235,8115,3.235,8116,2.719,8117,3.235,8118,3.235,8119,3.235,8120,3.235,8121,3.235,8122,3.235,8123,3.235,8124,3.235,8125,3.235]],["description//tracks/90daysofdevops/day58",[]],["title//tracks/90daysofdevops/day57",[3666,2.799,7851,2.97,7934,4.55]],["content//tracks/90daysofdevops/day57",[5,3.668,6,0.403,8,2.214,25,2.148,26,1.038,31,1.666,32,1.565,34,1.13,35,3.046,38,0.754,42,2.644,43,2.826,45,2.492,57,1.465,65,1.645,67,1.629,70,2.232,71,1.48,73,1.842,74,1.07,75,0.847,105,1.288,107,1.288,110,1.965,111,1.379,118,2.394,124,1.409,126,1.08,137,0.91,139,1.162,164,2.325,175,0.854,176,1.748,179,2.404,203,2.208,206,1.276,216,1.183,217,1.495,224,2.769,225,2.053,226,3.335,227,1.744,230,1.841,234,1.013,235,1.48,245,2.196,246,1.051,267,2.59,272,2.057,288,1.515,289,1.828,331,1.56,333,1.611,336,2.492,337,2.281,343,2.136,356,0.886,374,1.557,397,1.229,422,1.523,427,1.852,462,1.773,479,0.681,482,2.249,494,2.362,542,2.51,545,2.896,548,1.629,550,1.875,555,1.875,560,1.975,593,1.542,598,1.899,600,0.84,611,1.764,637,3.246,640,1.647,645,2.59,647,2.086,675,2.012,730,2.54,742,1.807,758,1.06,779,1.899,803,3.054,805,2.057,817,1.511,823,2.447,828,2.404,849,1.435,858,2.761,886,2.761,909,1.465,910,1.48,917,2.238,918,1.852,926,1.723,932,3.184,935,1.162,938,1.288,991,1.934,1002,1.465,1021,1.435,1024,1.702,1068,2.492,1076,2.148,1085,2.896,1088,1.6,1100,2.362,1143,1.949,1184,2.285,1187,2.285,1205,2.281,1224,1.875,1266,2.559,1269,3.007,1271,2.528,1297,2.644,1301,2.537,1351,1.899,1450,2.826,1478,2.001,1487,2.404,1522,4.356,1526,2.285,1585,2.086,1610,1.785,1618,1.647,1626,2.14,1632,2.792,1639,1.465,1645,3.824,1647,2.404,1656,3.178,1702,2.646,1729,2.323,1741,2.086,1791,2.362,1857,2.148,1869,2.14,1886,4.208,1987,1.829,1996,2.492,2004,2.873,2005,2.404,2046,2.724,2057,2.761,2067,1.527,2258,2.285,2277,1.647,2382,2.59,2438,3.145,2699,2.362,2902,4.76,2975,2.644,2976,2.708,3154,1.684,3159,3.154,3305,2.447,3394,2.873,3424,2.971,3495,1.684,3501,4.051,3554,2.701,3657,1.723,3696,2.078,3764,2.826,3799,3.382,3811,2.285,3915,2.285,3988,3.145,3993,3.054,4001,3.641,4034,3.054,4286,5.155,4424,2.086,4432,3.054,4497,4.367,5008,2.086,5024,2.644,5026,2.323,5035,3.823,5036,3.082,5043,2.404,5100,1.611,5122,2.873,5127,5.219,5138,2.644,5153,2.086,5158,3.011,5171,2.971,5178,2.826,5201,3.246,5217,2.644,5304,1.923,5305,1.393,5641,1.899,5693,3.641,6361,3.135,6435,3.823,6442,2.826,6444,4.097,6449,2.447,6470,3.054,6681,6.284,6761,2.285,6770,3.145,6898,3.011,7147,3.823,7182,2.117,7236,4.596,7238,2.404,7248,4.1,7375,4.051,7385,3.529,7597,5.816,7656,4.539,7851,6.184,7873,3.145,7935,4.356,7936,4.356,7938,4.941,7944,3.359,7945,3.359,8069,4.356,8126,4.82,8127,4.051,8128,4.356,8129,3.823,8130,4.82,8131,3.823,8132,4.051,8133,3.823,8134,4.82]],["description//tracks/90daysofdevops/day57",[]],["title//tracks/90daysofdevops/day56",[1478,2.248,7850,3.919,8135,4.893]],["content//tracks/90daysofdevops/day56",[5,2.436,6,0.344,15,2.42,26,0.69,27,1.602,31,1.566,43,2.658,49,1.235,52,1.991,58,2.091,65,1.78,68,1.527,72,3.583,73,2.067,74,2.117,75,1.815,77,1.962,96,1.044,105,1.212,107,1.212,110,1.411,111,1.869,120,1.103,126,1.015,136,1.49,137,0.856,164,2.397,169,2.795,175,0.903,176,1.553,179,2.261,190,3.096,191,1.053,197,1.483,202,1.815,204,2.617,206,2.027,216,1.113,217,1.406,226,3.527,230,1.518,235,2.928,246,0.988,259,1.679,261,1.742,267,1.72,288,1.148,331,1.467,333,2.183,344,0.809,351,1.235,355,1.467,356,0.995,359,1.72,374,1.49,393,2.067,397,1.155,411,2.389,422,0.871,425,1.602,461,2.962,464,2.336,479,1.082,482,2.115,507,1.451,535,1.123,536,0.833,541,3.443,542,1.436,548,1.532,550,1.763,560,1.857,564,3.742,592,2.597,593,1.108,600,0.79,626,1.378,646,1.991,714,2.389,718,2.391,730,2.389,756,2.137,779,3.017,805,2.788,817,2.048,858,3.742,867,1.515,886,2.597,903,1.72,905,0.617,906,3.595,907,1.827,910,1.392,917,2.177,918,1.37,932,3.048,935,1.574,938,1.212,939,1.584,991,1.284,1017,1.882,1018,1.499,1024,0.895,1033,2.54,1043,3.742,1054,1.809,1059,2.261,1066,2.42,1079,2.479,1088,1.965,1107,2.301,1108,2.658,1148,4.139,1184,2.149,1205,3.093,1237,2.712,1266,1.699,1271,1.679,1279,4.139,1282,2.389,1284,1.659,1308,1.178,1315,1.809,1331,1.336,1351,1.786,1363,1.699,1364,1.882,1439,2.724,1440,2.724,1443,2.54,1470,2.962,1478,1.882,1591,2.487,1592,1.549,1610,1.679,1626,2.627,1632,2.658,1639,1.378,1661,1.549,1669,1.935,1674,3.888,1678,2.185,1681,2.872,1700,2.724,1702,2.728,1776,2.872,1786,1.659,1803,2.436,1805,4.934,1869,2.048,1872,4.097,1880,2.436,1904,2.115,1930,1.815,1984,2.301,1987,3.18,1993,2.795,1996,2.344,2005,3.258,2046,2.607,2190,2.389,2225,2.301,2264,2.795,2277,2.617,2283,2.344,2364,1.566,2382,3.511,2467,2.185,2651,1.436,2660,2.958,2662,1.857,2976,2.617,3013,3.511,3154,2.676,3159,2.391,3198,2.872,3237,5.181,3272,4.291,3424,2.795,3514,3.595,3515,2.54,3554,2.54,3665,2.958,3696,2.198,3803,1.72,3984,3.202,3988,2.958,4000,3.595,4117,3.424,4123,2.958,4349,4.097,4424,1.962,4459,1.991,4474,3.742,4475,2.54,4497,4.546,4626,7.574,4827,4.139,4952,4.097,5043,2.261,5100,1.515,5138,2.487,5158,2.929,5171,2.795,5178,2.658,5201,3.053,5217,2.487,5291,3.282,5294,4.399,5299,2.54,5305,2.213,5323,3.443,5360,2.795,5484,3.16,5562,2.115,5641,3.017,5707,2.724,6027,2.149,6194,5.181,6399,2.541,6400,3.048,6425,2.75,6522,3.053,6687,3.424,6693,5.181,6695,4.262,6703,3.16,6710,2.597,6766,3.282,6775,3.053,6898,2.929,6919,2.54,6966,3.424,6983,5.089,7161,2.222,7236,4.399,7248,5.559,7325,3.282,7385,3.378,7432,3.16,7566,3.511,7597,2.658,7646,3.282,7850,6.067,7851,5.761,7866,3.424,7873,2.958,7877,5.904,7878,3.595,7884,3.595,7944,3.16,7945,3.16,7982,3.595,8032,2.487,8068,3.424,8109,3.595,8136,3.424,8137,4.533,8138,3.81,8139,4.533,8140,7.658,8141,3.595,8142,3.81,8143,3.424,8144,3.81,8145,6.532,8146,3.053,8147,3.595,8148,3.81,8149,4.097,8150,5.181,8151,4.533,8152,4.533,8153,3.81,8154,4.533,8155,4.533,8156,4.533,8157,4.533,8158,3.81]],["description//tracks/90daysofdevops/day56",[]],["title//tracks/90daysofdevops/day55",[1665,3.611,5100,1.598,6513,3.219,6683,3.029]],["content//tracks/90daysofdevops/day55",[6,0.267,25,1.258,26,1.167,27,0.998,32,0.898,36,2.133,38,1.024,42,1.549,44,2.228,53,1.572,56,1.085,57,0.858,63,2.733,64,1.809,65,0.492,67,0.954,68,1.308,70,0.924,71,0.867,74,1.594,75,1.817,96,0.65,103,1.741,107,1.75,110,0.61,113,2.213,114,0.515,118,1.819,124,1.352,126,1.019,133,1.741,136,1.303,137,0.859,144,1.157,146,2.309,159,0.976,161,0.885,169,1.741,173,0.72,175,0.706,176,0.573,183,2.279,190,0.833,196,1.537,197,1.868,202,1.587,203,0.914,204,1.554,206,1.734,212,0.987,216,0.693,219,0.833,220,1.741,221,1.47,226,1.189,227,2.066,229,1.157,230,1.668,234,1.201,235,2.011,238,1.361,240,1.022,245,2.318,246,1.245,261,1.085,264,0.987,265,1.085,268,0.85,272,1.941,288,1.151,289,1.781,295,0.713,301,1.085,304,1.434,311,1.434,313,2.138,319,1.173,331,0.914,337,1.52,343,1.127,344,1.08,351,0.769,352,1.848,354,2.136,355,0.914,356,0.85,362,1.204,366,1.339,372,1.189,374,2.357,375,1.868,394,2.044,397,1.159,406,1.434,410,1.318,421,1.222,422,1.38,423,0.867,424,1.488,425,2.967,427,1.748,433,1.46,453,1.968,461,0.998,462,1.182,464,2.042,465,4.024,468,1.173,470,1.554,479,1.349,482,1.318,490,1.779,494,2.23,507,0.904,517,1.384,527,1.618,530,1.297,536,1.05,542,0.895,548,2.836,556,0.895,593,1.368,600,1.337,612,2.624,625,1.968,626,1.736,628,1.341,637,1.864,638,1.297,640,1.554,645,1.518,655,1.996,675,0.833,678,1.46,712,2.373,718,1.665,734,2.24,742,0.748,767,1.656,777,1.318,778,1.901,779,1.113,785,1.426,787,1.173,805,1.941,817,1.426,828,1.408,840,3.055,843,1.889,849,2.032,859,1.205,867,0.944,882,1.46,901,2.877,905,0.384,907,0.992,908,2.24,918,0.814,925,0.8,930,1.915,935,0.681,939,1.59,991,0.8,998,1.258,1009,1.968,1010,4.273,1021,1.355,1024,1.418,1028,1.618,1038,1.656,1046,1.034,1049,1.258,1053,1.52,1054,3.697,1061,1.941,1103,1.142,1109,2.192,1110,1.046,1143,1.142,1187,1.339,1208,0.867,1234,0.987,1241,2.044,1246,1.434,1252,1.789,1266,1.059,1268,1.518,1280,3.669,1284,2.091,1287,1.318,1288,2.953,1292,3.01,1300,1.205,1310,2.24,1331,1.931,1341,1.554,1351,1.113,1364,2.371,1374,1.297,1386,2.058,1405,1.665,1424,1.665,1439,1.697,1440,1.697,1450,1.656,1482,2.725,1484,1.915,1485,1.488,1491,1.843,1530,1.656,1557,1.656,1592,1.952,1599,1.339,1601,3.133,1625,4.549,1646,1.339,1648,2.352,1656,0.987,1661,0.965,1669,1.205,1678,1.361,1690,1.297,1693,1.843,1696,1.789,1700,1.697,1702,2.356,1705,1.968,1715,5.504,1734,1.518,1742,4.043,1764,1.843,1774,1.582,1792,2.58,1794,2.133,1818,1.127,1851,2.373,1858,2.725,1863,2.027,1869,0.885,1883,2.24,1916,2.667,1942,2.044,1954,0.833,1958,1.889,1978,1.618,1979,1.205,1984,1.434,2001,1.549,2012,2.133,2027,1.618,2033,2.044,2039,1.434,2045,2.495,2052,1.339,2054,1.582,2055,1.518,2067,1.441,2104,4.135,2227,2.733,2251,3.133,2264,1.741,2284,1.697,2364,0.976,2381,3.436,2467,1.361,2564,1.277,2611,1.656,2613,2.24,2643,1.277,2693,1.998,2727,2.445,2765,1.434,2820,1.297,2872,1.902,2888,1.902,2902,1.697,2929,1.318,2976,1.952,3000,1.656,3008,1.518,3014,2.133,3107,1.741,3172,2.192,3174,1.554,3187,1.384,3242,1.697,3305,1.434,3394,1.189,3426,1.085,3434,1.222,3636,1.843,3750,1.582,3764,1.656,3803,1.072,3811,1.339,3889,2.133,3891,1.384,3915,1.339,3963,1.656,3964,1.843,3978,2.044,3984,1.384,4039,1.277,4136,3.349,4201,1.297,4271,3.153,4273,2.133,4285,1.518,4415,1.258,4437,2.882,4475,1.582,4497,1.222,4545,1.258,4554,2.549,4770,2.552,4802,4.96,4989,1.339,5008,1.222,5017,2.552,5024,1.549,5026,2.192,5100,3.512,5106,2.24,5122,1.189,5136,2.24,5143,2.667,5146,1.789,5158,1.59,5173,1.46,5194,1.968,5217,2.495,5258,2.24,5262,1.902,5304,1.815,5305,0.816,5321,1.968,5323,3.784,5327,1.741,5360,2.804,5404,1.697,5521,2.24,5524,1.941,5562,1.318,5886,4.8,5891,2.373,5894,1.968,6027,1.339,6230,1.968,6352,2.133,6355,4.354,6356,1.157,6361,1.297,6365,1.902,6366,4.558,6368,1.968,6370,6.044,6377,4.936,6378,2.24,6379,7.893,6380,4.54,6387,2.044,6388,5.194,6389,5.423,6390,4.8,6391,1.968,6404,1.843,6415,2.044,6418,1.697,6425,2.404,6436,1.77,6443,3.293,6444,2.352,6449,1.434,6452,1.618,6453,2.549,6466,2.733,6470,1.789,6476,1.741,6480,1.205,6482,2.133,6484,3.823,6485,2.373,6486,2.044,6487,2.373,6488,2.373,6490,2.373,6498,5.274,6501,6.086,6513,6.754,6525,2.044,6595,3.17,6642,7.476,6651,1.741,6666,3.823,6669,2.373,6677,3.823,6678,6.489,6679,4.111,6683,5.761,6684,4.096,6686,3.823,6689,2.552,6690,2.552,6691,2.373,6692,5.919,6712,1.968,6738,2.552,6757,2.552,6761,1.339,6790,2.044,6809,2.133,6886,3.436,6895,1.618,6898,2.289,6919,1.582,6923,1.902,6964,0.998,7015,2.044,7020,3.17,7025,3.823,7060,1.789,7061,2.552,7071,3.823,7142,1.697,7216,1.843,7223,2.552,7261,4.41,7341,2.552,7370,2.552,7398,3.063,7423,1.618,7433,4.111,7573,2.373,7586,2.24,7973,2.133,8021,2.373,8028,2.552,8141,2.24,8146,1.902,8148,2.373,8159,5.162,8160,2.552,8161,4.549,8162,2.824,8163,2.824,8164,2.824,8165,8.664,8166,2.824,8167,2.824,8168,2.824,8169,6.868,8170,2.373,8171,2.824,8172,2.552,8173,4.549,8174,2.824,8175,2.044,8176,2.824,8177,2.373,8178,2.552,8179,2.824,8180,2.824,8181,2.824,8182,2.552,8183,5.919,8184,2.24,8185,2.824,8186,6.935,8187,2.824,8188,2.552,8189,2.824,8190,2.552,8191,4.549,8192,2.044,8193,2.824,8194,2.824,8195,2.824,8196,2.824,8197,2.824,8198,2.824,8199,2.373,8200,2.552,8201,2.552,8202,2.552,8203,4.549,8204,2.24,8205,2.824,8206,2.824,8207,2.824,8208,3.17,8209,2.044,8210,2.552,8211,1.968,8212,2.23,8213,2.23,8214,2.044,8215,2.044,8216,2.044,8217,2.044,8218,1.968,8219,2.373,8220,2.824,8221,2.824]],["description//tracks/90daysofdevops/day55",[]],["title//tracks/90daysofdevops/day54",[75,0.84,1702,1.468,2603,3.791,5100,1.598]],["content//tracks/90daysofdevops/day54",[6,0.328,7,1.586,14,1.071,26,0.83,27,1.258,32,0.703,38,0.556,44,1.104,57,1.658,64,1.127,68,1.209,70,1.164,74,1.211,75,1.844,80,1.211,94,2.087,96,1.527,105,1.458,107,1.773,109,1.244,110,0.769,111,1.561,112,0.97,114,1.355,118,1.516,124,1.37,126,1.486,136,0.812,137,1.253,139,1.315,141,1.028,147,1.417,161,1.116,164,1.472,175,1.004,176,1.107,182,2.255,190,1.956,196,1.203,197,1.164,202,0.989,203,1.765,204,1.216,206,1.969,208,1.84,211,2.322,212,1.244,216,1.629,217,1.693,219,1.956,227,2.902,229,1.458,230,1.864,234,0.748,235,1.675,238,3.585,240,1.974,245,1.896,251,1.744,259,1.318,264,1.244,265,2.096,288,1.166,289,2.018,295,1.378,301,1.367,304,1.807,306,2.396,342,1.498,343,1.644,344,0.376,351,0.97,352,1.152,354,2.124,356,0.862,362,1.757,374,2.38,376,1.54,377,1.402,393,0.96,397,0.907,402,1.875,406,1.807,411,1.875,421,1.54,422,1.049,423,1.675,427,2.096,431,2.407,432,1.498,470,1.216,473,1.635,479,1.285,489,1.687,490,1.352,517,1.744,519,2.265,530,2.506,536,0.654,541,1.875,548,1.203,556,1.728,560,2.235,587,1.744,593,1.494,595,1.334,598,1.402,600,1.75,601,2.138,612,1.635,626,1.082,636,2.267,639,1.875,640,2.267,647,1.54,648,1.384,650,4.468,675,2.193,708,2.039,718,1.303,741,1.402,742,1.444,758,1.765,771,2.039,778,1.444,817,1.116,819,1.875,843,1.478,849,2,901,3.303,907,1.622,910,1.093,917,0.924,918,1.436,925,1.008,926,1.272,934,2.721,935,0.858,939,1.244,953,3.216,991,1.008,1002,1.082,1005,3.523,1007,1.635,1012,1.775,1017,1.478,1018,1.177,1021,2.389,1024,1.911,1026,1.66,1030,2.194,1036,1.177,1049,1.586,1053,1.19,1054,3.72,1055,1.049,1061,1.519,1070,2.688,1079,1.35,1088,1.279,1089,1.997,1109,3.585,1121,2.138,1141,2.396,1232,2.039,1234,1.244,1240,1.42,1249,2.255,1254,1.84,1255,1.334,1266,1.334,1269,1.35,1271,2.021,1280,1.994,1283,1.84,1295,3.998,1296,2.858,1300,2.329,1308,0.924,1315,1.42,1331,1.956,1341,2.741,1351,1.402,1374,1.635,1386,3.001,1405,1.303,1424,1.997,1428,2.322,1439,2.138,1465,2.823,1482,2.07,1483,2.875,1487,2.721,1493,2.576,1528,1.563,1530,2.087,1591,1.952,1599,1.687,1626,1.116,1636,2.194,1639,2.017,1651,2.362,1652,1.35,1669,2.832,1674,1.807,1675,1.84,1680,1.35,1685,2.823,1702,3.015,1741,1.54,1742,4.349,1745,1.384,1774,3.057,1780,3.278,1786,1.303,1863,1.586,1876,2.194,1910,4.121,1955,1.687,2004,1.498,2046,1.42,2052,1.687,2067,1.728,2069,2.039,2162,4.204,2213,1.994,2690,2.48,2693,1.563,2698,1.807,2699,1.744,2727,4.549,2832,2.48,2976,1.864,3146,2.255,3149,2.823,3159,1.303,3179,3.417,3305,1.807,3327,2.087,3434,1.54,3660,2.932,3696,0.933,3702,2.48,3883,2.194,3923,2.396,3948,3.199,4034,2.255,4136,3.89,4248,2.576,4415,2.431,4424,1.54,4484,2.576,4546,2.087,4721,2.138,5026,4.492,5100,3.523,5158,1.907,5173,1.84,5194,2.48,5323,2.875,5324,1.66,5343,3.95,5360,2.194,5395,2.823,5482,2.087,5641,3.672,5935,2.396,5982,1.586,6170,3.216,6230,2.48,6355,4.591,6358,2.688,6361,1.635,6370,4.854,6377,4.919,6380,4.149,6387,2.576,6393,2.576,6425,2.296,6427,1.807,6442,2.087,6445,2.039,6449,1.807,6452,4.595,6453,3.718,6491,6.052,6498,1.994,6526,3.216,6593,5.012,6595,5.185,6651,2.194,6684,4.615,6686,2.991,6712,2.48,6737,2.48,6761,1.687,6781,1.994,6895,2.039,6898,2.319,6969,5.899,7025,2.991,7060,6.807,7072,4.121,7135,2.48,7157,2.991,7176,3.216,7261,2.396,7262,3.674,7263,2.991,7367,4.585,7368,5.263,7451,2.087,7460,2.576,7586,2.823,7733,2.396,7800,2.087,7960,3.216,7961,4.931,8063,2.991,8085,2.991,8143,2.688,8159,3.216,8199,4.585,8200,3.216,8202,3.216,8204,2.823,8212,2.674,8213,2.674,8214,2.576,8215,2.576,8216,2.576,8217,2.576,8218,2.48,8222,2.48,8223,3.216,8224,3.559,8225,3.559,8226,3.559,8227,3.216,8228,3.559,8229,3.559,8230,3.559,8231,2.688,8232,3.559,8233,2.991,8234,3.559,8235,3.559,8236,3.559,8237,3.559,8238,3.559,8239,3.559,8240,3.559,8241,3.559,8242,3.216,8243,2.991,8244,2.991,8245,3.559,8246,3.559,8247,3.559,8248,2.823,8249,2.576,8250,2.991,8251,6.635,8252,3.559,8253,3.559,8254,2.48,8255,3.559,8256,3.559,8257,2.991,8258,3.559,8259,3.559,8260,3.559,8261,3.559]],["description//tracks/90daysofdevops/day54",[]],["title//tracks/90daysofdevops/day53",[1478,2.248,2595,4.294,8262,4.294]],["content//tracks/90daysofdevops/day53",[6,0.299,15,1.533,18,1.43,26,1.303,27,2.569,30,1.297,32,1.207,38,0.647,44,1.284,46,2.028,65,0.721,68,1.324,71,1.271,74,1.613,75,1.278,80,1.613,96,1.407,105,1.106,107,1.106,109,1.446,110,1.32,111,1.749,112,1.128,113,1.399,114,0.754,118,1.15,120,1.007,124,0.855,126,1.369,136,0.944,137,1.154,141,1.196,147,2.085,149,1.995,159,1.43,161,1.916,172,1.844,175,0.999,176,1.88,196,3.34,197,1.354,202,1.698,203,2.771,206,1.618,207,2.028,214,2.684,216,1.016,217,1.284,227,2.211,229,1.695,230,0.961,235,1.271,245,2.046,246,0.902,256,3.988,264,1.446,268,1.839,272,2.609,288,1.411,289,0.878,295,2.403,300,1.515,304,2.101,343,1.515,344,0.437,351,1.665,352,1.978,354,1.096,356,0.537,374,2.314,381,1.652,397,1.558,408,2.646,413,2.101,427,2.348,431,1.339,439,1.962,442,1.995,464,2.599,468,1.718,470,1.414,474,1.995,479,0.864,488,1.354,490,1.989,519,1.718,540,1.742,545,2.486,556,1.311,571,3.672,593,1.233,595,1.552,598,2.863,600,1.615,611,1.515,612,2.808,626,1.858,647,3.146,648,2.827,675,1.22,718,1.515,757,2.996,758,1.599,766,2.551,778,1.924,785,1.297,817,1.297,823,3.103,843,2.538,849,2.001,852,1.901,857,1.931,859,1.766,907,1.332,911,2.7,917,1.888,918,0.741,925,1.732,931,2.161,991,2.539,998,1.844,1015,2.101,1017,1.718,1019,3.172,1021,1.82,1024,1.831,1034,2.371,1036,2.021,1046,1.515,1055,1.802,1057,1.962,1088,1.433,1110,1.533,1143,1.673,1224,1.61,1234,1.446,1237,1.718,1240,1.652,1244,2.787,1266,2.725,1269,1.571,1271,3.172,1284,2.237,1311,2.371,1315,1.652,1331,2.143,1351,1.63,1362,2.064,1363,1.552,1366,5.137,1386,1.872,1430,1.962,1435,2.898,1478,1.718,1480,1.995,1487,2.064,1504,2.27,1509,2.884,1516,1.463,1534,5.065,1541,2.787,1592,1.414,1597,1.931,1599,1.962,1610,1.533,1622,2.371,1626,1.916,1632,1.634,1639,1.258,1647,2.064,1651,2.646,1656,1.446,1674,3.103,1677,3.103,1680,1.571,1702,2.752,1745,1.61,1854,2.551,1912,1.695,1952,2.101,1954,2.143,1984,2.101,1987,1.571,2004,1.742,2005,2.064,2053,2.787,2067,2.302,2145,2.551,2251,3.353,2277,2.089,2283,2.14,2364,1.43,2470,2.028,2629,3.624,2647,1.962,2662,2.504,2723,2.486,2929,1.931,2976,2.089,3008,2.224,3147,4.403,3154,2.54,3159,2.237,3304,2.14,3353,1.962,3394,1.742,3426,1.59,3495,1.446,3511,1.673,3606,2.996,3659,4.072,3946,3.768,4034,3.873,4145,2.884,4155,2.551,4272,2.946,4398,2.884,4459,1.817,4497,1.791,4835,4.26,4975,3.74,5043,2.064,5100,3.506,5127,2.224,5158,2.136,5173,2.14,5194,2.884,5287,2.7,5305,1.196,5313,3.624,5314,2.7,5324,2.852,5386,2.884,5641,2.863,5669,2.996,5706,2.787,5982,3.239,5984,2.884,6263,3.221,6355,4.878,6361,1.901,6370,2.7,6377,3.758,6380,2.028,6436,2.378,6444,2.14,6451,2.551,6466,2.486,6480,3.102,6558,3.987,6719,2.884,6761,1.962,6769,4.425,6781,2.319,6816,2.884,6895,2.371,6898,2.54,6964,3.168,6994,3.126,7005,3.126,7070,2.996,7451,3.584,7534,2.996,7656,4.905,7681,6.108,7768,3.282,7800,3.584,7806,2.426,7813,3.282,8182,3.74,8212,2.996,8213,2.996,8214,2.996,8215,2.996,8216,2.996,8217,2.996,8218,2.884,8222,2.884,8262,8.614,8263,3.282,8264,3.74,8265,4.138,8266,7.268,8267,3.74,8268,4.138,8269,7.268,8270,4.138,8271,3.126,8272,6.112,8273,3.74,8274,3.74,8275,4.138,8276,4.138,8277,4.138,8278,5.524,8279,3.478,8280,4.138,8281,6.569,8282,7.268,8283,5.137,8284,6.112,8285,6.112,8286,6.112,8287,6.112,8288,6.112,8289,6.112,8290,6.112,8291,6.112,8292,6.112,8293,3.74,8294,3.478,8295,3.282,8296,3.478]],["description//tracks/90daysofdevops/day53",[]],["title//tracks/90daysofdevops/day52",[355,1.385,2591,3.597,5100,1.43,6355,1.907,8297,3.868]],["content//tracks/90daysofdevops/day52",[6,0.392,8,1.594,26,0.528,27,1.227,30,1.088,32,1.057,33,2.877,38,1.148,46,1.701,52,1.524,53,1.199,58,1.714,64,1.1,68,0.975,70,1.751,71,1.644,74,1.188,80,1.45,82,2.622,96,0.799,105,0.928,107,1.431,110,0.75,111,0.993,113,1.809,114,0.975,120,1.302,124,0.717,126,0.778,128,2.513,137,0.655,139,0.837,141,1.003,147,2.177,157,3.137,159,1.199,161,1.088,164,1.763,173,0.885,175,1.036,176,1.086,183,1.385,190,1.023,196,3.411,201,1.441,202,0.964,203,1.732,204,1.186,206,0.919,214,1.524,216,1.604,217,1.077,219,1.023,222,1.227,227,1.256,229,1.422,230,1.706,235,2.255,238,1.673,245,2.451,246,0.757,247,2.421,264,1.213,268,1.965,288,1.148,289,1.853,295,1.65,304,1.762,313,1.034,319,1.441,334,1.731,337,1.16,343,1.619,344,0.565,351,0.946,354,0.919,355,1.732,356,0.848,358,1.795,362,0.919,374,2.194,378,2.317,393,1.444,397,1.871,413,2.717,421,1.503,423,1.066,441,1.524,442,2.58,462,1.697,464,1.914,467,1.627,470,1.186,472,2.109,476,1.385,477,2.717,479,1.038,485,2.936,486,2.265,489,1.646,490,2.077,507,1.111,517,2.624,519,1.441,527,1.989,536,1.35,555,1.35,562,2.14,593,1.108,595,3.605,600,1.521,603,2.14,612,1.594,626,1.055,628,1.023,635,1.148,718,1.271,742,0.919,758,1.177,778,0.919,779,1.368,785,1.088,823,1.762,832,1.762,843,3.049,849,1.668,852,1.594,857,1.62,859,1.482,867,1.16,896,3.3,903,2.031,907,1.424,908,2.753,910,1.066,917,1.907,918,0.621,925,0.983,930,2.75,931,2.309,991,2.677,995,1.701,996,3.481,1002,1.985,1005,2.869,1009,2.419,1017,2.712,1018,1.148,1021,1.594,1024,1.29,1034,1.989,1036,1.77,1046,2.903,1053,1.789,1055,1.023,1061,1.482,1088,1.532,1109,3.148,1110,1.286,1143,1.403,1187,1.646,1193,2.753,1197,1.829,1205,1.16,1208,1.066,1211,1.904,1224,2.082,1232,1.989,1268,2.877,1292,1.829,1296,1.334,1297,2.936,1305,2.419,1331,1.926,1351,1.368,1361,1.795,1374,1.594,1425,2.753,1484,1.461,1508,2.035,1516,1.227,1592,1.186,1626,2.901,1632,1.746,1647,1.731,1649,2.14,1650,2.035,1654,2.086,1680,1.317,1702,2.573,1725,2.622,1786,1.959,1829,1.317,1858,1.317,1869,1.088,1930,1.487,1942,2.513,1948,2.513,1954,1.578,1979,1.482,1985,2.265,1987,1.317,1988,1.795,2001,1.904,2004,1.461,2027,4.801,2046,2.136,2054,1.945,2069,3.066,2138,2.753,2158,2.035,2181,2.199,2259,1.547,2263,2.622,2277,2.509,2333,1.594,2564,1.57,2600,2.199,2647,1.646,2659,2.035,2660,2.265,2662,1.422,2820,1.594,2821,2.753,2873,2.086,2902,2.086,2904,2.768,2976,1.829,3008,2.877,3147,1.904,3159,1.271,3172,1.673,3174,1.186,3179,3.001,3213,2.14,3270,4.935,3353,1.646,3397,2.086,3426,1.334,3492,2.753,3508,1.731,3657,1.914,3658,1.646,3661,2.624,3696,1.404,3700,2.222,3803,1.317,3963,2.035,4010,1.989,4034,3.392,4120,2.199,4449,1.866,4536,2.917,4765,2.338,4827,2.199,5008,1.503,5029,2.199,5036,1.35,5078,3.83,5093,2.035,5100,3.602,5101,4.245,5127,3.511,5158,1.871,5173,1.795,5194,2.419,5241,3.3,5300,1.673,5313,1.731,5320,3.731,5324,3.048,5335,2.14,5343,2.513,5366,2.513,5389,3.956,5548,5.247,5641,1.368,5648,3.137,5964,2.917,6082,2.917,6095,2.14,6160,2.14,6355,4.757,6377,4.785,6380,3.202,6399,1.35,6425,2.253,6427,1.762,6445,4.206,6465,3.138,6466,2.086,6476,2.14,6477,3.137,6486,2.513,6506,1.385,6525,2.513,6681,4.245,6712,2.419,6893,2.622,6895,1.989,6897,4.043,6898,2.283,6909,2.199,6923,2.338,6964,2.309,6975,2.622,7040,3.137,7115,6.171,7161,1.701,7163,2.513,7182,2.351,7261,2.338,7307,2.419,7351,2.753,7359,2.753,7365,6.363,7418,2.622,7422,2.513,7451,4.651,7463,2.338,7516,4.651,7534,2.513,7544,2.199,7577,4.729,7656,5.916,7658,5.546,7768,5.181,7769,2.917,7770,3.137,7771,3.137,7784,4.838,7788,3.137,7789,3.137,7799,3.137,7800,4.651,7802,4.499,7804,3.137,7806,2.035,7807,5.904,7840,3.137,7914,3.137,7951,3.137,7970,2.917,7987,2.419,7989,2.419,8032,1.904,8064,2.419,8065,2.419,8107,2.513,8109,2.753,8170,2.917,8192,2.513,8211,3.731,8212,2.624,8213,2.624,8214,2.513,8215,2.513,8216,2.513,8217,2.513,8218,2.419,8278,5.904,8279,2.917,8283,5.49,8297,4.838,8298,3.137,8299,2.622,8300,3.216,8301,5.352,8302,2.917,8303,3.471,8304,3.471,8305,3.471,8306,5.352,8307,5.352,8308,3.471,8309,3.471,8310,3.471,8311,3.471,8312,3.471,8313,3.471,8314,3.471,8315,3.137,8316,3.471,8317,3.471,8318,3.471,8319,5.352,8320,5.352,8321,5.352,8322,3.471,8323,5.352,8324,5.352,8325,3.471,8326,5.352,8327,5.352,8328,5.352,8329,7.342,8330,6.533,8331,5.352,8332,3.471,8333,5.352,8334,6.533,8335,5.352,8336,2.753,8337,3.137,8338,3.471,8339,3.471,8340,3.471,8341,3.471,8342,3.471,8343,3.471,8344,4.499,8345,4.245,8346,2.917,8347,2.917,8348,2.917,8349,2.622]],["description//tracks/90daysofdevops/day52",[]],["title//tracks/90daysofdevops/day51",[164,1.461,2590,4.55,6380,2.654]],["content//tracks/90daysofdevops/day51",[1,0.993,6,0.427,8,1.5,26,1.081,27,1.154,29,1.825,32,1.403,35,1.804,38,1.278,65,0.569,70,1.068,75,1.249,77,1.414,96,1.447,101,1.5,102,0.84,105,1.364,107,0.873,110,0.706,111,2.206,113,1.725,118,1.974,124,1.467,128,3.696,136,0.745,137,0.617,139,1.713,141,1.816,146,1.658,154,1.915,159,1.764,161,1.024,164,2.305,173,1.301,175,0.55,176,0.662,190,0.963,191,1.186,196,2.124,202,0.907,203,2.299,206,1.881,212,1.141,217,1.584,219,0.963,221,0.84,222,2.222,224,1.141,227,1.847,230,1.899,235,1.003,238,1.574,244,1.721,245,1.301,246,1.37,268,1.891,270,2.149,288,0.574,295,1.587,300,1.195,337,1.706,342,1.375,343,0.809,344,0.539,351,1.391,354,1.664,356,0.663,374,2.016,389,2.013,393,1.696,397,1.301,413,3.191,422,0.981,432,1.375,433,1.689,441,1.434,442,1.574,462,0.848,464,1.168,470,1.744,471,1.434,479,0.721,485,1.791,490,1.558,507,1.046,519,1.356,536,0.938,554,2.64,556,1.991,558,1.83,593,1.54,595,1.224,600,1.095,626,0.993,635,2.078,636,1.116,639,2.69,648,1.986,702,3.754,741,2.476,742,1.351,756,1.068,758,1.696,760,1.791,787,1.356,805,1.394,829,2.467,843,2.12,845,1.375,849,1.953,901,2.356,903,1.239,907,1.862,917,1.326,918,0.914,925,0.925,926,1.168,939,1.141,991,1.781,996,3.655,1002,0.993,1005,3.386,1010,2.131,1019,1.891,1021,0.973,1024,1.869,1036,1.08,1046,2.992,1047,2.364,1057,3.655,1088,0.766,1089,1.195,1121,3.067,1138,0.848,1197,2.69,1205,1.706,1208,1.003,1234,1.141,1240,1.303,1255,1.224,1269,1.239,1271,2.328,1295,2.744,1296,1.255,1307,2.199,1311,1.871,1331,0.963,1341,3.02,1351,2.011,1363,1.224,1405,2.822,1424,1.869,1450,1.915,1451,1.791,1474,1.83,1478,1.356,1480,2.46,1484,1.375,1489,1.27,1508,1.915,1529,1.755,1536,1.434,1597,1.524,1599,1.548,1615,2.59,1626,2.417,1630,1.658,1632,1.68,1636,2.013,1639,1.91,1641,2.276,1647,2.546,1652,1.239,1678,1.574,1702,2.789,1729,2.46,1840,1.871,1871,2.199,1887,1.791,1903,2.276,1930,0.907,1954,0.963,1983,2.013,1987,1.937,2012,3.856,2067,1.617,2103,2.131,2149,2.952,2213,1.83,2240,2.013,2277,1.744,2333,2.345,2381,2.467,2467,1.574,2470,2.502,2587,1.721,2647,1.548,2680,2.59,2693,1.434,2699,2.502,2949,1.394,2975,4.848,2976,1.744,3000,2.993,3147,1.791,3152,2.276,3154,1.141,3174,1.744,3302,2.745,3353,1.548,3362,2.199,3380,2.276,3494,2.467,3500,2.199,3508,1.629,3511,2.064,3516,3.147,3546,1.915,3655,2.744,3657,2.541,3661,1.601,3696,1.648,3699,1.434,3700,2.12,3714,2.745,3764,1.915,3811,1.548,3884,2.276,3926,2.069,3948,1.915,4025,2.745,4155,2.013,4415,2.275,4802,1.658,5004,2.745,5008,1.414,5026,2.46,5029,2.069,5036,1.27,5078,3.685,5093,1.915,5100,3.631,5101,4.049,5127,3.378,5158,1.784,5173,1.689,5194,2.276,5241,2.013,5304,1.303,5320,2.276,5324,1.524,5335,2.013,5343,5.144,5641,3.038,5707,1.962,5824,2.745,6188,3.438,6355,4.683,6361,2.345,6371,2.467,6377,5.516,6378,2.59,6380,5.101,6382,2.199,6383,2.364,6388,2.59,6389,2.467,6400,1.524,6425,2.149,6430,3.819,6436,2.445,6449,1.658,6452,5.204,6470,2.069,6476,2.013,6486,2.364,6491,2.013,6498,4.952,6506,2.037,6513,2.199,6649,2.952,6669,5.282,6670,2.952,6681,7.205,6683,2.069,6684,1.658,6713,2.013,6761,1.548,6768,2.59,6770,2.131,6816,2.276,6840,2.745,6841,2.745,6895,1.871,6897,5.367,6898,2.196,6964,2.889,6981,2.952,6983,1.871,7066,2.745,7071,2.745,7101,2.59,7126,3.235,7182,2.242,7230,1.755,7261,2.199,7307,4.38,7385,1.689,7451,1.915,7516,4.521,7563,2.59,7577,2.364,7656,1.871,7703,2.59,7733,2.199,7800,3.685,7941,2.745,8032,1.791,8064,2.276,8065,2.276,8183,2.952,8186,2.952,8192,2.364,8209,2.364,8211,4.38,8212,2.502,8213,2.502,8214,2.364,8215,2.364,8216,2.364,8217,2.364,8218,2.276,8233,2.745,8336,2.59,8344,4.29,8345,4.049,8346,2.745,8347,2.745,8348,2.745,8349,2.467,8350,2.952,8351,3.266,8352,3.266,8353,2.745,8354,1.791,8355,3.266,8356,2.59,8357,2.276,8358,3.266,8359,2.952,8360,2.59,8361,2.59,8362,3.266,8363,3.266,8364,2.952,8365,3.266,8366,3.266,8367,3.266,8368,2.952,8369,3.266,8370,3.266,8371,3.266,8372,3.266,8373,2.952,8374,2.364,8375,3.266,8376,3.266,8377,3.266,8378,3.266,8379,3.266,8380,3.266,8381,3.266,8382,3.266,8383,3.266,8384,3.266,8385,3.266,8386,3.266,8387,3.266,8388,3.266,8389,3.266,8390,2.952,8391,3.266,8392,2.952,8393,3.266]],["description//tracks/90daysofdevops/day51",[]],["title//tracks/90daysofdevops/day50",[222,1.513,1240,1.708,1641,2.983,3159,1.566,5100,1.43]],["content//tracks/90daysofdevops/day50",[6,0.335,8,3.087,18,1.63,26,0.717,27,1.667,32,0.931,37,2.833,38,1.051,42,2.587,52,2.951,53,1.63,74,1.047,75,1.376,76,3.74,80,1.047,96,1.086,105,1.26,107,1.26,109,1.648,110,1.019,115,3.414,126,1.505,136,1.533,137,0.89,149,2.273,159,1.63,175,1.063,176,1.588,190,2.516,196,3.048,198,2.311,203,3.034,206,2.259,216,1.65,217,3.114,219,1.39,221,1.213,226,1.985,227,2.431,230,1.096,245,1.713,246,1.028,267,1.79,268,2.567,272,2.868,288,1.585,295,1.191,331,1.526,333,1.576,343,1.169,351,1.285,356,1.017,374,1.076,383,2.085,397,1.202,398,2.236,422,1.292,423,1.448,441,2.071,442,2.273,461,1.667,464,3.051,467,2.593,479,0.666,488,1.542,489,2.236,517,2.311,518,2.129,519,1.958,535,1.665,539,2.701,540,1.985,541,2.485,555,2.614,593,0.8,600,1.487,611,1.726,626,2.741,628,1.981,636,1.611,637,1.932,650,3.176,756,1.542,758,1.722,774,2.296,777,2.2,779,1.858,805,2.013,823,2.394,843,2.79,845,2.828,851,3.414,859,2.868,902,2.438,907,1.028,917,2.216,918,0.844,935,1.137,938,1.26,939,1.648,991,2.218,998,2.102,1002,1.433,1005,3.747,1021,1.404,1040,2.394,1046,3.301,1059,2.352,1066,2.489,1143,1.907,1198,2.311,1208,2.063,1234,2.348,1240,3.599,1271,1.747,1282,2.485,1289,2.765,1299,2.394,1301,1.51,1308,1.225,1309,2.041,1363,1.768,1435,3.186,1451,3.686,1461,3.562,1478,1.958,1482,1.79,1484,1.985,1508,2.765,1526,3.186,1528,2.951,1530,2.765,1535,2.765,1599,2.236,1626,2.675,1627,2.394,1639,1.433,1656,2.736,1669,2.868,1686,4.525,1690,3.596,1826,3.176,1907,3.562,1912,1.932,1930,1.31,2189,2.833,2225,2.394,2245,2.701,2277,2.916,2438,3.077,2470,2.311,2647,2.236,2660,3.077,3013,2.535,3065,2.833,3147,2.587,3149,3.74,3159,3.301,3172,2.273,3394,2.828,3426,1.812,3515,2.642,3657,1.686,3696,2.053,3700,3.543,3702,4.683,3750,2.642,3764,3.94,3779,2.988,3799,3.642,3800,2.2,3803,1.79,3891,2.311,3926,2.988,3944,2.988,3959,3.077,3984,3.837,4079,2.485,4109,3.176,4123,5.108,4137,3.562,4285,2.535,4379,3.562,4424,2.909,4459,2.071,4538,3.74,4616,2.988,4805,3.077,4810,4.262,4989,2.236,5008,2.041,5029,2.988,5036,1.835,5078,5.003,5093,2.765,5100,3.703,5101,6.209,5122,1.985,5241,2.907,5323,2.485,5335,2.907,5343,3.414,5386,3.287,5407,2.907,5450,1.958,5482,2.765,5542,2.394,5561,3.176,5641,1.858,5960,3.287,6027,2.236,6355,4.637,6361,2.166,6380,4.182,6425,2.828,6436,2.614,6444,2.438,6483,4.262,6502,3.74,6713,2.907,6746,4.262,6750,3.077,6840,3.963,6841,3.963,6897,5.076,6919,2.642,6964,1.667,6984,3.963,7002,3.414,7034,2.833,7126,4.258,7127,4.037,7182,2.951,7183,3.287,7221,3.287,7261,3.176,7319,3.077,7342,4.262,7465,3.74,7516,5.288,7539,3.562,7571,3.963,7572,3.963,7577,4.865,7646,3.414,7806,2.765,7989,4.683,8032,5.143,8064,3.287,8065,3.287,8107,3.414,8110,3.287,8211,4.683,8264,4.262,8299,3.562,8344,5.648,8345,6.209,8346,5.648,8347,3.963,8348,3.963,8349,3.562,8350,6.073,8394,4.262,8395,4.716,8396,4.716,8397,4.262,8398,4.262,8399,3.963,8400,3.414,8401,4.716,8402,4.262,8403,4.716,8404,4.716,8405,4.262,8406,4.262,8407,3.562,8408,4.716,8409,4.716,8410,4.716,8411,4.716]],["description//tracks/90daysofdevops/day50",[]],["title//tracks/90daysofdevops/day49",[1208,1.662,2138,4.294,5100,1.81]],["content//tracks/90daysofdevops/day49",[1,0.853,4,2.031,5,1.508,6,0.168,8,1.289,11,1.424,14,0.844,18,1.564,26,1.224,27,0.992,29,1.003,32,1.511,35,2.704,38,0.889,44,0.871,49,0.765,52,1.987,53,1.965,54,3.154,56,1.078,57,1.375,58,1.821,65,1.137,67,1.529,68,1.036,70,0.918,71,2.003,72,1.539,73,0.757,75,1.747,77,1.215,80,1.698,89,1.269,96,0.646,101,1.289,102,0.722,110,1.546,112,1.233,115,2.031,118,1.58,124,0.935,126,1.274,127,1.479,133,1.73,136,1.488,139,0.676,159,1.564,161,0.88,173,1.153,175,0.824,176,0.569,190,1.923,191,0.652,193,2.031,195,3.92,196,3.471,197,0.918,201,1.879,202,1.257,203,0.908,204,0.959,206,0.743,207,1.375,212,0.981,214,3.534,215,1.399,216,1.111,217,1.404,220,1.73,221,1.679,222,0.992,224,1.987,225,1.711,226,2.394,227,3.211,230,2.183,235,2.197,240,1.015,245,1.153,246,1.24,261,2.749,263,1.134,268,1.711,272,1.931,288,0.795,295,1.143,297,1.451,301,2.506,302,2.612,304,1.424,305,1.289,307,1.134,331,0.908,336,1.451,337,0.938,342,1.181,344,0.85,351,0.765,352,2.316,356,1.123,359,1.065,362,0.743,366,1.33,374,1.032,383,2.024,393,0.757,397,0.715,408,1.215,410,1.309,413,3.633,421,2.824,422,1.706,425,1.6,428,1.956,429,1.607,431,0.908,432,1.181,435,1.451,461,0.992,464,2.736,467,0.853,470,1.546,474,1.352,476,1.12,478,2.497,479,0.64,482,1.309,488,0.918,489,1.33,509,2.358,519,1.879,529,3.589,535,0.695,536,1.045,539,1.607,542,2.267,546,1.686,548,3.125,555,1.092,560,1.149,592,1.607,593,1.214,597,1.778,600,0.788,611,1.027,612,1.289,626,1.983,628,0.827,638,1.289,655,0.981,675,1.923,708,1.607,716,1.309,741,1.783,756,0.918,758,0.995,760,1.539,770,1.607,774,0.959,778,1.895,779,1.105,783,1.889,805,1.198,849,0.951,855,1.778,859,1.198,902,2.34,905,0.774,907,1.24,909,1.375,910,1.39,914,1.607,915,1.165,917,2.534,918,1.547,935,0.676,938,1.21,991,2.372,995,2.787,996,1.33,1005,1.232,1009,1.956,1018,0.928,1020,2.031,1024,1.589,1036,2.366,1040,2.297,1053,0.938,1054,1.12,1057,3.093,1069,1.686,1088,1.333,1106,1.956,1107,1.424,1109,1.352,1110,1.039,1138,1.477,1143,1.134,1205,1.513,1208,1.39,1240,1.806,1243,1.73,1246,1.424,1255,1.696,1271,4.044,1279,1.778,1282,2.997,1284,2.082,1289,1.645,1295,2.432,1296,1.078,1303,1.645,1309,1.215,1351,1.105,1371,2.867,1439,3.92,1458,2.358,1461,2.119,1478,1.165,1480,2.181,1482,1.065,1484,1.181,1485,1.479,1516,0.992,1535,2.653,1592,0.959,1600,1.607,1601,1.539,1626,2.625,1627,1.424,1632,1.21,1639,1.375,1647,1.399,1656,0.981,1673,2.358,1675,2.34,1677,1.424,1701,2.34,1702,2.839,1729,1.352,1736,1.831,1741,1.215,1742,1.309,1745,1.092,1764,1.831,1767,1.831,1791,1.375,1792,1.783,1829,1.065,1857,1.25,1858,2.158,1869,1.419,1887,3.925,1905,1.73,1916,3.334,1930,1.58,1978,1.607,1979,2.427,1983,1.73,1987,1.065,1993,2.79,2001,2.482,2044,3.047,2045,3.579,2052,2.696,2054,2.535,2067,1.434,2143,2.031,2145,1.73,2189,1.686,2213,1.572,2225,1.424,2269,3.803,2277,1.943,2364,1.564,2496,3.276,2575,1.956,2611,1.645,2613,2.225,2648,3.803,2662,1.149,2695,2.225,2820,1.289,2976,1.546,2979,1.889,3008,2.432,3013,1.508,3015,1.289,3065,1.686,3150,1.539,3152,1.956,3154,1.581,3159,2.388,3172,2.181,3187,1.375,3198,1.778,3214,1.149,3304,1.451,3349,2.031,3353,1.33,3354,2.225,3362,1.889,3432,1.686,3434,1.959,3495,1.581,3508,1.399,3511,1.829,3696,1.187,3699,1.232,3831,2.119,3883,4.022,3885,1.645,3915,2.145,3926,1.778,3959,1.831,3980,1.539,3984,2.787,4001,2.119,4088,1.73,4103,1.451,4184,4.296,4229,2.218,4269,1.956,4271,1.232,4286,2.119,4303,1.686,4314,1.479,4382,2.536,4418,2.225,4472,2.225,4475,1.572,4497,1.215,4572,2.536,4616,3.603,4620,2.358,4721,2.719,4782,1.645,4798,1.889,4802,2.887,4805,1.831,4825,2.358,4830,1.645,4849,1.572,4854,2.358,4872,1.956,4989,2.145,5036,1.092,5091,1.645,5100,3.719,5126,2.225,5127,1.508,5146,1.778,5158,1.581,5173,1.451,5194,1.956,5258,2.225,5290,2.536,5305,0.811,5313,1.399,5319,2.225,5322,2.358,5323,4.032,5324,1.309,5327,1.73,5332,1.778,5389,1.399,5404,1.686,5459,2.536,5561,1.889,5585,2.119,5641,1.105,5669,2.031,5693,2.119,5775,1.508,6160,1.73,6355,4.526,6356,1.149,6358,2.119,6366,3.044,6367,2.358,6368,1.956,6370,4.257,6377,3.7,6387,3.276,6393,2.031,6399,1.76,6400,2.111,6425,1.181,6436,1.092,6443,3.276,6444,1.451,6457,2.119,6486,2.031,6498,5.837,6509,2.031,6513,1.889,6523,6.259,6590,2.119,6638,2.225,6642,3.803,6647,4.988,6755,2.225,6756,2.358,6759,2.225,6790,3.276,6820,2.358,6850,2.536,6894,2.225,6895,1.607,6898,1.987,6908,1.645,6913,1.956,6943,2.536,6964,2.306,6966,2.119,6975,6.079,7026,2.119,7066,3.803,7072,2.119,7101,3.589,7129,3.418,7136,1.645,7142,2.719,7149,1.73,7175,1.889,7196,1.956,7230,2.432,7236,3.829,7238,1.399,7243,2.225,7254,5.896,7276,2.225,7455,3.589,7460,2.031,7544,1.778,7577,4.117,7597,1.645,7621,5.406,7625,4.779,7750,2.358,7874,2.031,7875,2.536,7881,5.609,7886,2.225,7892,1.956,8032,2.482,8063,2.358,8110,1.956,8127,2.358,8146,1.889,8169,4.296,8212,2.218,8213,2.218,8214,2.031,8215,2.031,8216,2.031,8217,2.031,8218,1.956,8222,4.547,8223,4.09,8233,4.779,8281,2.536,8283,2.358,8336,2.225,8337,4.09,8357,1.956,8359,2.536,8397,2.536,8398,2.536,8412,2.536,8413,2.806,8414,2.806,8415,2.536,8416,2.806,8417,2.806,8418,2.806,8419,1.686,8420,2.536,8421,2.358,8422,2.806,8423,2.536,8424,2.806,8425,2.536,8426,2.536,8427,2.536,8428,2.536,8429,2.806,8430,2.806,8431,2.806,8432,2.806,8433,2.806,8434,2.358,8435,7.156,8436,3.803,8437,2.806,8438,2.806,8439,2.536,8440,2.806,8441,2.225,8442,4.525,8443,4.525,8444,2.806,8445,4.525,8446,2.358,8447,2.119,8448,2.806,8449,2.806,8450,2.358,8451,5.687,8452,2.806,8453,2.536,8454,4.09,8455,2.806,8456,2.536,8457,2.806,8458,2.806,8459,2.536,8460,5.14,8461,2.806,8462,2.806,8463,5.687,8464,2.119,8465,2.536,8466,2.806,8467,2.536,8468,2.536]],["description//tracks/90daysofdevops/day49",[]],["title//tracks/90daysofdevops/day48",[1312,3.338,2569,4.294,6964,1.914]],["content//tracks/90daysofdevops/day48",[6,0.346,7,2.055,26,0.702,27,2.338,32,0.911,34,1.081,38,0.721,44,2.399,49,1.802,53,1.594,57,1.402,58,1.476,60,2.771,65,0.803,70,1.508,73,1.244,75,1.163,80,1.468,105,1.233,109,1.612,110,2.01,111,1.892,120,1.122,124,0.952,126,1.481,136,1.052,139,1.112,164,1.244,173,1.175,175,1.033,176,1.341,197,2.163,199,3.658,201,1.915,207,2.26,214,2.025,216,1.624,220,2.843,222,1.63,224,1.612,225,1.387,227,1.668,230,1.536,245,1.175,246,1.005,259,1.708,261,1.772,263,1.864,267,2.51,268,1.387,272,1.968,288,1.359,289,1.64,295,1.67,296,3.658,297,2.385,302,2.118,304,3.357,331,1.492,333,1.541,334,2.3,336,2.385,342,1.941,344,0.698,354,1.221,356,1.004,362,1.221,376,1.996,377,1.817,393,1.244,410,2.152,421,1.996,423,1.416,429,2.642,464,1.649,482,3.086,487,2.223,519,1.915,527,2.642,535,1.143,555,1.794,575,1.941,593,1.663,595,1.729,598,1.817,600,1.558,602,2.385,605,3.214,627,2.341,628,1.36,638,2.118,643,3.009,647,1.996,675,2.49,678,2.385,716,2.152,762,3.105,774,2.26,778,1.751,834,3.483,843,3.21,849,2.229,907,1.005,909,1.402,914,3.789,917,1.718,918,1.184,925,1.307,926,1.649,991,1.307,993,1.708,995,4.14,1021,1.969,1023,2.43,1024,1.306,1025,2.922,1026,3.608,1028,4.429,1036,2.187,1046,3.092,1064,3.658,1069,3.973,1108,2.704,1138,1.198,1143,1.864,1182,3.876,1197,2.43,1198,2.26,1206,2.3,1207,2.922,1230,3.338,1254,2.385,1266,1.729,1271,3.632,1284,2.421,1297,2.53,1312,4.077,1315,1.84,1331,1.36,1360,3.658,1364,1.915,1443,2.584,1470,1.63,1482,1.75,1484,1.941,1504,2.53,1536,2.025,1626,2.424,1632,2.621,1656,2.702,1672,2.584,1680,3.393,1689,2.771,1690,2.118,1694,2.947,1701,2.385,1702,2.374,1887,2.53,1903,3.214,1930,1.837,1931,2.642,1954,1.36,1988,2.385,2022,3.658,2039,4.54,2101,2.843,2131,2.584,2171,3.009,2234,4.168,2259,2.055,2277,1.576,2279,3.483,2369,3.009,2467,2.223,2620,3.658,2647,2.186,2703,2.922,2789,2.26,2839,2.584,2902,2.771,2976,2.886,3145,2.53,3159,2.421,3174,1.576,3189,3.554,3301,4.168,3434,1.996,3508,2.3,3511,1.864,3537,3.338,3657,3.02,3658,4.24,3659,5.01,3660,4.54,3696,2.028,3800,2.152,3964,3.009,4314,2.43,4415,2.947,4423,2.704,4447,4.19,4751,3.876,4989,2.186,5033,2.086,5036,1.794,5043,2.3,5091,2.704,5100,1.541,5173,2.385,5178,2.704,5182,3.552,5222,3.338,5324,2.152,5766,3.105,6342,2.118,6346,2.479,6356,1.889,6366,2.152,6395,3.876,6408,2.922,6436,1.794,6451,2.843,6465,2.704,6480,1.968,6633,3.009,6651,2.843,6684,2.341,6718,3.214,6761,2.186,6898,2.702,6908,2.704,6913,3.214,6918,3.483,6936,2.771,6957,3.009,6964,3.916,7017,5.207,7020,4.609,7026,3.483,7037,3.105,7131,3.876,7151,3.483,7152,4.168,7351,3.658,7455,3.658,7516,3.877,7733,3.105,7800,2.704,7806,2.704,7821,2.43,7917,3.483,7998,3.483,8032,2.53,8083,4.168,8107,3.338,8208,4.609,8212,2.26,8213,2.26,8222,5.887,8262,3.658,8299,3.483,8336,6.133,8353,8.962,8419,3.973,8421,3.876,8447,3.483,8469,4.611,8470,3.658,8471,3.876,8472,4.611,8473,4.611,8474,4.168,8475,4.168,8476,4.611,8477,4.611,8478,4.611,8479,4.611,8480,4.611,8481,3.876,8482,4.611,8483,4.611,8484,4.611,8485,4.168,8486,4.611,8487,8.411,8488,3.658,8489,4.611,8490,4.611,8491,5.977,8492,5.977,8493,4.611,8494,4.168,8495,4.611,8496,4.611,8497,4.168,8498,4.611,8499,3.214,8500,3.658,8501,3.483,8502,4.611]],["description//tracks/90daysofdevops/day48",[]],["title//tracks/90daysofdevops/day47",[214,1.879,1057,2.029,1481,3.394,1610,1.585,6964,1.513]],["content//tracks/90daysofdevops/day47",[6,0.305,18,1.962,26,0.864,32,1.621,38,0.586,42,3.115,44,1.164,53,1.962,59,2.833,67,1.267,68,1.574,75,0.998,80,0.833,102,0.965,105,1.002,107,1.832,110,0.81,113,1.267,118,1.904,120,0.912,124,1.578,126,1.272,136,1.295,137,1.072,141,1.084,149,1.808,164,1.532,173,0.956,175,0.931,176,1.152,190,1.106,191,1.319,195,2.253,203,1.214,204,3.643,208,1.939,211,2.447,214,2.494,216,1.877,227,2.479,230,2.147,234,1.194,235,1.744,238,4.649,245,1.447,246,0.818,247,3.1,265,1.441,272,2.424,288,0.659,295,2.073,297,1.939,300,2.508,304,1.904,331,1.214,334,1.87,335,2.101,343,0.93,351,2.237,352,2.218,354,1.814,355,1.214,356,0.89,362,1.814,372,2.39,374,1.873,375,2.686,376,2.966,377,2.237,378,2.966,393,1.012,421,1.624,422,1.092,423,1.152,431,1.214,433,3.544,464,1.341,467,1.14,479,1.08,482,1.75,488,1.227,490,1.407,507,1.201,518,2.601,525,1.723,530,3.148,536,1.044,540,2.884,542,1.188,548,1.267,556,1.188,592,2.149,593,1.162,598,1.478,600,1.68,612,1.723,626,2.083,628,2.547,635,1.24,640,1.282,675,2.844,678,2.936,702,2.608,716,1.75,742,0.993,744,2.833,774,1.94,778,0.993,779,1.478,785,1.176,787,1.557,805,2.424,818,2.526,845,1.579,849,2.17,856,1.557,902,2.936,917,0.974,918,1.016,925,1.609,931,1.326,935,1.842,938,1.832,946,1.977,991,1.063,993,1.389,998,1.671,1002,1.14,1012,1.87,1017,1.557,1018,1.24,1024,1.353,1026,3.197,1046,2.508,1049,1.671,1054,1.497,1055,1.106,1057,1.778,1076,2.531,1088,1.331,1089,1.373,1109,3.957,1110,2.831,1143,2.296,1171,3.39,1180,3.197,1187,1.778,1202,2.253,1205,1.254,1208,1.744,1245,2.526,1246,2.883,1266,1.406,1269,1.423,1271,4.06,1288,1.939,1292,4.87,1294,2.447,1300,1.601,1308,0.974,1331,1.674,1341,1.94,1360,2.975,1361,2.936,1362,1.87,1363,1.406,1364,1.557,1374,2.608,1424,2.079,1429,6.062,1435,1.778,1447,1.282,1476,2.833,1484,2.884,1516,1.326,1534,2.614,1601,2.057,1610,3.423,1651,1.624,1656,1.311,1678,1.808,1680,1.423,1705,2.614,1709,3.39,1716,2.199,1729,2.737,1745,2.973,1765,2.199,1786,2.079,1857,1.671,1863,1.671,1916,3.329,1930,1.578,1983,2.312,2004,1.579,2035,3.115,2045,2.057,2049,3.39,2057,2.149,2146,2.993,2162,4.342,2227,2.253,2233,2.614,2251,2.057,2277,1.282,2283,1.939,2364,2.368,2365,2.833,2470,1.838,2622,4.504,2629,1.87,2765,1.904,2789,3.746,2820,1.723,2839,2.101,2929,1.75,2932,1.904,2949,1.601,2976,2.612,3103,2.614,3172,2.737,3174,1.94,3349,2.715,3358,2.715,3434,2.458,3495,1.311,3616,4.111,3620,2.614,3657,1.341,3658,3.249,3660,3.683,3696,1.489,3799,2.424,3830,3.152,4118,1.87,4158,2.715,4324,2.447,4459,1.647,4480,2.447,4816,2.101,4989,2.692,5003,3.39,5033,1.697,5074,2.253,5129,5.184,5173,1.939,5182,2.608,5222,2.715,5300,1.808,5304,1.497,5664,2.715,5935,2.526,6041,3.152,6076,4.504,6148,2.715,6342,1.723,6346,2.016,6356,1.537,6366,1.75,6381,2.833,6408,2.376,6418,2.253,6428,1.939,6436,1.459,6445,3.253,6480,3.687,6558,2.057,6659,2.447,6684,1.904,6727,5.132,6765,4.773,6816,2.614,6898,2.395,6912,3.152,6918,2.833,6964,3.889,7033,3.152,7060,5.203,7106,2.312,7287,4.504,7319,2.447,7331,5.176,7332,4.776,7366,3.39,7418,2.833,7421,3.152,7447,2.975,7466,2.253,7502,2.614,7516,2.199,7646,2.715,7791,8.106,7821,1.977,7837,2.614,7855,3.152,7998,5.176,8192,6.496,8208,3.958,8212,1.838,8213,1.838,8227,3.39,8412,3.39,8441,2.975,8447,2.833,8464,2.833,8499,2.614,8500,2.975,8501,2.833,8503,3.39,8504,3.75,8505,6.194,8506,3.152,8507,3.39,8508,2.975,8509,7.421,8510,3.39,8511,3.39,8512,3.75,8513,5.678,8514,3.75,8515,3.75,8516,3.75,8517,3.75,8518,3.75,8519,3.75,8520,6.853,8521,3.75,8522,5.76,8523,3.75,8524,3.75,8525,3.39,8526,3.75,8527,3.75,8528,3.75,8529,5.678,8530,5.678,8531,3.75,8532,3.75,8533,3.75,8534,3.75,8535,3.75,8536,3.39,8537,3.39,8538,3.39,8539,7.643,8540,3.152,8541,5.678,8542,3.75,8543,4.289,8544,3.75,8545,3.152,8546,3.39,8547,3.39,8548,3.39]],["description//tracks/90daysofdevops/day47",[]],["title//tracks/90daysofdevops/day46",[2524,4.55,6964,1.914,7136,3.174]],["content//tracks/90daysofdevops/day46",[6,0.258,7,1.707,14,1.153,15,1.419,25,1.707,26,1.056,27,3.079,32,1.14,34,0.898,38,0.599,44,1.79,49,1.892,57,1.164,58,1.848,64,1.214,68,1.408,73,1.557,74,0.85,75,1.635,80,1.281,89,1.733,96,1.328,105,1.855,107,1.542,110,0.828,111,1.096,113,1.295,120,1.404,124,1.434,126,1.731,136,0.874,137,1.09,139,0.923,141,1.107,158,2.217,164,1.873,172,1.707,173,0.977,175,0.939,176,1.408,183,1.529,190,1.13,196,1.295,197,1.253,198,1.878,202,1.603,203,2.246,219,1.13,221,0.986,222,2.04,230,1.341,234,1.625,235,2.372,240,1.386,264,1.339,265,2.968,268,1.736,288,1.457,289,2.142,295,1.457,297,1.981,304,2.93,333,1.929,342,2.429,343,1.43,344,0.92,351,1.044,354,2.045,355,1.24,356,1.003,374,2.277,375,1.887,393,1.557,397,0.977,423,1.176,425,2.454,427,2.667,432,1.613,442,3.724,459,1.295,461,1.354,479,0.541,507,1.848,517,1.878,518,1.828,531,3.22,536,1.061,542,1.214,548,1.295,555,1.49,593,1.177,600,1.716,605,2.67,611,1.402,612,3.189,626,1.164,628,1.13,637,2.364,639,2.019,640,1.972,675,2.443,713,2.302,718,1.402,742,1.014,758,1.527,778,1.014,785,1.809,817,1.201,832,1.945,836,4.577,843,2.396,849,2.071,857,1.788,867,1.281,903,1.454,907,0.835,909,2.11,917,0.995,918,1.033,930,1.613,931,2.454,935,1.673,939,1.339,993,1.419,995,3.403,1002,2.348,1005,1.683,1012,1.911,1015,2.93,1019,1.419,1021,1.719,1024,1.785,1026,3.605,1036,1.267,1038,2.246,1043,2.195,1046,2.541,1049,1.707,1054,1.529,1055,1.701,1068,1.981,1088,0.898,1110,2.571,1138,1.499,1187,2.736,1224,2.245,1254,1.981,1266,1.436,1268,2.059,1269,3.145,1271,3.808,1292,2.019,1307,2.58,1327,2.5,1331,2.047,1365,1.733,1374,2.651,1386,1.733,1423,1.911,1424,1.402,1482,1.454,1504,2.102,1526,1.817,1536,1.683,1583,2.428,1592,1.309,1601,2.102,1618,2.64,1619,1.707,1626,2.176,1632,2.065,1645,2.147,1646,3.291,1656,1.339,1669,1.635,1675,1.981,1680,1.454,1693,2.5,1702,1.176,1705,2.67,1747,1.295,1780,2.302,1792,2.274,1869,1.201,1881,1.911,1887,2.102,1904,1.788,1905,2.362,1910,2.894,1930,1.929,1932,2.362,1954,2.047,2004,1.613,2039,1.945,2046,1.529,2050,3.039,2067,1.214,2171,2.5,2225,1.945,2226,6.274,2258,1.817,2259,1.707,2277,1.309,2283,1.981,2587,2.019,2629,4.133,2659,2.246,2699,1.878,2727,2.059,2778,2.67,2839,2.147,2870,2.102,2902,2.302,2949,1.635,2976,2.64,3023,6.305,3172,1.847,3174,2.372,3179,1.76,3189,2.059,3353,1.817,3424,2.362,3434,3.005,3511,1.549,3620,2.67,3655,2.059,3657,1.37,3661,1.878,3734,2.894,3799,2.963,3800,1.788,3885,2.246,3963,2.246,3984,1.878,3993,4.399,4039,1.733,4201,1.76,4274,2.246,4474,2.195,4483,3.463,4775,2.362,4782,2.246,4786,3.463,5029,3.656,5033,1.733,5081,2.246,5100,1.929,5159,3.039,5173,1.981,5174,3.039,5182,2.651,5222,2.774,5309,2.147,5313,1.911,5350,2.774,5404,3.467,5524,1.635,5562,1.788,5596,2.67,5661,3.039,5671,2.774,5781,2.428,6342,1.76,6346,2.059,6350,1.658,6353,2.774,6398,2.428,6428,1.981,6430,3.731,6436,1.49,6449,1.945,6480,1.635,6506,3.307,6507,2.58,6684,5.067,6687,2.894,6700,2.428,6717,2.894,6741,2.67,6886,2.894,6898,2.426,6949,2.67,6961,2.58,6964,3.908,6965,3.463,6978,3.22,7017,2.58,7136,6.184,7158,3.22,7332,2.67,7398,5.581,7432,2.67,7516,2.246,7576,3.039,7591,2.894,7624,3.22,7664,3.656,7764,5.834,7821,3.658,7856,3.463,7881,2.67,7998,4.359,7999,8.321,8003,3.463,8006,3.463,8013,3.463,8103,3.463,8104,3.22,8169,6.579,8208,2.67,8212,1.878,8213,1.878,8400,2.774,8464,2.894,8499,2.67,8500,3.039,8501,2.894,8549,3.831,8550,5.771,8551,6.071,8552,3.831,8553,3.831,8554,3.22,8555,3.463,8556,5.771,8557,6.942,8558,3.831,8559,3.22,8560,3.22,8561,3.463,8562,3.463,8563,3.831,8564,3.831,8565,3.831,8566,3.831,8567,3.831,8568,3.831,8569,3.831,8570,3.831,8571,3.831,8572,3.831,8573,3.831,8574,3.831,8575,3.831,8576,3.831,8577,3.831,8578,3.463,8579,6.942,8580,3.22,8581,3.831,8582,7.726,8583,3.22,8584,3.463,8585,3.463,8586,3.039,8587,3.831]],["description//tracks/90daysofdevops/day46",[]],["title//tracks/90daysofdevops/day45",[212,1.671,2491,3.791,6964,1.69,8588,4.78]],["content//tracks/90daysofdevops/day45",[2,1.636,6,0.407,15,2.069,18,1.268,25,1.636,26,0.558,29,1.312,32,1.493,38,1.057,44,1.139,53,1.93,58,2.165,65,0.639,68,1.018,70,1.827,71,1.715,73,1.825,74,0.815,75,1.329,80,0.815,83,2.094,101,1.686,102,1.437,105,0.981,107,1.808,109,1.283,111,1.598,113,1.888,118,2.1,120,0.893,124,1.154,126,1.251,136,1.724,137,1.055,139,1.346,141,1.061,144,1.504,159,1.268,164,1.507,173,1.424,175,1.013,176,1.738,191,1.298,203,1.188,206,2.001,216,0.901,219,1.082,225,1.104,230,0.853,234,1.175,238,1.769,245,1.424,246,1.218,251,1.799,259,1.36,261,1.41,268,2.035,272,1.566,288,0.982,289,2.035,295,1.909,300,2.045,301,2.598,306,2.472,331,1.188,333,1.227,335,2.056,342,1.545,343,1.676,351,1.522,352,1.188,354,1.479,356,0.878,362,1.79,374,1.724,375,1.2,381,1.465,383,1.139,397,0.936,422,1.074,423,1.127,459,2.285,462,1.451,464,1.997,471,2.453,473,3.472,474,3.259,476,1.465,479,1.397,485,2.013,490,1.384,519,1.524,528,2.395,536,1.39,548,2.285,554,1.898,555,1.428,556,1.77,560,1.504,568,2.205,575,1.545,592,2.103,593,0.947,598,1.446,600,1.493,626,1.116,628,1.082,636,1.254,637,2.288,638,1.686,639,1.934,646,2.453,647,1.589,655,1.283,675,3.286,678,1.898,709,2.103,718,1.343,742,0.972,758,1.663,777,1.712,778,1.479,785,1.151,799,1.799,800,2.566,831,2.558,845,1.545,849,2.017,854,3.085,905,0.761,907,1.218,910,1.127,915,1.524,917,0.953,918,0.657,930,2.351,931,1.975,934,1.83,991,1.916,993,2.069,998,1.636,1002,2.055,1015,2.836,1017,1.524,1021,1.093,1024,1.335,1026,3.527,1033,2.056,1036,1.214,1046,2.045,1049,1.636,1053,1.227,1061,1.566,1073,2.056,1080,2.472,1088,2.009,1100,1.799,1138,1.451,1179,2.558,1180,1.712,1202,2.205,1205,2.719,1208,1.715,1224,2.173,1229,2.103,1232,2.103,1234,1.283,1237,1.524,1241,2.657,1252,2.326,1255,1.376,1266,1.376,1271,3.981,1284,1.343,1292,1.934,1296,1.41,1300,2.384,1308,1.451,1331,1.082,1341,1.254,1361,1.898,1363,1.376,1370,2.911,1426,1.799,1437,1.973,1470,1.297,1479,2.205,1480,1.769,1482,1.393,1484,2.847,1550,2.472,1591,2.013,1639,1.116,1648,1.898,1650,2.152,1656,1.283,1672,2.056,1678,1.769,1680,1.393,1695,2.657,1702,1.715,1704,2.384,1713,2.911,1715,3.085,1720,2.263,1741,1.589,1792,1.446,1869,1.151,1880,1.973,1954,1.082,1979,2.886,1983,2.263,1984,2.836,1987,3.086,1993,2.263,2004,1.545,2024,3.356,2039,3.837,2054,3.789,2055,1.973,2079,2.558,2146,2.944,2186,3.444,2190,1.934,2233,2.558,2259,3.818,2270,2.263,2283,2.888,2365,2.772,2370,4.22,2438,2.395,2470,1.799,2587,1.934,2597,2.911,2645,2.152,2699,1.799,2765,1.863,2929,1.712,2976,2.311,3065,2.205,3145,2.013,3159,2.045,3174,2.311,3179,1.686,3304,1.898,3370,3.874,3426,2.146,3434,2.927,3516,2.263,3617,2.944,3658,3.584,3660,3.635,3696,1.773,3799,2.384,3926,2.326,3944,2.326,3946,2.263,3948,3.275,4201,1.686,4272,1.769,4415,1.636,4417,2.657,4449,1.973,4545,1.636,4620,3.085,5071,5.049,5127,1.973,5172,3.317,5173,1.898,5182,3.736,5222,2.657,5309,3.13,5524,1.566,5664,2.657,5935,2.472,6342,1.686,6346,1.973,6356,1.504,6362,2.056,6408,2.326,6436,1.428,6449,1.863,6480,3.226,6506,1.465,6550,2.472,6592,2.472,6626,2.657,6633,3.645,6695,2.395,6761,1.74,6768,2.911,6791,3.085,6832,8.091,6898,2.363,6908,3.275,6916,2.657,6964,3.9,7045,2.772,7060,3.539,7072,2.772,7142,2.205,7161,1.799,7171,2.772,7183,2.558,7238,1.83,7308,3.085,7331,7.636,7332,5.268,7375,3.085,7376,2.911,7460,2.657,7516,2.152,7711,2.911,7733,4.554,7821,4.515,7842,3.085,7854,2.558,7987,4.713,8108,3.085,8116,3.085,8136,2.772,8148,3.085,8208,2.558,8212,1.799,8213,1.799,8222,3.893,8244,3.085,8360,2.911,8499,2.558,8500,2.911,8536,3.317,8537,3.317,8589,3.67,8590,3.317,8591,3.67,8592,2.657,8593,3.317,8594,3.317,8595,3.317,8596,3.67,8597,3.67,8598,3.317,8599,2.772,8600,3.67,8601,3.67,8602,3.317,8603,3.67,8604,3.085,8605,3.317,8606,3.317,8607,3.67,8608,3.67,8609,3.67,8610,2.772,8611,3.317,8612,3.67,8613,5.586,8614,3.67,8615,3.67,8616,3.317,8617,5.586,8618,3.67,8619,3.317,8620,3.67,8621,3.085,8622,3.67,8623,3.67,8624,3.67,8625,3.67,8626,3.67,8627,3.085,8628,3.67]],["description//tracks/90daysofdevops/day45",[]],["title//tracks/90daysofdevops/day44",[164,1.045,675,1.142,2488,3.072,6964,2.057,7821,2.041]],["content//tracks/90daysofdevops/day44",[6,0.156,38,0.654,42,2.296,44,1.912,45,2.164,49,1.14,50,2.454,53,2.13,57,1.272,64,1.326,65,1.074,67,1.414,68,0.763,70,1.369,71,1.893,74,0.929,89,1.893,96,0.964,105,1.647,107,1.119,111,1.763,113,1.414,118,2.032,120,1.018,124,0.864,126,1.381,136,0.955,137,1.381,139,1.009,149,2.017,164,1.129,173,1.067,175,0.97,176,0.849,191,1.432,197,2.016,202,1.163,203,2.611,214,1.838,216,1.028,217,1.299,221,1.077,224,1.463,225,1.259,227,1.514,230,1.875,234,0.88,260,2.296,264,1.463,265,1.608,268,1.259,278,2.164,288,1.083,289,0.888,295,2.411,301,2.368,304,4.367,307,2.492,331,1.354,333,1.399,343,1.527,344,0.651,351,1.993,354,1.937,355,1.354,356,1.169,369,1.923,374,2.223,375,1.369,376,1.812,377,1.649,383,1.912,393,1.663,395,3.248,397,1.067,420,2.58,421,1.812,423,2.246,425,2.179,431,1.994,432,3.079,437,3.179,461,1.479,479,0.871,482,2.876,490,1.527,507,1.34,518,1.953,535,1.037,536,1.345,537,3.32,540,1.762,553,2.345,558,2.345,598,1.649,600,1.698,612,2.831,635,1.384,636,1.43,638,1.923,639,2.206,640,2.106,648,1.628,675,3.238,709,2.398,742,1.108,756,1.369,758,1.775,779,1.649,785,1.312,787,2.559,823,3.129,849,1.809,903,1.588,905,0.57,907,1.344,918,1.309,925,1.186,926,1.497,930,4.019,940,2.206,952,1.953,991,1.186,995,2.051,998,1.865,1002,1.873,1007,2.831,1015,4.568,1017,2.559,1019,2.283,1021,1.835,1024,1.699,1026,3.413,1028,3.531,1034,3.531,1036,1.384,1046,2.678,1055,1.234,1061,1.786,1079,1.588,1089,1.532,1103,1.692,1138,1.601,1180,2.876,1183,2.731,1198,2.051,1205,2.06,1234,1.463,1240,1.67,1246,2.125,1252,2.652,1266,2.743,1269,1.588,1271,4.077,1284,1.532,1292,2.206,1295,2.249,1296,1.608,1309,1.812,1315,1.67,1331,2.743,1362,3.074,1374,1.923,1424,1.532,1430,1.984,1451,2.296,1480,2.017,1482,1.588,1483,2.206,1484,2.594,1487,2.087,1488,1.738,1489,1.628,1516,2.179,1517,2.917,1526,1.984,1585,2.668,1610,2.283,1653,2.249,1654,2.515,1655,3.162,1656,1.463,1658,2.58,1674,2.125,1688,2.125,1702,1.285,1704,1.786,1720,2.58,1729,3.526,1786,2.256,1792,1.649,1826,2.818,1857,1.865,1869,1.312,1930,2.5,1931,3.531,1952,2.125,1984,2.125,1987,2.339,2005,2.087,2069,2.398,2098,4.341,2099,4.56,2158,2.454,2251,2.296,2283,2.164,2629,2.087,2662,2.525,2697,2.652,2724,2.917,2929,1.953,2976,2.5,3145,2.296,3154,2.557,3174,2.758,3179,3.36,3316,3.162,3426,1.608,3433,3.518,3434,1.812,3508,2.087,3657,1.497,3658,3.468,3660,2.249,3661,2.051,3696,1.098,3702,2.917,3779,2.652,3799,1.786,3980,2.296,4000,3.32,4118,2.087,4201,1.923,4253,3.162,4398,2.917,4415,3.26,4437,2.652,4721,2.515,4790,3.162,4865,3.783,5029,2.652,5260,3.03,5304,1.67,5350,3.03,5404,2.515,5457,1.692,5524,2.631,5542,2.125,5605,3.783,5641,1.649,5982,1.865,6247,2.652,6263,2.206,6342,1.923,6346,2.249,6398,2.652,6399,1.628,6427,2.125,6430,2.249,6467,3.162,6480,3.444,6506,1.67,6558,4.013,6560,3.783,6651,2.58,6703,2.917,6769,3.03,6781,2.345,6898,2.557,6964,3.912,7020,2.917,7054,5.18,7135,2.917,7138,3.518,7142,2.515,7151,3.162,7330,4.656,7332,6.272,7398,2.818,7516,2.454,7524,2.454,7535,2.731,7538,3.783,7703,3.32,7806,2.454,7821,4.742,7917,3.162,7999,4.888,8030,3.518,8136,3.162,8169,3.162,8178,3.783,8190,3.783,8208,2.917,8212,2.051,8213,2.051,8222,2.917,8249,3.03,8267,3.783,8428,3.783,8470,3.32,8499,2.917,8543,3.162,8546,6.612,8590,6.612,8594,3.783,8605,3.783,8629,4.185,8630,3.783,8631,4.185,8632,4.185,8633,3.783,8634,3.518,8635,4.185,8636,4.185,8637,6.163,8638,4.185,8639,6.163,8640,4.185,8641,4.185,8642,3.783,8643,4.185,8644,4.185,8645,4.185]],["description//tracks/90daysofdevops/day44",[]],["title//tracks/90daysofdevops/day43",[164,1.461,2486,4.294,6964,1.914]],["content//tracks/90daysofdevops/day43",[2,2.396,6,0.2,15,1.991,19,3.012,27,1.9,29,1.922,35,1.9,38,0.84,58,1.721,65,0.937,74,1.193,75,1.759,101,2.469,102,1.383,110,1.161,120,1.308,122,3.406,124,1.11,136,1.226,137,1.015,139,1.296,159,1.858,164,2.638,175,1.053,176,1.833,190,1.585,191,1.249,201,3.058,216,1.32,222,1.9,224,1.879,225,1.617,227,1.945,246,1.172,261,2.065,264,2.573,267,2.795,268,2.527,288,1.664,289,1.782,304,2.729,337,1.797,343,1.332,354,1.423,356,0.698,374,1.226,376,2.327,377,2.118,421,2.327,422,1.819,425,1.9,464,1.922,470,1.837,473,2.469,487,2.591,535,1.332,536,0.988,541,3.881,542,1.703,551,3.508,598,2.901,600,0.937,601,3.23,611,1.968,626,2.238,636,1.837,637,2.202,675,2.664,698,3.892,722,2.949,741,2.901,758,1.62,785,1.685,787,2.232,805,2.294,819,2.833,843,4.155,849,1.766,902,2.78,903,2.04,907,1.172,917,1.396,918,1.318,934,2.681,935,1.296,991,1.523,993,2.728,998,2.396,1002,1.634,1024,1.062,1046,1.968,1053,1.797,1056,3.892,1087,4.126,1088,1.969,1234,1.879,1240,2.939,1271,3.707,1292,2.833,1310,5.841,1315,2.145,1443,3.012,1451,2.949,1479,3.23,1485,2.833,1489,2.091,1497,3.62,1591,2.949,1599,3.491,1600,3.08,1610,1.991,1626,2.309,1627,3.738,1628,2.327,1632,2.415,1652,2.04,1656,1.879,1669,3.585,1690,2.469,1729,2.591,1869,1.685,1930,2.334,1987,2.04,2004,2.263,2067,1.703,2213,3.012,2283,2.78,2492,4.518,2608,4.264,2611,3.152,2619,3.747,2647,2.549,2662,3.441,2976,2.87,3147,2.949,3154,1.879,3159,1.968,3189,2.889,3434,3.188,3495,1.879,3655,4.856,3657,1.922,3696,1.931,3699,2.361,3700,2.232,3779,5.997,3836,4.518,3990,4.264,4118,2.681,4201,3.383,4398,3.747,4721,3.23,4839,4.859,5127,2.889,5171,3.314,5982,2.396,6252,4.264,6342,2.469,6346,2.889,6399,2.091,6761,2.549,6898,2.935,6919,3.012,6964,4.021,6966,4.061,7020,5.854,7026,6.345,7034,3.23,7101,4.264,7135,3.747,7136,4.318,7161,2.635,7230,2.889,7331,6.824,7376,4.264,7516,3.152,7544,3.406,7563,4.264,7806,3.152,7821,5.151,7917,4.061,8032,2.949,8065,3.747,8208,3.747,8212,2.635,8213,2.635,8299,4.061,8353,4.518,8415,4.859,8471,6.189,8487,4.859,8488,5.841,8491,4.859,8499,3.747,8543,4.061,8586,4.264,8592,3.892,8598,4.859,8606,4.859,8646,5.376,8647,5.376,8648,4.518,8649,5.376,8650,5.376,8651,5.376,8652,5.376,8653,4.859,8654,4.061,8655,7.364,8656,4.518,8657,5.376,8658,4.518]],["description//tracks/90daysofdevops/day43",[]],["title//tracks/90daysofdevops/day42",[1271,2.312,2457,4.072]],["content//tracks/90daysofdevops/day42",[6,0.403,7,1.417,15,1.852,25,1.417,26,0.484,29,1.137,30,0.997,32,1.383,38,0.497,42,1.744,53,1.099,55,1.744,65,1.326,68,1.125,74,1.371,75,1.946,80,0.706,91,1.46,96,0.732,105,0.85,111,2.003,116,2.864,124,0.657,126,1.384,136,2.055,147,0.826,155,1.96,159,1.099,164,1.89,175,0.755,176,0.645,183,1.269,191,1.878,195,1.91,197,2.02,206,1.635,207,1.558,208,3.936,212,2.159,216,0.781,217,1.916,218,1.821,220,1.96,221,1.589,226,2.104,227,1.15,229,1.302,230,1.435,235,0.976,238,2.409,246,1.347,265,1.92,267,2.344,268,2.29,288,1.086,289,1.715,295,2.135,296,2.522,297,3.194,301,1.221,343,1.735,344,0.336,351,0.866,352,1.999,355,1.029,356,0.909,362,1.854,374,2.055,376,1.376,377,1.253,393,1.667,397,2.155,398,2.37,422,1.346,423,0.976,425,1.124,427,2.69,431,1.618,437,1.969,459,1.689,461,1.767,462,1.604,464,1.137,476,3.915,479,0.449,482,2.332,488,1.04,489,1.507,507,1.018,517,1.558,535,0.788,536,1.728,539,1.821,540,2.104,542,1.007,551,3.261,555,1.237,568,3.003,593,0.539,600,1.569,604,3.32,626,2.738,632,2.216,635,1.051,636,2.111,646,2.195,647,1.376,649,3.619,675,2.952,742,1.635,756,1.635,758,1.54,765,2.402,778,1.323,785,0.997,787,1.32,856,1.32,857,2.882,867,1.063,902,3.194,907,1.762,909,1.519,915,1.32,917,1.298,918,0.895,930,2.104,939,1.111,951,2.931,998,2.228,1002,0.966,1018,2.315,1021,0.947,1024,1.383,1033,2.801,1036,1.653,1053,1.063,1055,2.064,1065,2.302,1078,1.781,1088,2.24,1089,1.164,1106,2.216,1143,2.497,1150,2.074,1180,1.483,1198,1.558,1205,3.528,1206,2.493,1208,0.976,1240,1.269,1266,2.316,1268,3.32,1271,4.124,1287,1.483,1288,1.644,1293,1.781,1295,1.709,1296,2.925,1297,1.744,1302,4.341,1303,1.864,1361,1.644,1363,1.192,1435,2.929,1436,2.522,1443,2.801,1451,1.744,1470,1.767,1484,1.338,1487,2.493,1506,5.554,1517,2.216,1585,1.376,1592,1.086,1610,1.852,1626,2.534,1628,1.376,1630,1.614,1632,1.651,1639,1.519,1646,1.507,1648,2.585,1652,2.344,1653,1.709,1654,1.91,1656,1.111,1669,1.357,1674,1.614,1678,3.669,1680,3.208,1690,2.296,1695,2.302,1702,1.535,1704,2.989,1721,2.216,1742,1.483,1745,1.237,1750,1.483,1786,1.83,1829,1.207,1858,1.207,1861,2.216,1863,2.228,1869,0.997,1887,2.742,1912,1.302,1930,2.781,1931,2.864,1952,1.614,1987,4.006,1988,3.194,2013,4.843,2033,3.619,2046,1.269,2047,5.892,2057,3.539,2067,2.218,2192,2.522,2211,2.931,2240,3.082,2258,1.507,2277,2.393,2283,1.644,2438,2.074,2470,1.558,2570,1.614,2647,1.507,2660,2.074,2662,3.588,2698,3.136,2976,2.111,3013,1.709,3065,1.91,3067,2.074,3149,2.522,3152,2.216,3154,1.111,3159,1.83,3189,3.763,3198,2.015,3314,2.672,3349,2.302,3353,3.609,3394,1.338,3426,1.92,3434,1.376,3495,2.159,3585,2.402,3661,2.45,3696,1.996,3708,3.366,3764,3.622,3811,2.37,3891,1.558,3984,2.45,4029,3.167,4081,2.141,4123,2.074,4157,2.141,4230,2.402,4271,1.396,4272,1.532,4341,2.672,4417,2.302,4474,1.821,4485,2.672,4497,2.164,4616,2.015,4635,4.518,4712,4.472,4768,2.302,4775,3.808,4782,2.931,4827,2.015,4870,2.015,4989,1.507,5100,1.063,5238,3.965,5323,1.675,5345,2.522,5360,1.96,5404,1.91,5542,3.136,5550,1.781,5562,1.483,5641,1.969,5919,2.302,5982,1.417,6342,1.46,6346,1.709,6361,1.46,6362,1.781,6365,2.141,6368,3.484,6369,2.672,6393,4.472,6425,2.6,6426,2.302,6434,2.216,6436,1.237,6717,2.402,6724,2.302,6820,2.672,6876,2.873,6898,2.159,6918,2.402,6934,4.305,6963,2.873,6964,2.988,7002,3.619,7127,1.91,7230,2.687,7319,2.074,7321,2.522,7349,2.302,7423,1.821,7479,2.302,7529,2.522,7543,2.873,7547,2.873,7590,2.402,7975,2.672,7989,3.484,8033,2.672,8068,2.402,8131,2.522,8184,2.522,8212,1.558,8213,1.558,8219,2.672,8222,5.633,8242,2.873,8243,5.191,8244,2.672,8296,4.201,8302,2.672,8357,4.305,8407,3.776,8464,4.666,8470,2.522,8499,2.216,8545,2.672,8583,2.672,8584,2.873,8592,2.302,8656,5.191,8659,3.179,8660,3.179,8661,2.672,8662,2.873,8663,3.179,8664,3.179,8665,3.179,8666,3.179,8667,4.999,8668,3.179,8669,2.522,8670,3.179,8671,2.873,8672,3.179,8673,3.179,8674,4.666,8675,2.873,8676,3.179,8677,2.672,8678,3.179,8679,3.179,8680,3.179,8681,3.179,8682,2.873,8683,3.179,8684,4.999,8685,3.179,8686,3.179,8687,3.179,8688,3.179,8689,3.179,8690,2.873,8691,4.201,8692,2.873,8693,2.074,8694,2.873,8695,4.999,8696,2.873,8697,4.999,8698,2.873]],["description//tracks/90daysofdevops/day42",[75,0.865,268,1.48,6964,1.739,8699,4.446]],["title//tracks/90daysofdevops/day41",[65,0.675,224,1.354,225,1.165,991,1.097,1088,0.908,2437,3.255]],["content//tracks/90daysofdevops/day41",[1,1.4,2,2.053,6,0.171,26,1.176,32,1.305,34,1.549,44,2.886,49,1.255,56,3.574,64,2.448,65,1.471,70,1.507,73,2.877,74,1.715,75,1.162,96,1.061,107,2.066,114,0.839,122,2.919,124,0.951,126,1.891,139,1.11,141,1.331,147,1.197,158,1.77,173,1.97,175,0.497,176,1.341,197,1.507,202,1.836,203,2.732,216,1.131,219,2.278,222,3.662,224,2.31,225,1.988,229,1.887,230,1.535,251,3.239,285,3.211,288,1.484,289,1.791,300,2.419,333,2.209,343,1.638,344,0.486,351,2.106,354,1.22,356,1.004,359,2.508,366,2.184,374,2.039,378,1.994,383,1.429,393,1.783,401,2.84,422,0.886,423,1.415,434,3.872,467,1.4,472,1.815,476,1.839,479,1.092,485,3.625,490,1.915,507,2.116,519,2.744,536,0.847,550,2.571,560,1.887,564,2.639,568,2.768,582,2.768,600,1.621,606,1.667,612,2.116,636,1.574,638,2.116,640,2.258,646,2.023,663,2.258,718,1.686,722,3.625,741,3.045,742,1.22,757,2.258,758,1.7,760,3.625,805,1.966,832,2.339,849,0.969,859,3.298,867,1.54,918,0.824,925,1.305,930,1.939,934,2.298,938,2.066,939,1.61,951,2.701,952,4.171,991,1.305,1002,2.349,1019,2.863,1021,1.968,1024,1.305,1059,3.296,1061,1.966,1066,1.707,1076,2.053,1088,2.181,1103,1.863,1181,2.116,1187,2.184,1191,2.768,1208,1.415,1226,2.476,1227,3.211,1237,2.744,1240,1.839,1242,2.428,1246,2.339,1255,1.727,1266,2.478,1271,2.448,1284,1.686,1291,3.48,1297,2.527,1299,2.339,1331,1.358,1362,3.296,1365,2.99,1404,5.664,1405,1.686,1450,2.701,1470,1.629,1472,3.48,1474,2.581,1477,3.006,1478,1.913,1482,2.508,1483,2.428,1488,4.145,1489,3.619,1491,3.006,1499,3.211,1524,2.701,1528,2.023,1529,2.476,1539,2.639,1541,3.102,1597,2.15,1618,1.574,1626,2.072,1628,1.994,1638,3.872,1647,3.296,1651,1.994,1654,2.768,1678,2.22,1681,2.919,1720,2.84,1736,5.832,1786,1.686,1803,2.476,1869,1.444,1912,1.887,1932,2.84,1978,2.639,2039,2.339,2071,3.654,2221,4.897,2259,2.053,2382,1.748,2723,2.768,2803,3.872,2832,3.211,2838,2.919,2976,3.054,3008,2.476,3099,3.211,3145,2.527,3174,3.571,3187,3.239,3213,2.84,3394,1.939,3426,2.539,3546,2.701,3619,2.527,3677,3.654,3707,3.872,3708,4.45,3803,1.748,4034,2.919,4125,3.654,4415,2.053,4501,3.654,4776,3.335,4805,3.006,4830,3.875,4921,4.992,4962,4.164,5128,2.382,5153,1.994,5158,1.61,5177,2.919,5207,3.006,5260,3.335,5291,3.335,5292,4.164,5304,1.839,5524,1.966,5707,2.768,5935,3.102,6027,2.184,6121,3.654,6356,1.887,6362,2.581,6399,1.792,6432,4.45,6435,5.242,6440,3.211,6450,7.096,6502,3.654,6590,3.48,6633,5.832,6651,2.84,6700,5.35,6895,2.639,6898,2.701,6946,3.335,6955,6.129,7002,3.335,7037,3.102,7142,2.768,7149,2.84,7238,2.298,7241,3.654,7243,3.654,7385,2.382,7422,3.335,7423,5.121,7441,3.006,7478,3.006,7526,4.606,7534,3.335,7535,3.006,7542,3.654,7548,3.335,7854,3.211,7988,3.654,8032,2.527,8160,4.164,8559,5.554,8586,3.654,8700,4.607,8701,5.554,8702,4.607,8703,9.303,8704,7.728,8705,4.607,8706,4.607,8707,4.607,8708,4.784,8709,4.607,8710,4.607,8711,4.607,8712,4.607,8713,3.102,8714,3.872,8715,6.609,8716,4.607,8717,4.607,8718,4.607,8719,4.607,8720,4.607,8721,4.607,8722,4.164,8723,4.607,8724,4.607,8725,4.607,8726,4.164,8727,4.607,8728,4.607,8729,4.607,8730,4.607,8731,4.607,8732,3.654,8733,6.609,8734,4.606,8735,4.607,8736,4.607,8737,4.607,8738,3.335,8739,3.335,8740,3.006,8741,3.654]],["description//tracks/90daysofdevops/day41",[]],["title//tracks/90daysofdevops/day40",[6,0.216,1489,1.507,2159,2.7,7526,2.7,8739,2.804]],["content//tracks/90daysofdevops/day40",[1,0.923,6,0.321,7,1.353,14,0.914,26,0.733,27,1.073,31,1.049,34,1.745,37,1.824,38,1.067,44,2.31,49,0.827,53,1.049,56,1.852,57,2.074,64,1.899,65,1.758,68,1.092,70,2.717,71,2.286,73,2.677,75,0.534,77,2.087,80,0.674,94,1.78,96,1.11,105,1.824,110,1.794,111,0.869,113,1.026,118,1.339,122,1.924,124,0.627,126,1.343,127,1.6,132,2.552,136,1.367,137,1.132,139,0.732,143,1.6,147,1.252,158,1.167,159,1.049,173,0.774,175,0.854,183,1.212,191,1.12,197,1.577,198,1.488,202,0.844,203,2.688,204,2.048,215,1.514,216,1.184,217,2.674,219,1.767,221,0.781,222,3.471,224,1.685,225,2.384,227,1.098,230,2.113,235,1.48,245,0.774,246,0.662,251,2.363,263,1.949,267,1.152,272,1.296,278,1.57,285,2.116,288,1.393,289,1.272,293,2.285,307,1.228,333,1.015,337,2.004,343,0.753,344,0.321,354,1.276,355,0.983,356,1.119,359,1.152,362,0.804,369,2.214,374,2.025,375,1.577,376,2.087,377,1.196,378,1.314,393,2.138,397,0.774,398,1.44,422,1.312,423,1.841,426,1.666,431,1.94,433,3.1,435,1.57,437,1.196,441,1.334,459,1.026,462,1.252,464,1.086,472,1.196,473,1.395,479,0.847,485,1.666,487,1.463,488,0.993,490,1.195,507,1.919,521,1.924,536,1.369,540,1.278,542,0.962,548,1.026,550,1.875,553,1.701,560,2.456,568,1.824,585,3.145,600,1.692,601,1.824,602,1.57,604,1.632,611,1.111,628,1.421,635,1.982,636,1.038,638,1.395,639,1.6,648,2.332,655,1.685,663,1.488,670,1.74,722,2.644,742,1.276,745,0.914,758,2.042,760,2.644,774,1.647,778,0.804,787,1.261,805,1.296,817,1.511,828,2.404,845,2.523,849,1.014,852,1.395,858,1.74,859,3.177,867,1.015,905,1.131,907,1.727,909,0.923,917,1.252,918,0.863,925,1.366,930,1.278,931,1.073,935,1.162,938,2.118,940,1.6,952,1.417,955,2.826,991,0.86,1002,2.074,1007,1.395,1015,4.617,1018,1.004,1019,3.438,1021,2.36,1024,1.47,1028,1.74,1043,1.74,1053,1.015,1055,2.012,1061,3.678,1066,1.125,1071,2.198,1087,1.701,1088,1.13,1089,1.111,1103,1.228,1106,2.116,1110,1.125,1121,2.896,1138,1.252,1143,1.228,1175,2.116,1197,1.6,1205,1.015,1208,1.841,1226,1.632,1227,2.116,1229,1.74,1232,1.74,1234,1.685,1237,2.002,1244,2.045,1246,1.542,1254,1.57,1266,1.807,1269,1.829,1287,1.417,1296,1.167,1297,1.666,1299,1.542,1309,1.314,1314,2.116,1315,1.212,1331,2.195,1361,2.493,1362,2.404,1363,1.138,1365,2.181,1371,3.798,1404,4.717,1424,1.111,1425,2.408,1430,2.285,1433,2.744,1435,4.208,1450,1.78,1470,1.073,1478,1.261,1482,2.825,1488,3.854,1489,4.174,1491,1.981,1493,2.198,1516,1.073,1524,1.78,1533,2.552,1592,1.038,1594,1.824,1618,1.038,1626,0.952,1627,1.542,1630,3.043,1632,0.812,1639,1.822,1646,1.44,1651,2.087,1656,2.095,1672,1.701,1680,1.829,1688,2.447,1690,1.395,1694,1.353,1701,3.1,1725,2.294,1730,2.552,1732,2.408,1736,3.145,1747,1.026,1765,1.78,1775,2.198,1786,2.194,1792,1.899,1803,1.632,1857,1.353,1858,1.152,1869,1.511,1880,1.632,1912,1.244,1930,1.339,1943,1.924,1952,3.043,1953,2.294,1954,1.421,1955,1.44,1987,1.152,1988,2.493,2001,2.644,2005,1.514,2035,2.644,2046,1.924,2067,2.359,2159,2.116,2211,1.78,2218,1.78,2225,1.542,2258,1.44,2259,1.353,2264,1.872,2333,1.395,2364,1.666,2369,1.981,2382,1.152,2438,1.981,2570,1.542,2643,1.374,2698,1.542,2724,3.36,2820,1.395,2838,1.924,2870,1.666,2929,2.249,2932,2.447,2949,1.296,2976,2.544,3092,2.294,3099,2.116,3154,1.061,3159,1.111,3172,1.463,3174,3.76,3187,1.488,3305,1.542,3394,1.278,3426,1.167,3495,2.095,3508,2.404,3511,3.204,3546,1.78,3661,1.488,3699,2.117,3700,1.261,3708,2.045,3799,1.296,3800,1.417,3803,1.152,3806,2.552,3891,1.488,3913,6.238,3915,1.44,3944,1.924,3963,1.78,3970,2.552,3978,4.339,4067,1.6,4079,1.6,4091,1.981,4109,3.246,4118,2.404,4201,1.395,4229,1.488,4365,3.49,4415,1.353,4459,1.334,4461,2.198,4480,3.911,4501,2.408,4554,1.701,4576,2.744,4721,3.601,4755,2.552,4790,2.294,4889,2.294,4989,1.44,5074,1.824,5122,1.278,5128,1.57,5153,1.314,5158,1.061,5177,3.054,5207,1.981,5260,2.198,5291,2.198,5299,1.701,5300,3.29,5304,2.392,5315,1.872,5324,1.417,5337,1.78,5377,3.744,5397,1.824,5524,1.296,5542,1.542,5773,2.744,5818,1.824,5819,2.552,5956,2.198,5982,2.148,6027,1.44,6050,1.981,6195,2.045,6350,2.595,6366,2.249,6386,2.198,6400,1.417,6425,2.029,6434,2.116,6435,2.408,6436,1.875,6440,2.116,6449,1.542,6467,2.294,6506,1.212,6633,4.857,6700,4.717,6717,2.294,6720,2.552,6750,3.145,6784,2.294,6802,1.666,6893,3.641,6895,1.74,6898,2.095,6946,2.198,6955,3.823,6956,2.045,6969,2.116,6983,2.761,6985,2.744,7064,1.872,7123,3.823,7126,3.054,7142,2.896,7163,2.198,7171,2.294,7173,2.552,7183,2.116,7216,1.981,7226,2.552,7230,1.632,7238,1.514,7265,1.824,7269,1.701,7307,2.116,7315,2.552,7385,1.57,7423,2.761,7441,1.981,7526,5.189,7532,2.552,7535,1.981,7590,2.294,7749,2.198,7821,1.6,7844,2.045,7874,3.49,7917,2.294,7927,2.045,7970,4.051,8110,2.116,8113,2.744,8132,2.552,8150,2.408,8211,3.36,8294,4.051,8354,1.666,8360,2.408,8400,2.198,8467,2.744,8559,5.736,8580,2.552,8713,2.045,8739,4.339,8740,1.981,8741,2.408,8742,2.198,8743,3.036,8744,2.744,8745,3.036,8746,4.82,8747,1.824,8748,3.036,8749,2.408,8750,4.82,8751,2.552,8752,2.744,8753,2.408,8754,2.744,8755,3.036,8756,3.036,8757,3.036,8758,2.552,8759,2.552,8760,4.82,8761,3.036,8762,3.036,8763,2.552,8764,3.036,8765,3.036,8766,3.036,8767,6.825,8768,3.036,8769,3.036,8770,3.036,8771,3.036,8772,3.036,8773,3.036,8774,3.036,8775,6.825,8776,3.036,8777,3.036,8778,4.82,8779,4.82,8780,3.036,8781,3.036,8782,3.145,8783,2.552,8784,3.036,8785,2.744,8786,3.036,8787,3.036,8788,3.036,8789,3.036]],["description//tracks/90daysofdevops/day40",[228,4.134,1478,2.042,1488,2.042,3174,1.681]],["title//tracks/90daysofdevops/day39",[331,1.385,1246,2.172,2348,3.597,3272,2.398,8790,3.394]],["content//tracks/90daysofdevops/day39",[6,0.305,14,1.702,25,2.522,26,0.861,31,1.29,32,0.737,34,1.327,49,1.017,53,1.29,57,1.135,59,2.82,65,0.986,68,1.681,70,1.221,71,1.738,73,2.737,80,0.829,96,0.859,102,2.108,105,2.038,107,1.826,109,1.977,111,1.068,113,1.912,114,0.68,124,1.411,126,1.267,136,1.291,137,0.705,139,1.364,141,1.079,149,1.799,154,2.189,158,2.174,159,1.955,173,2.089,175,1.093,183,3.27,191,1.315,192,1.862,197,1.221,202,1.037,203,1.208,216,0.917,217,2.12,219,1.668,222,2.695,225,1.123,230,1.588,234,1.19,263,2.288,264,2.388,268,1.123,288,0.995,289,2.298,295,2.178,331,2.211,343,2.031,344,0.597,351,1.862,352,1.208,354,0.988,355,1.208,356,1.064,359,1.417,361,2.006,362,0.988,372,1.571,374,2.105,375,1.221,376,2.449,377,2.229,378,2.449,381,1.49,393,1.527,422,0.718,423,1.146,425,2,432,1.571,437,1.471,459,1.262,467,1.72,489,1.77,490,1.402,518,1.793,535,0.925,536,0.686,540,1.571,542,1.183,550,1.452,554,2.926,555,1.452,562,2.301,569,2.702,575,2.876,583,2.243,593,0.96,600,1.783,601,4.581,602,1.93,604,2.006,626,1.135,635,1.234,636,1.276,640,1.934,654,2.961,663,1.83,670,2.139,742,1.498,755,1.664,756,1.221,758,1.245,760,3.104,771,2.139,778,0.988,784,2.436,785,2.39,787,1.55,827,2.243,843,1.55,849,2.152,867,1.248,887,2.602,903,1.417,905,0.508,909,2.077,910,1.146,911,2.436,925,1.603,927,2.602,930,1.571,937,2.961,938,1.826,940,1.967,989,1.93,991,2.322,1002,1.135,1018,1.871,1019,2.096,1021,2.271,1024,1.618,1025,2.365,1046,1.366,1050,2.961,1053,1.248,1055,2.248,1061,2.415,1088,1.327,1107,2.873,1138,0.97,1151,3.558,1181,1.715,1191,2.243,1237,1.55,1240,1.49,1246,3.871,1266,2.121,1336,1.799,1362,1.862,1365,2.56,1374,1.715,1424,1.366,1434,2.961,1437,3.041,1447,1.276,1468,3.137,1476,4.274,1477,5.347,1480,1.799,1483,1.967,1488,4.628,1489,2.658,1515,4.602,1524,2.189,1528,3.348,1555,3.4,1592,1.276,1630,1.895,1632,2.038,1639,1.135,1660,2.82,1669,1.593,1759,2.189,1765,2.189,1769,3.943,1786,2.501,1803,2.006,1814,2.702,1846,4.756,1857,3.045,1881,1.862,1954,1.101,2014,2.961,2045,2.048,2052,1.77,2080,5.42,2190,2.982,2259,4.211,2276,3.137,2324,2.048,2364,1.29,2470,1.83,2552,6.499,2570,1.895,2659,2.189,2710,2.602,2856,2.006,2904,2.926,2976,2.335,3008,2.006,3119,2.602,3174,2.335,3213,2.301,3238,2.961,3270,2.82,3272,4.272,3353,1.77,3495,1.305,3511,2.288,3619,2.048,3708,5.518,3799,1.593,3800,1.742,3811,1.77,3860,3.374,3885,2.189,3916,2.514,4127,2.82,4141,2.702,4410,4.096,4413,2.961,4432,2.365,4830,2.189,5043,1.862,5128,1.93,5158,1.305,5207,2.436,5291,2.702,5309,2.092,5315,2.301,5332,2.365,5350,2.702,5493,3.81,5542,1.895,5551,2.773,5562,1.742,5702,3.137,5766,2.514,5845,2.514,5868,2.301,6070,5.52,6232,5.114,6350,1.616,6362,2.092,6394,4.763,6405,5.135,6436,1.452,6440,2.602,6550,2.514,6640,2.702,6697,3.374,6698,3.374,6706,3.374,6707,3.137,6761,1.77,6781,2.092,6827,3.374,6895,2.139,6898,1.977,6993,3.374,7045,2.82,7294,2.961,7334,5.132,7463,2.514,7468,5.162,7478,2.436,7479,2.702,7502,2.602,7516,2.189,7535,6.551,7555,3.374,7590,5.162,7824,3.374,7854,3.944,7930,3.374,7975,3.137,8419,5.544,8602,3.374,8621,3.137,8708,6.486,8713,6.891,8732,6.499,8741,2.961,8753,2.961,8754,3.374,8759,4.756,8785,3.374,8790,4.488,8791,3.733,8792,3.733,8793,3.733,8794,3.733,8795,6.408,8796,3.733,8797,3.137,8798,3.733,8799,3.733,8800,3.733,8801,6.833,8802,3.733,8803,3.733,8804,5.658,8805,3.374,8806,3.733,8807,5.658,8808,3.733,8809,3.374,8810,7.625,8811,3.374,8812,5.743,8813,3.733,8814,3.733,8815,3.374,8816,3.374,8817,3.374,8818,3.733,8819,6.176,8820,2.82,8821,3.374,8822,3.733,8823,3.733,8824,3.733,8825,3.733,8826,7.794,8827,6.19,8828,3.733,8829,3.733,8830,3.733,8831,3.733,8832,3.374,8833,3.733,8834,3.733,8835,3.733,8836,3.733,8837,3.733,8838,3.733,8839,3.137,8840,3.374]],["description//tracks/90daysofdevops/day39",[105,1.072,331,1.298,1246,2.036,1488,1.665,3272,2.247,8790,3.181]],["title//tracks/90daysofdevops/day38",[73,1.461,2344,4.294,7334,3.101]],["content//tracks/90daysofdevops/day38",[6,0.331,7,2.028,14,1.369,35,1.608,38,1.024,45,2.353,57,1.383,65,0.793,68,1.529,71,2.357,73,2.726,74,1.01,80,1.454,83,2.456,99,6.45,109,1.59,126,1.467,138,3.609,141,1.315,160,2.969,173,2.634,175,0.827,183,2.614,191,1.522,206,1.205,216,1.117,222,3.518,234,2.007,246,1.673,270,1.915,289,2.356,292,2.805,295,1.149,329,3.171,331,2.12,343,1.128,344,0.48,354,2.032,356,0.591,359,2.486,361,2.446,374,1.038,397,1.16,458,4.411,468,1.889,472,3.024,479,0.643,485,2.496,507,1.457,518,1.442,550,1.77,556,1.442,575,4.35,582,2.734,593,1.509,600,0.793,611,3.073,639,2.398,640,1.555,663,2.23,670,3.752,678,2.353,701,2.805,702,2.09,714,2.398,758,1.001,760,3.593,767,2.668,770,2.607,777,2.123,805,1.942,823,3.325,835,5.92,849,2.007,875,3.171,882,2.353,896,2.805,918,0.814,931,2.967,938,1.216,989,3.968,1023,2.398,1046,2.398,1054,1.816,1066,1.686,1088,1.067,1138,1.182,1181,2.09,1234,1.59,1237,1.889,1300,3.275,1308,1.182,1364,3.486,1365,2.963,1401,3.437,1404,2.883,1456,3.437,1470,2.315,1483,2.398,1488,4.611,1489,2.548,1528,3.687,1529,2.446,1645,2.55,1661,1.555,1694,2.028,1747,1.538,1792,1.793,1826,3.064,1849,2.969,1855,4.5,1863,2.028,1871,3.064,1886,4.038,1890,3.472,1930,1.82,1934,2.969,1954,1.342,1956,4.704,1965,3.824,2052,2.157,2125,2.668,2333,2.09,2552,6.087,2564,2.963,2659,2.668,2662,1.864,2765,2.31,2768,5.007,2832,3.171,2856,3.52,2937,2.883,2976,2.622,3076,4.565,3143,2.31,3174,2.622,3281,1.555,3437,3.171,3504,2.55,3948,2.668,3965,3.609,3997,3.437,4274,2.668,4314,2.398,4424,1.97,4432,4.15,4782,2.668,4872,3.171,5040,8.04,5074,2.734,5128,2.353,5132,2.805,5158,1.59,5167,4.113,5177,4.863,5203,3.294,5207,2.969,5215,2.668,5224,3.609,5373,2.446,5397,2.734,5398,3.824,5406,7.587,5542,2.31,5554,3.171,5680,3.67,5775,2.446,5845,5.168,5872,6.936,6121,3.609,6158,5.505,6366,2.123,6384,3.609,6385,3.609,6414,3.064,6480,1.942,6550,5.168,6781,2.55,6802,2.496,6803,6.44,6872,4.113,6895,2.607,6898,2.289,7051,3.171,7241,3.609,7334,5.597,7441,2.969,7468,3.437,7519,4.113,7529,5.195,7535,2.969,7596,3.609,7648,3.064,7842,3.824,8116,6.45,8172,8.373,8583,5.505,8599,3.437,8610,6.341,8708,6.44,8713,6.239,8747,2.734,8759,6.45,8797,3.824,8827,4.948,8841,4.55,8842,4.55,8843,3.171,8844,4.55,8845,4.55,8846,4.55,8847,4.55,8848,4.55,8849,3.824,8850,3.609,8851,4.55,8852,4.55,8853,4.55,8854,4.113,8855,4.55,8856,4.55,8857,4.55,8858,4.55,8859,4.55,8860,4.55,8861,9.13,8862,4.55,8863,4.113,8864,5.92,8865,4.55,8866,4.55,8867,3.171,8868,4.113,8869,4.55,8870,6.936,8871,4.113,8872,4.55,8873,4.55,8874,4.55,8875,4.113,8876,4.55,8877,4.113,8878,4.55,8879,4.55,8880,4.55,8881,3.609,8882,4.55,8883,4.55,8884,4.113,8885,4.55,8886,4.55,8887,3.609,8888,4.55,8889,4.55,8890,3.294,8891,8.395,8892,4.55,8893,4.55,8894,4.55,8895,4.55,8896,4.55,8897,4.55,8898,6.55,8899,4.55,8900,4.55,8901,4.113]],["description//tracks/90daysofdevops/day38",[73,1.327,289,1.044,1488,2.042,7334,2.818]],["title//tracks/90daysofdevops/day37",[1488,2.248,2330,4.294,8361,4.294]],["content//tracks/90daysofdevops/day37",[2,1.248,6,0.429,8,2.076,14,2.669,17,2.337,26,0.687,34,0.657,38,0.888,53,0.968,65,1.135,67,1.92,68,1.303,70,1.858,71,0.86,73,2.448,77,1.212,83,1.05,96,0.645,100,5.148,101,1.287,105,1.742,111,1.293,113,0.947,118,1.578,126,0.627,137,1.073,141,1.306,149,1.35,159,0.968,164,0.756,165,1.683,173,0.714,175,0.867,183,1.803,190,1.332,191,0.651,192,1.397,201,1.163,203,2.474,204,0.957,208,1.448,216,1.11,217,0.869,218,1.605,219,0.826,221,1.163,222,1.597,225,1.359,226,1.902,227,1.635,230,1.32,235,1.388,238,1.35,240,1.013,245,1.152,246,0.611,247,2.044,261,1.076,263,1.132,267,1.063,288,0.492,289,1.706,293,1.328,295,0.707,300,2.079,329,3.149,331,2.708,356,0.364,359,1.715,374,0.639,378,1.212,379,2.028,397,0.714,398,1.328,402,1.476,420,1.727,422,1.092,425,0.99,435,1.448,437,1.78,453,3.959,461,0.99,467,0.851,468,1.876,470,0.957,472,1.104,479,1.137,487,1.35,490,1.772,518,0.887,536,0.831,542,0.887,550,1.09,562,1.727,564,2.589,571,1.683,575,3.385,593,0.963,600,1.135,602,1.448,603,1.727,626,1.373,628,1.921,635,0.926,636,1.941,637,1.147,640,0.957,648,1.09,663,1.373,670,1.605,695,3.584,714,1.476,718,1.025,741,1.78,756,1.478,758,1.573,760,2.479,771,3.254,778,0.742,787,1.163,817,1.417,823,1.422,849,1.975,901,1.05,909,1.373,915,1.163,917,0.728,918,0.809,923,2.222,926,1.002,931,0.99,934,2.833,935,0.675,938,1.208,991,2.448,1012,1.397,1018,2.364,1021,0.834,1024,0.892,1034,1.605,1037,1.397,1055,2.467,1061,3.052,1076,1.248,1088,0.657,1089,1.025,1100,2.215,1110,1.038,1140,6.108,1151,2.108,1175,1.952,1181,1.287,1193,2.222,1208,1.744,1234,0.979,1243,1.727,1246,1.422,1269,1.063,1297,1.536,1308,1.475,1320,1.505,1331,0.826,1336,4.371,1363,1.05,1364,2.358,1365,2.044,1375,1.775,1426,1.373,1476,5.774,1478,1.163,1480,1.35,1483,3.768,1488,4.732,1489,2.21,1491,2.948,1503,3.584,1516,2.304,1536,1.23,1538,1.828,1555,5.191,1592,0.957,1626,0.878,1632,1.911,1639,0.851,1647,2.254,1653,1.505,1672,1.569,1680,1.063,1690,1.287,1720,1.727,1721,4.983,1729,1.35,1776,1.775,1802,2.863,1869,0.878,1886,1.727,1890,1.267,1905,1.727,1912,1.851,1916,1.642,1930,1.986,1954,0.826,1956,2.532,1977,2.531,2001,1.536,2006,2.215,2013,1.605,2022,2.222,2052,1.328,2259,3.729,2260,1.828,2297,2.116,2317,2.116,2321,2.028,2324,2.479,2365,2.116,2438,1.828,2468,4.523,2496,2.028,2693,1.23,2716,1.727,2721,1.952,2765,1.422,2831,2.222,2856,2.429,2904,4.857,2949,1.195,2976,1.941,3013,1.505,3062,1.828,3092,2.116,3154,0.979,3174,2.748,3179,1.287,3187,1.373,3299,2.222,3311,1.642,3312,1.727,3426,1.076,3495,1.579,3508,1.397,3511,1.132,3520,2.116,3546,1.642,3630,2.222,3642,1.569,3696,0.734,3700,1.163,3799,1.195,3803,1.063,3893,2.222,3916,3.825,3948,1.642,3978,2.028,4019,1.886,4064,1.775,4071,1.828,4201,2.076,4271,1.23,4303,1.683,4415,1.248,4459,3.14,4474,1.605,4809,2.028,4989,1.328,5008,1.212,5036,1.09,5078,1.642,5128,3.37,5158,0.979,5207,1.828,5308,3.706,5309,3.183,5332,1.775,5335,1.727,5339,3.798,5343,3.271,5373,1.505,5391,1.952,5604,2.531,5630,8.198,5690,4.542,5707,1.683,5775,2.429,5857,2.531,5892,2.116,6012,2.354,6027,1.328,6047,2.222,6070,3.271,6081,2.222,6160,2.786,6263,2.381,6356,1.147,6430,1.505,6436,1.758,6444,2.337,6468,2.531,6517,2.531,6626,6.422,6633,4.665,6737,1.952,6741,1.952,6750,1.828,6751,2.354,6802,1.536,6803,3.271,6895,1.605,6898,1.579,6995,2.531,6999,4.29,7001,2.222,7037,1.886,7161,1.373,7182,1.23,7197,5.134,7267,1.569,7269,1.569,7294,3.584,7334,1.605,7406,4.505,7467,2.354,7468,5.774,7524,1.642,7525,3.798,7526,1.952,7535,6.426,8109,2.222,8142,2.354,8361,3.584,8394,5.89,8419,3.413,8485,4.084,8599,3.413,8610,4.923,8674,3.413,8708,4.112,8713,5.974,8732,3.584,8738,2.028,8739,2.028,8741,2.222,8758,2.354,8790,2.222,8795,6.759,8797,2.354,8819,2.531,8821,2.531,8826,7.563,8832,5.134,8839,2.354,8901,2.531,8902,2.801,8903,2.801,8904,2.801,8905,2.801,8906,2.531,8907,2.801,8908,2.531,8909,2.531,8910,2.116,8911,2.801,8912,5.134,8913,2.801,8914,2.801,8915,2.801,8916,4.519,8917,2.801,8918,2.801,8919,4.519,8920,2.801,8921,2.531,8922,2.801,8923,2.801,8924,5.134,8925,3.798,8926,4.084,8927,4.519,8928,2.801,8929,2.801,8930,2.801,8931,5.134,8932,2.801]],["description//tracks/90daysofdevops/day37",[1488,2.64,8738,4.603]],["title//tracks/90daysofdevops/day36",[164,1.29,355,1.547,1488,1.985,2321,3.46]],["content//tracks/90daysofdevops/day36",[1,1.449,6,0.35,14,2.037,15,1.766,26,1.03,29,1.705,31,1.647,32,0.941,34,1.118,38,0.745,44,2.66,57,1.449,64,1.51,65,1.639,68,0.869,73,1.827,75,0.838,77,2.064,96,1.813,102,1.227,105,2.848,110,1.03,111,1.938,113,2.289,124,0.985,126,1.068,136,1.545,139,1.632,154,2.795,158,1.832,159,1.647,164,2.669,173,1.215,175,0.849,181,3.451,183,1.902,190,2.774,192,2.377,201,3.761,206,1.262,212,1.666,216,1.171,221,1.227,224,2.752,225,2.725,230,1.573,234,1.424,235,1.464,264,2.367,278,3.502,289,1.922,295,1.71,343,1.181,351,1.845,354,1.262,355,2.931,356,0.88,366,2.26,374,1.956,375,1.559,393,1.287,398,3.734,421,2.064,423,1.464,432,2.85,459,1.611,470,1.629,471,2.974,476,1.902,518,1.51,536,0.876,550,1.855,553,2.671,556,1.51,571,2.864,575,2.007,583,2.864,600,1.753,612,2.19,626,2.058,627,2.42,628,2.322,640,1.629,648,2.634,655,2.367,663,2.337,678,2.465,742,1.262,758,1.49,760,3.715,778,1.262,817,1.495,843,4.107,845,2.007,849,1.803,857,2.224,867,1.593,907,1.476,909,1.449,917,2.046,918,0.853,934,2.377,938,1.274,993,2.508,998,2.124,1002,1.449,1012,2.377,1017,1.979,1021,1.42,1024,1.788,1055,2.774,1088,1.588,1110,1.766,1197,2.512,1205,2.264,1206,2.377,1224,1.855,1232,2.731,1234,1.666,1254,2.465,1255,2.539,1266,1.787,1269,1.809,1289,2.795,1296,1.832,1341,1.629,1363,1.787,1365,3.879,1372,4.007,1470,2.394,1483,3.569,1487,2.377,1488,4.642,1489,2.634,1516,1.685,1555,5.441,1592,1.629,1610,1.766,1621,3.21,1626,2.469,1632,1.274,1639,1.449,1650,2.795,1669,2.035,1688,2.42,1690,4.322,1729,2.298,1770,3.021,1786,1.745,1884,3.21,1930,2.188,1984,2.42,1987,2.57,2013,2.731,2046,1.902,2047,5.976,2146,3.569,2240,5.286,2259,2.124,2334,3.21,2382,1.809,2662,1.953,2713,4.007,2870,2.615,2904,4.434,2932,2.42,2976,2.691,3015,3.111,3154,1.666,3174,2.93,3187,2.337,3311,2.795,3312,2.939,3394,2.007,3397,2.864,3426,1.832,3495,1.666,3537,3.451,3636,3.11,3655,2.562,3657,3.066,3658,3.734,3659,4.804,3660,4.609,3661,2.337,3696,1.25,3699,2.094,4064,3.021,4089,4.007,4123,3.11,4150,2.864,4303,4.732,4432,3.021,4459,4.132,4737,4.309,4809,4.902,4894,5.691,4940,4.309,5128,3.502,5158,1.666,5207,3.11,5241,4.175,5300,2.298,5304,2.702,5389,2.377,5562,2.224,5916,4.007,6263,2.512,6430,2.562,6476,2.939,6507,3.21,6558,4.32,6682,4.007,6770,3.11,6802,2.615,6895,2.731,6898,2.367,6909,3.021,7142,2.864,7230,2.562,7238,2.377,7308,4.007,7467,4.007,7474,3.451,7502,4.72,7535,3.11,7539,3.601,8136,3.601,8248,5.371,8419,2.864,8592,3.451,8713,3.21,8912,4.309,8924,4.309,8925,4.007,8926,4.309,8933,4.767,8934,4.767,8935,4.007,8936,4.767,8937,4.767,8938,4.309,8939,4.309,8940,4.309,8941,4.767,8942,4.767,8943,4.767,8944,4.767,8945,4.767,8946,4.767,8947,4.767,8948,4.767,8949,3.451,8950,4.767,8951,4.767]],["description//tracks/90daysofdevops/day36",[164,1.497,355,1.795,1488,2.303]],["title//tracks/90daysofdevops/day35",[6,0.159,105,1.144,1488,1.777,2317,3.232,4459,1.879]],["content//tracks/90daysofdevops/day35",[6,0.357,15,1.462,26,0.898,27,2.086,32,1.396,34,1.657,38,0.617,44,1.225,49,1.608,50,2.315,57,2.148,65,1.801,68,1.53,73,2.117,74,0.876,75,1.548,80,1.31,94,2.315,96,0.909,101,1.813,102,1.016,105,2.926,107,1.055,109,1.38,110,1.527,111,1.689,118,1.964,124,1.219,126,0.884,136,1.915,137,1.335,139,0.952,141,1.141,155,2.434,158,1.517,173,1.504,175,1.012,176,0.801,191,1.371,203,1.91,205,2.166,206,1.562,207,1.935,215,1.969,217,2.193,219,1.164,221,1.016,222,3.454,224,1.38,225,2.526,230,1.371,234,0.83,262,2.502,267,1.498,288,1.605,289,2.131,295,1.49,300,2.16,332,2.004,333,1.32,343,1.752,344,0.746,351,1.076,354,1.045,356,1.219,359,1.498,361,2.122,362,1.562,372,1.662,374,2.316,383,2.433,393,1.593,398,2.798,422,1.359,423,2.17,425,2.086,433,3.655,458,2.659,459,2.389,461,2.498,464,1.412,467,1.2,473,1.813,478,1.734,479,0.999,507,1.264,519,1.639,520,2.372,536,1.442,540,1.662,548,1.334,550,1.536,554,2.041,564,2.262,575,2.484,593,1.494,598,1.555,600,1.814,602,3.052,603,2.434,632,2.752,637,1.617,639,2.081,640,1.349,647,1.709,663,1.935,670,2.262,675,1.164,718,1.445,733,2.081,758,0.868,760,3.237,778,1.045,779,1.555,819,2.081,849,2.227,856,1.639,867,2.621,903,1.498,907,0.861,909,1.794,917,2.438,918,0.707,927,2.752,931,2.498,938,1.055,939,1.38,955,2.315,1021,2.336,1024,1.165,1025,3.74,1037,1.969,1053,1.32,1055,1.164,1061,2.519,1067,2.434,1073,2.212,1081,2.982,1107,2.004,1121,2.372,1138,1.025,1151,3.298,1197,2.081,1205,1.973,1208,1.812,1229,2.262,1234,1.38,1237,1.639,1266,1.48,1299,2.004,1300,1.685,1301,2.263,1331,1.74,1361,2.041,1364,1.639,1365,2.67,1435,2.798,1437,2.122,1441,3.851,1470,1.396,1478,1.639,1488,4.564,1489,2.296,1516,1.396,1526,1.872,1528,1.734,1529,2.122,1605,3.131,1626,1.85,1632,2.244,1669,2.519,1680,1.498,1690,3.603,1701,2.041,1704,1.685,1747,1.334,1786,1.445,1829,2.24,1930,2.536,1952,2.004,1956,2.212,1984,2.004,1987,2.682,1988,2.041,1990,3.131,2046,1.575,2047,4.114,2055,2.122,2067,1.87,2225,2.996,2259,3.15,2369,2.576,2382,1.498,2410,2.858,2419,2.372,2662,2.418,2856,3.172,2976,2.415,3067,2.576,3150,2.166,3154,1.38,3174,2.415,3214,1.617,3305,2.004,3311,2.315,3312,2.434,3358,4.273,3394,2.484,3544,3.131,3591,2.262,3699,3.444,3722,3.131,3755,3.851,3800,1.842,3803,1.498,3811,3.351,3915,1.872,3916,2.659,4128,2.858,4158,2.858,4303,2.372,4314,2.081,4432,3.74,4459,4.572,4484,2.858,4549,3.318,4734,3.318,4757,2.315,4830,2.315,5128,2.041,5158,1.38,5182,1.813,5207,2.576,5373,2.122,5707,2.372,5739,2.166,5781,2.502,5845,2.659,6027,1.872,6095,2.434,6247,2.502,6350,1.709,6358,2.982,6425,2.484,6427,2.004,6506,2.355,6590,2.982,6659,2.576,6695,2.576,6707,3.318,6709,5.281,6710,2.262,6739,3.131,6741,2.752,6742,2.858,6761,1.872,6803,5.117,6895,2.262,6898,2.063,6956,2.659,7058,2.982,7142,3.546,7149,3.639,7174,3.568,7232,2.858,7267,2.212,7294,3.131,7319,2.576,7406,3.131,7423,2.262,7465,3.131,7466,2.372,7468,6.654,7498,4.273,7504,3.131,7512,3.568,7524,3.46,7648,2.659,7874,2.858,8141,3.131,8293,3.568,8419,4.247,8610,5.924,8656,3.318,8701,3.318,8708,2.858,8713,6.148,8732,4.681,8795,3.318,8811,3.568,8812,3.318,8952,3.948,8953,3.948,8954,3.948,8955,3.948,8956,3.131,8957,3.948,8958,3.948,8959,5.334,8960,3.948,8961,5.902,8962,5.902,8963,3.948,8964,3.948,8965,3.948,8966,3.568,8967,3.948,8968,3.948,8969,3.948,8970,3.948,8971,3.568,8972,5.902,8973,3.948,8974,5.902,8975,3.948,8976,3.948,8977,3.948,8978,3.131,8979,3.948]],["description//tracks/90daysofdevops/day35",[6,0.183,105,1.315,1488,2.042,4459,2.16]],["title//tracks/90daysofdevops/day34",[595,1.604,1674,2.172,2296,3.232,3700,1.777,7182,1.879]],["content//tracks/90daysofdevops/day34",[6,0.429,7,2.394,8,1.186,18,0.892,30,1.947,31,0.892,32,0.835,44,0.801,57,1.286,64,0.818,65,0.737,68,0.471,70,0.845,71,0.793,74,0.573,75,1.092,94,1.514,96,0.595,105,0.69,114,1.132,115,1.869,120,1.667,124,0.533,126,0.578,127,2.831,132,5.221,137,0.488,146,1.311,147,1.78,153,3.555,159,1.462,161,1.947,173,0.658,175,0.669,176,1.493,192,1.288,195,1.552,197,0.845,204,2.952,214,1.858,217,0.801,226,1.781,230,0.6,240,0.934,242,2.849,245,1.078,257,2.853,259,0.957,261,0.992,265,0.992,268,0.777,269,2.68,270,1.087,271,1.447,289,1.318,295,1.357,307,1.044,319,2.846,336,2.187,351,1.693,355,2.717,356,0.335,362,1.12,374,0.589,375,1.757,378,3.186,383,0.801,393,1.142,398,1.224,410,1.205,422,1.033,423,0.793,424,1.361,426,1.417,427,1.625,431,2.01,441,1.134,456,1.739,459,0.873,468,1.072,473,1.186,479,1.146,501,3.062,507,0.827,560,1.058,593,0.438,595,2.76,626,1.286,627,2.148,628,1.584,648,1.005,663,4.79,718,0.945,742,0.684,756,0.845,758,1.366,795,3.28,828,3.098,840,1.205,843,1.072,845,1.087,849,0.889,864,1.311,883,2.17,905,1.387,907,0.563,909,0.785,917,1.614,918,1.227,931,0.913,933,4.516,935,1.02,938,0.69,1019,0.957,1024,1.061,1034,1.479,1036,0.854,1046,0.945,1054,1.031,1055,0.761,1079,1.605,1109,2.039,1110,0.957,1140,5.655,1141,1.739,1175,3.745,1205,1.414,1208,1.299,1210,6.434,1211,1.417,1224,2.09,1240,1.031,1241,3.889,1255,1.586,1271,0.957,1281,2.17,1294,1.685,1301,2.597,1341,3.368,1364,1.072,1365,1.914,1386,1.168,1404,1.636,1405,0.945,1424,0.945,1426,1.266,1430,1.224,1435,1.224,1439,1.552,1456,1.951,1478,1.072,1484,1.087,1485,1.361,1488,1.072,1489,1.005,1601,1.417,1610,0.957,1626,1.947,1627,1.311,1650,1.514,1653,1.388,1674,3.153,1680,1.605,1688,2.728,1702,1.907,1704,1.805,1721,3.745,1741,1.118,1745,1.005,1774,1.447,1789,2.689,1811,2.423,1840,1.479,1843,1.134,1858,1.605,1904,1.205,1930,0.717,1954,1.247,1955,1.224,1960,3.823,1978,1.479,2035,1.417,2067,0.818,2074,2.68,2132,4.217,2186,2.608,2255,6.66,2262,2.048,2277,3.024,2283,1.335,2364,0.892,2395,2.334,2459,3.195,2467,1.245,2525,7.233,2729,2.17,2731,2.37,2975,2.32,2979,1.739,3013,1.388,3076,2.948,3107,3.83,3154,0.903,3174,0.882,3238,2.048,3385,2.68,3426,0.992,3511,1.044,3616,1.869,3696,1.629,3697,1.8,3700,3.056,3803,0.98,3948,1.514,4010,1.479,4039,1.168,4064,1.636,4085,1.739,4229,3.976,4272,2.589,4365,1.869,4447,1.636,4459,1.134,4835,1.8,5022,2.849,5036,2.416,5074,1.552,5095,2.334,5100,0.863,5127,1.388,5129,4.177,5130,2.048,5132,1.592,5133,1.685,5138,1.417,5158,0.903,5164,2.76,5241,4.538,5300,3.303,5302,1.8,5304,2.479,5320,2.948,5327,1.592,5348,3.355,5354,5.436,5373,1.388,5391,1.8,5411,1.951,5413,5.614,5544,1.739,5641,1.017,5833,2.334,6007,2.334,6027,1.224,6228,2.048,6350,3.979,6352,1.951,6356,1.058,6361,2.853,6366,2.507,6430,1.388,6444,2.187,6593,6.127,6595,5.852,6625,6.406,6719,1.8,6781,1.447,6795,2.17,6798,1.869,6891,2.17,6896,6.653,6900,1.245,6919,2.37,7182,4.291,7230,1.388,7365,1.739,7460,1.869,7491,2.17,7524,1.514,7528,2.048,7634,4.058,7648,1.739,7768,2.048,7892,6.746,8146,1.739,8231,1.951,8300,3.732,8980,2.582,8981,2.582,8982,2.17,8983,2.582,8984,3.823,8985,2.17,8986,2.334,8987,2.582,8988,4.23,8989,7.361,8990,6.212,8991,6.212,8992,4.23,8993,6.212,8994,6.212,8995,7.361,8996,6.212,8997,7.361,8998,7.361,8999,4.23,9000,7.361,9001,4.23,9002,6.854,9003,7.772,9004,7.361,9005,2.582,9006,4.23,9007,5.373,9008,6.854,9009,2.582,9010,4.23,9011,2.582,9012,4.23,9013,2.582,9014,2.582,9015,4.23,9016,4.23,9017,3.823,9018,4.23,9019,2.582,9020,4.23,9021,4.23,9022,4.23,9023,8.111,9024,7.024,9025,6.212,9026,5.373,9027,4.23,9028,4.23,9029,4.23,9030,4.23,9031,4.23,9032,4.23,9033,4.23,9034,4.23,9035,4.23,9036,4.23,9037,5.373,9038,4.23,9039,4.23,9040,3.823,9041,4.23,9042,4.23,9043,4.23,9044,4.23,9045,4.23,9046,4.23,9047,4.23,9048,4.23,9049,4.23,9050,7.361,9051,7.361,9052,4.23,9053,6.854,9054,2.582,9055,2.582,9056,2.582,9057,2.582,9058,2.582,9059,2.582,9060,4.23,9061,2.582,9062,4.23,9063,4.23,9064,4.23,9065,2.582,9066,4.23,9067,2.582,9068,8.85,9069,6.212,9070,8.111,9071,6.212,9072,6.212,9073,6.212,9074,4.23,9075,2.582,9076,2.582,9077,2.334,9078,2.582,9079,2.582,9080,2.582,9081,2.582,9082,2.582,9083,2.582,9084,2.582,9085,2.582,9086,3.195,9087,4.23,9088,3.823,9089,5.373,9090,2.334,9091,2.582,9092,2.582,9093,2.334,9094,4.23,9095,2.334,9096,2.582,9097,2.582,9098,4.23,9099,2.582,9100,4.23,9101,2.582,9102,2.582,9103,2.582,9104,2.582,9105,2.582,9106,2.582,9107,2.582,9108,2.582,9109,2.582,9110,2.582,9111,2.582,9112,2.582,9113,2.582,9114,4.23,9115,4.23,9116,5.373,9117,2.582,9118,2.582,9119,5.373,9120,5.373,9121,2.582,9122,2.582,9123,2.582,9124,2.582,9125,2.582,9126,2.582,9127,2.582,9128,2.582,9129,2.334,9130,2.582,9131,2.582,9132,2.334,9133,2.582,9134,2.582,9135,2.582,9136,2.334,9137,2.582,9138,2.582,9139,2.582,9140,2.582,9141,2.582,9142,2.334,9143,2.582,9144,4.856,9145,2.334,9146,2.582,9147,2.582,9148,2.582,9149,2.582,9150,2.582,9151,1.8,9152,1.8,9153,1.8]],["description//tracks/90daysofdevops/day34",[595,1.844,1674,2.497,3700,2.042,7182,2.16]],["title//tracks/90daysofdevops/day33",[6,0.121,214,1.43,917,0.846,2291,2.736,3015,1.496,3700,1.352,7182,2.236]],["content//tracks/90daysofdevops/day33",[1,0.914,5,1.616,6,0.422,8,1.381,18,1.652,26,0.727,27,1.063,30,0.942,32,1.176,33,2.57,34,1.396,35,1.063,38,0.931,44,0.933,46,1.473,52,1.32,58,2.173,65,0.833,67,2.294,68,0.548,70,0.983,73,0.811,75,1.387,80,1.507,82,2.271,96,0.692,101,3.624,102,2.03,109,1.671,110,1.286,111,0.86,113,1.616,118,1.654,124,0.621,126,0.673,127,3.138,136,1.69,137,0.568,139,0.725,161,0.942,164,0.811,175,1.015,176,1.503,190,1.41,191,1.383,195,4.078,197,0.983,204,3.58,205,1.649,206,0.796,211,3.12,212,1.051,214,3.633,215,1.499,216,0.738,217,0.933,218,1.722,221,0.774,225,0.904,226,2.506,229,1.232,230,1.577,235,1.468,238,1.449,245,1.73,246,0.655,247,2.694,251,1.473,257,1.381,259,1.114,264,1.051,265,1.155,269,4.694,288,1.047,289,1.015,295,0.759,301,1.155,331,1.547,332,2.428,334,1.499,336,1.554,342,1.265,343,0.745,344,0.505,356,0.881,359,1.141,372,2.506,374,1.358,375,1.564,381,1.2,382,1.905,383,1.484,393,1.607,396,2.623,397,0.766,398,3.218,405,2.527,406,1.526,410,1.403,416,2.527,417,1.806,420,2.948,421,1.301,422,1.305,423,0.923,427,2.288,431,2.196,432,2.506,459,1.016,464,1.71,470,1.027,471,1.32,476,1.2,477,1.526,479,1.115,486,3.12,489,1.425,490,0.745,517,1.473,518,0.952,530,1.381,535,0.745,536,0.879,542,0.952,548,1.016,555,1.169,587,1.473,593,0.811,598,1.184,600,1.037,611,1.1,626,1.453,627,1.526,628,1.756,637,1.959,643,1.961,675,1.41,714,1.584,742,0.796,744,3.612,758,1.63,770,1.722,774,1.027,781,1.381,783,2.024,787,1.248,796,4.15,840,1.403,843,3.674,845,1.265,849,1.558,864,1.526,867,1.005,905,0.811,907,0.655,909,1.453,917,2.298,918,1.623,929,2.024,931,1.063,939,1.051,991,0.852,1008,1.905,1018,0.994,1024,1.634,1028,1.722,1034,4.739,1040,1.526,1053,1.005,1054,1.2,1057,1.425,1068,1.554,1088,0.705,1104,4.15,1105,2.384,1109,3.57,1110,2.922,1140,2.024,1143,1.215,1180,1.403,1187,1.425,1208,2.275,1232,3.411,1234,1.051,1240,2.376,1246,2.428,1254,1.554,1279,1.905,1284,1.75,1292,1.584,1301,1.907,1308,0.781,1309,2.578,1312,1.853,1315,1.2,1341,1.027,1351,1.184,1354,3.12,1361,1.554,1405,1.1,1417,2.527,1423,1.499,1426,2.344,1441,1.961,1447,1.027,1470,1.063,1482,1.141,1483,1.584,1528,1.32,1583,1.905,1585,1.301,1586,4.15,1594,1.806,1599,1.425,1610,3.065,1618,1.634,1619,1.34,1621,2.024,1622,1.722,1626,2.843,1632,1.98,1642,2.384,1647,1.499,1648,1.554,1649,1.853,1652,1.141,1656,1.671,1675,1.554,1688,3.023,1701,1.554,1702,0.923,1704,1.283,1720,1.853,1738,2.527,1745,2.64,1774,1.684,1794,2.271,1818,1.2,1857,1.34,1869,0.942,1904,1.403,1930,0.835,1931,3.411,1954,0.886,1989,2.271,2014,2.384,2035,3.266,2043,1.961,2052,2.823,2067,0.952,2125,1.763,2225,1.526,2245,1.722,2277,3.643,2322,2.717,2324,1.649,2364,1.652,2369,1.961,2382,2.26,2466,2.095,2467,1.449,2587,2.52,2647,2.267,2712,2.271,2724,2.095,2727,3.2,2820,1.381,2873,1.806,2888,3.22,2949,1.283,3015,2.197,3159,1.75,3187,1.473,3253,2.948,3273,1.763,3311,3.491,3312,3.671,3348,2.384,3394,1.265,3426,1.837,3587,1.961,3655,3.648,3657,2.821,3696,1.78,3699,1.32,3700,3.765,3799,1.283,3811,1.425,3963,1.763,3980,1.649,4010,3.411,4103,1.554,4201,1.381,4213,2.527,4229,4.337,4241,3.885,4271,1.32,4303,1.806,4324,1.961,4369,2.384,4415,1.34,4459,1.32,4480,1.961,4497,1.301,4554,1.684,4757,1.763,4870,1.905,5008,3.207,5036,3.664,5074,2.873,5127,4.615,5129,1.616,5132,1.853,5133,1.961,5135,2.271,5138,1.649,5158,1.671,5215,1.763,5241,6.458,5300,1.449,5301,2.271,5302,3.333,5304,1.908,5305,0.869,5309,2.679,5322,2.527,5323,3.577,5337,3.491,5355,7.017,5360,3.671,5377,2.623,5386,2.095,5393,2.176,5493,3.22,5521,2.384,5532,3.793,5544,2.024,6050,3.12,6194,2.384,6263,1.584,6354,2.717,6356,1.232,6399,1.86,6400,1.403,6401,2.717,6402,2.717,6436,1.86,6466,1.806,6473,2.176,6506,1.2,6516,3.03,6522,3.22,6558,4.064,6736,1.853,6754,2.271,6769,2.176,6770,4.428,6798,2.176,6898,1.051,6900,1.449,7064,2.948,7132,2.717,7182,4.846,7213,2.717,7230,1.616,7262,2.024,7365,6.106,7414,5.005,7466,2.873,7504,2.384,7562,2.095,7611,3.462,7747,2.527,7834,2.527,7865,2.384,7892,2.095,7910,2.717,8146,2.024,8209,2.176,8441,2.384,8447,3.612,8459,2.717,8497,2.717,8522,2.527,8693,1.961,8782,1.961,8982,2.527,8984,4.322,9077,2.717,9088,4.322,9129,4.322,9132,2.717,9136,4.322,9151,2.095,9152,2.095,9153,2.095,9154,5.383,9155,3.006,9156,3.006,9157,3.006,9158,4.782,9159,2.717,9160,3.006,9161,3.006,9162,4.782,9163,3.006,9164,3.006,9165,3.006,9166,3.006,9167,3.006,9168,5.955,9169,3.006,9170,6.787,9171,3.006,9172,3.006,9173,3.006,9174,4.782,9175,3.006,9176,4.782,9177,3.006,9178,3.006,9179,3.006,9180,3.006,9181,3.006,9182,3.006,9183,3.006,9184,3.793,9185,2.717,9186,3.006,9187,2.717,9188,3.006,9189,5.959,9190,2.095,9191,4.311,9192,3.006,9193,3.006,9194,4.782,9195,2.717,9196,3.006,9197,3.006,9198,3.006,9199,3.006,9200,3.006,9201,2.527,9202,2.717,9203,3.006]],["description//tracks/90daysofdevops/day33",[6,0.137,214,1.612,917,0.954,3015,1.687,3700,1.525,7182,2.454]],["title//tracks/90daysofdevops/day32",[2280,3.232,3015,1.966,3700,1.777,6366,1.997,7182,1.879]],["content//tracks/90daysofdevops/day32",[1,1.698,6,0.35,8,1.686,11,2.836,19,2.056,26,0.558,27,1.297,29,1.312,32,1.335,35,2.39,38,0.574,44,1.139,49,1,53,1.268,65,0.639,67,2.285,70,1.2,74,0.815,75,1.189,80,0.815,102,0.944,105,0.981,107,0.981,110,0.793,112,1.522,113,1.24,118,2.747,135,3.317,136,1.274,139,0.885,147,0.953,173,0.936,175,0.989,176,1.133,195,2.205,196,1.24,201,1.524,202,1.02,203,1.808,204,1.909,205,3.064,206,1.479,216,1.372,217,2.523,218,2.103,224,1.952,225,1.681,227,1.328,229,1.504,230,0.853,234,0.772,238,1.769,240,2.734,244,3.564,245,2.485,246,0.8,261,1.41,264,1.283,265,1.41,270,1.545,271,2.056,272,2.384,289,1.435,295,1.411,301,2.146,302,3.472,307,1.484,329,3.893,341,4.412,343,0.91,344,1.142,352,1.188,354,1.479,356,0.878,359,1.393,374,1.954,375,1.827,383,2.523,393,1.825,397,2.184,402,2.944,406,1.863,408,1.589,411,1.934,421,1.589,422,1.074,425,3.446,426,2.013,427,3.613,428,3.893,431,1.188,439,2.648,459,1.888,464,2.908,468,2.808,476,1.465,479,0.789,488,1.2,490,1.384,535,0.91,536,1.243,539,2.103,540,1.545,542,2.822,548,1.24,563,4.896,585,2.395,593,0.947,600,1.417,606,1.328,611,1.343,636,1.254,647,1.589,648,2.173,655,1.283,709,2.103,718,1.343,743,3.085,758,1.789,778,0.972,781,1.686,787,1.524,793,1.268,799,1.799,805,1.566,828,1.83,832,2.836,845,3.864,867,1.867,883,4.695,902,1.898,905,0.5,907,0.8,909,2.297,910,1.715,914,2.103,918,1.353,925,1.04,930,1.545,938,2.174,991,1.04,1005,1.612,1021,1.093,1024,1.335,1025,3.539,1053,1.227,1055,1.647,1057,1.74,1061,1.566,1089,2.475,1108,2.152,1138,0.953,1143,2.258,1150,2.395,1180,1.712,1190,2.326,1198,1.799,1205,1.227,1206,2.786,1208,2.077,1234,1.952,1240,2.699,1243,2.263,1279,2.326,1280,2.056,1282,1.934,1284,2.045,1362,1.83,1363,2.535,1364,1.524,1424,1.343,1447,1.909,1467,5.364,1477,2.395,1484,1.545,1528,1.612,1535,2.152,1536,2.453,1587,3.2,1591,2.013,1597,1.712,1608,4.431,1610,1.36,1626,2.55,1648,1.898,1656,1.283,1669,1.566,1674,1.863,1677,1.863,1688,1.863,1695,2.657,1702,1.127,1731,2.395,1740,3.2,1741,1.589,1743,3.085,1792,2.201,1802,2.326,1829,2.12,1857,2.489,1858,3.7,1863,2.489,1869,1.151,1887,4.146,1930,1.552,1931,3.2,1942,2.657,1987,1.393,2045,3.064,2169,2.772,2183,4.695,2242,2.558,2244,2.152,2277,2.779,2327,2.657,2387,2.472,2470,1.799,2608,2.911,2646,2.772,2647,2.648,2652,2.558,2662,1.504,2698,1.863,2699,1.799,2724,2.558,2768,2.395,2820,2.566,2872,3.762,2888,5.09,2925,3.085,2932,2.836,2949,1.566,3015,3.736,3023,2.657,3067,2.395,3158,2.558,3159,1.343,3195,3.085,3283,5.364,3305,1.863,3327,2.152,3365,2.772,3392,2.657,3397,2.205,3426,2.598,3700,3.557,3803,1.393,3891,1.799,3948,2.152,3984,1.799,4039,1.66,4064,3.539,4075,3.085,4079,1.934,4094,2.772,4103,1.898,4200,4.22,4229,3.315,4241,5.307,4248,2.657,4271,2.97,4295,2.056,4303,2.205,4314,1.934,4324,3.645,4363,4.412,4371,2.558,4415,2.489,4434,3.085,4459,1.612,4497,1.589,4554,2.056,4568,2.326,4569,2.911,4721,3.356,4738,2.657,4768,2.657,4782,2.152,4802,2.836,4870,2.326,4911,3.317,5002,7.743,5036,2.173,5106,6.795,5138,2.013,5146,4.285,5158,1.283,5299,2.056,5300,4.424,5311,2.911,5323,1.934,5327,2.263,5335,2.263,5388,2.558,5404,2.205,5425,3.317,5544,2.472,5597,2.558,5797,2.395,5919,2.657,6162,2.558,6356,1.504,6362,2.056,6365,2.472,6366,5.014,6369,3.085,6391,4.713,6397,3.317,6416,2.395,6443,2.657,6506,1.465,6561,3.317,6592,2.472,6736,5.282,6756,5.684,6782,5.049,6783,3.317,6798,2.657,6809,2.772,6834,4.695,6848,7.201,6849,5.049,6900,1.769,6901,3.085,7034,2.205,7126,3.539,7162,3.317,7169,3.317,7182,4.748,7238,1.83,7460,2.657,7535,2.395,8068,2.772,8177,3.085,8298,3.317,8454,3.317,8749,2.911,8959,5.049,8985,3.085,9040,3.317,9151,2.558,9152,2.558,9153,2.558,9159,3.317,9189,2.772,9191,2.657,9204,3.67,9205,3.317,9206,3.67,9207,5.586,9208,3.67,9209,5.586,9210,3.317,9211,3.67,9212,3.317,9213,3.67,9214,3.67,9215,3.67,9216,3.67,9217,6.112,9218,5.586,9219,3.67,9220,3.317,9221,3.67,9222,3.317,9223,5.586,9224,3.67,9225,3.317,9226,3.317,9227,3.67,9228,5.586,9229,3.317,9230,3.67,9231,3.67,9232,3.67,9233,3.67,9234,3.67,9235,3.67,9236,3.67,9237,3.67,9238,3.67,9239,5.586,9240,3.317,9241,3.67,9242,3.67,9243,3.67,9244,3.67,9245,3.67,9246,3.67,9247,3.67,9248,3.67,9249,3.67,9250,3.67,9251,3.317,9252,3.317]],["description//tracks/90daysofdevops/day32",[3015,2.259,3700,2.042,6366,2.295,7182,2.16]],["title//tracks/90daysofdevops/day31",[75,0.681,1036,1.281,2271,2.926,3696,1.016,3700,1.608,7182,1.701]],["content//tracks/90daysofdevops/day31",[5,3.523,6,0.364,8,2.092,15,1.687,17,2.355,19,2.552,26,0.693,29,1.629,34,2.173,35,1.61,49,1.241,58,2.099,65,1.338,67,2.215,70,2.144,74,1.455,75,1.798,77,1.972,96,1.049,110,1.659,118,2.653,127,3.454,137,0.86,139,1.098,164,1.229,175,0.706,176,0.924,196,1.539,203,1.474,204,2.624,206,1.206,216,2.062,217,2.034,227,1.648,230,1.523,234,0.958,244,3.454,246,0.993,247,2.06,259,1.687,261,3.227,264,1.592,288,1.476,289,0.966,295,1.15,297,2.355,301,2.518,344,0.811,352,2.485,356,0.592,366,3.64,374,2.03,381,1.818,393,1.229,397,2.434,410,2.125,411,3.454,423,1.399,425,1.61,427,4.089,431,1.474,462,1.183,464,2.344,468,1.891,490,1.129,535,1.903,536,0.837,540,1.917,542,2.819,548,1.539,559,3.297,563,3.297,593,0.772,600,1.142,611,2.399,626,2.334,655,2.291,675,2.476,698,3.297,722,2.498,742,1.206,758,1.002,759,2.808,774,2.24,778,1.735,779,1.794,781,3.011,787,2.722,800,2.092,843,3.188,857,2.125,907,1.674,909,2.553,910,1.399,917,2.312,918,1.503,930,1.917,935,1.098,939,1.592,991,1.857,998,2.03,1002,1.384,1005,2.878,1023,2.4,1036,2.167,1068,2.355,1076,2.03,1088,1.068,1107,2.312,1143,3.598,1180,3.583,1206,2.271,1208,1.399,1240,1.818,1271,3.789,1282,2.4,1284,1.667,1294,2.972,1308,1.703,1351,1.794,1439,5.046,1470,1.61,1478,1.891,1538,2.972,1587,2.609,1592,1.556,1610,1.687,1611,0.732,1618,1.556,1619,2.03,1626,3.121,1631,2.552,1645,3.673,1656,1.592,1677,2.312,1700,2.736,1702,2.358,1717,3.44,1740,4.399,1765,2.67,1869,2.407,1876,2.808,1887,3.595,1891,3.297,1908,2.886,2013,2.609,2024,2.736,2035,2.498,2053,4.414,2190,2.4,2277,3.496,2555,4.865,2587,3.454,2647,2.159,2820,2.092,2888,3.067,3013,2.448,3014,3.44,3015,2.092,3145,4.882,3156,3.174,3157,4.117,3158,3.174,3272,3.673,3353,2.159,3434,1.972,3495,2.291,3617,2.4,3657,3.003,3696,1.719,3697,4.568,3700,3.487,3702,3.174,3799,1.944,3831,3.44,3877,3.297,3883,2.808,3887,3.067,3915,2.159,3959,2.972,4103,3.389,4127,3.44,4136,2.67,4161,3.44,4201,2.092,4241,5.48,4271,2,4295,3.673,4312,3.067,4314,3.454,4324,2.972,4361,3.067,4442,4.117,4497,1.972,4721,2.736,4802,2.312,4870,2.886,5008,2.837,5035,3.613,5036,2.55,5100,2.567,5138,2.498,5158,2.291,5215,2.67,5237,7.059,5304,1.818,5305,1.316,5324,3.058,5524,1.944,5544,3.067,5641,1.794,5664,3.297,5956,3.297,5960,3.174,6195,3.067,6247,2.886,6356,1.866,6357,3.174,6361,3.011,6368,3.174,6393,3.297,6395,3.828,6427,2.312,6428,2.355,6476,2.808,6478,3.828,6491,2.808,6509,3.297,6558,2.498,6694,4.117,6710,2.609,6754,3.44,6759,5.199,6761,3.108,6790,3.297,6816,3.174,6898,1.592,6900,2.195,6916,4.745,6964,1.61,6969,3.174,7049,3.44,7182,4.776,7307,3.174,7335,3.828,7479,3.297,7562,3.174,7813,3.613,7847,3.828,7851,3.595,7881,3.174,7941,3.828,8068,3.44,8108,3.828,8142,3.828,8302,3.828,8345,3.613,8354,2.498,8405,4.117,8441,3.613,8471,3.828,8507,4.117,8543,4.951,8661,3.828,8938,4.117,9144,4.117,9151,3.174,9152,3.174,9153,3.174,9191,3.297,9253,4.555,9254,4.555,9255,3.828,9256,4.117,9257,3.828,9258,4.555,9259,3.828,9260,4.555,9261,4.555,9262,4.555,9263,4.555,9264,4.117,9265,4.555,9266,4.117,9267,4.555,9268,4.117,9269,4.555,9270,4.555,9271,3.828,9272,4.555,9273,4.555,9274,4.555,9275,4.555]],["description//tracks/90daysofdevops/day31",[75,0.777,1036,1.461,3696,1.159,3700,1.835,7182,1.94]],["title//tracks/90daysofdevops/day30",[1301,1.37,1610,1.585,2158,2.509,3700,1.777,7182,1.879]],["content//tracks/90daysofdevops/day30",[2,1.649,5,3.022,6,0.209,8,2.582,15,2.082,18,2.349,19,3.15,29,1.324,32,1.342,34,0.868,35,1.987,38,1.187,44,2.109,49,1.009,56,2.612,57,1.125,58,1.185,64,1.781,67,1.251,68,1.487,70,1.211,71,1.137,74,0.822,75,1.57,78,3.378,83,2.108,109,1.294,110,1.215,113,1.251,116,2.12,127,2.963,136,1.551,137,1.062,141,1.07,144,1.516,154,3.296,159,1.279,167,2.224,172,1.649,173,1.733,175,0.733,176,1.14,178,2.796,190,2.004,192,1.846,197,1.211,201,1.537,203,1.819,213,2.17,216,1.864,217,2.109,221,1.447,226,2.861,229,1.516,230,1.306,235,1.726,240,1.339,245,2.555,246,0.807,247,1.674,272,1.58,288,1.435,293,1.755,300,1.355,301,1.422,306,2.493,307,1.496,331,1.198,343,2.023,352,1.819,356,0.883,362,2.276,369,2.582,374,2.1,375,1.839,376,1.602,377,1.458,381,1.477,383,1.148,393,0.999,397,0.943,410,4.398,414,1.914,417,4.084,422,1.081,427,3.302,428,2.58,459,1.251,462,1.46,467,1.125,468,1.537,472,1.458,479,1.215,489,1.755,518,1.173,530,1.7,534,2.679,536,1.396,542,1.781,548,1.251,575,1.558,582,5.87,593,0.628,600,1.675,610,3.111,611,2.488,627,3.854,628,3.036,635,2.248,639,1.951,640,2.937,646,1.625,647,1.602,655,1.965,709,2.12,716,1.727,718,2.058,742,0.98,744,2.796,755,3.029,758,0.814,774,1.265,778,0.98,819,1.951,828,3.786,843,1.537,845,3.195,907,0.807,909,1.709,910,1.726,917,2.121,918,1.856,938,0.989,946,1.951,955,2.17,998,1.649,1002,2.066,1005,1.625,1015,1.879,1017,2.334,1018,2.51,1019,1.371,1021,1.102,1024,1.499,1054,1.477,1068,1.914,1076,1.649,1087,3.15,1138,0.961,1202,2.224,1208,1.726,1230,2.679,1231,2.679,1244,2.493,1246,2.854,1255,2.108,1266,2.108,1271,1.371,1284,1.355,1299,1.879,1308,0.961,1315,1.477,1331,2.238,1341,1.265,1351,1.458,1439,2.224,1478,1.537,1482,2.881,1504,2.03,1516,2.403,1529,1.989,1585,1.602,1599,1.755,1601,2.03,1610,3.409,1615,2.936,1630,1.879,1631,2.074,1632,0.989,1651,1.602,1656,1.965,1672,3.809,1678,1.784,1680,1.405,1681,2.345,1696,3.562,1704,1.58,1734,1.989,1740,2.12,1745,2.187,1776,2.345,1803,1.989,1826,2.493,1857,3.383,1858,1.405,1869,1.16,1889,2.493,1904,1.727,1908,2.345,1936,3.111,1954,1.091,2046,2.244,2124,2.936,2259,2.505,2333,1.7,2364,1.943,2366,2.796,2587,1.951,2613,2.936,2723,4.905,2768,6.54,2820,1.7,2929,2.623,2975,3.084,3120,2.679,3253,3.466,3404,2.493,3426,1.422,3457,2.679,3606,2.679,3669,2.936,3696,0.971,3699,2.469,3700,4.306,3800,1.727,3891,1.814,3926,3.562,3945,3.345,3946,3.466,3956,3.345,4067,1.951,4118,2.804,4136,2.17,4201,1.7,4229,5.008,4244,5.392,4295,2.074,4312,2.493,4363,2.415,4365,4.921,4372,4.725,4404,3.111,4415,1.649,4459,1.625,4542,2.936,4569,2.936,4713,4.725,4746,5.081,4752,3.345,4768,2.679,4776,2.679,4782,3.296,4790,2.796,4802,1.879,4807,2.936,4849,2.074,4954,2.796,5008,2.943,5025,2.796,5036,2.953,5066,3.111,5074,3.378,5122,1.558,5138,2.03,5141,4.07,5158,1.965,5215,2.17,5241,2.282,5287,2.415,5300,4.436,5302,3.918,5313,2.804,5314,2.415,5493,2.493,5521,4.459,5524,2.399,5544,2.493,5561,2.493,5562,1.727,5641,1.458,5940,2.936,6350,3.286,6356,1.516,6361,3.123,6366,1.727,6400,1.727,6416,2.415,6419,3.111,6442,2.17,6443,2.679,6444,1.914,6467,2.796,6469,5.713,6475,3.111,6713,2.282,6719,2.58,6843,2.936,6848,3.111,6898,1.294,6900,1.784,6919,2.074,7064,2.282,7161,1.814,7182,4.869,7196,2.58,7245,3.345,7423,2.12,7498,2.679,7528,4.459,7542,2.936,7544,2.345,7562,2.58,7634,2.796,7646,4.07,7865,2.936,8271,2.796,8508,2.936,8548,3.345,8593,3.345,8674,2.796,8749,7.856,8849,3.111,8850,2.936,9151,2.58,9152,2.58,9153,2.58,9154,4.459,9189,6.493,9191,4.07,9259,3.111,9276,3.701,9277,3.701,9278,5.622,9279,3.701,9280,3.701,9281,5.081,9282,3.701,9283,6.861,9284,3.345,9285,3.701,9286,3.701,9287,3.701,9288,3.345,9289,3.701,9290,3.701,9291,4.725,9292,3.701,9293,3.345,9294,5.713,9295,3.111,9296,3.701,9297,3.345,9298,3.701,9299,3.345,9300,3.345,9301,3.701,9302,3.701,9303,3.701,9304,5.622,9305,6.798,9306,5.622,9307,3.701,9308,3.701,9309,3.701,9310,2.796,9311,3.345,9312,3.701,9313,3.701,9314,3.111]],["description//tracks/90daysofdevops/day30",[1301,1.575,1610,1.822,3700,2.042,7182,2.16]],["title//tracks/90daysofdevops/day29",[178,3.611,3700,1.985,7182,2.099,8738,3.46]],["content//tracks/90daysofdevops/day29",[1,1.265,2,1.855,6,0.319,8,1.913,15,1.542,25,3.25,26,1.11,27,1.472,29,1.489,31,1.439,32,0.822,34,0.976,35,1.472,38,1.14,45,2.153,46,2.041,53,1.439,64,1.319,68,0.759,71,1.279,75,0.732,80,0.924,96,0.958,107,1.641,110,1.326,118,2.648,126,1.375,127,2.194,137,1.159,139,1.004,141,1.774,147,1.082,154,2.441,155,2.567,159,2.122,172,1.855,175,0.868,176,1.245,191,0.967,201,1.729,206,1.102,216,1.508,217,1.292,218,2.385,221,1.071,222,1.472,226,3.613,227,1.506,230,1.426,231,2.717,245,1.565,260,2.284,261,1.6,271,2.333,272,3.113,288,1.509,305,1.913,333,1.392,334,2.076,337,1.392,343,1.522,344,0.44,351,1.135,354,1.102,356,0.947,362,1.625,372,1.753,374,2.049,375,2.633,383,1.292,393,1.124,396,2.284,397,1.565,420,2.567,422,1.402,423,1.885,427,3.093,431,1.347,459,2.075,462,1.082,464,2.878,473,1.913,476,1.662,479,1.269,482,1.943,486,2.717,490,1.522,518,1.319,519,2.549,539,2.385,542,1.319,560,1.706,582,3.689,600,1.565,601,2.502,611,1.524,636,1.423,639,2.194,640,1.423,645,2.238,646,1.828,648,1.62,655,1.455,711,3.145,741,2.419,756,1.362,758,1.604,760,2.284,779,1.64,781,1.913,805,1.777,817,1.305,827,2.502,828,3.062,857,1.943,859,2.62,867,1.392,907,0.908,909,1.265,910,1.279,917,2.528,918,1.939,930,3.388,938,1.641,998,1.855,1002,1.265,1005,1.828,1007,1.913,1017,1.729,1019,1.542,1021,2.172,1024,1.774,1026,1.943,1068,2.153,1073,2.333,1076,1.855,1089,1.524,1121,2.502,1138,1.082,1190,2.638,1198,3.009,1208,2.472,1255,1.561,1266,2.302,1268,2.238,1280,2.333,1331,2.648,1351,1.64,1405,1.524,1424,1.524,1426,2.041,1524,2.441,1541,2.804,1550,2.804,1555,2.502,1585,1.802,1592,1.423,1600,2.385,1627,2.114,1646,2.911,1661,1.423,1680,2.33,1686,2.804,1702,1.279,1729,2.007,1731,2.717,1740,2.385,1777,3.117,1786,1.524,1822,3.302,1855,2.441,1867,2.717,1908,2.638,1916,2.441,1943,2.638,1952,2.114,1954,1.81,1979,1.777,2004,1.753,2023,4.638,2035,2.284,2054,2.333,2067,1.945,2160,3.302,2167,2.502,2170,2.441,2225,2.114,2334,2.804,2370,3.145,2587,3.844,2643,1.883,2722,3.499,2752,5.549,2873,2.502,2888,5.421,2929,1.943,2932,2.114,2975,4.709,3015,3.698,3145,2.284,3150,3.368,3159,1.524,3187,2.041,3311,4.72,3312,4.963,3362,2.804,3380,2.902,3397,2.502,3426,1.6,3661,2.041,3696,1.61,3698,3.499,3699,3.77,3700,4.33,3707,3.499,3803,2.768,3891,2.041,3921,3.302,3964,2.717,4039,1.883,4067,3.844,4079,2.194,4085,2.804,4094,3.145,4103,4.163,4226,3.499,4229,5.293,4241,6.805,4247,2.804,4264,3.763,4285,2.238,4292,5.16,4295,3.44,4297,6.13,4308,3.763,4312,4.135,4361,2.804,4399,2.902,4415,1.855,4424,1.802,4433,3.499,4440,3.145,4459,1.828,4463,2.567,4472,3.302,4816,3.44,4857,3.499,4870,3.89,4942,3.499,4989,1.974,5008,2.658,5036,3.132,5078,2.441,5122,3.388,5138,2.284,5141,3.014,5158,2.146,5207,2.717,5215,2.441,5262,2.804,5300,2.959,5302,5.083,5304,2.911,5324,1.943,5500,3.499,5542,2.114,5544,2.804,5562,1.943,5845,2.804,5982,1.855,6050,4.006,6350,1.802,6361,2.82,6399,1.62,6425,1.753,6436,1.62,6440,2.902,6444,3.175,6507,2.804,6516,2.638,6651,2.567,6715,3.763,6898,1.455,6900,2.007,7151,3.145,7182,4.725,7230,2.238,7231,3.014,7236,2.804,7238,2.076,7248,2.502,7421,3.499,7524,2.441,7544,3.89,7545,3.499,7821,2.194,7847,3.499,7927,2.804,8143,3.145,8147,3.302,8300,2.502,8503,3.763,8738,3.014,9090,6.592,9151,4.279,9152,2.902,9153,2.902,9154,8.138,9189,3.145,9281,5.549,9315,5.549,9316,3.763,9317,4.164,9318,4.164,9319,4.164,9320,6.14,9321,3.763,9322,4.164,9323,3.763,9324,4.164,9325,3.763,9326,4.164,9327,4.164,9328,4.164,9329,4.164,9330,4.164,9331,3.763,9332,4.164,9333,3.763,9334,4.164,9335,4.164,9336,6.14,9337,6.14,9338,3.763,9339,4.164,9340,4.164]],["description//tracks/90daysofdevops/day29",[3515,2.756,3700,2.042,6349,4.134,7182,2.16]],["title//tracks/90daysofdevops/day28",[2242,3.773,5305,1.565,6361,2.487]],["content//tracks/90daysofdevops/day28",[6,0.333,8,3.332,15,1.528,25,1.838,26,1.219,29,1.475,32,0.814,34,1.701,37,3.663,42,3.344,44,1.28,49,1.124,52,2.677,58,1.32,64,1.932,70,1.349,75,1.628,77,3.875,91,1.894,96,1.404,105,1.102,109,1.441,118,1.146,127,4.88,136,1.391,137,0.779,141,2.096,154,2.418,155,2.543,164,1.645,169,2.543,183,2.433,190,1.216,192,2.057,202,1.694,203,2.896,204,2.083,206,1.092,212,1.441,215,2.057,216,1.013,217,1.892,219,1.797,226,3.768,227,1.492,229,1.69,230,1.862,246,1.329,264,1.441,288,1.573,295,1.041,301,1.585,333,2.038,343,1.798,344,0.945,351,1.124,353,2.543,356,1.041,362,1.092,374,0.941,383,1.892,393,1.645,397,1.051,398,1.955,404,2.777,406,2.094,411,2.173,422,0.793,423,1.872,427,2.342,439,1.955,459,1.394,464,3.057,466,3.271,468,1.712,476,1.646,490,1.798,492,2.133,507,1.32,518,1.307,520,2.478,536,1.748,542,2.298,554,2.133,592,2.363,600,1.396,611,1.51,626,1.853,628,1.797,637,1.69,638,2.801,681,2.543,745,1.241,756,1.994,758,1.969,765,4.605,774,2.478,777,1.924,778,1.092,781,2.801,785,1.293,787,1.712,803,2.613,805,1.76,819,3.822,844,2.133,849,0.867,857,1.924,858,2.363,867,1.379,902,2.133,907,1.581,909,2.435,910,1.266,914,2.363,917,1.584,918,1.091,935,1.47,937,3.271,938,1.102,991,1.168,1002,1.853,1005,3.519,1006,5.124,1017,1.712,1018,2.016,1021,1.228,1024,1.204,1037,2.057,1053,2.424,1061,1.76,1079,2.314,1088,1.429,1101,2.363,1107,2.094,1143,1.667,1198,2.022,1205,2.038,1208,1.872,1240,1.646,1243,2.543,1268,2.217,1271,1.528,1303,2.418,1351,1.625,1363,3.356,1425,3.271,1426,2.022,1450,2.418,1482,1.565,1484,1.736,1485,2.173,1500,5.51,1585,1.785,1587,2.363,1588,3.728,1589,3.728,1592,2.738,1594,2.478,1626,1.911,1627,2.094,1631,2.311,1639,1.253,1651,1.785,1653,2.217,1656,1.441,1669,2.602,1675,2.133,1688,2.094,1734,2.217,1741,1.785,1777,2.094,1786,1.51,1792,2.402,1818,1.646,1858,2.314,1904,1.924,1914,2.691,1930,2.573,1943,5.418,1945,3.466,1954,1.216,1955,1.955,1987,1.565,1988,2.133,2035,2.262,2067,1.307,2225,3.095,2227,2.478,2245,2.363,2277,2.083,2364,1.425,2459,6.761,2470,2.988,2555,5.418,2570,2.094,2662,3.283,2711,3.466,2716,2.543,2721,4.249,2820,2.801,2875,3.728,3014,5.479,3015,1.894,3150,3.344,3159,1.51,3187,2.022,3273,2.418,3304,2.133,3305,2.094,3353,1.955,3354,3.271,3376,2.986,3394,2.566,3495,1.441,3508,2.057,3511,1.667,3591,2.363,3663,3.466,3696,2.101,3699,1.811,3700,3.55,3799,2.602,3800,3.384,3803,2.314,3891,3.928,3915,1.955,3964,2.691,3976,3.271,3984,3.928,4039,1.866,4079,2.173,4103,5.179,4200,3.115,4201,1.894,4269,2.875,4271,1.811,4285,2.217,4286,3.115,4295,3.416,4328,5.124,4364,2.777,4379,3.115,4424,2.639,4449,2.217,4459,1.811,4497,1.785,4543,3.728,4554,3.416,4757,2.418,4798,4.106,4805,2.691,4816,2.311,5006,4.605,5008,2.639,5036,3.897,5122,1.736,5138,2.262,5146,2.613,5158,2.131,5215,2.418,5305,2.676,5323,2.173,5335,2.543,5482,2.418,5492,3.728,5524,1.76,5544,2.777,5680,2.311,5739,2.262,5775,2.217,5960,2.875,6027,1.955,6195,2.777,6361,4.783,6366,1.924,6415,2.986,6416,2.691,6425,1.736,6428,3.153,6430,2.217,6436,2.372,6444,2.133,6506,1.646,6702,3.728,6750,2.691,6761,2.891,6766,2.986,6892,5.124,6898,1.441,6900,1.988,6996,4.836,7058,3.115,7147,3.271,7149,2.543,7182,3.185,7216,2.691,7225,3.728,7230,3.277,7271,3.466,7319,2.691,7325,2.986,7423,2.363,7456,2.986,7466,2.478,7502,4.249,7524,3.575,7545,3.466,7829,3.271,8032,2.262,8064,2.875,8144,3.466,8147,3.271,8399,5.124,8402,5.51,8407,3.115,8419,2.478,8434,3.466,8439,3.728,8592,2.986,8630,3.728,8691,5.124,8693,2.691,8815,3.728,9151,4.249,9152,2.875,9153,2.875,9212,3.728,9295,6.096,9314,3.466,9316,3.728,9321,8.774,9341,3.728,9342,4.124,9343,4.124,9344,4.124,9345,4.124,9346,4.124,9347,4.124,9348,4.124,9349,4.124,9350,4.124,9351,4.124,9352,4.124,9353,4.124,9354,4.124,9355,4.124,9356,8.55,9357,4.124,9358,4.124,9359,4.124,9360,4.124,9361,4.124,9362,4.124,9363,4.124,9364,4.124,9365,4.124,9366,4.124,9367,3.728,9368,4.124,9369,4.124,9370,3.728]],["description//tracks/90daysofdevops/day28",[1478,1.835,1622,2.531,5305,1.277,6361,2.03,9371,3.994]],["title//tracks/90daysofdevops/day27",[191,1.111,204,1.633,1611,0.768,2222,3.332]],["content//tracks/90daysofdevops/day27",[6,0.423,26,0.956,32,1.009,38,0.799,44,1.014,49,0.89,57,1.552,65,0.89,67,1.726,68,0.595,71,1.568,72,1.793,73,1.378,74,0.725,77,1.415,80,1.578,102,0.841,103,3.149,107,0.874,111,1.799,120,0.795,124,0.675,126,1.408,137,1.456,139,1.515,147,0.849,164,1.378,169,2.015,173,1.302,175,0.766,188,1.456,191,1.187,201,2.121,204,3.287,214,3.59,217,1.014,226,1.376,230,1.651,234,0.687,235,2.623,238,2.462,242,6.376,245,1.603,247,1.478,263,2.065,269,2.071,272,1.395,288,1.356,289,0.693,290,2.015,295,0.825,305,2.888,307,1.321,313,0.973,334,2.547,336,3.988,343,1.558,351,1.713,354,1.665,355,2.3,356,0.424,362,1.352,374,2.407,393,0.882,406,1.659,417,1.963,419,1.916,423,2.183,437,1.288,442,1.575,456,3.44,459,1.104,461,1.155,472,1.288,479,0.889,490,0.81,494,2.504,536,1.156,546,3.069,550,1.271,554,1.69,560,1.339,575,1.376,587,5.044,593,1.308,595,3.203,598,2.012,600,1.424,619,6.971,626,1.552,632,3.56,635,1.689,636,1.117,640,1.117,648,1.987,675,0.963,733,1.722,742,1.352,756,1.069,758,1.124,774,1.117,781,1.501,812,2.469,817,1.025,844,1.69,849,1.322,857,1.525,867,1.092,901,1.225,905,0.445,907,1.371,909,0.993,917,0.849,918,1.272,925,0.926,926,1.169,935,0.788,946,3.313,952,1.525,978,2.469,991,1.781,993,2.633,996,1.549,1018,1.081,1019,1.211,1021,0.973,1024,1.404,1034,1.872,1036,1.081,1046,1.196,1053,1.092,1054,1.304,1055,0.963,1061,2.18,1081,2.469,1107,3.609,1109,4.479,1110,2.329,1121,1.963,1138,0.849,1187,1.549,1190,2.071,1197,1.722,1205,1.092,1234,1.142,1255,1.915,1266,1.225,1298,1.963,1301,2.735,1331,1.506,1336,2.462,1351,1.288,1354,2.132,1377,1.872,1405,1.196,1410,1.872,1484,1.376,1485,1.722,1488,1.357,1489,1.987,1515,3.44,1516,2.222,1528,1.435,1533,2.747,1535,1.916,1599,1.549,1611,1.546,1631,1.831,1632,1.365,1639,0.993,1674,1.659,1681,2.071,1688,3.192,1724,1.659,1729,1.575,1745,2.446,1765,1.916,1811,1.872,1843,3.387,1857,1.456,1869,1.025,1880,1.756,1920,3.272,1952,1.659,1954,1.506,1978,1.872,2015,4.293,2016,2.201,2046,1.304,2067,1.035,2190,2.692,2204,1.963,2214,3.149,2277,1.117,2284,1.963,2287,2.015,2364,1.129,2419,1.963,2555,2.071,2584,2.278,2586,2.366,2626,2.747,2680,2.592,2699,1.602,2716,2.015,2731,5.588,2844,2.747,2863,4.616,2904,1.69,2987,4.638,3034,2.469,3107,5.837,3150,2.802,3154,1.785,3179,1.501,3192,2.366,3297,2.954,3353,1.549,3370,1.872,3495,1.142,3511,1.321,3657,2.248,3675,2.747,3696,1.339,3877,2.366,3885,1.916,3964,3.333,4285,1.756,4398,2.278,4545,2.276,4736,2.366,4816,1.831,4835,2.278,5060,2.071,5091,1.916,5129,4.394,5143,1.916,5157,1.793,5158,1.785,5170,2.954,5178,2.995,5183,2.469,5214,2.592,5227,2.469,5267,2.954,5304,2.038,5320,2.278,5389,4.634,5393,2.366,5454,2.278,5562,1.525,5618,1.916,5641,1.288,5797,2.132,5982,1.456,6342,1.501,6350,2.211,6352,2.469,6356,1.339,6361,2.346,6399,2.765,6400,2.383,6404,4.102,6427,1.659,6507,2.201,6558,1.793,6581,3.858,6700,2.071,6709,2.201,6710,1.872,6761,1.549,6795,2.747,6983,3.602,7034,1.963,7064,2.015,7106,5.729,7127,1.963,7161,1.602,7258,2.747,7372,3.698,7432,2.278,7451,3.686,7544,2.071,7570,4.382,7573,2.747,7749,2.366,7837,4.954,7838,2.278,7927,2.201,8204,4.051,8271,2.469,8374,5.146,8738,2.366,8782,2.132,8978,2.592,8986,2.954,9202,2.954,9372,2.954,9373,3.268,9374,2.954,9375,5.369,9376,3.268,9377,2.366,9378,3.268,9379,3.268,9380,3.858,9381,3.268,9382,2.747,9383,2.954,9384,6.287,9385,2.954,9386,2.954,9387,7.108,9388,2.954,9389,2.954,9390,7.712,9391,2.954,9392,2.954,9393,7.108,9394,2.954,9395,2.954,9396,7.108,9397,2.954,9398,3.268,9399,7.989,9400,6.287,9401,8.176,9402,4.616,9403,9.292,9404,9.292,9405,9.753,9406,7.389,9407,7.721,9408,6.425,9409,6.425,9410,6.287,9411,5.108,9412,5.108,9413,5.108,9414,5.108,9415,3.268,9416,3.268,9417,3.268,9418,6.287,9419,7.108,9420,3.268,9421,3.268,9422,2.954,9423,3.268,9424,3.268,9425,3.268,9426,3.268,9427,3.268,9428,7.389,9429,7.108,9430,5.108,9431,5.108,9432,3.268,9433,5.108,9434,6.287,9435,3.268,9436,5.108,9437,3.268,9438,3.268,9439,3.268,9440,3.268,9441,3.268,9442,3.268,9443,3.268,9444,3.268,9445,3.268,9446,3.268,9447,3.268,9448,3.268,9449,3.268,9450,3.268,9451,3.268,9452,3.268,9453,5.108,9454,3.268,9455,3.268,9456,3.268,9457,3.268,9458,3.268,9459,3.268,9460,3.268,9461,3.268,9462,2.954,9463,3.268,9464,3.268,9465,3.268,9466,3.268,9467,3.268,9468,5.108,9469,3.268,9470,3.268,9471,3.268,9472,3.268,9473,3.268,9474,2.954,9475,5.108,9476,5.108,9477,5.108,9478,2.592]],["description//tracks/90daysofdevops/day27",[191,1.289,204,1.895,1611,0.891]],["title//tracks/90daysofdevops/day26",[525,1.496,1305,2.269,1702,1,2204,1.956,2277,1.113,6983,1.865,8374,2.357,9375,2.459]],["content//tracks/90daysofdevops/day26",[6,0.421,26,0.735,31,1.669,38,1.348,44,1.498,68,0.88,75,0.849,77,2.091,80,1.761,96,1.112,107,1.291,110,1.043,111,1.382,112,1.316,113,1.632,114,0.88,126,1.531,139,1.164,147,1.254,161,1.514,164,2.141,173,2.32,175,0.52,176,1.609,188,2.152,192,2.409,196,2.31,197,1.58,201,2.838,204,3.11,206,1.279,214,3.788,216,1.186,230,1.843,231,5.176,234,1.437,235,2.099,247,3.902,288,0.849,290,2.977,292,2.977,293,2.29,295,1.22,333,2.651,334,3.408,336,2.497,337,1.614,343,2.138,355,2.567,356,1.12,359,2.594,374,2.403,414,2.497,422,1.314,423,1.483,431,1.563,433,2.497,454,3.151,461,1.707,462,1.254,467,1.468,479,1.121,494,2.367,507,1.546,530,2.218,536,0.888,575,2.877,587,4.632,593,1.345,598,1.903,600,1.382,632,3.366,635,1.597,636,2.335,637,1.979,675,2.015,679,5.992,718,1.768,733,2.545,742,1.279,757,3.35,758,1.745,817,1.514,843,2.005,888,3.496,918,1.223,925,1.936,930,2.877,931,1.707,935,1.647,952,2.253,996,3.761,998,2.152,1002,2.077,1024,1.566,1026,2.253,1046,2.502,1054,1.927,1068,2.497,1073,2.706,1079,1.833,1088,1.132,1104,3.366,1109,3.294,1110,1.789,1181,2.218,1224,1.879,1232,2.767,1240,1.927,1296,3.314,1297,2.649,1305,7.035,1331,2.339,1351,1.903,1354,3.151,1405,1.768,1422,2.902,1426,2.367,1430,2.29,1482,1.833,1487,2.409,1499,3.366,1506,3.831,1516,3.049,1592,1.65,1611,1.098,1626,2.143,1630,2.452,1680,1.833,1704,2.061,1729,2.328,1745,1.879,1748,4.059,1749,3.001,1768,2.977,1890,2.185,1908,3.06,1983,4.213,2004,2.033,2069,2.767,2096,3.829,2137,3.151,2181,3.06,2227,2.902,2277,1.65,2333,2.218,2364,1.669,2551,4.059,2604,3.496,2647,2.29,2668,4.059,3034,3.648,3174,1.65,3179,2.218,3187,2.367,3271,4.365,3495,1.688,3508,2.409,3516,2.977,3655,2.596,3657,2.444,3661,3.35,3696,1.266,3699,2.121,3750,2.706,3879,2.649,3984,2.367,4415,2.152,4734,4.059,5060,3.06,5091,2.832,5129,4.635,5157,2.649,5158,2.388,5177,3.06,5178,4.651,5180,3.252,5183,3.648,5222,3.496,5227,3.648,5294,3.252,5329,3.831,5389,2.409,5457,1.953,5482,2.832,5573,2.596,5641,1.903,5680,2.706,5692,3.831,5706,3.252,6162,3.366,6212,4.059,6342,2.218,6399,1.879,6400,2.253,6427,2.452,6584,4.059,6843,3.831,6916,3.496,7045,3.648,7258,4.059,7259,4.059,7478,3.151,7544,3.06,7570,5.529,7837,5.529,7838,6.011,7839,4.365,7927,3.252,8064,3.366,8107,3.496,8211,3.366,8374,7.493,8501,3.648,8654,3.648,8714,4.059,8935,4.059,8978,3.831,9086,3.648,9374,4.365,9375,7.818,9377,3.496,9382,6.667,9383,4.365,9385,6.177,9386,4.365,9388,6.177,9389,4.365,9391,6.177,9392,4.365,9394,6.177,9395,4.365,9402,4.365,9406,4.365,9407,4.365,9408,4.365,9409,4.365,9478,3.831,9479,3.831,9480,4.829,9481,4.829,9482,4.829,9483,4.829,9484,4.365,9485,7.649,9486,4.829,9487,9.101,9488,4.829,9489,4.829,9490,4.829,9491,4.365,9492,4.829,9493,4.829,9494,4.365,9495,4.829,9496,4.365,9497,3.831,9498,4.829,9499,4.829,9500,4.365,9501,4.829]],["description//tracks/90daysofdevops/day26",[525,1.687,1305,2.559,1702,1.127,2277,1.255,6983,2.103,8374,2.658,9375,2.774]],["title//tracks/90daysofdevops/day25",[204,1.462,593,0.726,1611,0.687,2137,2.792,6399,1.665]],["content//tracks/90daysofdevops/day25",[2,2.525,6,0.358,26,0.569,44,2.122,49,1.019,52,1.642,53,1.292,57,2.492,64,1.184,65,1.192,67,1.264,68,0.681,71,1.148,73,1.009,74,0.83,77,2.452,80,0.83,100,2.518,102,0.962,105,0.999,107,0.999,109,2.866,110,0.808,111,1.07,113,2.311,116,2.142,118,1.039,124,0.772,126,0.838,127,1.97,136,1.56,137,1.292,141,1.08,147,0.971,149,1.802,158,1.436,161,1.172,164,1.529,173,0.953,174,3.379,175,1.019,182,2.369,191,0.869,197,1.853,202,1.039,203,1.21,204,3.293,207,1.833,208,1.933,214,3.937,215,1.865,216,0.918,217,1.758,219,1.102,230,2.083,231,2.44,235,2.343,242,2.518,245,1.945,259,1.385,265,2.177,270,1.574,288,1.517,289,1.202,295,1.727,299,2.707,300,2.074,305,1.717,307,1.512,333,1.25,334,1.865,335,2.095,343,1.891,344,0.395,352,1.833,353,2.305,354,0.99,355,2.469,356,1.164,358,1.933,362,1.5,374,1.871,375,1.223,376,1.618,377,1.473,378,2.452,383,1.16,397,1.444,398,1.773,405,4.761,411,1.97,423,1.148,432,2.385,441,2.488,459,1.264,461,1.322,468,1.552,470,1.936,479,0.528,490,0.927,507,1.197,518,1.795,519,1.552,526,2.518,536,0.687,548,1.915,553,2.095,555,1.455,560,1.532,587,4.633,595,1.402,598,1.473,600,1.329,611,1.369,626,1.722,628,1.67,645,2.009,648,2.969,675,2.25,722,2.051,733,1.97,741,1.473,756,1.853,758,1.246,778,1.5,832,1.898,843,2.352,849,1.438,852,1.717,896,4.217,903,1.419,907,0.815,909,1.136,910,1.74,914,2.142,916,2.707,917,1.472,918,1.014,924,2.246,925,1.605,931,2.003,991,2.162,996,1.773,998,1.666,1002,2.079,1012,1.865,1015,1.898,1017,1.552,1021,1.113,1024,1.507,1028,2.142,1053,1.894,1055,1.67,1068,2.929,1088,0.877,1101,2.142,1104,2.606,1107,2.876,1109,3.297,1110,2.534,1121,2.246,1136,2.965,1205,1.25,1208,1.148,1234,1.307,1268,2.009,1279,2.369,1280,3.832,1284,1.369,1292,2.986,1296,1.436,1297,2.051,1302,3.678,1309,1.618,1351,1.473,1363,2.564,1364,1.552,1405,1.369,1423,2.825,1424,1.369,1426,1.833,1430,1.773,1435,3.243,1465,2.965,1469,2.606,1487,2.825,1513,3.379,1524,2.192,1532,2.824,1550,2.518,1585,2.961,1591,2.051,1592,1.278,1597,1.744,1599,1.773,1611,1.595,1618,1.936,1619,1.666,1620,2.44,1626,2.392,1632,1.828,1653,2.009,1656,1.307,1674,1.898,1677,1.898,1680,2.15,1683,3.142,1688,3.472,1700,2.246,1701,2.929,1704,2.418,1724,1.898,1741,1.618,1763,2.518,1770,2.369,1775,2.707,1789,1.618,1829,1.419,1863,1.666,1869,1.776,1903,2.606,1930,1.574,1933,3.832,1943,2.369,1987,2.15,2004,1.574,2005,1.865,2039,1.898,2046,2.261,2098,1.744,2099,2.777,2103,3.696,2104,2.707,2190,2.986,2233,2.606,2240,2.305,2245,3.245,2277,2.337,2290,4.493,2382,1.419,2604,2.707,2611,3.322,2629,1.865,2647,1.773,2694,3.142,2731,2.095,2789,3.353,2820,2.602,2929,1.744,2949,1.596,2987,2.44,3106,3.142,3107,2.305,3154,1.307,3159,2.074,3187,1.833,3198,2.369,3214,1.532,3273,2.192,3305,1.898,3310,3.379,3426,1.436,3494,2.824,3591,2.142,3617,1.97,3625,2.707,3641,3.142,3658,1.773,3661,3.74,3669,2.965,3696,2.263,3699,1.642,3811,2.686,3883,3.493,3924,5.12,3946,2.305,3980,2.051,3984,2.777,4019,2.518,4067,1.97,4161,2.824,4271,1.642,4424,1.618,4449,2.009,4545,1.666,4554,2.095,4712,2.707,4755,3.142,4757,2.192,4782,2.192,4802,1.898,4809,2.707,4894,3.142,4986,3.379,5024,2.051,5060,2.369,5065,2.643,5091,2.192,5100,1.25,5122,1.574,5129,4.407,5157,3.108,5158,1.98,5178,2.192,5180,2.518,5183,2.824,5299,2.095,5304,1.492,5313,3.411,5327,3.493,5355,2.965,5388,3.948,5389,3.411,5522,2.824,5524,1.596,5542,1.898,5562,2.643,5982,1.666,6081,2.965,6212,4.761,6247,2.369,6342,1.717,6361,1.717,6399,3.357,6400,3.191,6425,2.385,6426,2.707,6436,3.357,6469,3.142,6503,2.824,6506,1.492,6523,4.101,6659,2.44,6662,3.379,6711,3.379,6724,2.707,6761,3.243,6769,2.707,6781,2.095,6838,2.707,6879,3.379,6919,2.095,6966,2.824,6999,2.824,7020,5.319,7127,2.246,7185,3.379,7238,2.825,7325,2.707,7451,4.01,7491,3.142,7502,2.606,7544,2.369,7566,2.009,7570,3.948,7576,2.965,7750,3.142,7800,2.192,7813,2.965,7829,2.965,7837,2.606,7838,2.606,7873,3.696,7881,2.606,7886,2.965,7892,2.606,7950,2.965,8032,4.186,8064,6.717,8105,3.379,8184,2.965,8210,3.379,8249,4.101,8299,2.824,8300,4.109,8354,2.051,8356,2.965,8374,7.344,8506,3.142,8669,2.965,8921,3.379,9086,4.279,9225,3.379,9257,3.142,9259,3.142,9268,3.379,9283,3.142,9372,3.379,9375,7.398,9399,3.379,9428,3.379,9474,3.379,9478,2.965,9479,7.11,9485,3.142,9502,3.379,9503,3.739,9504,3.739,9505,3.739,9506,5.665,9507,3.379,9508,3.739,9509,3.739,9510,6.84,9511,3.739,9512,3.739,9513,5.12,9514,8.2,9515,3.739,9516,3.739,9517,5.665,9518,3.739,9519,3.739,9520,3.379,9521,3.739,9522,5.665,9523,5.665,9524,3.739,9525,3.739,9526,3.739,9527,3.739,9528,3.379,9529,3.379,9530,3.739,9531,3.739,9532,5.749,9533,5.665,9534,5.665,9535,3.739,9536,3.379,9537,3.379,9538,3.739,9539,3.739,9540,3.739]],["description//tracks/90daysofdevops/day25",[204,1.681,593,0.834,1611,0.79,6399,1.914]],["title//tracks/90daysofdevops/day24",[204,1.85,2167,3.253,6399,2.106]],["content//tracks/90daysofdevops/day24",[6,0.344,9,2.726,11,1.912,14,1.133,18,1.968,25,1.678,26,0.573,27,1.331,31,1.301,34,0.883,35,2.428,44,1.767,46,1.846,51,3.403,52,2.501,56,3.16,60,4.601,64,1.193,65,0.992,68,0.686,70,1.863,71,1.156,73,2.22,74,1.264,75,1.58,80,0.836,83,1.412,105,1.522,112,1.026,115,4.123,116,2.157,118,1.908,122,2.386,124,1.176,126,0.843,136,0.859,137,1.075,147,1.479,160,2.457,175,0.614,176,1.755,183,1.503,191,1.323,195,2.262,197,1.232,201,1.563,203,1.218,204,3.299,207,1.846,208,1.947,214,4.366,215,1.878,216,2.124,222,1.331,227,3.347,228,3.165,229,1.543,230,2.088,235,2.657,240,2.06,246,1.242,259,1.395,264,1.99,267,1.429,288,0.662,301,2.188,307,2.303,336,1.947,337,1.259,342,1.585,344,0.601,351,1.026,352,1.218,354,0.997,356,1.068,361,3.061,362,2.027,375,1.232,378,2.465,393,1.537,397,1.952,410,1.757,411,1.984,422,1.095,423,1.156,428,2.624,459,2.321,462,0.978,464,1.346,466,2.986,467,1.144,470,1.287,476,1.503,488,1.232,489,1.785,529,2.986,530,1.73,535,1.412,536,0.692,542,1.193,544,2.157,545,2.262,546,2.262,555,1.465,559,2.726,587,4.241,592,2.157,598,2.244,602,1.947,611,2.085,628,1.679,635,1.245,637,1.543,641,2.844,741,1.483,745,1.133,756,1.232,757,1.846,758,0.828,760,3.124,766,2.321,778,0.997,793,1.301,803,3.609,805,1.607,817,2.817,840,1.757,849,1.198,858,2.157,905,1.29,907,1.669,909,1.731,911,2.457,917,2.137,918,1.608,925,1.614,935,1.373,938,1.006,991,1.614,1005,1.654,1008,2.386,1018,2.532,1033,2.11,1049,1.678,1053,1.259,1057,2.7,1066,2.11,1088,2.331,1089,1.378,1108,2.208,1143,2.777,1148,3.609,1150,2.457,1184,1.785,1192,2.844,1205,2.749,1207,2.386,1208,2.352,1211,2.065,1229,2.157,1230,2.726,1237,1.563,1255,2.135,1269,1.429,1279,3.609,1282,4.036,1284,2.085,1301,1.206,1303,2.208,1308,2.334,1315,2.273,1351,1.483,1363,2.135,1365,1.703,1422,2.262,1435,2.7,1470,2.013,1488,2.365,1489,1.465,1504,2.065,1526,1.785,1529,2.024,1553,2.986,1591,3.768,1592,1.287,1597,2.657,1599,1.785,1610,1.395,1611,1.486,1618,2.347,1619,1.678,1621,3.835,1626,1.18,1627,2.891,1631,2.11,1632,2.473,1639,1.144,1645,2.11,1646,1.785,1656,2.401,1661,1.946,1675,1.947,1678,2.745,1679,3.403,1693,4.997,1694,1.678,1698,4.787,1702,2.657,1704,1.607,1705,2.624,1736,2.457,1803,2.024,1819,3.403,1826,2.536,1838,2.986,1863,1.678,1874,2.536,1904,1.757,1906,3.403,1930,1.582,1987,2.607,2067,1.193,2072,3.165,2101,2.321,2240,2.321,2277,1.287,2279,4.302,2299,2.024,2324,2.065,2364,1.301,2382,1.429,2467,1.815,2564,2.576,2570,2.891,2610,3.403,2643,1.703,2652,2.624,2653,5.148,2662,1.543,2698,2.891,2985,2.386,3000,2.208,3009,2.321,3010,3.165,3150,2.065,3159,1.378,3174,1.946,3189,2.024,3237,2.986,3253,2.321,3273,3.339,3300,3.165,3311,2.208,3312,2.321,3327,2.208,3359,2.726,3394,1.585,3426,1.447,3617,1.984,3619,3.124,3657,1.346,3696,1.801,3748,4.517,3799,1.607,3800,1.757,3891,1.846,3946,2.321,3954,3.403,3984,1.846,3993,2.386,3999,4.302,4039,1.703,4067,4.036,4103,2.945,4118,1.878,4145,2.624,4164,2.624,4230,2.844,4243,3.165,4285,2.024,4288,2.986,4290,2.844,4314,1.984,4423,5.425,4447,2.386,4459,3.017,4461,2.726,4482,2.844,4497,2.465,4545,1.678,4554,2.11,4791,2.726,4830,2.208,4849,2.11,4850,3.165,4872,2.624,4902,3.165,4919,2.986,4965,2.986,4996,3.403,5028,1.878,5060,2.386,5065,1.757,5091,2.208,5129,4.973,5158,1.316,5180,2.536,5183,2.844,5299,2.11,5304,1.503,5305,1.088,5321,2.624,5327,2.321,5454,2.624,5485,3.165,5500,3.165,5562,2.657,5585,2.844,5641,1.483,5669,2.726,5680,2.11,5960,2.624,5982,1.678,6247,2.386,6356,2.333,6399,4.165,6400,3.838,6416,2.457,6418,2.262,6426,2.726,6434,2.624,6440,2.624,6442,2.208,6475,3.165,6478,3.165,6523,2.726,6677,3.165,6718,2.624,6761,2.7,6770,2.457,6777,2.457,6816,2.624,6937,3.403,6970,3.165,6999,2.844,7130,2.986,7141,3.403,7157,3.165,7161,1.846,7183,2.624,7210,2.986,7267,2.11,7269,2.11,7319,2.457,7325,4.123,7422,2.726,7423,2.157,7476,3.403,7478,2.457,7524,2.208,7526,2.624,7566,4.65,7567,3.165,7570,5.338,7881,2.624,7886,2.986,7942,2.624,8146,2.536,8153,3.165,8218,2.624,8354,2.065,8599,2.844,8693,3.716,8739,2.726,8820,2.844,8971,3.403,9086,2.844,9190,2.624,9256,3.403,9380,2.844,9478,2.986,9485,3.165,9500,3.403,9507,3.403,9541,3.765,9542,3.765,9543,3.403,9544,3.765,9545,3.765,9546,3.403,9547,3.403,9548,3.765,9549,3.765,9550,3.765,9551,3.765,9552,3.765,9553,3.765,9554,3.765,9555,3.765,9556,3.765,9557,3.403,9558,3.765,9559,3.765,9560,3.765,9561,3.765,9562,3.403,9563,3.765,9564,8.225,9565,3.765,9566,3.765,9567,3.765,9568,3.765,9569,3.765,9570,3.765,9571,3.765,9572,3.765,9573,3.765,9574,3.765,9575,4.787,9576,3.765,9577,3.765,9578,3.765,9579,3.403,9580,3.165,9581,5.695,9582,5.695,9583,3.765,9584,3.765]],["description//tracks/90daysofdevops/day24",[204,2.173,6399,2.474]],["title//tracks/90daysofdevops/day23",[204,1.85,213,3.174,2121,4.09]],["content//tracks/90daysofdevops/day23",[6,0.349,8,2.896,19,2.419,29,1.544,38,1.422,44,1.956,53,2.179,58,1.382,64,1.368,67,1.459,71,1.326,72,2.368,74,0.958,75,0.759,77,3.546,80,1.4,107,1.154,110,1.882,113,1.459,118,2.069,120,1.05,124,0.892,127,2.275,136,0.985,146,2.192,147,1.121,154,2.531,161,1.977,175,0.679,184,3.125,190,2.415,191,1.003,192,2.153,199,3.424,201,1.793,202,1.199,203,1.397,204,3.664,213,5.931,214,3.271,215,2.153,218,4.692,219,1.273,221,1.111,229,1.769,230,2.114,234,0.908,244,2.275,245,2.088,246,0.941,247,3.941,265,1.659,270,1.817,272,1.843,288,1.309,289,1.58,301,1.659,305,1.983,307,3.011,335,2.419,336,3.26,337,1.443,342,1.817,343,1.07,344,0.456,355,1.397,356,0.561,362,1.669,372,1.817,374,2.075,377,1.701,383,1.339,393,1.165,396,4.493,414,4.505,416,3.628,422,1.575,423,1.326,426,5.475,427,1.659,431,2.41,435,2.232,437,2.934,439,2.047,461,1.526,462,1.121,464,2.254,466,3.424,472,1.701,488,2.436,490,1.563,494,2.116,542,1.368,555,2.453,585,2.817,587,3.09,593,1.069,600,1.098,608,3.009,611,1.58,627,2.192,630,3.628,637,1.769,638,2.896,646,1.896,675,1.273,735,3.628,742,1.669,758,0.95,817,1.977,855,3.995,856,1.793,857,2.942,886,2.473,887,3.009,902,2.232,905,0.588,909,1.916,910,1.936,918,1.128,935,1.041,938,1.685,1013,3.902,1018,2.085,1019,1.599,1024,1.617,1038,2.531,1043,2.473,1053,2.107,1054,3.269,1088,1.012,1089,1.58,1104,3.009,1109,4.734,1110,3.79,1121,2.594,1138,1.121,1141,5.867,1143,2.549,1180,2.942,1205,1.443,1208,1.326,1226,2.32,1246,2.192,1249,2.735,1266,1.618,1269,2.826,1284,2.308,1292,5.331,1309,1.869,1315,1.723,1341,1.475,1342,3.628,1351,1.701,1354,4.114,1363,3.071,1441,2.817,1524,2.531,1529,2.32,1600,2.473,1610,3.227,1626,1.977,1628,1.869,1630,2.192,1653,2.32,1662,3.902,1669,1.843,1672,2.419,1680,1.638,1696,2.735,1740,2.473,1742,2.014,1750,2.014,1910,3.261,1916,2.531,1917,2.531,1930,1.199,1932,2.662,1936,5.299,1943,2.735,1954,1.273,2006,3.09,2044,2.907,2045,2.368,2046,2.516,2055,2.32,2067,1.368,2169,3.261,2297,3.261,2364,2.574,2698,2.192,2699,2.116,2716,2.662,2718,3.628,2719,6.732,2720,6.732,2721,5.709,2723,2.594,2724,3.009,2820,1.983,2985,2.735,3013,3.389,3015,1.983,3150,2.368,3353,2.047,3359,3.125,3394,3.135,3495,1.509,3616,3.125,3696,1.132,3700,1.793,3800,2.942,3811,2.047,3879,2.368,3978,3.125,3984,2.116,4016,3.902,4091,2.817,4118,3.144,4288,3.424,4300,3.628,4410,3.125,4447,2.735,4496,3.125,4568,2.735,4757,2.531,4791,3.125,4805,2.817,5025,3.261,5060,2.735,5074,4.475,5091,2.531,5128,2.232,5129,3.389,5130,3.424,5158,1.509,5327,5.938,5345,3.424,5354,5.001,5355,8.261,5561,2.907,5692,3.424,5781,2.735,6356,2.583,6391,3.009,6430,2.32,6434,3.009,6436,1.679,6516,2.735,6719,3.009,6752,3.628,6760,3.902,6781,2.419,6927,3.125,6983,2.473,7052,3.261,7055,3.424,7106,2.662,7123,5.001,7142,2.594,7163,3.125,7175,2.907,7442,3.902,7466,3.788,7634,3.261,7811,3.424,7838,5.191,7855,5.299,7942,3.009,7989,3.009,8030,3.628,8065,3.009,8295,3.424,8506,3.628,8522,3.628,9184,5.001,9187,5.698,9283,6.884,9295,3.628,9380,6.581,9536,3.902,9585,6.732,9586,4.317,9587,4.317,9588,7.448,9589,4.317,9590,7.448,9591,3.125,9592,8.19,9593,4.317,9594,7.874,9595,3.902,9596,4.317,9597,4.317,9598,4.317,9599,4.317,9600,4.317,9601,4.317,9602,5.698,9603,3.902,9604,4.317,9605,4.317,9606,4.317,9607,4.317,9608,4.317,9609,4.317,9610,4.317,9611,3.628,9612,3.902,9613,5.698,9614,5.299,9615,6.305,9616,4.317,9617,6.305,9618,4.317,9619,4.317,9620,4.317,9621,4.317,9622,3.902,9623,4.317,9624,4.317,9625,3.902]],["description//tracks/90daysofdevops/day23",[204,2.173,213,3.728]],["title//tracks/90daysofdevops/day22",[214,1.879,224,1.496,1972,3.232,3015,1.966,9591,3.098]],["content//tracks/90daysofdevops/day22",[6,0.363,7,3.411,15,3.103,27,1.601,29,2.334,30,1.42,32,0.894,34,1.531,38,0.708,44,1.405,45,2.342,52,1.989,74,1.449,75,1.345,80,1.005,89,2.953,95,3.279,96,1.762,107,1.211,110,0.978,114,1.189,120,2.486,124,0.935,147,2.654,161,2.784,172,2.018,173,1.951,191,1.052,196,2.206,204,3.334,207,2.22,213,3.827,214,4.062,216,1.603,219,2.47,224,1.583,225,1.964,238,4.28,261,1.74,288,1.147,301,3.218,307,1.831,332,2.299,334,3.255,335,2.538,337,1.514,344,1.155,351,1.234,352,2.477,362,2.351,374,1.489,383,1.405,397,1.664,414,4.783,422,0.871,423,1.391,435,2.342,459,1.531,478,1.989,480,3.421,481,4.259,485,2.484,487,3.689,490,1.618,518,2.068,526,3.05,532,3.279,536,1.2,541,2.387,545,2.721,560,2.674,587,2.22,593,0.768,600,1.137,611,1.658,627,2.299,643,2.955,646,3.361,710,4.093,714,2.387,765,3.421,770,2.594,778,1.199,840,2.113,856,2.71,859,2.786,864,2.299,882,2.342,905,0.617,907,1.423,918,0.81,929,4.396,935,2.019,939,1.583,1021,1.349,1033,2.538,1037,2.259,1053,1.514,1057,2.147,1061,1.933,1079,2.477,1088,1.062,1103,1.831,1107,2.299,1109,4.791,1110,3.916,1143,1.831,1150,2.955,1205,2.182,1226,2.434,1232,2.594,1249,5.861,1267,5.782,1286,4.093,1292,5.707,1296,2.941,1351,1.784,1363,4.11,1424,1.658,1478,1.88,1482,1.719,1526,2.147,1528,1.989,1535,2.655,1536,1.989,1591,5.074,1599,2.147,1618,2.231,1645,2.538,1651,1.96,1672,3.658,1694,2.018,1786,1.658,1789,1.96,1818,2.605,1822,3.592,1912,1.855,1930,1.814,1952,2.299,1953,3.421,1955,2.147,1987,1.719,1988,2.342,2012,3.421,2027,2.594,2037,3.421,2046,2.605,2056,3.157,2067,1.435,2105,4.093,2299,2.434,2364,3.068,2592,3.806,2643,2.049,2820,4.823,2870,2.484,3014,3.421,3015,4.635,3120,3.279,3172,2.183,3173,5.178,3304,3.958,3495,1.583,3508,2.259,3511,1.831,3515,2.538,3587,2.955,3625,3.279,3666,2.342,3984,4.534,4029,2.87,4103,3.958,4118,2.259,4453,3.279,4496,3.279,4573,3.806,4743,3.421,4795,4.093,4835,3.157,5060,2.87,5091,2.655,5128,2.342,5129,4.114,5158,1.583,5224,3.592,5238,5.178,5680,2.538,6400,2.113,6428,2.342,6592,4.396,6748,3.806,6750,2.955,6761,2.147,6832,3.592,7034,2.721,7230,2.434,7238,2.259,7423,2.594,7463,3.05,7478,4.259,7532,3.806,7823,3.157,7837,5.838,7838,5.335,8110,3.157,8144,3.806,8146,3.05,8170,3.806,8231,4.931,8243,3.806,8295,3.592,8634,3.806,8692,4.093,8701,3.806,8871,4.093,9095,4.093,9291,5.486,9547,4.093,9585,4.093,9591,7.196,9595,4.093,9613,5.9,9614,5.486,9626,5.9,9627,4.529,9628,4.529,9629,4.529,9630,4.529,9631,4.529,9632,4.529,9633,4.529,9634,6.528,9635,4.529,9636,4.529,9637,6.528,9638,4.529,9639,4.529,9640,4.529,9641,4.529,9642,4.529,9643,8.013,9644,4.529,9645,4.093,9646,6.528,9647,4.529,9648,4.529]],["description//tracks/90daysofdevops/day22",[1363,1.844,1818,1.963,3015,2.259,9591,3.561]],["title//tracks/90daysofdevops/day21",[204,1.633,355,1.547,2056,3.332,5305,1.381]],["content//tracks/90daysofdevops/day21",[1,1.462,6,0.392,25,3.037,26,1.204,27,2.409,32,0.95,34,1.128,38,0.752,43,3.996,52,2.993,53,2.735,58,1.54,65,1.187,73,1.298,74,1.513,77,2.95,80,1.513,105,1.822,109,3.009,110,1.039,124,0.993,133,2.966,137,1.287,147,1.249,175,0.853,176,0.976,191,1.118,195,4.755,197,1.573,203,1.557,204,3.777,211,4.447,214,4.685,216,1.181,221,1.238,230,1.118,245,1.226,246,1.877,247,3.083,259,2.932,264,1.681,271,2.695,288,0.846,307,1.945,333,1.608,334,3.399,344,0.909,352,1.557,355,1.557,356,1.028,362,2.095,374,1.097,378,2.082,381,1.92,383,1.492,396,4.342,397,1.737,406,2.442,411,3.592,421,2.082,422,1.522,423,2.093,461,1.7,462,1.249,470,1.644,479,0.963,487,3.285,488,1.573,489,2.281,490,1.192,536,1.253,538,3.239,540,2.025,541,3.592,542,1.524,587,4.859,600,0.838,646,2.993,711,3.633,714,2.535,718,1.761,742,1.273,745,1.447,758,1.894,774,1.644,778,1.273,831,4.75,849,1.433,855,3.048,902,3.524,905,0.655,917,1.249,918,0.861,926,2.437,935,1.643,938,1.822,1002,2.071,1008,3.048,1018,1.59,1024,0.95,1025,3.048,1040,2.442,1076,2.144,1088,2.213,1102,3.482,1104,3.353,1109,4.38,1110,3.189,1138,1.249,1141,3.239,1208,2.43,1271,1.782,1284,2.495,1292,5.225,1296,2.618,1341,1.644,1351,1.895,1354,3.139,1478,1.997,1484,2.869,1485,2.535,1594,2.89,1610,1.782,1622,3.904,1626,2.137,1631,2.695,1632,1.822,1639,1.462,1646,2.281,1647,2.399,1672,2.695,1689,4.095,1702,2.43,1704,2.053,1734,4.254,1740,2.756,1742,2.244,1745,2.651,1777,2.442,1786,1.761,1791,2.358,1818,1.92,1837,3.815,1869,1.508,1880,2.585,1912,1.971,1954,2.009,1984,2.442,1987,1.825,2056,3.353,2057,2.756,2143,3.482,2277,2.329,2324,2.639,2570,2.442,3015,2.21,3065,2.89,3120,3.482,3152,4.75,3273,3.996,3304,2.487,3357,4.043,3696,1.787,3779,3.048,3799,2.053,3800,2.244,3803,1.825,3844,4.043,3879,3.738,4010,2.756,4039,3.083,4067,2.535,4118,2.399,4120,3.048,4186,4.347,4229,3.34,4415,2.144,4459,2.993,4497,3.727,4568,5.015,4765,3.239,4816,3.819,4849,2.695,4989,3.231,5024,2.639,5025,3.633,5091,2.82,5100,1.608,5128,2.487,5129,5.329,5132,2.966,5133,3.139,5158,1.681,5305,3.064,5327,4.202,5354,3.815,5775,2.585,5982,3.037,6027,2.281,6399,3.349,6400,2.244,6425,2.869,6436,2.651,6592,3.239,6695,3.139,7034,2.89,7106,2.966,7149,2.966,7161,2.358,7504,3.815,7621,3.633,7819,3.815,7837,6.91,7838,7.126,8136,3.633,8143,3.633,8146,5.798,8296,4.043,8300,4.095,8406,4.347,8407,3.633,8669,3.815,8978,6.828,9086,3.633,9184,3.815,9190,3.353,9380,5.148,9382,6.652,9591,3.482,9649,4.81,9650,4.81,9651,4.81,9652,7.915,9653,4.347,9654,4.81,9655,4.81,9656,4.81,9657,4.81,9658,4.81,9659,4.81,9660,4.043,9661,7.915,9662,4.81]],["description//tracks/90daysofdevops/day21",[204,1.681,383,1.526,5305,1.421,7149,3.032]],["title//tracks/90daysofdevops/day20",[355,1.385,991,1.212,2043,2.792,3696,1.122,5305,1.237]],["content//tracks/90daysofdevops/day20",[6,0.267,8,1.859,18,1.399,26,0.915,34,1.41,38,1.241,53,1.399,57,2.18,58,1.296,65,0.705,68,1.095,73,1.936,74,1.335,75,1.057,77,2.603,80,0.899,96,0.932,101,1.859,102,1.042,107,1.917,111,1.72,113,2.424,114,1.095,118,1.125,124,0.836,126,1.779,127,2.133,137,0.764,141,1.17,143,2.133,158,1.555,159,1.399,164,1.936,172,1.804,173,1.829,175,0.856,190,1.193,212,1.415,214,2.641,216,0.994,217,2.226,219,2.115,224,1.415,225,1.218,230,1.845,235,3.019,245,1.032,261,1.555,264,1.415,288,1.261,289,2.232,293,4.022,295,2.142,313,1.205,340,2.176,343,1.49,344,0.427,351,1.638,352,2.321,354,1.899,355,2.745,356,1.102,358,2.093,359,2.282,361,2.176,374,2.368,397,1.032,398,1.919,420,2.495,422,0.778,423,1.243,433,2.093,454,2.641,462,1.051,464,1.447,467,1.23,468,1.681,471,1.778,472,1.595,479,0.85,490,1.003,507,1.925,518,1.282,519,1.681,520,2.432,530,2.762,536,0.744,553,2.268,592,2.319,593,1.347,600,1.683,604,2.176,612,1.859,626,1.23,635,1.988,636,1.383,647,1.752,648,1.575,675,1.193,695,3.21,718,2.201,758,2.125,767,2.373,774,2.451,779,2.369,800,1.859,849,1.67,896,2.495,903,1.536,907,0.882,914,2.319,917,1.051,918,1.076,925,2.032,926,1.447,930,1.704,931,2.125,935,1.449,946,2.133,990,2.93,991,2.25,993,1.499,998,1.804,1002,1.827,1007,2.762,1018,1.338,1021,2.365,1024,1.417,1034,5.632,1040,2.055,1053,1.353,1057,3.765,1059,2.999,1066,1.499,1068,2.093,1073,2.268,1085,2.432,1088,0.949,1089,1.482,1138,1.051,1187,2.851,1211,2.22,1224,2.339,1240,1.615,1269,2.282,1273,3.935,1287,1.889,1291,3.058,1294,2.641,1295,2.176,1296,1.555,1315,1.615,1330,3.445,1331,1.193,1351,1.595,1374,3.897,1424,1.482,1426,1.984,1437,2.176,1447,1.383,1480,1.951,1484,1.704,1485,2.133,1488,2.979,1489,1.575,1491,3.923,1516,2.807,1528,1.778,1585,1.752,1587,2.319,1626,2.249,1628,2.603,1639,1.23,1646,4.022,1647,2.019,1651,1.752,1652,2.722,1669,1.728,1678,1.951,1688,2.055,1745,1.575,1768,2.495,1786,2.201,1792,1.595,1818,1.615,1869,1.269,1917,4.206,1926,8.035,1930,2.47,1983,2.495,1988,2.093,2012,3.058,2067,1.282,2071,3.21,2101,2.495,2227,2.432,2277,2.055,2283,3.109,2419,3.613,2468,2.019,2710,2.821,2949,1.728,2976,1.383,3154,1.415,3159,1.482,3179,1.859,3394,2.531,3504,2.268,3511,3.21,3516,2.495,3624,2.821,3657,3.454,3658,3.401,3659,2.268,3660,3.856,3696,1.061,3699,1.778,3703,2.565,3708,2.726,3750,2.268,3799,1.728,4039,1.831,4201,1.859,4274,2.373,4285,2.176,4805,2.641,4854,3.402,4872,2.821,4989,1.919,5033,1.831,5036,1.575,5043,2.019,5060,2.565,5122,1.704,5127,2.176,5129,2.176,5153,1.752,5158,1.415,5161,3.923,5177,3.81,5203,2.93,5299,3.369,5304,1.615,5305,1.17,5314,2.641,5332,2.565,5380,5.434,5389,3.578,5405,2.495,5542,2.055,5562,1.889,5706,2.726,5775,3.232,6162,2.821,6263,3.169,6350,1.752,6352,3.058,6353,2.93,6356,1.658,6398,2.565,6436,2.339,6466,2.432,6558,5.187,6659,2.641,6700,2.565,6737,2.821,6777,2.641,6781,2.268,6796,3.658,6894,3.21,6900,1.951,6916,2.93,6964,2.125,6983,2.319,7037,4.049,7038,2.565,7043,3.402,7045,3.058,7052,3.058,7070,2.93,7126,2.565,7142,2.432,7161,1.984,7182,1.778,7321,3.21,7356,6.029,7365,2.726,7372,2.93,7454,3.658,7478,2.641,7487,3.402,7534,2.93,7564,3.658,7656,2.319,7733,4.831,7806,4.206,7821,2.133,7851,2.22,8046,3.402,8138,3.402,8192,2.93,8209,2.93,8250,3.402,8300,2.432,8357,4.191,8400,2.93,8436,3.402,8470,3.21,8481,3.402,8492,3.658,8633,3.658,8671,3.658,8677,3.402,8693,2.641,8698,3.658,8742,2.93,8782,2.641,8910,3.058,9370,3.658,9491,3.658,9497,3.21,9520,3.658,9663,3.658,9664,7.94,9665,4.048,9666,4.048,9667,4.048,9668,3.658,9669,8.484,9670,4.048,9671,4.048,9672,4.048,9673,9.559,9674,3.658,9675,3.402,9676,4.048,9677,4.048,9678,7.173,9679,7.173,9680,4.048,9681,4.048,9682,4.048,9683,4.048,9684,6.013,9685,6.013,9686,4.048,9687,6.013,9688,6.013,9689,4.048,9690,6.013,9691,2.93,9692,4.048,9693,7.176,9694,4.048,9695,4.048,9696,4.048,9697,5.054,9698,4.048,9699,4.048,9700,4.048,9701,7.173,9702,4.048,9703,4.048,9704,3.402,9705,3.402,9706,4.353,9707,4.191,9708,2.821]],["description//tracks/90daysofdevops/day20",[355,1.795,991,1.571,3696,1.455]],["title//tracks/90daysofdevops/day18",[190,1.409,424,2.519,2016,3.219,5389,2.384]],["content//tracks/90daysofdevops/day18",[1,1.032,6,0.342,15,1.258,26,1.318,30,1.064,31,1.818,32,0.67,38,1.007,44,1.999,56,1.304,57,1.032,58,1.087,64,2.299,65,0.591,68,0.619,70,1.11,71,1.043,73,0.916,74,1.43,96,0.782,101,1.56,102,1.354,107,0.907,111,2.076,113,1.147,114,0.619,118,1.462,124,1.621,126,2.005,127,1.789,136,1.655,137,0.994,139,1.553,158,1.304,161,1.064,164,1.958,173,1.642,175,0.991,176,0.689,190,2.934,191,0.789,197,2.373,198,1.664,201,3.717,202,1.79,203,2.085,204,1.798,206,1.705,213,1.991,214,3.448,218,3.69,224,1.187,225,1.021,226,1.429,227,1.228,229,3.549,230,1.93,235,2.411,238,2.536,244,2.773,245,2.394,246,1.147,247,3.552,251,1.664,264,1.187,265,1.304,269,2.151,278,1.756,288,0.597,289,1.666,295,1.832,302,4.519,305,2.417,331,3.039,336,2.721,343,2.058,344,0.945,351,1.977,352,1.099,354,1.393,355,2.085,356,0.441,359,1.288,374,2.376,375,1.721,376,1.47,377,1.338,378,2.278,381,1.355,396,1.862,398,2.495,408,3.141,414,1.756,423,2.411,424,1.789,425,1.86,426,1.862,427,2.475,431,2.541,432,2.712,454,2.215,462,0.882,464,1.214,472,1.338,476,1.355,479,1.025,482,1.584,488,1.11,489,1.61,490,2.147,506,2.458,518,2.041,536,1.184,542,1.076,587,1.664,593,1.559,600,1.601,612,1.56,627,1.724,628,1.899,637,1.391,638,1.56,640,1.16,648,1.321,718,2.874,745,1.021,756,1.11,758,1.157,777,1.584,778,1.705,779,2.073,781,1.56,819,1.789,843,3.013,849,1.933,854,2.853,896,2.093,903,1.288,905,0.462,907,0.74,917,0.882,918,0.608,925,2.224,926,1.214,939,1.187,946,1.789,952,1.584,990,2.458,991,0.962,993,3.076,1001,2.565,1005,1.491,1007,1.56,1008,3.334,1012,1.693,1019,1.258,1021,1.567,1024,1.711,1034,1.945,1038,1.991,1042,2.04,1053,1.135,1057,1.61,1061,1.449,1079,1.288,1089,1.926,1105,2.693,1109,3.784,1110,3.405,1141,2.286,1143,2.127,1208,1.043,1211,1.862,1232,1.945,1234,1.187,1245,2.286,1255,1.273,1269,1.997,1273,1.862,1284,1.926,1294,2.215,1297,1.862,1299,1.724,1304,2.286,1312,2.093,1315,1.355,1331,1.001,1333,2.693,1364,2.185,1405,1.926,1422,2.04,1423,1.693,1430,2.495,1475,3.069,1488,1.41,1492,3.069,1495,3.069,1516,2.565,1585,1.47,1598,2.721,1610,3.209,1618,1.16,1626,3.151,1680,1.288,1717,7.658,1749,1.491,1774,2.948,1786,1.243,1792,1.338,1794,2.565,1869,1.064,1890,1.536,1930,2.733,1954,1.001,1972,3.974,2046,1.355,2055,1.825,2181,2.151,2186,3.244,2213,1.902,2227,2.04,2251,1.862,2259,1.513,2277,3.059,2364,1.173,2419,2.04,2462,2.458,2570,1.724,2592,2.853,2731,1.902,2789,1.664,2915,2.948,2949,2.246,2976,1.16,3107,3.244,3154,1.187,3304,2.721,3358,2.458,3370,1.945,3426,1.304,3447,2.693,3495,1.187,3508,1.693,3624,2.366,3657,2.97,3658,1.61,3659,5.765,3660,4.22,3666,1.756,3696,0.89,3722,2.693,3800,2.455,3993,2.151,4295,1.902,4530,1.945,4545,1.513,5033,1.536,5043,1.693,5074,3.161,5128,1.756,5129,3.462,5153,1.47,5161,3.433,5241,3.244,5299,2.948,5300,1.636,5304,2.1,5313,4.321,5389,5.467,5397,2.04,5404,5.205,5405,2.093,5789,3.069,6148,2.458,6160,2.093,6263,1.789,6398,3.334,6400,2.455,6436,1.321,6479,2.853,6506,2.571,6550,2.286,6558,1.862,6581,2.565,6700,2.151,6753,2.853,6777,2.215,6781,1.902,6803,2.458,6846,3.069,6900,1.636,6983,1.945,7089,3.069,7276,2.693,7365,3.543,7432,2.366,7451,1.991,7466,2.04,7474,4.664,7613,4.49,7620,6.943,7656,4.758,7664,4.082,7681,4.422,7733,3.543,7791,4.422,7812,2.853,7834,2.853,7999,6.587,8204,4.173,8231,2.565,8300,2.04,8356,2.693,8357,2.366,8446,2.853,8509,4.755,8525,3.069,8555,3.069,8592,2.458,8621,2.853,8714,2.853,8820,2.565,8935,2.853,8939,3.069,8985,2.853,9377,2.458,9397,4.755,9532,2.853,9622,3.069,9625,4.755,9691,5.253,9704,2.853,9705,2.853,9706,3.809,9707,3.667,9708,2.366,9709,3.395,9710,5.261,9711,3.395,9712,3.395,9713,7.256,9714,3.395,9715,3.395,9716,3.395,9717,5.261,9718,3.395,9719,3.395,9720,5.261,9721,3.395,9722,3.395,9723,3.395,9724,3.069,9725,3.395,9726,3.395,9727,3.395,9728,6.442,9729,3.395,9730,3.395,9731,3.395,9732,3.395,9733,3.395,9734,3.395,9735,5.261,9736,3.395,9737,3.395,9738,3.395,9739,3.395,9740,3.395,9741,3.069,9742,5.261,9743,5.261,9744,3.395,9745,3.395,9746,3.395,9747,3.395,9748,3.395,9749,3.395,9750,3.395,9751,3.395,9752,2.693,9753,3.395,9754,5.261]],["description//tracks/90daysofdevops/day18",[190,1.635,424,2.923,5389,2.766]],["title//tracks/90daysofdevops/day17",[934,2.384,1483,2.519,2011,3.611,9755,4.78]],["content//tracks/90daysofdevops/day17",[6,0.334,7,2.367,26,0.808,34,1.245,38,0.83,57,2.864,58,1.7,64,2.313,67,1.795,68,1.638,72,2.913,73,2.628,74,1.179,77,2.299,80,1.179,91,2.439,96,1.222,102,2.313,110,1.147,114,0.968,118,1.475,124,1.097,126,1.636,139,1.28,148,4.463,149,2.559,155,3.274,159,1.835,169,3.274,172,2.367,173,2.402,175,1.095,183,2.914,190,1.566,192,2.648,205,4.578,214,2.332,216,1.304,217,1.648,224,1.856,234,1.117,235,2.76,278,2.746,288,1.58,289,2.254,295,2.27,297,4.316,301,2.04,343,2.413,356,1.224,422,1.021,423,2.242,433,2.746,486,3.465,507,1.7,536,0.976,540,2.235,558,2.975,593,1.238,598,2.092,600,1.818,635,1.756,638,2.439,648,2.066,760,2.913,785,2.289,849,1.535,901,1.991,903,2.771,905,0.723,909,2.219,910,1.631,918,0.95,934,4.975,938,1.419,940,2.799,951,3.114,952,2.478,1021,1.581,1024,1.648,1040,2.696,1043,3.042,1053,2.441,1061,3.117,1067,3.274,1089,1.944,1181,4.129,1191,3.19,1234,1.856,1273,2.913,1283,4.648,1287,3.407,1299,2.696,1300,2.266,1331,1.566,1335,3.701,1336,2.559,1374,2.439,1473,6.137,1474,4.676,1480,2.559,1483,5.132,1485,2.799,1499,3.701,1503,4.212,1600,3.042,1601,2.913,1620,3.465,1628,2.299,1639,2.732,1651,2.299,1661,1.815,1749,2.332,1818,2.119,1869,1.665,1912,2.992,1930,2.029,2004,2.235,2046,2.119,2090,4.011,2181,3.365,2251,4.006,2252,4.011,2270,3.274,2283,2.746,2419,3.19,2496,3.844,2698,3.707,2699,2.603,2703,3.365,2710,3.701,2837,4.183,2976,1.815,3150,2.913,3154,1.856,3306,3.365,3311,3.114,3426,2.805,3519,3.19,3520,4.011,3591,3.042,3617,3.848,3624,3.701,3626,4.212,3643,6.137,3657,3.482,3663,4.463,3670,4.917,3677,4.212,3702,3.701,3799,2.266,3803,2.015,3862,5.792,3882,4.463,3963,3.114,4150,3.19,4449,2.854,4545,3.254,4554,4.092,5033,2.402,5153,2.299,5161,4.765,5405,3.274,5537,2.603,5706,3.576,5775,2.854,6027,2.518,6247,3.365,6263,3.848,6350,3.161,6398,3.365,6428,2.746,6436,2.066,6511,3.844,6664,4.011,6737,3.701,6739,4.212,6765,4.463,6900,2.559,7011,3.465,7012,3.19,7070,3.844,7123,4.212,7230,2.854,7243,4.212,7854,5.09,7874,3.844,8763,4.463,8783,4.463,8906,4.799,9691,7.049,9706,7.869,9707,5.09,9708,3.701,9756,8.346,9757,5.31,9758,5.31,9759,7.302,9760,8.346,9761,5.31,9762,5.31,9763,5.31,9764,5.31,9765,5.31,9766,5.31,9767,5.31,9768,7.302,9769,4.799,9770,5.31,9771,5.31,9772,5.31,9773,5.31,9774,5.31,9775,5.31]],["description//tracks/90daysofdevops/day17",[934,2.453,1483,2.592,9691,3.561,9706,3.561]],["title//tracks/90daysofdevops/day16",[917,0.919,1930,1.509,1931,2.027,2002,2.242,3657,1.265,6366,1.651]],["content//tracks/90daysofdevops/day16",[6,0.345,14,1.056,26,0.821,31,1.865,32,0.693,33,2.901,38,1.028,42,1.925,53,1.213,57,1.641,58,1.124,64,1.112,68,0.639,70,1.148,71,2.448,73,0.947,75,1.298,83,2.466,91,1.612,96,1.514,100,2.363,107,0.938,109,1.886,110,0.758,111,2.113,113,1.824,114,0.639,118,2.052,126,1.885,136,0.801,137,1.019,149,1.691,164,2.366,172,1.564,173,1.882,175,1.021,183,1.4,190,1.939,191,1.528,192,3.28,198,1.72,202,2.215,205,1.925,216,1.325,217,2.041,221,2.051,230,2.037,235,2.692,245,1.376,246,0.765,261,1.348,265,1.348,272,1.498,281,2.363,288,0.617,289,2.26,295,0.886,299,2.54,301,1.348,302,1.612,337,1.173,343,1.976,344,0.889,351,0.956,354,0.929,356,1.206,359,1.332,362,0.929,369,3.392,374,2.261,381,1.4,393,0.947,397,1.882,402,2.845,419,3.165,422,0.675,423,1.078,425,1.908,431,1.136,432,1.477,459,1.186,461,1.908,464,1.93,468,1.457,471,2.37,473,1.612,479,0.763,486,2.29,490,0.87,507,1.124,526,2.363,536,1.209,548,1.186,575,2.272,585,2.29,587,2.646,593,1.535,600,1.527,626,1.067,628,1.591,635,1.16,638,1.612,640,1.199,647,2.337,678,1.815,718,1.285,741,1.383,742,1.429,755,1.564,758,1.187,774,2.248,777,1.637,778,1.955,785,1.692,800,1.612,831,2.446,843,2.731,849,1.676,896,2.163,907,1.61,915,1.457,917,1.709,918,0.966,926,1.255,931,3.541,934,2.692,938,1.443,942,3.243,946,1.849,991,1.529,993,2.436,1002,2.244,1018,1.16,1021,1.045,1024,1.574,1053,1.173,1055,1.591,1057,1.664,1069,3.243,1088,1.974,1151,1.637,1183,3.522,1190,2.224,1205,3.271,1207,2.224,1226,1.886,1234,1.226,1245,2.363,1254,2.791,1279,3.42,1295,2.901,1296,3.063,1299,1.782,1302,1.691,1308,0.912,1331,1.591,1372,2.949,1374,2.479,1430,1.664,1443,3.024,1447,1.199,1469,5.147,1470,2.818,1483,2.845,1487,3.28,1497,3.635,1585,1.519,1610,1.3,1626,2.315,1632,1.443,1636,2.163,1647,1.75,1652,3.523,1672,1.966,1690,1.612,1694,1.564,1720,2.163,1747,1.186,1769,1.815,1786,1.976,1792,2.127,1849,2.29,1858,2.048,1871,2.363,1912,1.438,1930,2.948,1931,4.23,1952,1.782,1954,2.35,1955,1.664,1984,1.782,1985,2.29,1987,3.714,1996,1.815,2001,1.925,2013,4.566,2046,2.154,2052,3.501,2053,4.429,2067,2.084,2069,2.01,2074,2.224,2131,1.966,2206,2.651,2225,1.782,2227,2.108,2259,3.552,2263,4.968,2277,2.248,2364,1.865,2583,3.172,2584,2.446,2647,3.501,2662,2.211,2701,3.172,2789,2.646,2803,4.537,3154,2.786,3174,2.996,3179,1.612,3184,2.783,3273,2.058,3327,2.058,3362,2.363,3370,2.01,3426,1.348,3495,1.886,3520,2.651,3546,2.058,3587,2.29,3655,1.886,3657,3.617,3658,3.991,3659,5.483,3660,5.094,3661,2.646,3666,1.815,3696,0.92,3803,1.332,3915,1.664,3980,3.608,3984,1.72,4109,2.363,4274,2.058,4399,2.446,4415,1.564,4554,1.966,4802,1.782,5033,1.587,5128,2.791,5153,1.519,5161,3.522,5173,1.815,5270,2.363,5305,1.014,5314,2.29,5320,2.446,5378,3.172,5393,2.54,5405,2.163,5537,1.72,5550,1.966,5555,3.907,5558,2.163,5867,3.762,6027,1.664,6247,2.224,6263,4.201,6356,1.438,6366,3.445,6427,1.782,6428,1.815,6471,2.783,6480,2.304,6507,2.363,6709,2.363,6723,3.172,6736,6.417,6737,2.446,6748,2.949,6761,1.664,6802,1.925,6810,2.783,6812,3.172,6813,5.217,6900,1.691,6983,2.01,7138,2.949,7161,1.72,7210,2.783,7230,1.886,7307,3.762,7451,2.058,7455,2.783,7466,2.108,7597,3.165,7656,4.566,7711,6.676,7733,2.363,7806,2.058,7821,1.849,7973,2.651,7982,2.783,8250,2.949,8300,2.108,8357,2.446,8368,3.172,8425,3.172,8475,3.172,8627,2.949,8654,2.651,8722,3.172,8734,2.446,8742,2.54,8783,2.949,8839,2.949,8843,2.446,8881,2.783,9251,3.172,9707,3.762,9708,2.446,9776,3.509,9777,3.172,9778,3.509,9779,3.509,9780,3.509,9781,3.509,9782,3.509,9783,3.509,9784,3.509,9785,3.509,9786,7.204,9787,2.949,9788,5.398,9789,4.878,9790,3.509,9791,3.509,9792,3.509,9793,5.398,9794,5.398,9795,3.509,9796,3.509,9797,3.509,9798,5.398,9799,5.398,9800,3.509,9801,3.509,9802,3.509,9803,5.398,9804,3.509,9805,3.509,9806,3.509,9807,3.509,9808,3.509,9809,3.509,9810,3.509,9811,5.398,9812,3.509,9813,3.509,9814,3.509,9815,3.509,9816,3.509,9817,3.509,9818,3.509,9819,3.509,9820,3.509,9821,3.509,9822,3.509,9823,3.509,9824,3.509,9825,3.509,9826,3.509,9827,3.509,9828,3.172,9829,3.509,9830,3.509,9831,6.577,9832,3.509,9833,5.398,9834,3.509,9835,3.509,9836,3.509,9837,3.509]],["description//tracks/90daysofdevops/day16",[917,1.042,1930,1.659,1931,2.298,3657,1.434,6366,1.871]],["title//tracks/90daysofdevops/day15",[849,1.005,1996,2.472,3657,1.709,5305,1.381]],["content//tracks/90daysofdevops/day15",[1,1.446,6,0.403,7,2.121,14,0.899,25,1.331,26,0.724,27,1.056,30,0.937,32,0.59,38,1.155,44,2.098,49,1.297,56,1.148,57,2.245,58,0.956,68,1.08,71,0.917,74,1.056,75,0.525,77,1.293,80,1.639,83,1.784,96,1.095,101,1.372,102,2.024,107,1.272,109,1.663,110,1.461,111,0.855,114,1.08,118,0.83,120,1.158,124,1.525,126,1.978,136,1.353,137,0.564,139,0.72,141,1.714,147,1.757,149,2.293,158,1.148,159,1.032,160,1.949,161,0.937,164,0.806,173,2.251,175,1.123,176,0.606,183,3.293,190,1.403,191,0.694,202,1.879,206,1.26,207,1.464,212,1.663,216,0.734,217,0.927,219,1.403,221,1.224,230,1.105,234,1.001,235,1.461,245,1.213,263,1.924,268,1.432,272,1.275,288,1.042,289,2.289,295,2.375,304,1.517,313,0.89,332,1.517,333,1.59,335,1.674,343,2.29,344,0.714,351,0.814,352,0.967,354,0.791,356,0.878,362,0.791,374,2.327,376,2.567,377,2.336,393,0.806,402,2.508,406,1.517,408,1.293,422,0.574,423,1.461,427,1.148,432,1.257,461,1.056,462,1.54,464,1.068,467,0.908,468,1.24,478,1.312,479,1.211,488,1.556,490,1.47,509,2.511,518,1.507,536,0.549,540,1.257,557,2.511,560,3.026,564,1.711,575,1.257,593,1.641,598,1.177,600,1.85,601,1.795,626,2.391,628,2.603,635,2.729,637,1.949,647,1.293,648,1.851,670,1.711,675,0.881,741,1.177,742,1.26,757,1.464,758,1.304,783,2.012,785,0.937,787,1.976,793,1.644,800,2.186,832,3.011,843,2.462,845,1.257,849,2.294,858,1.711,867,0.999,896,1.842,905,0.407,906,2.369,907,0.651,909,0.908,918,0.535,926,2.12,931,3.375,940,1.574,946,1.574,952,1.394,955,1.752,966,2.369,991,1.916,993,1.107,998,1.331,1002,0.908,1007,1.372,1015,1.517,1017,2.462,1019,1.763,1021,1.766,1024,1.787,1036,0.988,1049,1.331,1053,0.999,1054,1.192,1065,2.163,1068,1.545,1070,2.257,1089,1.093,1100,1.464,1138,1.236,1180,1.394,1224,1.162,1255,1.12,1283,1.545,1284,1.093,1288,1.545,1308,0.776,1331,1.403,1333,2.369,1336,1.44,1362,1.49,1364,1.976,1374,2.186,1422,1.795,1423,1.49,1437,1.606,1443,2.666,1447,1.626,1468,2.511,1474,1.674,1480,2.858,1516,1.056,1526,1.416,1530,1.752,1536,2.604,1585,2.567,1601,4.051,1626,1.859,1632,0.798,1639,1.802,1648,1.545,1651,1.293,1653,2.557,1654,1.795,1655,2.257,1656,2.072,1658,2.934,1661,1.021,1680,1.806,1689,1.795,1693,1.949,1704,1.275,1710,2.257,1716,4.839,1742,1.394,1745,1.162,1747,1.608,1749,2.09,1765,1.752,1776,1.893,1786,2.475,1789,1.293,1803,1.606,1818,1.192,1827,1.711,1829,1.134,1858,1.134,1863,1.331,1881,1.49,1890,1.351,1930,2.514,1931,3.397,1932,1.842,1954,0.881,1995,2.082,2050,2.369,2095,4.896,2098,1.394,2101,1.842,2146,2.508,2181,1.893,2191,2.934,2206,2.257,2214,1.842,2251,1.639,2252,2.257,2259,4.191,2262,2.369,2277,1.626,2284,4.063,2333,2.186,2364,2.049,2629,2.957,2678,4.985,2692,1.795,2693,2.604,2710,5.147,2765,1.517,2778,3.316,2789,2.907,2856,2.557,2906,5.298,2925,2.511,2949,1.275,3067,1.949,3154,1.044,3179,2.724,3254,2.7,3316,2.257,3358,2.163,3370,2.726,3394,2.496,3395,2.7,3428,2.369,3492,2.369,3495,1.663,3511,1.924,3624,3.316,3626,2.369,3644,2.511,3655,1.606,3657,3.157,3659,5.59,3660,1.606,3780,5.36,3799,1.275,3800,1.394,3862,3.774,3944,1.893,3973,2.511,4046,2.7,4229,3.856,4274,2.79,4437,1.893,4568,3.015,4738,3.445,4937,2.257,4954,2.257,5033,1.351,5153,1.293,5161,3.105,5261,2.511,5268,2.369,5294,2.012,5295,2.369,5297,2.257,5300,1.44,5302,2.082,5305,1.714,5313,4.273,5314,1.949,5376,2.7,5386,2.082,5389,2.373,5395,3.774,5397,3.563,5398,6.612,5405,1.842,5542,1.517,5596,2.082,5597,2.082,5775,1.606,5797,1.949,5871,2.257,5917,2.511,6160,2.934,6162,2.082,6167,2.369,6350,2.927,6356,1.224,6362,1.674,6364,5.857,6416,1.949,6430,1.606,6460,5.364,6465,4.839,6472,4.133,6516,1.893,6550,4.973,6581,2.257,6625,4.896,6703,2.082,6710,1.711,6761,1.416,6893,2.257,6900,1.44,6919,1.674,6929,2.7,6983,1.711,7049,2.257,7057,2.511,7070,4.293,7161,1.464,7216,1.949,7230,3.187,7232,2.163,7287,4.704,7409,4.301,7443,4.301,7525,2.511,7528,3.774,7596,2.369,7648,2.012,7656,3.397,7749,3.445,7806,1.752,7821,1.574,7987,2.082,8104,2.511,8132,2.511,8300,1.795,8349,2.257,8399,2.511,8419,4.063,8453,2.7,8481,2.511,8538,2.7,8540,3.999,8560,2.511,8753,2.369,8763,2.511,8812,2.511,8843,4.133,8890,3.445,8908,2.7,8949,2.163,9377,2.163,9462,4.301,9494,2.7,9575,2.511,9668,6.112,9675,2.511,9707,3.316,9708,2.082,9838,2.987,9839,2.7,9840,2.987,9841,2.987,9842,2.987,9843,2.7,9844,2.987,9845,2.987,9846,2.987,9847,10.133,9848,2.987,9849,4.758,9850,2.7,9851,2.987,9852,2.987,9853,2.987,9854,2.987,9855,2.987,9856,2.987,9857,4.758,9858,2.987,9859,2.987,9860,4.758,9861,2.987,9862,2.987,9863,2.987,9864,2.987,9865,6.675,9866,4.758,9867,2.987,9868,2.987,9869,2.987,9870,6.763,9871,4.758,9872,2.987,9873,2.987,9874,2.7,9875,2.987,9876,2.987,9877,2.987,9878,2.987,9879,2.987,9880,2.987,9881,4.301,9882,5.93,9883,4.301,9884,2.7,9885,2.987,9886,2.987]],["description//tracks/90daysofdevops/day15",[849,1.166,3657,1.983,5305,1.603]],["title//tracks/90daysofdevops/day14",[1985,3.532,3657,1.936,5305,1.565]],["content//tracks/90daysofdevops/day14",[1,1.208,6,0.369,9,2.877,25,3.752,26,1.281,27,2.097,31,1.373,32,1.171,36,3.002,38,1.109,44,2.202,49,1.933,53,2.049,64,1.259,65,1.033,68,0.724,74,0.882,75,0.699,78,2.388,96,1.634,102,1.023,105,1.062,111,2.251,112,1.083,113,1.343,114,0.724,116,2.277,124,0.821,126,1.589,127,3.126,136,1.619,137,0.75,139,1.43,141,1.714,161,1.859,173,1.512,175,0.907,176,0.806,190,2.32,191,1.378,192,1.982,197,1.94,198,1.948,204,2.425,211,3.87,214,1.745,217,1.233,221,1.023,222,2.097,224,2.48,225,1.784,229,1.628,230,2.126,235,1.821,242,2.676,264,1.389,267,2.251,268,2.135,288,0.699,289,1.258,295,1.004,307,1.607,333,1.328,342,1.673,343,2.086,344,0.749,351,1.083,355,2.296,356,1.022,372,2.987,374,2.266,375,1.3,378,2.567,381,1.586,383,1.233,393,2.123,395,2.094,398,2.812,402,2.094,410,2.767,422,1.364,432,1.673,439,1.884,442,2.859,459,2.398,462,1.032,464,1.421,467,1.208,470,1.358,489,1.884,490,0.985,507,2.272,519,2.463,536,1.446,540,1.673,553,2.227,558,2.227,587,1.948,598,1.566,600,1.371,628,1.172,635,1.314,636,1.358,638,1.825,645,2.136,646,1.745,655,1.389,675,1.172,718,1.455,741,1.566,742,1.052,758,1.305,759,2.45,770,2.277,771,2.277,774,3.126,778,1.052,785,1.246,787,1.65,817,1.246,843,3.495,849,1.492,896,5.926,902,2.055,907,0.866,909,2.157,910,1.22,917,1.541,918,0.711,924,2.388,925,1.126,926,1.421,931,2.097,935,1.43,938,1.062,939,1.389,952,1.854,991,2.664,1002,2.157,1017,1.65,1019,1.472,1021,1.766,1024,1.662,1034,2.277,1049,1.771,1053,1.982,1055,1.172,1065,2.877,1073,2.227,1138,1.032,1187,1.884,1205,2.372,1240,2.367,1252,2.518,1269,1.508,1289,3.478,1303,2.33,1307,2.676,1308,1.032,1331,2.092,1374,3.259,1423,1.982,1426,1.948,1435,1.884,1465,3.152,1516,1.405,1601,2.18,1624,2.77,1626,3.218,1627,2.018,1628,2.567,1632,1.585,1639,1.208,1645,2.227,1651,1.72,1653,2.136,1689,3.563,1690,1.825,1704,1.696,1724,2.018,1742,1.854,1786,1.455,1818,2.367,1884,2.676,1904,1.854,1912,1.628,1930,2.453,1954,2.092,1979,1.696,1987,2.693,1993,2.45,2027,3.398,2033,2.877,2035,2.18,2039,3.995,2046,3.36,2054,2.227,2055,2.136,2067,1.879,2070,2.676,2163,2.227,2225,2.018,2259,1.771,2263,3.002,2277,3.214,2333,1.825,2467,1.915,2564,1.798,2611,2.33,2660,2.593,2662,2.907,2731,2.227,2904,2.055,2929,1.854,2932,3.011,2976,1.358,3147,3.253,3150,2.18,3154,2.48,3158,2.77,3159,1.455,3172,1.915,3179,1.825,3183,3.592,3190,3.592,3305,2.018,3327,2.33,3394,2.497,3495,2.073,3507,3.152,3511,1.607,3627,2.77,3655,2.136,3657,3.84,3658,3.731,3661,1.948,3669,3.152,3696,2.063,3699,1.745,3702,4.946,3734,3.002,3755,2.593,3799,1.696,3811,1.884,3926,2.518,4010,2.277,4039,3.559,4109,2.676,4118,1.982,4230,3.002,4437,2.518,4497,1.72,4554,3.323,4736,2.877,4802,2.018,4959,3.002,4989,2.812,5033,1.798,5036,1.546,5127,2.136,5153,1.72,5161,3.87,5241,2.45,5304,3.36,5305,2.644,5313,1.982,5324,1.854,5388,2.77,5389,1.982,5405,2.45,5487,3.34,5641,2.796,6247,2.518,6263,2.094,6356,1.628,6418,3.563,6425,2.497,6427,2.018,6430,2.136,6436,1.546,6444,3.067,6503,3.002,6506,1.586,6659,2.593,6710,2.277,6769,2.877,6778,3.592,6878,3.34,6893,3.002,6900,1.915,6913,2.77,6923,3.994,6964,1.405,6983,2.277,7043,3.34,7054,3.34,7065,3.592,7140,3.34,7149,2.45,7277,3.34,7418,3.002,7451,2.33,7466,2.388,7576,3.152,7597,3.478,7656,5.825,7658,6.67,7769,3.34,7800,4.16,7801,5.361,7802,4.985,7806,4.613,7821,3.74,7826,3.592,7866,3.002,7874,2.877,7878,3.152,7927,2.676,7989,2.77,8032,2.18,8033,3.34,8065,2.77,8192,4.294,8279,3.34,8300,5.776,8315,3.592,8400,4.294,8419,2.388,8474,3.592,8690,3.592,8742,5.696,8782,2.593,8850,3.152,8949,2.877,9190,2.77,9271,3.34,9513,3.592,9528,3.592,9529,3.592,9603,3.592,9707,4.134,9708,2.77,9887,3.974,9888,5.931,9889,3.974,9890,3.974,9891,3.974,9892,3.974,9893,3.974,9894,3.592,9895,3.974,9896,3.592,9897,3.974,9898,3.974,9899,3.974,9900,3.974,9901,3.974,9902,3.974,9903,3.974,9904,3.974,9905,3.974,9906,5.931,9907,3.974,9908,3.974,9909,3.974,9910,3.34,9911,3.974,9912,3.34,9913,3.974]],["description//tracks/90daysofdevops/day14",[3657,2.274,5305,1.837]],["title//tracks/90daysofdevops/day13",[35,1.513,247,1.936,1974,2.792,5065,1.997,7456,3.098]],["content//tracks/90daysofdevops/day13",[6,0.422,26,0.678,27,1.576,31,0.952,32,0.88,34,1.045,35,3.252,36,2.081,43,1.615,44,2.002,49,0.75,56,1.058,57,0.837,64,0.873,65,1.449,68,1.176,70,0.901,71,0.846,74,1.684,75,1.689,76,2.185,77,1.192,83,1.033,96,0.634,107,1.192,109,0.963,111,1.276,124,1.333,126,1.258,136,1.017,137,0.52,144,2.904,147,1.459,149,1.327,173,0.702,175,0.605,176,0.559,179,1.374,183,1.099,191,0.64,197,0.901,206,0.729,207,1.35,219,0.812,222,0.974,230,1.647,231,1.797,234,0.579,243,7.258,245,1.645,248,2.349,256,6.003,257,2.048,269,2.825,271,3.616,282,3.227,288,0.484,289,1.823,295,0.696,300,1.632,302,3.485,305,2.048,333,1.49,337,0.921,344,0.593,353,1.698,354,1.18,356,0.579,359,1.045,374,1.96,397,0.702,398,1.306,402,2.959,417,1.655,422,0.529,428,3.107,435,1.424,437,2.212,441,2.834,452,1.655,454,6.003,456,3.782,462,0.715,467,0.837,472,1.756,476,1.779,479,1.129,480,2.081,489,1.306,490,1.105,492,2.305,507,0.882,520,3.877,536,1.032,540,1.159,550,2.758,568,1.655,600,0.978,603,1.698,620,4.089,623,2.266,626,0.837,635,0.911,640,0.941,646,1.21,648,1.071,663,2.185,702,1.265,708,1.578,718,1.008,730,2.349,756,0.901,758,1.235,774,0.941,779,1.085,795,3.932,805,1.176,817,0.863,819,1.452,843,1.851,845,1.159,849,0.937,856,1.144,859,1.176,867,0.921,880,2.909,903,1.045,905,0.375,923,2.185,931,1.576,938,0.736,942,4.558,946,4.382,998,1.227,1002,0.837,1015,1.398,1021,0.82,1024,1.498,1054,1.099,1055,1.314,1059,2.223,1073,1.543,1103,1.114,1148,2.825,1151,3.011,1184,1.306,1187,1.306,1208,0.846,1218,3.367,1219,2.315,1224,2.185,1229,1.578,1234,0.963,1237,1.851,1242,1.452,1287,1.285,1292,1.452,1296,1.058,1299,1.398,1302,1.327,1309,1.93,1330,2.554,1331,0.812,1345,3.747,1351,1.756,1364,1.144,1374,1.265,1377,2.554,1386,1.246,1447,1.523,1470,0.974,1476,3.367,1480,2.707,1502,2.748,1508,1.615,1528,1.958,1550,3.002,1557,2.614,1592,0.941,1610,1.02,1618,1.919,1619,2.503,1639,0.837,1651,1.192,1653,1.48,1656,0.963,1661,0.941,1669,1.176,1680,1.045,1690,2.965,1694,1.227,1704,1.176,1711,1.452,1741,1.192,1745,1.071,1747,1.898,1763,1.855,1769,3.923,1843,1.958,1889,4.346,1898,2.185,1904,1.285,1916,1.615,1920,2.449,1954,0.812,1956,1.543,1988,1.424,2004,1.159,2039,1.398,2045,1.511,2046,1.779,2055,1.48,2075,5.211,2131,4.475,2163,3.616,2167,1.655,2204,1.655,2213,4.944,2259,1.987,2275,1.92,2324,1.511,2364,0.952,2382,1.045,2454,1.92,2460,3.536,2468,1.374,2604,1.994,2647,2.114,2662,1.826,2723,1.655,2837,4.764,2838,2.825,2839,1.543,2904,2.305,2976,0.941,3067,1.797,3147,5.33,3154,1.963,3159,1.632,3175,3.293,3305,1.398,3404,1.855,3434,1.93,3447,2.185,3495,0.963,3511,1.802,3546,1.615,3655,1.48,3657,2.008,3665,1.797,3696,1.473,3750,2.498,3755,1.797,3861,3.747,3877,1.994,4039,1.246,4088,1.698,4447,1.745,4525,1.452,4533,1.452,4545,1.987,4765,1.855,4840,2.489,4959,2.081,5020,4.941,5028,2.223,5033,2.92,5065,4.826,5143,5.037,5153,2.794,5156,1.855,5157,1.511,5158,0.963,5162,1.797,5182,4.296,5300,2.149,5304,1.099,5305,0.796,5330,2.185,5405,2.748,5571,1.797,5659,3.536,5988,4.875,6346,2.396,6350,2.431,6351,6.489,6416,1.797,6427,1.398,6457,4.875,6472,4.498,6480,1.903,6482,2.081,6500,4.454,6506,1.099,6535,1.994,6550,3.782,6647,3.914,6659,1.797,6710,1.578,6784,2.081,6810,2.185,6860,3.747,6898,0.963,6900,1.327,7034,1.655,7127,1.655,7130,2.185,7230,1.48,7238,1.374,7334,1.578,7385,2.305,7441,1.797,7456,7.552,7516,2.614,7548,1.994,7727,1.92,7906,4.065,7987,1.92,8175,1.994,8212,1.35,8213,1.35,8271,2.081,8354,3.08,8501,3.367,8654,2.081,8740,1.797,8956,2.185,9191,3.227,9293,5.833,9331,5.833,9777,2.489,9914,2.754,9915,7.986,9916,2.754,9917,5.424,9918,7.764,9919,5.424,9920,4.029,9921,4.029,9922,4.029,9923,6.407,9924,6.334,9925,4.029,9926,4.029,9927,4.029,9928,3.367,9929,4.029,9930,3.747,9931,5.833,9932,4.029,9933,4.029,9934,4.029,9935,4.029,9936,4.029,9937,4.029,9938,2.754,9939,2.754,9940,7.732,9941,4.458,9942,4.458,9943,4.458,9944,4.458,9945,2.754,9946,2.754,9947,7.088,9948,2.489,9949,2.489,9950,8.453,9951,4.458,9952,4.458,9953,4.458,9954,4.458,9955,4.458,9956,6.454,9957,6.454,9958,6.454,9959,6.454,9960,4.458,9961,4.458,9962,4.458,9963,4.458,9964,6.454,9965,4.458,9966,4.458,9967,4.458,9968,4.458,9969,4.458,9970,4.458,9971,4.458,9972,5.424,9973,4.458,9974,4.458,9975,4.458,9976,6.454,9977,4.458,9978,4.458,9979,9.488,9980,4.458,9981,9.2,9982,4.458,9983,4.458,9984,2.754,9985,2.754,9986,4.458,9987,4.458,9988,4.458,9989,4.458,9990,4.458,9991,4.458,9992,4.458,9993,6.454,9994,6.454,9995,2.754,9996,2.754,9997,6.454,9998,2.489,9999,2.754,10000,2.754,10001,2.754,10002,2.754,10003,2.754,10004,2.754,10005,2.489,10006,2.754,10007,3.747,10008,2.754,10009,2.754,10010,2.754,10011,2.754,10012,7.586,10013,6.454,10014,2.754,10015,6.454,10016,2.754,10017,4.458,10018,2.754,10019,6.454,10020,2.754,10021,2.754,10022,2.754,10023,2.754,10024,2.754,10025,2.754,10026,2.754,10027,2.754,10028,2.754,10029,6.454,10030,2.754,10031,2.489,10032,1.92,10033,1.92,10034,1.92,10035,1.92,10036,1.92,10037,1.92,10038,1.92,10039,1.92,10040,1.92,10041,2.489,10042,2.754,10043,2.754,10044,2.754,10045,2.754]],["description//tracks/90daysofdevops/day13",[35,1.739,247,2.225,5065,2.295,7456,3.561]],["title//tracks/90daysofdevops/day12",[344,0.452,1648,2.213,1711,2.255,5537,2.097,8354,2.347]],["content//tracks/90daysofdevops/day12",[6,0.416,26,0.689,34,1.531,52,1.989,57,1.376,58,2.09,65,1.732,68,1.395,73,1.222,75,1.147,96,1.043,112,2.52,124,0.935,126,1.714,139,1.573,147,1.696,149,2.183,173,1.664,175,0.488,179,2.259,248,4.414,262,4.136,288,0.796,289,0.961,295,1.933,337,2.182,343,1.897,344,0.938,358,2.342,362,1.199,374,2.226,376,1.96,377,1.784,397,1.154,437,3.015,439,2.147,467,1.984,479,1.082,490,2.363,550,3.709,593,0.768,600,1.137,628,2.47,647,4.224,730,3.44,742,1.728,756,1.481,758,0.996,777,2.113,795,3.411,817,1.42,844,3.375,852,2.08,867,2.8,880,4.994,905,0.617,907,0.987,910,1.391,918,0.81,942,6.063,946,4.034,989,3.375,1002,1.376,1024,1.289,1067,2.792,1071,3.279,1110,1.678,1187,2.147,1208,1.391,1218,5.782,1266,1.698,1296,2.508,1331,2.257,1345,6.433,1351,1.784,1364,3.178,1371,2.87,1423,3.255,1447,2.231,1508,2.655,1536,4.365,1647,2.259,1652,3.37,1677,2.299,1711,4.034,1747,3.573,1769,5.218,1786,3.25,1811,2.594,1843,3.361,1881,2.259,1920,3.068,1950,3.827,2067,1.435,2075,5.794,2163,5.183,2167,2.721,2204,2.721,2641,3.421,2684,3.279,2697,2.87,2837,5.087,2838,4.136,2839,2.538,2880,3.592,2976,1.548,2982,3.157,3147,5.76,3156,3.157,3175,5.206,3426,1.74,3494,3.421,3495,2.281,3666,2.342,3750,2.538,3763,3.592,3799,1.933,4039,2.953,4364,3.05,4389,3.806,4525,2.387,4616,2.87,5020,4.55,5065,3.908,5153,3.313,5156,3.05,5157,2.484,5158,1.583,5268,3.592,5270,3.05,5297,3.421,5373,3.508,5405,4.024,5537,3.752,6346,2.434,6350,3.844,6351,7.932,6860,5.486,6898,1.583,6900,2.183,6923,3.05,7047,5.486,7127,2.721,7135,3.157,7161,2.22,7277,5.486,7456,5.541,7749,3.279,7906,6.901,7987,4.55,8212,2.22,8213,2.22,8354,4.595,8682,4.093,8740,2.955,8782,2.955,9917,8.354,9918,8.984,9919,6.433,9920,7.571,9921,5.9,9922,6.918,9923,9.12,9924,8.385,9925,5.9,9926,5.9,9927,5.9,9928,4.931,9929,5.9,9930,3.806,9931,5.9,9932,5.9,9933,5.9,9934,4.093,9935,6.918,9936,5.9,9937,5.9,10007,3.806,10032,3.157,10033,3.157,10034,3.157,10035,3.157,10036,3.157,10037,3.157,10038,3.157,10039,3.157,10040,3.157,10046,4.529,10047,4.529,10048,6.528,10049,6.528,10050,4.529,10051,4.529,10052,5.9,10053,4.529,10054,4.529,10055,4.529,10056,4.529,10057,4.529,10058,4.529,10059,4.529,10060,4.529]],["description//tracks/90daysofdevops/day12",[337,1.227,519,1.525,593,0.623,647,1.589,1536,1.612,1652,1.393,5537,1.8]],["title//tracks/90daysofdevops/day11",[1747,1.615,1950,2.803,2684,3.46,5065,2.23]],["content//tracks/90daysofdevops/day11",[2,1.752,6,0.4,25,1.752,26,1.191,31,1.359,32,1.392,34,1.38,38,1.102,57,2.673,58,1.259,64,1.246,65,1.799,68,1.072,70,2.56,71,1.207,72,2.157,74,0.873,75,1.376,77,1.702,83,1.474,96,0.905,102,2.346,107,2.092,112,2.791,113,1.329,124,1.616,126,1.318,136,0.897,137,1.111,139,1.418,141,1.136,147,1.528,167,2.362,173,2.136,175,1.01,179,1.961,197,2.306,212,2.464,216,0.965,217,1.22,219,1.159,221,1.012,230,1.367,232,2.565,234,1.483,248,4.125,260,2.157,266,4.259,268,1.183,288,0.691,295,1.486,301,1.511,340,2.113,343,1.94,344,1.012,351,1.071,354,1.558,356,0.916,358,2.033,374,2.337,397,1.002,422,0.756,423,1.207,439,1.864,459,1.988,462,1.528,468,1.633,470,2.674,474,2.836,478,1.727,479,0.832,489,1.864,490,1.747,507,1.259,518,2.234,521,2.491,536,1.296,541,2.072,550,2.289,553,2.203,593,0.667,600,1.588,626,1.195,628,1.735,636,1.344,637,1.611,645,2.113,647,1.702,655,3.7,663,4.311,675,1.735,718,1.439,730,3.101,741,1.549,742,1.041,756,1.286,758,0.865,785,1.233,793,3.15,795,2.622,817,2.627,855,3.728,856,1.633,867,1.314,901,1.474,905,0.96,910,2.403,915,2.443,918,0.704,926,1.406,935,2.197,938,1.051,942,5.632,989,2.033,991,1.114,1000,3.554,1023,2.072,1024,1.392,1054,1.569,1079,2.233,1087,2.203,1088,0.922,1180,1.834,1208,1.807,1224,2.743,1237,1.633,1266,1.474,1273,2.157,1280,2.203,1282,2.072,1283,3.042,1290,3.118,1296,2.261,1315,1.569,1331,2.471,1351,1.549,1371,2.491,1424,1.439,1435,1.864,1437,2.113,1447,2.409,1508,2.305,1516,1.39,1528,2.584,1529,2.113,1536,1.727,1585,1.702,1592,1.344,1619,1.752,1636,2.424,1646,1.864,1647,1.961,1648,2.033,1652,3.704,1654,2.362,1661,2.011,1694,1.752,1700,2.362,1701,2.033,1703,3.554,1711,3.101,1722,2.74,1724,1.996,1741,1.702,1747,3.637,1750,1.834,1769,4.848,1776,3.728,1786,2.154,1792,1.549,1826,5.271,1835,5.104,1836,3.304,1837,3.118,1842,2.113,1843,1.727,1853,2.565,1858,1.492,1868,4.914,1901,1.927,1914,2.565,1920,2.436,1950,2.305,1954,1.159,2003,2.846,2009,1.678,2042,3.118,2046,2.348,2067,1.246,2075,5.468,2098,1.834,2163,4.696,2167,2.362,2204,2.362,2227,2.362,2245,2.252,2468,1.961,2641,2.97,2643,1.779,2684,6.367,2837,2.252,2838,3.728,2839,2.203,2976,1.344,2981,3.118,3092,2.97,3147,3.228,3175,4.134,3187,1.927,3327,2.305,3328,3.554,3370,3.371,3407,3.554,3507,3.118,3508,1.961,3511,1.59,3606,2.846,3618,2.97,3628,3.304,3666,2.033,3696,1.543,3799,1.678,3800,1.834,3803,1.492,4039,4.483,4371,2.74,4484,2.846,4523,3.554,4525,2.072,4545,1.752,4775,2.424,4984,3.554,5065,4.854,5126,3.118,5153,3.052,5156,2.648,5157,2.157,5158,1.374,5182,2.703,5195,2.648,5215,2.305,5297,2.97,5373,2.113,5484,2.74,5496,3.118,5524,1.678,5537,1.927,5562,2.745,5589,3.304,5671,2.846,5766,2.648,6027,1.864,6050,2.565,6082,4.945,6195,2.648,6346,2.113,6350,4.149,6351,7.373,6480,1.678,6506,1.569,6718,2.74,6790,2.846,6898,1.374,6900,1.895,7002,2.846,7166,3.554,7422,4.259,7463,2.648,7524,2.305,7828,3.554,7906,5.666,7942,2.74,8019,3.554,8107,2.846,8133,3.118,8209,2.846,8212,3.456,8213,3.456,8354,4.597,8740,2.565,8782,2.565,9917,7.663,9919,3.304,9924,6.976,10032,2.74,10033,2.74,10034,2.74,10035,2.74,10036,2.74,10037,2.74,10038,2.74,10039,2.74,10040,2.74,10052,3.554,10061,3.932,10062,3.932,10063,3.932,10064,3.932,10065,3.932,10066,3.932,10067,3.932,10068,7.051,10069,3.932,10070,3.932,10071,5.884,10072,3.554,10073,3.554,10074,3.554,10075,3.932,10076,3.932,10077,3.554,10078,3.932,10079,3.932,10080,3.932,10081,3.932,10082,3.932]],["description//tracks/90daysofdevops/day11",[1747,1.874,2684,4.015,5065,2.588]],["title//tracks/90daysofdevops/day10",[1750,2.526,2258,2.567,5065,2.526]],["content//tracks/90daysofdevops/day10",[6,0.273,14,2.205,26,0.812,27,1.888,31,1.845,32,1.054,33,2.87,57,2.228,65,1.458,67,1.805,74,1.858,101,3.367,102,1.886,107,1.959,110,1.584,111,2.395,112,1.455,113,1.805,126,1.196,147,2.174,164,2.259,172,2.38,175,0.575,179,2.663,202,1.484,206,1.414,225,1.606,234,1.123,268,2.205,288,0.939,289,2.19,295,2.114,300,2.683,307,2.159,340,2.87,343,2.074,351,1.455,356,1.087,362,1.941,374,1.672,376,2.311,377,2.104,402,2.814,422,1.409,432,3.085,472,2.104,476,2.925,479,1.183,488,1.747,550,2.077,554,2.761,600,0.93,626,2.228,628,1.574,637,3.003,646,2.345,648,2.077,730,3.863,774,1.825,778,1.414,785,1.674,803,3.383,805,2.279,817,1.674,849,1.541,856,2.217,867,1.785,907,1.164,918,1.312,926,1.909,930,2.248,931,3.337,935,1.287,938,1.427,991,2.077,993,3.1,1018,1.766,1021,1.59,1024,1.054,1040,2.711,1045,4.488,1053,1.785,1088,1.252,1208,1.64,1218,4.034,1224,2.077,1234,2.562,1268,2.87,1296,3.747,1314,3.722,1331,2.161,1351,2.104,1364,2.217,1447,1.825,1499,3.722,1502,3.292,1508,3.131,1509,3.722,1585,2.311,1599,3.475,1618,1.825,1632,2.408,1647,3.656,1651,2.311,1652,3.419,1656,1.866,1657,4.488,1678,2.574,1704,2.279,1711,2.814,1722,6.279,1724,4.249,1742,3.42,1769,2.761,1792,2.888,1818,2.925,1863,2.38,1901,2.617,1912,2.188,1932,4.519,1950,3.131,1954,2.161,2001,2.929,2004,2.248,2013,5.409,2039,2.711,2098,4.204,2167,3.208,2204,3.208,2258,2.532,2259,3.267,2275,5.834,2278,6.161,2647,2.532,2659,3.131,2838,4.645,2839,2.992,2873,3.208,2976,1.825,2979,3.596,2985,3.383,3159,1.955,3175,3.131,3187,2.617,3380,3.722,3394,2.248,3404,3.596,3495,1.866,3508,2.663,3666,2.761,3755,4.783,3885,3.131,4039,3.316,4449,3.94,4525,2.814,5065,5.251,5122,2.248,5153,3.623,5156,3.596,5157,2.929,5158,1.866,5162,3.484,5182,4.337,5270,5.637,5601,4.034,5766,3.596,6195,3.596,6346,3.94,6350,3.623,6356,3.003,6417,3.866,6427,2.711,6449,2.711,6452,3.059,6465,3.131,6480,3.572,6506,2.131,6651,3.292,6710,3.059,6781,2.992,6802,2.929,6898,1.866,6900,2.574,7034,3.208,7238,3.656,7259,4.488,7385,3.79,7604,3.866,7727,5.109,8212,2.617,8213,2.617,8257,7.035,8354,4.591,8423,4.826,8691,4.488,8740,3.484,8910,4.034,8966,4.826,9479,4.235,9786,8.142,9884,4.826,10032,3.722,10033,3.722,10034,3.722,10035,3.722,10036,3.722,10037,3.722,10038,3.722,10039,3.722,10040,3.722,10083,8.37,10084,5.34,10085,5.34,10086,5.34,10087,5.34,10088,5.34,10089,5.34]],["description//tracks/90daysofdevops/day10",[2258,3.015,5065,2.967]],["title//tracks/90daysofdevops/day09",[136,0.976,1901,2.097,2098,1.997,2099,2.097,8354,2.347]],["content//tracks/90daysofdevops/day09",[6,0.393,10,4.455,15,1.826,27,1.742,29,1.762,30,1.545,32,1.369,34,2.291,37,2.961,38,1.084,44,2.151,49,1.343,52,2.164,53,3.007,55,2.704,58,1.578,65,1.842,67,1.666,74,2.169,75,0.866,96,1.596,102,2.674,107,1.317,114,0.898,124,1.656,126,1.104,136,1.582,139,1.188,141,1.424,147,2.261,154,2.89,161,1.545,164,1.33,173,1.256,175,1.053,179,2.458,197,2.268,202,1.369,206,1.305,216,1.702,225,2.086,230,1.145,246,1.074,264,1.722,266,3.568,288,0.866,289,2.152,301,2.664,307,1.993,333,1.647,343,1.718,354,2.123,356,0.9,369,2.264,374,2.092,393,1.33,422,0.947,423,2.463,437,1.942,459,1.666,462,1.28,473,3.185,479,0.98,507,1.578,518,2.541,527,2.823,545,2.961,550,1.917,560,2.019,594,3.568,600,1.208,604,2.649,637,2.019,730,3.654,742,1.836,756,1.612,778,1.305,800,2.264,803,3.123,845,2.075,849,1.036,856,2.046,867,1.647,905,0.671,907,1.074,925,1.964,931,1.742,938,1.853,1002,1.498,1017,2.046,1024,1.719,1036,1.63,1202,2.961,1208,1.513,1224,1.917,1242,2.597,1266,1.848,1288,2.549,1289,2.89,1296,4.155,1298,4.819,1302,2.375,1331,1.453,1351,1.942,1363,1.848,1364,3.808,1374,2.264,1447,1.684,1508,2.89,1597,3.235,1611,0.792,1618,2.741,1619,2.196,1626,2.875,1628,3.001,1631,2.762,1636,3.039,1652,3.9,1657,4.142,1658,3.039,1680,1.87,1683,4.142,1693,5.233,1704,2.104,1711,2.597,1722,6.066,1724,3.52,1741,2.134,1750,2.3,1769,5.373,1776,3.123,1786,1.804,1789,3.767,1796,3.123,1803,2.649,1863,3.878,1884,3.319,1912,2.019,1920,1.703,1930,1.369,1933,2.762,2005,3.458,2013,3.972,2046,1.967,2067,1.561,2075,4.524,2098,4.559,2099,3.931,2126,4.142,2134,3.568,2167,2.961,2204,2.961,2259,3.09,2275,4.832,2364,1.703,2641,3.723,2838,4.393,2839,2.762,2873,2.961,2929,3.235,2976,1.684,3175,4.703,3394,2.075,3432,2.961,3515,3.885,3665,4.524,4271,2.164,4331,4.455,4449,2.649,4525,2.597,4560,3.909,4827,3.123,5065,5.045,5153,3.472,5156,3.319,5157,2.704,5158,1.722,5182,2.264,5270,3.319,5366,3.568,5373,2.649,5480,4.455,5484,3.435,5781,3.123,6346,2.649,6350,3.767,6417,3.568,6506,1.967,6898,1.722,6900,2.375,7125,4.455,7163,6.3,7216,3.216,7238,2.458,7463,3.319,7906,5.806,7942,3.435,7987,4.832,8060,4.455,8141,5.499,8212,2.416,8213,2.416,8354,4.774,8740,3.216,8849,4.142,8956,3.909,9910,4.142,9940,6.741,10032,3.435,10033,3.435,10034,3.435,10035,3.435,10036,3.435,10037,3.435,10038,3.435,10039,3.435,10040,3.435,10072,7.249,10090,4.929,10091,4.455,10092,4.929,10093,4.929,10094,4.929,10095,4.929,10096,4.455,10097,4.929]],["description//tracks/90daysofdevops/day09",[136,1.122,2098,2.295,2099,2.411,8354,2.698]],["title//tracks/90daysofdevops/day07",[1309,1.852,1618,1.462,1619,1.907,1818,1.708,5305,1.237]],["content//tracks/90daysofdevops/day07",[1,1.247,6,0.353,11,2.083,15,1.52,25,1.829,26,1.1,29,2.586,33,2.205,34,0.962,38,0.641,44,2.48,49,1.118,53,1.418,64,1.3,65,1.058,74,1.983,75,1.5,77,3.46,80,0.911,91,3.322,96,1.665,107,1.097,110,0.886,111,1.174,116,2.351,122,2.6,126,0.919,136,2.038,137,1.365,141,2.466,147,1.878,175,0.442,179,3.606,191,0.953,197,1.342,202,1.14,204,1.402,208,2.122,219,1.21,229,1.681,246,1.324,259,1.52,263,1.659,268,1.234,288,0.721,289,1.81,331,1.965,343,1.792,344,0.433,352,2.761,353,4.458,356,0.939,375,1.987,381,1.637,383,1.273,393,1.639,395,2.162,402,3.811,404,2.763,410,3.374,422,0.789,423,1.26,426,2.251,427,1.576,431,1.328,432,1.727,458,2.763,461,1.45,467,2.198,476,2.424,479,0.58,489,4.045,490,1.017,517,2.011,518,1.924,530,2.79,535,1.017,536,1.117,540,2.557,550,1.596,551,2.677,562,2.53,600,1.058,606,1.484,638,2.79,639,2.162,646,1.802,648,2.813,730,3.201,755,3.223,758,1.336,774,1.402,777,1.914,781,2.79,785,1.904,787,2.522,817,1.286,843,1.704,849,1.277,856,1.704,859,1.751,903,1.557,905,0.559,907,1.324,909,1.846,917,1.578,918,1.294,926,1.467,939,2.123,940,2.162,991,1.721,996,1.945,1002,2.429,1024,0.81,1036,1.357,1040,2.083,1049,1.829,1053,2.03,1055,1.791,1065,2.97,1066,1.52,1079,1.557,1088,1.695,1138,2.216,1148,2.6,1177,3.099,1195,2.251,1202,2.465,1205,2.03,1212,3.099,1229,2.351,1240,1.637,1242,2.162,1254,2.122,1271,1.52,1280,2.299,1284,2.647,1287,1.914,1299,2.083,1302,3.852,1307,2.763,1308,1.066,1309,2.629,1351,1.617,1361,2.122,1363,1.538,1430,1.945,1447,1.402,1450,2.406,1451,2.251,1463,2.97,1480,1.978,1484,1.727,1506,3.254,1508,2.406,1528,1.802,1532,3.099,1538,2.677,1587,4.143,1592,1.402,1597,3.981,1611,1.671,1618,3.655,1619,4.636,1626,2.267,1627,2.083,1630,2.083,1631,2.299,1632,2.471,1639,2.198,1645,2.299,1646,1.945,1652,3.508,1654,2.465,1656,2.793,1669,1.751,1678,1.978,1680,1.557,1681,3.848,1688,2.083,1690,1.885,1702,1.865,1704,1.751,1705,2.86,1711,2.162,1720,3.744,1722,5.04,1724,2.083,1732,3.254,1734,2.205,1765,2.406,1789,1.776,1854,2.53,1857,2.707,1863,1.829,1884,2.763,1912,2.488,1954,1.791,1987,2.305,2013,4.143,2033,2.97,2039,3.083,2046,2.886,2069,2.351,2071,4.817,2167,2.465,2170,3.561,2204,2.465,2278,3.449,2281,3.708,2284,2.465,2299,2.205,2364,1.418,2387,2.763,2587,2.162,2604,2.97,2611,2.406,2660,2.677,2662,2.488,2698,2.083,2838,3.848,2839,2.299,2873,3.649,2902,2.465,2976,1.402,3154,2.123,3159,2.223,3189,2.205,3273,2.406,3352,3.708,3359,2.97,3426,2.333,3495,1.434,3511,2.456,3606,2.97,3627,2.86,3655,2.205,3657,1.467,3696,1.076,3764,2.406,3803,1.557,3811,2.88,3879,3.332,3885,2.406,3959,2.677,3978,2.97,4008,3.708,4039,2.748,4091,2.677,4111,3.099,4150,2.465,4272,1.978,4284,3.254,4314,2.162,4364,2.763,4424,3.13,4474,2.351,4480,2.677,4525,3.201,4750,3.708,4765,2.763,4816,3.403,4872,2.86,4876,3.449,4989,1.945,5036,1.596,5065,5.126,5100,2.417,5153,3.13,5156,2.763,5157,2.251,5158,1.434,5304,2.424,5305,3.063,5680,2.299,5707,2.465,5739,2.251,5740,2.86,6027,1.945,6195,2.763,6231,3.708,6346,2.205,6368,2.86,6382,4.09,6383,2.97,6399,1.596,6412,2.763,6418,2.465,6427,2.083,6436,2.363,6684,3.083,6704,3.449,6898,1.434,6900,1.978,6913,2.86,6948,2.97,6957,2.677,6964,1.45,6999,3.099,7135,2.86,7149,2.53,7183,2.86,7217,2.53,7238,2.046,7325,5.235,7418,3.099,7432,2.86,7533,3.449,7851,2.251,7881,2.86,7882,3.708,7938,2.97,8150,3.254,8212,2.011,8213,2.011,8263,3.254,8354,4.68,8508,3.254,8674,3.099,8740,2.677,8751,3.449,8949,2.97,9315,3.708,9338,5.489,10007,3.449,10032,5.04,10033,4.233,10034,2.86,10035,2.86,10036,2.86,10037,2.86,10038,2.86,10039,2.86,10040,2.86,10098,4.103,10099,4.103,10100,6.074,10101,6.074,10102,4.103,10103,4.103,10104,6.074,10105,4.103,10106,4.103,10107,4.103,10108,4.103,10109,3.254,10110,4.103,10111,4.103,10112,4.103,10113,4.103,10114,4.103,10115,4.103]],["description//tracks/90daysofdevops/day07",[1309,2.129,1618,1.681,1619,2.192,5305,1.421]],["title//tracks/90daysofdevops/day06",[1789,2.344,5305,1.565,8419,3.253]],["content//tracks/90daysofdevops/day06",[6,0.34,18,1.684,34,1.143,38,0.762,44,2.134,49,1.328,57,1.481,58,1.56,65,1.389,68,1.253,70,1.594,75,1.209,96,1.122,105,1.303,107,1.303,110,1.053,116,2.792,136,1.569,141,1.988,144,2.818,156,3.681,159,1.684,165,2.928,173,1.242,175,0.525,190,2.35,191,1.132,195,2.928,197,2.25,215,2.431,219,2.028,227,1.763,229,1.997,230,1.132,232,3.18,259,2.548,261,1.872,267,3.696,288,1.401,352,1.577,353,3.005,354,1.29,356,0.633,372,2.051,374,1.112,377,2.71,393,1.315,397,1.242,406,2.474,422,1.322,423,2.448,424,2.568,431,2.226,464,2.46,467,2.091,472,1.92,479,0.689,489,2.311,517,2.389,534,3.528,536,1.264,559,3.528,560,2.818,593,1.167,600,0.849,611,1.784,636,1.665,646,2.14,647,2.978,675,2.553,756,1.594,758,1.754,774,2.724,778,2.11,840,3.209,844,2.52,849,1.676,856,2.024,903,1.85,915,2.024,918,1.427,930,2.051,935,2.087,938,1.839,939,1.703,989,2.52,1005,2.14,1008,3.088,1021,1.451,1024,0.962,1031,3.18,1053,1.629,1073,3.854,1076,3.065,1079,1.85,1088,1.143,1108,4.033,1138,1.266,1143,1.97,1148,3.088,1197,2.568,1203,4.405,1205,2.895,1206,2.431,1224,1.896,1229,2.792,1242,4.201,1268,3.697,1284,1.784,1299,2.474,1303,4.033,1308,1.266,1309,2.11,1311,2.792,1330,2.792,1331,1.437,1401,3.681,1447,1.665,1450,2.858,1470,1.723,1482,1.85,1526,3.261,1528,2.14,1557,2.858,1585,2.11,1587,2.792,1600,2.792,1601,2.673,1618,1.665,1619,2.172,1625,3.088,1627,2.474,1628,2.978,1630,2.474,1639,1.481,1648,2.52,1653,2.619,1660,3.681,1669,2.08,1690,4.354,1700,4.789,1702,2.991,1704,2.936,1745,1.896,1777,2.474,1818,3.181,1829,1.85,1854,3.005,1869,1.528,1912,1.997,1943,4.358,1955,2.311,1979,2.936,1987,3.286,1988,2.52,1995,3.397,2002,3.088,2054,3.854,2126,4.096,2262,3.866,2364,1.684,2695,3.866,2789,2.389,2872,3.282,2873,2.928,3015,2.239,3065,4.133,3067,3.18,3159,1.784,3198,3.088,3343,3.088,3380,3.397,3426,1.872,3432,2.928,3495,1.703,3503,6.217,3511,1.97,3621,2.792,3696,1.278,3769,3.397,3799,2.936,3800,2.274,3803,3.286,3944,3.088,3963,2.858,3984,2.389,4001,3.681,4039,3.112,4053,4.405,4090,3.866,4103,2.52,4207,3.528,4248,3.528,4315,3.681,4335,3.866,4423,5.355,4424,4.103,4453,3.528,4497,2.11,4554,2.731,4633,4.096,4729,4.096,4816,2.731,4849,3.854,4965,3.866,5008,2.978,5078,5.833,5153,2.11,5217,2.673,5305,3.156,5324,3.719,5575,3.681,5740,3.397,5982,3.065,6027,3.779,6160,3.005,6361,3.16,6372,3.681,6418,2.928,6442,2.858,6516,3.088,6524,4.096,6659,3.18,6699,4.096,6713,3.005,6761,2.311,6908,4.674,6934,4.794,7038,3.088,7052,3.681,7217,3.005,7221,3.397,7230,2.619,7231,3.528,7232,3.528,7357,3.528,7423,2.792,7479,3.528,8133,3.866,8158,4.096,8199,4.096,8219,4.096,8263,3.866,8419,4.133,8450,4.096,8460,4.405,8662,4.405,8693,3.18,8817,4.405,9190,4.794,9201,4.096,9240,4.405,9314,4.096,9341,4.405,9575,4.096,9580,4.096,10116,4.874,10117,10.115,10118,4.874,10119,4.874,10120,5.781,10121,4.874,10122,4.874,10123,4.874,10124,4.874,10125,4.874,10126,4.874,10127,4.874,10128,4.874,10129,4.874,10130,4.874,10131,7.971,10132,4.874,10133,4.874,10134,4.874,10135,4.874,10136,4.874,10137,4.874,10138,4.874,10139,4.405,10140,4.874,10141,4.405,10142,4.874,10143,4.874,10144,4.874,10145,4.874,10146,4.874,10147,4.874,10148,4.874,10149,4.874,10150,4.874,10151,4.874,10152,4.874,10153,4.874,10154,4.874,10155,4.874,10156,4.874]],["description//tracks/90daysofdevops/day06",[5305,1.837,8419,3.82]],["title//tracks/90daysofdevops/day04",[161,1.697,5305,1.565,10157,4.09]],["content//tracks/90daysofdevops/day04",[6,0.376,25,1.929,26,0.659,27,2.233,30,1.357,31,2.834,38,0.677,44,1.343,45,3.857,49,1.18,52,3.602,57,1.92,65,1.101,68,1.151,73,1.168,74,0.961,77,2.735,80,0.961,101,1.988,105,1.689,110,0.935,112,1.721,116,2.48,118,1.203,124,0.894,147,1.124,158,1.663,159,1.496,165,2.601,176,0.878,179,2.159,197,2.066,201,2.623,206,1.146,220,2.669,222,2.637,229,1.773,230,1.006,244,2.281,259,1.603,264,1.513,266,3.134,267,3.955,268,1.302,272,1.848,288,1.311,301,2.427,303,3.638,307,1.75,337,1.447,344,0.457,351,1.18,352,1.401,354,1.146,356,1.065,362,1.672,372,2.659,375,2.066,381,2.521,383,1.343,393,1.705,396,4.092,397,1.103,399,3.912,404,2.915,406,2.198,421,1.874,422,1.434,459,2.772,460,3.912,462,1.124,467,2.267,479,0.612,482,2.948,485,2.375,488,1.416,507,1.386,520,2.601,536,1.161,541,3.329,544,2.48,551,4.122,555,1.684,556,2.001,611,2.312,628,2.199,645,2.327,741,2.939,756,1.416,758,0.952,766,2.669,777,2.02,781,1.988,786,3.27,787,2.623,805,1.848,849,2.152,856,2.623,858,2.48,902,2.238,905,1.016,907,0.944,909,1.316,915,1.797,917,1.641,925,1.226,926,1.548,929,2.915,935,1.798,938,2.192,991,1.226,1018,2.466,1024,1.247,1025,2.743,1033,2.425,1040,2.198,1055,1.276,1057,2.052,1076,3.887,1087,2.425,1088,1.923,1143,1.75,1205,3.286,1234,1.513,1237,1.797,1267,3.27,1279,2.743,1284,1.584,1299,2.198,1303,2.538,1308,2.13,1309,1.874,1315,1.727,1371,2.743,1426,2.122,1435,2.995,1440,2.601,1449,3.433,1450,2.538,1451,2.375,1470,2.233,1484,1.822,1489,1.684,1586,5.716,1591,2.375,1610,1.603,1620,2.824,1621,5.023,1632,2.513,1638,3.638,1639,2.267,1645,3.54,1661,2.549,1669,2.696,1678,3.045,1690,4.183,1694,2.815,1695,3.134,1702,2.678,1730,3.638,1774,2.425,1776,2.743,1802,4.727,1818,1.727,1829,1.643,1833,3.134,1934,2.824,1954,1.276,1979,1.848,1981,4.003,1987,3.658,2039,2.198,2046,1.727,2067,1.371,2082,3.017,2125,2.538,2171,2.824,2185,3.017,2225,3.207,2270,2.669,2299,2.327,2324,2.375,2369,2.824,2662,1.773,2837,2.48,2870,4.092,2932,2.198,3189,2.327,3221,2.915,3253,2.669,3273,2.538,3300,3.638,3359,3.134,3511,1.75,3636,2.824,3696,1.657,3748,3.433,3779,4.727,3879,2.375,4030,3.912,4031,3.912,4032,4.573,4039,1.958,4157,5.023,4193,3.433,4201,2.902,4218,3.912,4229,2.122,4259,3.912,4271,2.774,4312,2.915,4363,2.824,4365,3.134,4389,3.638,4450,3.912,4459,1.901,4461,5.4,4497,1.874,4525,2.281,4546,2.538,4753,3.27,4774,3.433,4802,2.198,4849,4.18,4872,3.017,4883,3.638,5301,3.27,5305,3.221,5330,3.433,5366,3.134,5377,2.375,5561,2.915,5562,2.02,5740,3.017,5775,2.327,5845,2.915,5886,3.638,5982,2.815,6399,2.902,6427,2.198,6430,2.327,6434,4.403,6718,3.017,6724,3.134,6742,4.573,6766,3.134,6775,2.915,6878,3.638,6908,2.538,6909,2.743,6934,6.079,6938,7.882,6956,2.915,7001,3.433,7052,3.27,7058,3.27,7172,3.638,7217,2.669,7221,3.017,7267,2.425,7349,3.134,7441,2.824,7508,3.912,7533,3.638,7553,3.638,7556,3.912,7612,3.134,7624,3.638,7634,3.27,7819,3.433,7973,3.27,8143,3.27,8147,3.433,8175,3.134,8209,4.573,8263,3.433,8295,3.433,8427,3.912,8547,3.912,8648,3.638,8653,3.912,8693,4.867,8739,3.134,8752,3.912,8827,3.27,8861,3.912,8909,3.912,9201,3.638,9220,3.912,9255,3.638,9271,3.638,9291,3.638,9497,3.433,9580,3.638,10139,3.912,10157,8.338,10158,4.329,10159,4.329,10160,4.329,10161,4.329,10162,4.329,10163,4.329,10164,4.329,10165,4.329,10166,4.329,10167,5.71,10168,4.329,10169,4.329,10170,4.329,10171,4.329,10172,4.329,10173,4.329,10174,4.329,10175,4.329,10176,4.329,10177,3.912,10178,4.329,10179,4.329,10180,4.329,10181,4.329,10182,3.912,10183,4.329,10184,4.329,10185,3.912,10186,4.329,10187,4.329,10188,4.329]],["description//tracks/90daysofdevops/day04",[5305,1.837,10157,4.803]],["title//tracks/90daysofdevops/day03",[75,0.952,147,1.406,10189,4.294]],["content//tracks/90daysofdevops/day03",[5,3.266,6,0.344,18,1.419,25,2.708,26,1.475,27,2.148,29,1.468,31,3.5,32,0.811,34,1.696,38,1.131,43,2.408,49,1.119,52,4.061,53,1.419,57,1.248,64,2.533,65,1.654,67,2.054,68,1.318,70,1.988,72,2.253,73,1.108,74,1.984,75,1.907,77,1.778,80,0.912,105,1.098,107,1.934,109,2.124,110,1.313,116,2.353,118,1.688,122,2.602,127,2.164,136,1.65,137,1.148,141,2.311,161,1.287,165,2.467,169,2.532,175,0.862,190,1.211,191,1.412,192,2.048,197,2.366,201,1.705,202,1.141,208,2.123,212,1.435,219,2.357,222,1.452,225,1.235,226,3.366,230,2.076,234,0.863,235,2.222,259,3.31,260,2.253,267,2.746,272,1.753,288,1.626,289,0.871,295,1.037,307,1.66,343,1.506,344,0.844,356,0.789,359,1.558,362,1.915,374,1.824,378,1.778,383,1.274,393,1.952,395,2.164,396,2.253,397,1.549,410,1.916,422,1.168,423,1.261,434,3.451,439,1.947,453,2.862,459,2.054,467,2.199,478,2.669,479,1.263,488,1.343,517,2.013,519,3.004,528,2.679,535,1.506,536,1.117,548,1.388,555,1.598,560,2.49,563,2.973,593,0.696,602,2.123,611,3.271,612,1.886,628,2.726,639,2.164,648,1.598,758,1.337,774,2.077,777,1.916,778,1.915,785,1.905,842,3.813,849,0.863,856,1.705,903,1.558,905,0.559,907,0.895,915,2.523,917,1.579,918,1.088,935,1.465,939,1.435,940,2.164,991,1.722,1017,1.705,1018,2.392,1024,1.2,1025,2.602,1049,1.83,1053,2.031,1054,1.639,1055,1.211,1071,2.973,1076,1.83,1079,2.746,1088,1.696,1101,2.353,1103,1.66,1138,1.579,1181,1.886,1190,2.602,1191,2.467,1205,2.987,1206,2.048,1207,3.851,1208,1.261,1226,3.266,1234,1.435,1237,1.705,1240,1.639,1268,3.266,1271,2.251,1273,2.253,1284,2.648,1303,2.408,1309,1.778,1424,1.503,1435,1.947,1461,3.102,1470,1.452,1485,2.164,1488,2.523,1489,1.598,1528,1.803,1530,2.408,1587,3.482,1592,2.472,1594,4.347,1597,1.916,1600,2.353,1610,1.521,1618,2.472,1619,2.708,1626,1.287,1632,1.098,1639,2.199,1646,1.947,1653,2.207,1675,2.123,1690,3.921,1701,3.143,1702,2.621,1704,1.753,1736,2.679,1750,1.916,1777,2.085,1786,1.503,1792,1.618,1854,2.532,1857,2.708,1858,1.558,1904,1.916,1912,2.964,1930,1.141,1954,1.211,1976,4.782,1979,3.413,1987,3.239,2001,3.334,2035,3.334,2054,4.054,2067,2.533,2082,2.862,2260,2.679,2266,3.451,2277,1.403,2364,1.419,2369,2.679,2646,3.102,2670,3.451,2870,2.253,2873,2.467,3159,1.503,3174,2.077,3304,2.123,3394,2.558,3397,2.467,3491,3.712,3616,2.973,3619,3.334,3696,2.097,3779,2.602,3803,1.558,3811,1.947,3879,4.902,3882,3.451,3883,2.532,3915,1.947,3959,2.679,3984,2.013,4019,2.765,4039,1.858,4201,3.323,4219,2.862,4285,3.266,4302,3.712,4335,3.257,4424,1.778,4436,3.451,4459,2.669,4465,3.257,4497,3.461,4525,3.203,4775,2.532,4802,4.695,4829,3.712,4830,2.408,4849,3.405,4889,3.102,4989,1.947,5006,4.591,5026,2.929,5028,3.031,5083,2.862,5100,1.373,5157,2.253,5177,3.851,5233,3.712,5305,2.892,5324,2.836,5524,1.753,5669,2.973,5739,2.253,5740,2.862,6095,2.532,6400,3.376,6417,2.973,6425,1.729,6427,2.085,6436,2.364,6440,2.862,6522,2.765,6590,3.102,6716,3.451,6717,3.102,6725,3.451,6742,4.4,6750,2.679,6761,2.881,6828,3.451,6892,3.451,6908,4.688,6909,4.584,6919,3.405,7005,3.102,7127,3.651,7151,3.102,7161,2.013,7217,3.747,7221,2.862,7238,2.048,7269,2.301,7327,3.712,7385,2.123,7432,2.862,7524,2.408,7526,2.862,7539,3.102,7542,3.257,7544,3.851,7749,2.973,8032,2.253,8407,3.102,8421,3.451,8436,3.451,8446,3.451,8586,3.257,8627,3.451,8713,2.765,8726,3.712,8742,2.973,8782,2.679,8887,3.257,9190,2.862,9310,3.102,10096,3.712,10167,3.712,10189,3.257,10190,4.107,10191,4.107,10192,4.107,10193,3.712,10194,4.107,10195,4.107,10196,4.107,10197,4.107,10198,4.107,10199,4.107,10200,4.107,10201,7.235,10202,4.107,10203,4.107,10204,4.107,10205,7.235,10206,4.107,10207,4.107,10208,3.451,10209,3.451,10210,5.108,10211,4.107,10212,4.107,10213,4.107]],["description//tracks/90daysofdevops/day03",[75,1.118,10189,5.043]],["title//tracks/90daysofdevops/day02",[120,1.163,905,0.651,3879,2.622,5305,1.381]],["content//tracks/90daysofdevops/day02",[1,1.565,6,0.266,25,2.295,26,0.784,27,1.821,29,2.557,31,1.78,32,1.017,34,1.926,43,3.02,52,3.14,58,1.649,65,0.897,67,1.741,68,1.303,70,2.339,72,2.825,74,1.823,75,1.903,94,3.02,96,1.186,105,1.377,107,1.377,114,0.938,118,1.431,126,2.088,127,2.714,136,1.873,139,1.241,141,1.488,147,1.338,173,1.313,176,1.045,190,3.116,191,1.908,197,2.339,201,2.139,203,1.667,204,2.806,206,1.364,217,2.218,219,1.519,226,2.168,246,1.79,259,1.908,263,2.082,267,1.955,268,2.151,288,0.905,289,1.093,302,2.366,307,2.082,343,1.277,344,0.544,351,1.403,355,2.314,356,1.253,359,1.955,362,2.349,374,1.631,377,2.029,381,2.853,383,1.598,393,2.394,396,3.922,397,1.823,422,0.99,427,3.408,464,2.557,467,1.565,472,3.236,476,2.056,479,1.161,482,3.336,489,2.442,490,1.277,555,2.004,593,0.874,601,3.095,611,1.885,612,2.366,628,2.108,636,1.76,638,2.366,718,2.617,745,1.55,756,2.339,758,1.807,774,1.76,844,2.663,857,2.403,864,2.615,905,0.973,907,1.79,909,2.173,917,1.338,918,1.47,935,1.723,938,2.195,939,1.8,1002,2.173,1018,2.715,1024,1.017,1040,3.63,1053,1.722,1057,2.442,1066,1.908,1071,3.729,1088,1.926,1101,2.951,1121,3.095,1148,3.264,1181,2.366,1191,3.095,1205,1.722,1208,1.582,1226,3.843,1234,1.8,1246,2.615,1271,2.648,1282,3.768,1287,2.403,1300,2.198,1331,1.519,1360,4.085,1363,1.931,1478,2.969,1484,3.01,1485,4.675,1489,2.004,1592,1.76,1618,2.443,1619,3.186,1627,2.615,1628,2.23,1632,2.371,1637,4.655,1647,2.569,1669,2.198,1673,4.329,1690,4.281,1702,1.582,1704,3.505,1786,2.617,1829,1.955,1869,2.242,1912,2.929,1930,1.431,1987,1.955,2039,2.615,2067,2.265,2163,2.886,2264,3.175,2662,2.11,2820,2.366,3154,1.8,3174,1.76,3273,4.192,3304,2.663,3353,2.442,3495,1.8,3591,2.951,3657,1.842,3696,1.875,3700,2.139,3722,4.085,3750,2.886,3799,2.198,3879,5.113,3923,3.469,3959,3.361,3963,3.02,3999,3.891,4032,5.945,4039,3.234,4103,2.663,4271,2.262,4463,3.175,4497,3.555,4753,3.891,4959,3.891,5008,2.23,5132,3.175,5133,3.361,5177,4.53,5237,4.329,5305,3.129,5323,2.714,5324,2.403,5327,3.175,5360,3.175,5482,3.02,5524,2.198,5641,2.029,5740,3.59,5982,2.295,6350,2.23,6361,2.366,6400,2.403,6417,3.729,6418,3.095,6425,3.01,6427,4.169,6430,2.768,6506,2.056,6516,3.264,6522,3.469,6664,5.401,6927,3.729,7217,3.175,7270,4.655,7349,3.729,7423,4.096,7466,3.095,7524,3.02,7534,3.729,7942,4.983,8032,2.825,8110,3.59,8153,4.329,8212,2.525,8213,2.525,8434,4.329,8468,4.655,8488,4.085,8661,4.329,8675,4.655,8742,3.729,8887,4.085,8949,3.729,8982,4.329,9380,3.891,9912,4.329,10120,4.329,10208,4.329,10209,4.329,10210,4.329,10214,5.151,10215,5.151,10216,5.151,10217,5.151,10218,5.151,10219,5.151,10220,5.151,10221,5.151,10222,5.151,10223,4.655]],["description//tracks/90daysofdevops/day02",[905,0.755,3879,3.043,5305,1.603]],["title//tracks/90daysofdevops/day01",[114,0.871,383,1.483,1952,2.427,5305,1.381]],["content//tracks/90daysofdevops/day01",[0,6.365,6,0.354,25,2.199,26,1.055,30,1.547,31,1.705,32,1.37,44,2.153,45,2.551,49,1.344,52,2.167,53,1.705,58,1.58,65,1.209,68,0.899,70,1.614,74,1.54,75,1.22,77,2.136,96,2.004,107,1.854,109,2.425,110,1.066,114,0.899,121,3.913,126,1.798,141,1.426,169,3.042,175,0.532,176,1.001,179,2.461,197,2.269,198,2.418,201,2.049,206,1.306,216,1.211,217,1.531,222,2.453,224,1.724,225,1.484,226,2.077,230,1.146,235,1.515,259,1.828,263,1.995,267,3.045,288,1.411,289,1.472,293,2.339,301,1.896,333,2.91,342,2.077,344,0.521,351,1.344,356,0.901,359,1.872,362,1.837,393,1.331,395,2.6,422,1.334,423,1.515,437,1.944,459,2.345,467,2.439,472,1.944,479,0.697,490,1.72,536,1.275,539,2.826,555,1.919,556,1.563,559,5.023,593,0.837,612,2.266,628,1.455,635,2.294,636,1.686,675,1.455,756,1.614,758,2.018,769,5.241,774,1.686,779,1.944,785,1.547,787,2.049,799,2.418,827,2.964,849,1.687,856,2.049,857,2.302,867,1.649,902,3.588,903,2.633,907,1.898,915,2.049,917,1.282,918,1.749,925,1.398,935,1.672,938,1.854,939,2.425,1017,2.049,1018,2.879,1024,1.585,1040,2.505,1055,1.455,1066,2.57,1067,3.042,1071,3.572,1076,2.199,1087,2.764,1088,1.627,1136,3.913,1181,2.266,1191,2.964,1198,2.418,1205,3.181,1208,1.515,1219,4.147,1224,1.919,1234,1.724,1273,2.706,1284,1.806,1293,2.764,1299,2.505,1309,3.003,1331,2.046,1363,2.601,1441,3.219,1447,1.686,1450,4.705,1482,1.872,1484,2.077,1489,1.919,1591,2.706,1600,2.826,1615,3.913,1618,1.686,1619,2.199,1626,1.547,1627,3.522,1628,2.136,1631,4.496,1632,2.145,1639,1.5,1646,2.339,1654,2.964,1656,1.724,1678,3.344,1681,4.396,1690,3.686,1700,2.964,1701,4.744,1702,1.515,1704,2.106,1711,3.656,1732,3.913,1734,2.652,1765,2.893,1774,2.764,1789,3.003,1904,3.237,1987,3.482,1988,2.551,2005,2.461,2069,2.826,2163,4.496,2277,1.686,2364,1.705,2438,4.527,2470,3.401,2839,2.764,2859,4.277,2873,2.964,3008,2.652,3150,3.806,3159,1.806,3174,2.742,3214,2.021,3221,3.322,3253,3.042,3353,2.339,3394,2.077,3426,3.345,3511,1.995,3518,2.964,3591,2.826,3598,3.572,3625,3.572,3666,2.551,3699,2.167,3799,2.106,3877,3.572,3879,2.706,3959,4.527,4032,3.572,4039,3.63,4128,3.572,4131,3.322,4269,3.439,4271,3.047,4418,3.913,4459,3.047,4475,2.764,4497,2.136,4533,2.6,4618,4.459,4805,3.219,4827,3.126,4921,3.727,4971,4.147,4989,2.339,5036,1.919,5100,2.319,5177,3.126,5304,1.969,5305,3.17,5391,3.439,5407,3.042,5562,2.302,5766,3.322,5982,2.199,6050,3.219,6195,4.672,6230,3.439,6382,3.322,6399,1.919,6407,3.322,6412,3.322,6416,3.219,6418,4.169,6422,4.459,6426,3.572,6427,2.505,6436,2.699,6442,2.893,6504,4.459,6742,3.572,6908,2.893,6909,5.517,6913,3.439,6934,6.068,7217,4.277,7221,3.439,7226,4.147,7231,3.572,7498,3.572,7524,2.893,7823,3.439,7851,2.706,7866,3.727,7884,3.913,8032,2.706,8110,3.439,8128,4.459,8133,3.913,8150,3.913,8211,5.593,8488,3.913,8669,3.913,8758,4.147,8887,5.503,8910,3.727,8949,3.572,9190,4.836,9255,4.147,9310,3.727,9579,4.459,9653,4.459,10074,4.459,10157,5.241,10193,4.459,10208,4.147,10209,4.147,10224,4.934,10225,4.934,10226,4.934,10227,4.459,10228,4.934,10229,4.934,10230,4.934,10231,4.934,10232,4.934,10233,4.934,10234,4.934,10235,4.934,10236,4.934,10237,4.934,10238,4.934]],["description//tracks/90daysofdevops/day01",[383,1.721,1952,2.816,5305,1.603]],["title//tracks/90daysofdevops/_index",[2163,3.033,4039,2.449,5305,1.565]],["content//tracks/90daysofdevops/_index",[6,0.431,16,2.199,30,1.118,75,0.627,105,0.953,114,0.65,120,0.868,144,2.239,147,0.926,161,1.118,178,2.694,257,1.638,344,0.377,408,1.544,424,1.88,441,2.4,442,2.634,448,2.402,494,3.65,663,1.748,681,2.199,701,2.199,722,1.956,733,1.88,760,2.998,840,3.1,842,3.925,880,2.327,882,4.56,887,2.486,903,1.354,905,0.486,935,0.86,946,1.88,989,1.844,993,2.024,1005,1.566,1026,3.1,1046,1.306,1141,2.402,1151,2.55,1173,2.829,1183,2.327,1184,2.591,1211,1.956,1288,1.844,1301,1.142,1309,1.544,1336,1.719,1365,1.613,1386,2.472,1401,2.694,1405,2,1478,1.481,1481,2.829,1488,3.334,1489,2.126,1502,2.199,1508,2.091,1610,1.321,1611,0.878,1618,1.219,1619,1.589,1639,1.084,1641,2.486,1665,2.694,1711,1.88,1724,1.811,1750,1.664,1789,1.544,1818,2.181,1874,2.402,1901,1.748,1938,2.998,1939,3.224,1950,2.091,1972,2.694,1974,2.327,1976,1.998,1979,1.522,1985,2.327,1996,1.844,2002,2.26,2011,2.694,2016,2.402,2032,2.998,2043,2.327,2056,2.486,2074,4.21,2098,3.1,2099,3.257,2121,2.694,2137,2.327,2138,2.829,2158,2.091,2159,2.486,2160,2.829,2161,2.998,2162,2.26,2163,1.998,2167,2.143,2204,2.143,2221,2.26,2222,2.486,2242,2.486,2271,2.694,2280,2.694,2288,2.998,2291,2.998,2296,2.694,2317,2.694,2321,2.582,2330,2.829,2344,2.829,2348,2.998,2382,3.047,2437,2.998,2457,2.327,2486,2.829,2488,2.829,2491,2.829,2524,2.998,2569,2.829,2590,2.998,2591,2.998,2595,2.829,2603,2.829,2904,1.844,2915,3.062,3076,2.486,3120,5.391,3174,1.219,3434,2.876,3550,3.224,3620,2.486,3657,2.663,3666,1.844,3700,3.518,3795,2.327,3879,1.956,3916,2.402,3993,3.463,4530,2.043,5016,4.593,5024,1.956,5026,3.589,5028,2.726,5029,3.463,5034,3.68,5036,2.126,5065,2.55,5074,2.143,5091,2.091,5100,3.041,5122,3.712,5128,1.844,5129,5.013,5146,3.463,5152,2.327,5153,2.366,5171,4.096,5178,2.091,5182,3.052,5215,2.091,5217,1.956,5227,6.661,5262,2.402,5305,2.838,5308,2.327,5335,3.369,5337,2.091,5377,1.956,5389,1.779,5419,2.829,5464,2.998,5756,2.998,5865,2.402,5988,2.694,6176,4.593,6346,2.937,6374,2.486,6375,3.809,6376,2.998,6404,4.335,6405,2.402,6414,2.402,6480,1.522,6513,2.402,6514,3.224,6515,2.998,6558,1.956,6663,3.224,6667,8.358,6668,8.988,6683,2.26,6716,2.998,6847,6.005,6897,4.128,6899,3.224,6900,1.719,6905,3.224,6947,2.998,6948,2.582,6961,2.402,6962,2.829,6964,3.216,7014,2.486,7016,3.224,7019,2.829,7041,3.224,7136,2.091,7146,3.224,7182,3.872,7184,3.224,7207,3.224,7233,3.224,7234,2.327,7248,2.143,7262,2.402,7265,4.474,7267,3.723,7269,3.062,7279,3.224,7328,3.224,7329,2.694,7334,2.043,7353,3.224,7420,3.224,7461,3.224,7516,4.708,7565,3.224,7566,4.003,7568,2.998,7569,2.998,7570,5.597,7597,2.091,7606,2.998,7619,2.694,7622,3.809,7702,3.224,7747,2.998,7821,1.88,7825,2.998,7844,2.402,7848,3.224,7850,2.582,7851,2.998,7892,2.486,7895,3.224,7934,2.998,7938,2.582,7947,3.224,7977,3.224,8021,2.998,8031,3.224,8061,3.224,8135,3.224,8175,3.956,8262,2.829,8349,2.694,8390,7.257,8809,3.224,8870,3.224,9184,2.829,9479,2.829,9591,2.582,9626,3.224,9691,2.582,9706,2.582,9950,3.224,10141,3.224,10157,2.694,10189,2.829,10239,2.998,10240,3.224,10241,3.567,10242,3.224,10243,3.567,10244,3.224,10245,3.567,10246,3.567,10247,3.567,10248,3.567,10249,3.567,10250,3.567,10251,3.224,10252,3.567,10253,3.567,10254,3.567,10255,3.567,10256,3.567,10257,3.567,10258,4.94,10259,3.567,10260,5.465,10261,8.03,10262,9.097,10263,6.005,10264,2.998,10265,3.567,10266,3.567,10267,3.567,10268,3.567,10269,3.567,10270,3.567,10271,3.567,10272,3.567,10273,3.567,10274,3.567,10275,3.567]],["description//tracks/90daysofdevops/_index",[903,1.867,1979,2.099,5305,1.421,10276,4.446]],["title//tracks/90daysofdevops/images/_index",[]],["content//tracks/90daysofdevops/images/_index",[]],["description//tracks/90daysofdevops/images/_index",[]],["title//tracks/90daysofdevops/day19/",[593,0.657,595,1.452,905,0.527,2032,3.255,6399,1.507,6558,2.125]],["content//tracks/90daysofdevops/day19/",[6,0.416,7,1.186,15,0.986,26,1.198,29,0.952,31,0.92,32,1.083,37,2.605,38,0.678,44,0.826,49,0.725,56,1.022,57,1.318,58,0.852,65,1.213,68,1.36,71,1.331,74,1.657,77,2.374,80,0.591,83,1.625,89,1.961,96,1.603,100,1.792,101,3.429,102,2.344,107,0.711,109,2.21,110,0.937,111,1.569,112,0.725,114,1.59,124,1.695,126,1.417,136,1.443,137,0.503,139,1.678,141,1.585,155,1.641,158,1.022,173,1.775,175,1.014,176,1.514,183,1.73,197,1.418,198,1.304,202,0.739,203,0.861,206,1.148,217,1.345,230,1.469,234,0.912,242,4.259,245,0.678,247,1.204,259,1.606,260,1.46,268,1.304,270,4.101,272,1.136,288,0.762,289,1.895,290,1.641,295,1.885,300,0.974,319,3.783,333,2.114,337,0.89,343,1.567,344,0.458,351,0.725,354,1.148,355,0.861,356,0.712,361,1.43,362,1.674,374,2.279,375,0.87,378,1.152,393,1.17,398,1.262,402,1.402,420,1.641,422,0.512,423,2.293,427,1.022,432,1.12,437,2.161,439,1.262,441,1.169,454,1.736,459,0.899,461,0.941,462,1.126,467,1.318,468,1.8,479,1.262,485,1.46,488,0.87,490,1.074,507,1.756,517,1.304,518,0.843,525,1.991,536,1.28,541,1.402,542,0.843,550,1.035,553,1.491,554,1.376,583,1.599,592,1.525,593,1.439,595,3.772,600,1.615,611,2.733,623,2.034,626,0.809,627,1.351,628,2.81,635,0.88,637,2.247,640,1.874,647,1.877,648,1.035,654,2.111,675,0.785,681,1.641,718,0.974,733,3.333,745,0.801,756,2.069,757,1.304,758,1.642,774,1.481,778,0.705,785,0.834,787,1.105,795,1.186,817,1.983,827,1.599,828,2.736,844,1.376,845,2.309,849,1.835,864,1.351,867,1.833,880,1.736,905,0.861,907,1.196,909,1.318,910,0.817,917,0.691,918,0.476,924,1.599,925,0.754,926,0.952,930,1.12,931,0.941,934,3.154,935,1.678,946,4.707,955,3.216,998,1.186,1002,1.318,1021,0.793,1024,1.764,1034,4.862,1036,0.88,1043,1.525,1049,1.186,1053,2.114,1054,1.062,1055,0.785,1059,1.327,1061,1.136,1066,2.032,1078,1.491,1085,1.599,1088,0.624,1089,0.974,1100,3.659,1138,0.691,1184,1.262,1211,3.009,1237,1.105,1242,2.891,1252,1.686,1266,2.056,1273,2.378,1287,2.023,1288,1.376,1300,1.85,1303,1.56,1305,1.855,1320,2.33,1327,2.829,1330,1.525,1331,1.864,1336,4.206,1341,2.9,1351,1.048,1362,1.327,1364,2.278,1374,1.222,1397,5.538,1405,2.733,1424,0.974,1437,1.43,1447,0.909,1477,1.736,1480,1.283,1483,3.333,1489,1.035,1526,1.262,1535,1.56,1536,2.409,1592,0.909,1599,2.055,1618,0.909,1619,1.186,1626,1.72,1631,1.491,1632,1.466,1639,0.809,1643,2.201,1651,1.152,1652,1.01,1654,1.599,1656,0.93,1674,2.201,1678,1.283,1681,1.686,1688,4.946,1704,1.136,1716,1.56,1741,1.152,1747,2.868,1749,2.409,1759,4.976,1763,1.792,1786,2.315,1818,1.062,1857,1.186,1889,4.259,1890,1.204,1912,1.09,1930,1.204,1954,0.785,1955,1.262,1987,1.01,1988,1.376,1996,1.376,2011,2.01,2013,1.525,2015,2.237,2029,1.792,2033,1.926,2067,1.373,2069,1.525,2070,1.792,2074,1.686,2095,1.926,2132,4.999,2142,4.351,2163,3.543,2214,1.641,2259,2.818,2277,1.481,2279,2.01,2299,1.43,2364,1.498,2419,4.486,2460,8.355,2463,6.293,2468,1.327,2629,1.327,2642,2.237,2660,1.736,2678,4.731,2693,2.409,2698,1.351,2710,3.021,2731,3.902,2765,1.351,2768,1.736,2837,2.483,2856,3.399,2910,2.405,2929,1.242,2976,0.909,3092,2.01,3147,1.46,3174,0.909,3179,1.222,3187,1.304,3304,1.376,3344,2.237,3357,2.237,3394,2.931,3412,2.237,3426,1.022,3436,3.644,3438,2.237,3442,2.237,3445,2.237,3446,3.438,3448,2.237,3492,2.111,3500,1.792,3504,3.073,3508,1.327,3516,1.641,3537,1.926,3617,2.285,3624,1.855,3657,2.935,3658,1.262,3659,4.183,3670,3.694,3750,1.491,3753,2.111,3792,1.855,3803,1.01,3884,1.855,3915,1.262,3979,2.01,4039,2.861,4312,1.792,4415,1.186,4423,1.56,4424,1.152,4449,1.43,4474,1.525,4533,1.402,4545,1.186,4639,2.237,4757,1.56,4774,2.111,4816,2.429,4937,2.01,5021,2.237,5033,1.204,5043,1.327,5060,1.686,5065,1.242,5070,3.918,5100,1.449,5153,1.152,5158,0.93,5161,2.829,5199,2.405,5263,2.237,5300,3.598,5302,1.855,5304,1.062,5305,0.769,5313,3.926,5320,1.855,5348,2.111,5389,2.162,5395,3.438,5397,1.599,5405,1.641,5562,1.242,5618,1.56,5641,1.048,5766,1.792,5775,1.43,5781,1.686,5845,1.792,5881,5.716,5892,2.01,6027,1.262,6041,2.237,6159,2.237,6350,3.014,6351,3.275,6355,1.186,6356,2.247,6380,1.304,6382,1.792,6383,1.926,6398,1.686,6399,2.134,6400,2.559,6425,1.825,6427,1.351,6465,5.712,6522,1.792,6525,1.926,6558,5.394,6562,4.61,6709,1.792,6720,2.237,6777,1.736,6781,1.491,6838,1.926,6900,1.283,6983,1.525,7034,1.599,7130,3.438,7142,2.605,7161,1.304,7196,1.855,7217,3.382,7287,2.111,7321,2.111,7365,2.919,7372,1.926,7385,1.376,7419,2.237,7482,2.237,7524,1.56,7548,1.926,7596,2.111,7618,2.111,7658,2.01,7711,2.111,7973,2.01,8094,4.958,8354,1.46,8356,2.111,8392,2.405,8465,2.405,8510,2.405,8540,5.315,8554,2.237,8634,2.237,8693,1.736,8782,1.736,8820,2.01,8843,1.855,8850,2.111,8890,3.971,9252,2.405,9266,2.405,9288,2.405,9367,2.405,9614,3.644,9663,2.405,9673,2.405,9675,2.237,9691,3.971,9704,2.237,9705,2.237,9706,3.138,9707,3.021,9708,1.855,9839,2.405,9850,2.405,9881,3.918,9883,2.405,9924,4.351,9928,2.01,9948,3.918,10005,2.405,10041,2.405,10223,2.405,10239,3.644,10244,2.405,10251,2.405,10277,2.661,10278,2.405,10279,2.661,10280,2.661,10281,4.335,10282,2.661,10283,2.405,10284,2.661,10285,2.661,10286,2.661,10287,7.466,10288,6.963,10289,2.661,10290,3.918,10291,2.661,10292,2.661,10293,2.661,10294,2.661,10295,2.661,10296,2.661,10297,2.661,10298,2.661,10299,2.661,10300,2.661,10301,2.661,10302,2.405,10303,2.661,10304,2.661,10305,4.335,10306,2.661,10307,2.661,10308,2.661,10309,4.335,10310,2.661,10311,2.661,10312,2.661,10313,6.963,10314,2.661,10315,2.661,10316,2.661,10317,4.335,10318,2.661,10319,2.661,10320,2.661,10321,2.661,10322,2.661,10323,2.661,10324,2.661,10325,2.661]],["description//tracks/90daysofdevops/day19/",[593,0.749,595,1.657,905,0.602,6399,1.719,6558,2.424]],["title//tracks/90daysofdevops/day08/",[268,0.979,355,1.054,1724,1.653,2098,1.519,2099,1.596,2258,1.544,5065,1.519,5305,0.941]],["content//tracks/90daysofdevops/day08/",[6,0.297,18,1.693,26,1.392,31,1.693,34,1.149,37,2.943,38,1.079,42,2.687,44,1.52,64,2.187,65,1.203,68,1.456,70,1.602,74,1.927,75,1.405,95,3.546,96,1.128,101,2.25,102,1.26,105,1.845,107,1.309,109,1.712,111,2.483,112,1.881,113,2.333,118,1.361,124,1.426,126,1.944,136,1.575,139,1.181,147,2.076,164,2.562,175,0.744,179,2.443,183,2.755,197,1.602,217,2.142,219,1.444,225,1.474,229,2.007,230,1.138,260,2.687,263,1.98,267,1.859,268,1.474,277,4.427,278,2.533,288,0.861,289,2.07,295,2.192,343,2.268,351,1.881,353,3.02,355,1.585,356,1.127,358,3.57,362,1.297,374,2.087,376,2.988,377,2.72,378,2.988,383,1.52,402,2.582,422,0.942,432,3.996,459,1.655,479,1.408,490,1.711,507,1.568,519,2.034,536,0.901,550,1.906,592,2.806,593,0.831,600,1.512,604,2.633,612,3.672,636,1.674,639,2.582,640,3.244,648,1.906,718,1.793,730,3.638,758,1.078,774,1.674,779,2.72,843,3.604,849,1.681,856,2.034,867,1.637,925,2.459,926,1.752,931,3.448,935,1.181,940,2.582,952,2.286,991,2.592,993,2.557,1002,2.43,1021,1.459,1024,1.967,1055,1.444,1088,1.149,1208,1.504,1224,1.906,1249,3.104,1266,2.588,1296,3.335,1300,2.091,1301,1.568,1309,2.12,1315,1.955,1331,2.035,1336,2.361,1351,1.93,1364,2.866,1365,2.216,1374,3.171,1376,3.546,1377,3.955,1430,2.322,1447,1.674,1474,2.745,1487,2.443,1508,2.872,1600,2.806,1618,1.674,1619,2.183,1626,1.536,1627,2.487,1639,2.098,1651,2.12,1652,3.034,1675,2.533,1680,1.859,1711,2.582,1769,4.133,1786,2.926,1890,2.216,1901,2.401,1903,3.414,1912,2.007,1917,2.872,1920,1.693,1930,1.918,1943,3.104,2001,2.687,2004,2.062,2013,2.806,2067,1.552,2075,3.196,2098,4.429,2099,3.918,2167,2.943,2204,2.943,2258,2.322,2259,4.078,2364,1.693,2382,2.62,2647,2.322,2651,1.552,2662,2.007,2698,2.487,2838,4.374,2839,2.745,2949,2.091,2976,1.674,3175,2.872,3179,2.25,3311,2.872,3312,3.02,3394,2.906,3495,1.712,3585,3.7,3587,3.196,3656,3.546,3661,3.384,3670,3.299,3696,1.81,3708,4.649,3916,3.299,3946,3.02,4341,4.117,4364,3.299,4525,2.582,4545,3.076,4782,2.872,4816,2.745,5065,5.143,5153,3.46,5156,3.299,5157,2.687,5158,1.712,5182,2.25,5241,3.02,5270,3.299,5299,2.745,5305,1.416,5350,3.546,5386,3.414,5482,2.872,5775,2.633,5984,3.414,6346,2.633,6350,2.12,6362,2.745,6426,3.546,6479,4.117,6480,2.091,6482,3.7,6506,1.955,6511,3.546,6522,4.649,6754,3.7,6894,3.885,6898,1.712,6900,2.361,6984,4.117,7307,3.414,7451,4.687,7465,3.885,7478,3.196,7598,4.427,7727,3.414,7906,3.546,8212,2.401,8213,2.401,8248,3.885,8254,4.811,8257,4.117,8354,5.019,8545,5.802,8654,3.7,8734,3.414,8740,3.196,8843,3.414,8910,3.7,9323,4.427,9377,3.546,9741,4.427,9910,4.117,9912,4.117,9940,7.69,10032,3.414,10033,3.414,10034,3.414,10035,3.414,10036,3.414,10037,3.414,10038,3.414,10039,3.414,10040,3.414,10091,4.427,10326,4.898,10327,4.898,10328,4.898,10329,4.898,10330,4.898,10331,4.898,10332,4.898]],["description//tracks/90daysofdevops/day08/",[268,1.105,355,1.188,2098,1.713,2099,1.8,2258,1.741,5065,1.713,5305,1.061]],["title//tracks/90daysofdevops/day05/",[6,0.256,16,1.226,30,0.623,842,1.048,2382,0.754,4530,1.139,5026,0.958,5028,0.991,5182,0.913,7844,1.339]],["content//tracks/90daysofdevops/day05/",[0,5.307,5,2.52,6,0.398,16,4.811,25,2.089,26,1.295,29,2.393,31,2.696,32,1.321,33,2.52,34,1.569,38,0.733,45,2.424,49,1.277,52,2.939,65,1.746,68,1.219,71,1.44,75,1.496,77,2.029,107,1.789,118,1.302,124,0.968,126,1.05,136,2.135,137,1.264,139,1.13,156,5.055,179,2.338,182,4.24,190,1.973,191,1.089,201,3.24,202,1.859,206,1.241,208,3.46,222,1.657,226,1.973,230,1.977,232,3.059,234,0.986,245,1.195,259,1.737,261,2.571,262,5.702,267,1.779,285,3.267,288,1.496,295,1.184,300,1.716,301,1.801,340,2.52,342,1.973,343,1.162,344,0.495,351,1.823,354,1.772,356,1.215,372,1.973,374,1.069,375,1.533,393,1.806,404,3.157,422,1.286,461,3.008,476,2.67,479,1.203,482,2.187,488,1.533,535,1.162,536,1.654,539,2.686,540,2.817,553,2.627,606,1.696,626,1.425,640,1.602,645,2.52,655,2.339,675,1.973,714,2.471,756,1.533,758,1.472,774,1.602,778,1.772,779,1.847,799,2.298,842,2.471,849,1.789,856,1.947,859,2.856,909,1.425,910,2.055,915,1.947,925,1.896,926,1.676,935,1.613,991,1.328,1002,2.844,1024,1.321,1053,1.567,1055,1.973,1066,3.152,1079,1.779,1087,2.627,1088,2.258,1148,2.971,1198,2.298,1201,4.237,1205,2.237,1208,1.44,1214,3.94,1226,3.596,1242,3.526,1255,1.758,1266,1.758,1269,1.779,1311,2.686,1376,3.394,1431,3.267,1439,4.02,1488,1.947,1489,1.824,1553,5.307,1585,2.029,1591,3.671,1592,1.602,1618,1.602,1628,3.378,1630,2.38,1632,1.253,1650,2.749,1655,3.541,1661,2.666,1677,2.38,1678,2.259,1690,4.524,1702,2.958,1704,2.001,1722,3.267,1736,3.059,1789,2.029,1904,2.187,1913,3.718,1930,1.302,1976,5.243,1979,2.856,1984,3.397,1987,2.539,1990,3.718,2001,2.572,2044,3.157,2052,2.223,2054,2.627,2125,2.749,2163,2.627,2170,2.749,2231,4.237,2245,3.833,2275,5.439,2382,2.961,2492,3.94,2570,2.38,2859,2.89,2949,2.001,3065,2.817,3067,3.059,3172,2.259,3174,2.908,3315,3.718,3354,3.718,3394,2.817,3432,2.817,3621,2.686,3636,3.059,3665,4.366,3696,1.755,3714,3.94,3779,4.944,3879,3.671,3964,3.059,3980,3.671,4034,2.971,4039,2.121,4128,3.394,4201,2.153,4248,3.394,4274,2.749,4423,2.749,4475,2.627,4497,2.897,4525,2.471,4530,2.686,4827,2.971,4849,3.749,5026,3.225,5028,3.892,5065,3.122,5066,3.94,5067,3.94,5083,4.664,5182,3.584,5214,3.718,5264,3.94,5299,2.627,5305,3.003,5373,2.52,5542,2.38,5562,2.187,5573,2.52,5740,3.267,6047,3.718,6070,3.394,6095,2.89,6399,2.603,6442,2.749,6481,3.718,6506,1.871,6682,3.94,6699,3.94,6703,3.267,6710,3.833,6718,3.267,6736,2.89,6775,3.157,6790,4.844,6811,4.237,6908,5.877,6909,4.944,6934,4.664,7127,2.817,7171,3.541,7183,3.267,7217,2.89,7221,3.267,7264,4.237,7265,2.817,7269,3.749,7330,5.055,7334,2.686,7338,3.718,7422,3.394,7423,2.686,7463,3.157,7612,4.844,7829,3.718,7844,4.506,7884,3.718,8131,3.718,8175,3.394,8212,2.298,8213,2.298,8543,3.541,8554,3.94,8599,3.541,8751,3.94,9257,3.94,9371,4.237,10120,3.94,10182,4.237,10278,4.237,10333,4.688,10334,4.688,10335,4.688,10336,4.688,10337,4.688,10338,4.688,10339,4.688,10340,4.688,10341,4.688,10342,4.688,10343,4.688,10344,4.688,10345,4.688,10346,4.688,10347,4.688,10348,4.688,10349,4.688,10350,4.688,10351,4.688,10352,4.688,10353,4.688,10354,4.688,10355,4.688,10356,4.688,10357,6.691,10358,4.688,10359,4.688,10360,4.688,10361,4.688,10362,4.688,10363,4.688,10364,4.688]],["description//tracks/90daysofdevops/day05/",[6,0.268,16,1.351,842,1.155,2382,0.831,4530,1.255,5026,1.056,5028,1.093,5182,1.006,7844,1.475]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README",[103,5.45,3703,6.378,5062,7.99,5083,6.161,5093,5.183,5464,4.849,10365,7.011,10366,7.43]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README",[270,3.835,408,3.944,442,3.598,494,5.146,701,4.602,993,2.765,1005,3.278,1336,3.598,1397,4.871,1502,4.602,1759,4.377,1811,4.277,1814,5.404,1855,4.377,2029,5.027,2260,4.871,2677,5.639,2693,4.496,2789,3.659,2904,3.86,3434,3.944,3500,5.027,4530,4.277,5020,5.203,5030,4.377,5081,4.377,5128,3.86,5162,4.871,5164,4.871,5173,4.711,5195,6.622,5464,4.095,5503,5.944,6188,5.027,6480,4.197,6802,4.095,6964,3.858,6990,8.234,7017,5.027,7136,5.765,7357,5.404,7664,5.773,8551,7.317,8747,4.485,8867,5.203,10367,11.287,10368,6.747,10369,6.747,10370,7.465,10371,7.465,10372,7.465,10373,7.465,10374,5.203,10375,5.404,10376,9.11,10377,7.465,10378,5.639,10379,7.465,10380,6.747,10381,7.465,10382,6.274,10383,7.465]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README",[6,0.404,35,2.833,103,4.941,144,3.283,270,3.373,441,3.519,442,3.862,494,4.66,880,6.614,1151,4.436,1336,3.862,1397,5.229,1759,4.699,1895,7.243,2587,5.01,2693,4.175,2727,4.307,2789,3.928,3703,6.024,5030,4.699,5173,4.144,5503,5.229,6453,4.49,6480,3.42,6802,4.396,6964,3.784,7017,6.402,7136,5.574,7265,4.815,8494,9.476,8551,7.066,8867,6.627,9645,8.593,10109,6.356,10374,5.585,10375,5.801,10384,8.014,10385,9.507,10386,8.014]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README",[270,4.142,389,4.61,408,3.237,442,3.604,494,5.148,701,4.61,842,3.94,882,3.866,993,2.77,1151,4.591,1336,3.604,1397,4.879,1502,4.61,1759,4.384,1814,5.413,1855,4.384,2029,5.035,2260,4.879,2677,5.648,2693,4.499,2789,3.665,2904,3.866,3143,3.796,3434,3.947,3500,5.035,5030,4.384,5081,4.384,5162,4.879,5164,4.879,5173,4.715,5195,6.626,5464,4.101,5503,4.879,6188,5.035,6453,5.11,6480,3.892,6625,5.413,6802,4.101,6964,3.859,7017,5.035,7136,5.769,7357,5.413,7358,5.93,7664,5.778,8551,7.321,8747,4.492,8867,5.211,10368,6.758,10369,6.758,10374,5.211,10375,5.413,10378,5.648,10380,6.758,10382,6.284,10387,11.288,10388,7.477,10389,9.119,10390,7.477,10391,7.477,10392,7.477,10393,7.477]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README",[6,0.341,35,3.079,103,5.658,120,1.201,144,3.9,146,4.964,243,3.731,254,3.326,269,3.129,270,4.201,274,5.507,280,5.836,319,2.051,408,3.006,424,3.659,426,2.709,441,4.031,442,2.38,446,3.917,494,5.095,575,2.923,582,2.967,698,5.026,701,4.95,702,2.269,722,2.709,733,3.659,840,2.304,841,3.731,946,3.659,1005,3.825,1046,3.188,1184,2.342,1336,2.38,1354,3.222,1397,3.222,1502,3.045,1508,2.896,1552,3.731,1759,2.896,1763,3.326,1789,2.138,1814,5.813,1855,2.896,2029,6.181,2074,5.088,2131,5.824,2132,2.829,2247,4.53,2251,2.709,2468,2.463,2494,4.464,2677,3.731,2693,3.825,2727,2.654,2731,5.593,2789,2.421,2823,4.151,2839,2.767,2904,4.504,2975,2.709,3434,3.476,3437,3.442,3497,3.917,3500,5.866,3502,3.575,3670,4.676,3703,4.399,3795,5.239,3973,4.151,5023,4.151,5029,5.816,5030,2.896,5031,3.326,5045,4.151,5055,4.464,5069,4.464,5074,5.874,5081,5.107,5093,4.708,5122,3.38,5126,5.507,5157,2.709,5162,4.53,5164,5.988,5166,5.836,5173,3.59,5188,5.836,5195,5.407,5214,3.917,5216,4.464,5393,3.575,5464,4.778,5554,7.778,6188,3.326,6312,3.731,6391,3.442,6480,2.963,6481,3.917,6802,2.709,6949,5.596,6964,3.528,7009,3.222,7106,3.045,7136,5.581,7139,4.464,7357,6.306,7664,4.399,7927,7.462,8231,3.731,8426,4.464,8551,6.397,8619,4.464,8747,4.172,8867,3.442,9594,4.464,9787,6.748,9949,4.464,9972,4.151,10109,3.917,10374,3.442,10375,3.575,10378,5.245,10394,4.939,10395,4.939,10396,4.939,10397,4.939,10398,10.145,10399,6.275,10400,4.939,10401,4.939,10402,6.275,10403,8.295,10404,8.029,10405,8.029,10406,4.939,10407,4.939,10408,6.943,10409,6.943,10410,6.943,10411,4.939,10412,6.943,10413,8.711,10414,4.939,10415,6.943,10416,4.939,10417,4.939,10418,4.939,10419,4.939,10420,6.943,10421,6.943,10422,6.943,10423,4.939,10424,4.939,10425,4.939,10426,6.943,10427,4.939,10428,4.939,10429,4.939,10430,6.943,10431,6.943,10432,4.939,10433,4.939,10434,8.029,10435,4.939,10436,4.939,10437,4.464,10438,4.939,10439,4.939,10440,9.777,10441,9.178,10442,4.939,10443,4.939,10444,4.939,10445,4.939,10446,4.939,10447,4.939,10448,4.939,10449,4.939,10450,4.939,10451,4.939,10452,4.939,10453,4.939,10454,4.939]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README",[144,3.367,270,4.062,442,3.962,448,5.535,494,4.029,734,6.519,1336,3.962,1397,5.363,1759,4.819,2260,5.363,2693,4.238,2768,5.363,2789,4.029,2839,4.605,2904,4.25,3703,5.208,5030,4.819,5081,4.819,5122,3.46,5173,4.25,5174,6.519,5195,5.535,6480,4.119,6802,4.509,6964,3.622,7136,5.658,8551,7.141,8867,5.729,10109,6.519,10302,7.429,10374,5.729,10375,5.95,10455,11.021,10456,8.219,10457,8.219,10458,7.429]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README",[]],["title//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README",[]],["content//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README",[6,0.379,146,4.329,251,3.291,269,4.254,270,2.826,313,1.999,319,2.788,408,4.739,417,5.124,441,4.116,442,4.11,448,4.521,455,6.068,456,4.521,494,4.594,575,2.826,734,5.325,840,3.133,882,3.472,888,7.368,1005,2.948,1046,2.457,1336,3.236,1341,2.294,1386,3.037,1397,4.381,1405,2.457,1561,4.381,1611,1.079,1759,3.936,1762,6.174,1901,3.291,1920,3.407,2029,4.521,2454,4.679,2460,5.325,2468,3.348,2677,5.071,2693,3.745,2789,3.291,2822,5.643,3012,7.079,3020,6.068,3143,3.408,3502,4.86,3703,4.254,3993,4.254,5030,3.936,5061,5.643,5081,3.936,5132,4.139,5162,4.381,5164,4.381,5173,4.41,5202,6.068,5215,3.936,5287,4.381,5384,5.643,5393,4.86,5464,3.683,6384,6.764,6392,6.068,6480,4,6802,3.683,6803,6.174,6949,6.872,6950,4.86,6964,3.598,6989,6.068,7036,10.185,7136,5,7281,7.434,7358,8.25,7887,4.139,8551,6.532,8747,4.034,8867,4.679,8868,6.068,8877,6.068,9325,6.068,9972,5.643,10258,6.068,10264,5.643,10374,4.679,10375,4.86,10382,5.643,10459,6.714,10460,6.714,10461,6.714,10462,6.068,10463,6.714,10464,8.528,10465,6.714,10466,8.528,10467,6.714,10468,6.714,10469,6.714,10470,6.714,10471,6.714,10472,6.714,10473,6.714,10474,6.714,10475,6.068,10476,6.714,10477,6.714,10478,6.714]],["description//tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README",[]],["title//search/_index",[5554,4.35,8747,3.75]],["content//search/_index",[]],["description//search/_index",[]],["title//posts/ruGPT-3-notes",[147,1.621,10479,6.241]],["content//posts/ruGPT-3-notes",[147,2.309,1647,4.433,2283,4.596,6449,4.513,8273,8.034,10480,8.034]],["description//posts/ruGPT-3-notes",[147,1.652,10480,5.747]],["title//posts/math-support",[2058,4.95,7887,3.848]],["content//posts/math-support",[6,0.406,144,3.362,650,5.526,663,4.022,829,6.198,1749,3.603,1843,4.234,3114,6.198,5814,6.508,6148,5.94,7359,6.508,7887,5.059,9697,6.896,9928,6.198,10481,8.205,10482,8.714,10483,8.205,10484,10.238,10485,8.205,10486,8.205,10487,8.205,10488,8.205,10489,8.205,10490,10.565,10491,8.205,10492,10.238,10493,9.641,10494,9.641,10495,8.205,10496,8.205,10497,7.416,10498,8.205,10499,8.205,10500,8.205,10501,8.205]],["description//posts/math-support",[]],["title//posts/featured-image",[1026,2.912,8827,4.715]],["content//posts/featured-image",[378,3.984,1834,5.124,4639,8.17,6134,7.521,6589,8.319,7472,7.521,10502,6.461,10503,9.204,10504,7.521,10505,9.204,10506,9.204,10507,9.204,10508,6.461,10509,6.461,10510,8.321,10511,10.298,10512,10.059,10513,9.204,10514,9.204,10515,9.204,10516,9.204,10517,9.204,10518,10.059,10519,8.321,10520,9.72,10521,8.321,10522,6.461,10523,8.321,10524,8.321,10525,6.461,10526,6.461,10527,8.321,10528,6.461,10529,6.461,10530,8.321,10531,6.461,10532,9.204,10533,8.319,10534,8.321,10535,6.461,10536,6.461,10537,8.321,10538,5.839,10539,6.461,10540,9.204,10541,8.321,10542,8.321,10543,8.321,10544,6.461,10545,8.321,10546,6.461,10547,8.321,10548,8.321,10549,8.321,10550,9.204,10551,8.319,10552,8.319,10553,6.461,10554,8.321,10555,8.321,10556,6.461,10557,6.461,10558,6.461,10559,6.461,10560,8.321,10561,8.321,10562,10.059,10563,6.461,10564,9.204,10565,6.461,10566,8.321,10567,8.321,10568,9.204,10569,8.321,10570,8.321,10571,8.321,10572,6.461,10573,6.461,10574,8.321,10575,7.521,10576,6.461,10577,6.461,10578,6.461,10579,6.461,10580,6.461,10581,6.461,10582,6.461,10583,6.461,10584,8.321,10585,6.461,10586,6.461,10587,8.321,10588,6.461,10589,8.321,10590,8.321,10591,6.461,10592,6.461,10593,6.461,10594,6.461,10595,6.461,10596,8.321,10597,6.461,10598,8.321,10599,6.461,10600,8.321,10601,6.461,10602,6.461,10603,6.461,10604,5.839,10605,6.461,10606,6.461]],["description//posts/featured-image",[1026,2.588,3009,3.42,8827,4.19]],["title//posts/emoji-support",[7887,3.848,10607,5.246]],["content//posts/emoji-support",[6,0.418,103,5.984,144,3.666,270,3.052,280,8.519,281,4.883,313,2.159,319,3.011,441,3.184,492,3.75,494,3.554,663,3.554,814,5.054,829,5.477,841,5.477,932,3.383,1047,5.249,1367,5.751,1555,4.357,1604,8.088,1840,4.154,1862,6.554,1900,6.094,2030,5.477,2382,3.396,3114,5.477,3146,4.595,3376,6.479,3502,5.249,3737,5.751,3855,8.088,3974,6.094,5195,4.883,5335,4.47,5348,5.751,5407,4.47,5464,3.978,6391,5.054,7011,4.731,7012,4.357,7359,5.751,7385,3.75,9496,6.554,10365,5.751,10366,6.094,10497,6.554,10607,9.437,10608,5.517,10609,8.949,10610,8.949,10611,7.251,10612,7.251,10613,7.251,10614,8.949,10615,8.949,10616,7.251,10617,7.251,10618,7.251,10619,7.251,10620,7.251,10621,7.251,10622,10.412,10623,8.949,10624,10.136,10625,8.949,10626,8.949,10627,8.949,10628,7.251,10629,7.251,10630,6.094,10631,7.251,10632,7.251,10633,6.554,10634,7.251]],["description//posts/emoji-support",[5043,2.453,10374,3.428,10607,4.134,10608,3.032]],["title//posts/diagram-support",[5196,5.246,7887,3.848]],["content//posts/diagram-support",[6,0.407,17,5.523,144,3.256,270,3.345,319,3.3,750,4.188,800,3.651,1552,6.003,1557,4.66,1959,6.679,2382,3.016,2454,6.594,3114,7.146,3795,5.185,5030,4.66,5133,6.173,5159,6.303,5196,8.49,5308,5.185,5940,7.504,6432,5.352,7887,4.9,9210,7.183,9697,6.679,10378,7.146,10635,10.456,10636,7.947,10637,7.947,10638,7.947,10639,7.947,10640,7.947,10641,7.947,10642,7.947,10643,9.46,10644,9.46,10645,7.947,10646,9.46,10647,9.46,10648,7.947,10649,7.947,10650,9.46,10651,7.947,10652,7.947,10653,7.947,10654,7.947]],["description//posts/diagram-support",[]],["title//posts/_index",[3885,4.32]],["content//posts/_index",[1,2.727]],["description//posts/_index",[]],["title//posts/vps-docker-subdomains-setup/project/projects/3/",[]],["content//posts/vps-docker-subdomains-setup/project/projects/3/",[1561,6.616]],["description//posts/vps-docker-subdomains-setup/project/projects/3/",[]],["title//posts/trading-indicators/sma",[139,1.152,3343,3.029,4714,3.791,10655,4.018]],["content//posts/trading-indicators/sma",[6,0.343,38,1.189,53,2.629,107,2.463,139,1.834,175,0.82,182,4.82,202,2.56,221,1.957,288,1.62,482,3.549,648,2.959,711,5.746,827,4.571,852,3.494,886,4.358,1440,4.571,1641,7.182,2171,6.886,2333,4.848,2699,3.729,2841,6.034,2929,4.626,3343,5.839,3518,5.537,3619,4.173,4039,4.169,4154,6.034,4330,5.507,4465,6.034,4714,6.034,6158,6.394,6216,7.745,6241,5.746,6249,6.876,6428,4.765,7943,8.329,8420,6.876,10227,9.313,10655,9.269,10656,7.607,10657,6.876,10658,10.304,10659,7.607,10660,9.215,10661,7.607,10662,9.215,10663,7.607,10664,7.607,10665,7.607,10666,7.607,10667,9.215,10668,7.607,10669,7.607,10670,7.607,10671,7.607,10672,7.607]],["description//posts/trading-indicators/sma",[10655,6.26]],["title//posts/python-snippets/",[1611,1.003,10673,5.641]],["content//posts/python-snippets/",[1,2.549,2,0.977,6,0.428,14,0.66,15,1.368,17,4.279,18,0.418,26,0.562,27,0.775,29,0.433,30,3.073,32,0.845,34,1.991,38,1.158,44,0.933,47,0.815,49,0.598,50,3.493,53,0.418,57,0.914,58,0.963,63,4.823,65,0.382,67,0.409,68,0.872,73,0.592,74,0.668,80,0.269,83,0.822,88,1.017,90,2.881,96,0.985,100,0.815,102,1.858,105,0.586,107,0.323,109,0.423,110,0.924,111,0.346,112,2.432,113,1.617,114,1.964,120,2.58,124,0.988,126,0.958,136,0.843,137,0.697,139,0.292,141,0.35,147,2.706,149,0.583,158,1.644,161,3.188,165,0.727,167,2.219,172,0.977,173,0.559,175,0.461,176,0.445,183,1.2,184,2.177,197,0.984,202,0.609,203,0.71,205,1.65,206,1.133,216,0.739,219,1.261,220,0.746,221,0.564,224,0.423,225,0.364,234,0.254,240,3.034,241,3.139,245,0.559,246,0.656,261,0.843,264,1.051,270,0.509,286,0.876,289,1.191,300,0.443,301,0.465,302,3.004,307,0.887,311,4.7,313,2.497,319,3.989,332,1.113,333,0.405,343,0.3,344,0.552,351,0.33,352,0.973,354,0.32,356,0.679,359,0.832,362,0.32,369,0.556,372,0.509,376,2.43,377,2.211,379,0.876,381,0.483,383,0.68,401,0.746,414,0.626,422,1.079,437,0.477,441,0.963,459,0.409,461,0.775,462,1.547,464,0.433,465,4.791,467,1.123,468,0.911,470,1.028,472,0.864,477,3.32,478,1.321,479,0.522,488,0.984,490,1.621,517,0.593,518,0.383,539,0.693,540,0.509,548,1.016,555,0.471,556,3.015,559,0.876,562,0.746,569,0.876,583,3.139,590,0.876,593,0.811,595,0.822,597,0.767,598,0.477,600,0.643,606,2.456,608,1.529,623,2.255,627,1.113,628,0.357,635,1.969,636,0.414,637,0.496,640,1.028,645,0.65,655,1.826,663,1.474,680,0.914,702,1.965,714,0.638,716,1.403,741,0.477,742,0.32,745,2.11,755,1.646,756,0.717,771,0.693,778,0.978,781,0.556,785,1.158,793,1.805,796,2.096,800,1.965,812,1.657,817,1.341,819,0.638,823,0.614,828,0.604,844,0.626,848,1.134,851,2.177,852,2.198,855,0.767,859,0.517,887,0.843,895,1.017,907,0.264,909,0.368,915,2.331,917,0.57,926,0.433,931,1.063,935,0.529,938,0.323,939,0.423,978,0.914,1008,0.767,1010,0.79,1017,0.503,1018,0.4,1024,1.696,1038,0.71,1053,0.733,1054,0.875,1055,0.887,1061,0.936,1068,0.626,1078,2.069,1079,1.141,1085,1.318,1087,1.685,1089,1.352,1100,3.795,1103,1.216,1120,0.96,1138,0.314,1143,0.489,1181,0.556,1187,1.04,1198,2.345,1234,1.495,1237,2.819,1243,1.352,1255,1.794,1273,1.203,1280,1.685,1283,3.08,1298,2.219,1300,0.517,1301,2.005,1302,0.583,1320,1.617,1327,3.887,1330,0.693,1335,1.529,1341,2.468,1364,1.249,1377,0.693,1397,0.79,1405,0.443,1437,0.65,1440,1.318,1447,2.035,1456,0.914,1478,0.503,1482,1.402,1484,0.923,1497,1.477,1524,0.71,1541,1.477,1555,0.727,1561,0.79,1585,0.949,1586,1.529,1592,0.414,1598,0.626,1601,0.664,1611,1.38,1612,1.588,1628,0.524,1639,0.368,1643,3.18,1648,0.626,1652,0.459,1656,0.767,1661,1.028,1664,2.674,1666,0.914,1669,0.517,1672,0.678,1675,1.555,1677,0.614,1680,0.459,1692,1.017,1695,0.876,1696,1.39,1711,1.156,1720,0.746,1724,2.172,1741,0.524,1742,0.565,1747,2.617,1749,4.272,1750,3.369,1751,2.614,1753,2.929,1761,1.094,1762,3.097,1769,1.91,1770,2.34,1773,1.982,1782,1.256,1789,3.675,1790,4.032,1791,0.593,1792,0.477,1793,0.815,1796,2.711,1802,1.39,1803,0.65,1805,2.79,1818,2.61,1827,3.412,1829,0.832,1830,3.338,1831,1.982,1833,0.876,1835,2.177,1842,1.179,1843,0.531,1844,0.767,1849,0.79,1853,2.792,1857,1.646,1860,0.678,1864,3.746,1868,2.574,1869,2.323,1875,0.914,1881,2.386,1883,0.96,1884,0.815,1887,3.724,1888,3.394,1889,1.477,1890,0.547,1901,1.075,1908,0.767,1914,0.79,1917,1.286,1920,2.676,1932,1.854,1946,0.876,1949,1.094,1950,1.763,1951,1.657,1954,0.357,1956,1.685,1958,1.777,1961,1.81,1964,2.41,1974,1.962,1975,0.876,1979,0.936,1981,0.767,1983,0.746,1998,1.017,2002,0.767,2003,2.177,2006,2.561,2009,1.284,2026,2.386,2027,1.256,2028,3.867,2043,2.41,2044,0.815,2045,1.203,2046,0.483,2050,0.96,2052,1.426,2057,0.693,2058,3.394,2077,2.718,2078,0.843,2087,1.017,2096,1.229,2103,0.79,2121,1.657,2129,0.843,2131,1.229,2132,2.116,2136,1.017,2143,0.876,2145,0.746,2146,4.298,2150,1.74,2154,2.674,2158,2.165,2169,1.657,2174,1.529,2182,0.96,2189,1.318,2204,1.318,2205,1.094,2208,1.017,2211,1.286,2214,1.352,2218,0.71,2221,0.767,2222,1.529,2236,3.104,2240,0.746,2243,3.867,2244,1.286,2264,2.277,2270,0.746,2271,1.657,2282,4.324,2284,0.727,2297,0.914,2300,1.982,2317,0.914,2324,0.664,2327,0.876,2331,3.463,2332,5.187,2333,1.697,2334,0.815,2345,0.79,2363,4.021,2366,2.79,2367,4.24,2370,4.24,2373,1.657,2419,0.727,2440,1.843,2448,3.394,2449,1.017,2457,1.431,2467,0.583,2486,1.74,2496,0.876,2497,3.867,2525,1.657,2526,1.982,2528,1.094,2542,1.017,2555,0.767,2564,1.936,2573,3.614,2585,0.876,2586,2.177,2594,1.094,2600,0.767,2601,1.017,2629,2.799,2643,1.671,2645,1.763,2688,1.017,2693,1.879,2697,1.39,2699,0.593,2765,1.875,2844,1.017,2856,1.179,2870,1.65,2872,0.815,2880,0.96,3155,1.982,3156,0.843,3214,1.753,3242,2.571,3243,1.094,3246,1.094,3252,1.094,3258,1.094,3273,0.71,3284,1.094,3289,1.094,3299,2.386,3306,0.767,3314,1.843,3348,1.74,3350,1.094,3361,0.876,3362,1.477,3363,1.017,3364,1.843,3365,2.272,3389,1.017,3391,0.876,3402,4.717,3409,1.017,3428,0.96,3450,1.017,3499,0.96,3504,1.229,3505,1.017,3513,5.265,3533,1.982,3543,1.094,3544,0.96,3553,0.96,3555,1.094,3563,0.96,3567,2.718,3588,2.272,3589,0.96,3590,1.017,3591,0.693,3601,1.094,3615,1.094,3617,0.638,3624,0.843,3630,0.96,3631,1.094,3637,1.094,3642,0.678,3665,1.431,3667,1.094,3668,1.094,3686,1.982,3691,1.094,3725,1.094,3753,1.74,3765,1.982,3769,0.843,3779,0.767,3783,1.094,3791,1.094,3792,1.529,3795,4.087,3808,1.094,3829,1.094,3830,2.528,3846,3.338,3875,1.094,4317,1.017,4730,1.982,4798,2.025,4989,0.574,5020,0.843,5024,0.664,5028,1.094,5076,1.094,5367,1.017,5430,1.017,5454,0.843,5503,0.79,5548,0.727,5597,1.529,5600,1.982,5616,1.094,5671,0.876,5704,1.017,5710,1.982,5775,0.65,5845,0.815,5919,1.588,6005,1.017,6021,0.96,6022,1.094,6104,1.017,6216,1.017,6425,0.509,6667,1.017,6741,0.843,6791,1.843,6832,0.96,6843,0.96,7051,1.529,7127,0.727,7212,1.094,7238,0.604,7282,4.722,7369,1.094,7466,0.727,7481,1.094,7755,5.073,7811,1.74,7889,1.094,7950,0.96,8059,1.094,8138,1.017,8149,6.136,8249,0.876,8357,0.843,8447,0.914,8456,1.094,8508,0.96,8595,1.094,8616,1.982,8677,1.843,8747,0.727,8820,0.914,8854,1.094,8875,1.094,8881,0.96,9017,1.982,9093,1.094,9284,2.718,9299,1.094,9310,2.272,9333,1.094,9377,0.876,9497,0.96,9543,1.094,9674,1.094,9724,1.094,9769,1.094,9828,5.911,10263,1.982,10657,1.094,10674,1.21,10675,1.21,10676,1.21,10677,1.21,10678,2.193,10679,2.193,10680,2.193,10681,2.193,10682,3.693,10683,3.693,10684,1.21,10685,1.21,10686,2.193,10687,1.21,10688,2.193,10689,1.094,10690,1.21,10691,1.21,10692,1.21,10693,1.21,10694,1.21,10695,1.21,10696,1.21,10697,3.693,10698,1.21,10699,1.21,10700,1.21,10701,1.21,10702,1.21,10703,1.21,10704,1.21,10705,1.21,10706,1.21,10707,1.21,10708,1.21,10709,1.21,10710,1.21,10711,1.21,10712,1.21,10713,1.21,10714,1.21,10715,1.21,10716,2.193,10717,1.21,10718,1.21,10719,1.21,10720,1.21,10721,1.21,10722,1.21,10723,1.21,10724,1.21,10725,1.21,10726,2.193,10727,1.21,10728,1.21,10729,1.21,10730,1.21,10731,1.094,10732,1.21,10733,2.193,10734,1.21,10735,1.21,10736,1.21,10737,1.21,10738,1.21,10739,2.193,10740,1.21,10741,1.21,10742,1.21,10743,4.784,10744,1.21,10745,1.21,10746,1.21,10747,3.008,10748,1.21,10749,1.21,10750,1.21,10751,2.193,10752,1.21,10753,1.21,10754,1.21,10755,1.21,10756,1.21,10757,2.193,10758,1.21,10759,1.21,10760,1.21,10761,1.21,10762,1.21,10763,2.193,10764,3.008,10765,4.784,10766,2.193,10767,1.21,10768,1.21,10769,1.21,10770,1.21,10771,1.21,10772,1.21,10773,3.008,10774,2.193,10775,2.193,10776,1.21,10777,1.21,10778,1.21,10779,1.21,10780,1.21,10781,3.008,10782,5.957,10783,1.21,10784,2.193,10785,2.193,10786,1.21,10787,1.21,10788,2.193,10789,1.21,10790,1.21,10791,1.21,10792,1.21,10793,2.193,10794,2.193,10795,2.193,10796,2.193,10797,2.193,10798,2.193,10799,1.21,10800,1.21,10801,1.21,10802,1.21,10803,1.21,10804,5.613,10805,1.21,10806,1.21,10807,2.193,10808,2.193,10809,1.21,10810,1.21,10811,1.21,10812,1.017,10813,1.21,10814,1.21,10815,1.21,10816,3.693,10817,1.21,10818,2.193,10819,3.693,10820,1.21,10821,2.193,10822,1.21,10823,1.21,10824,1.21,10825,1.21,10826,1.21,10827,1.21,10828,1.21,10829,1.21,10830,1.21,10831,1.21,10832,1.21,10833,2.193,10834,1.21,10835,3.008,10836,2.193,10837,3.008,10838,1.21,10839,1.21,10840,1.21,10841,2.193,10842,1.21,10843,1.21,10844,1.21,10845,1.21,10846,1.21,10847,1.21,10848,1.21,10849,1.21,10850,1.21,10851,1.21,10852,1.21,10853,1.21,10854,1.21,10855,1.21,10856,1.21,10857,1.21,10858,1.21,10859,1.21,10860,1.21,10861,1.21,10862,1.21,10863,1.21,10864,1.21,10865,1.21,10866,1.21,10867,1.21,10868,2.193,10869,1.21,10870,1.21,10871,1.21,10872,3.693,10873,2.193,10874,1.21,10875,1.21,10876,3.008,10877,2.193,10878,1.21,10879,1.21,10880,1.21,10881,4.279,10882,1.21,10883,3.008,10884,1.21,10885,1.21,10886,1.21,10887,1.21,10888,3.693,10889,1.21,10890,1.21,10891,3.008,10892,2.193,10893,1.21,10894,3.008,10895,1.21,10896,1.21,10897,1.21,10898,1.21,10899,3.008,10900,1.21,10901,1.21,10902,1.21,10903,1.094,10904,5.613,10905,2.193,10906,1.21,10907,1.21,10908,1.21,10909,3.008,10910,2.193,10911,2.193,10912,1.21,10913,1.21,10914,2.193,10915,1.21,10916,1.21,10917,2.193,10918,4.784,10919,1.21,10920,1.21,10921,1.982,10922,1.21,10923,1.21,10924,2.193,10925,1.21,10926,1.21,10927,3.008,10928,2.193,10929,1.21,10930,2.193,10931,2.193,10932,1.21,10933,1.21,10934,1.21,10935,1.21,10936,1.21,10937,2.193,10938,2.193,10939,1.21,10940,1.21,10941,1.21,10942,1.094,10943,1.21,10944,1.21,10945,1.21,10946,1.21,10947,1.21,10948,1.21,10949,1.21,10950,1.21,10951,1.21,10952,1.21,10953,2.193,10954,1.21,10955,1.21,10956,1.21,10957,1.21,10958,1.21,10959,1.21,10960,1.21,10961,1.21,10962,1.21,10963,2.193,10964,2.193,10965,2.193,10966,2.193,10967,1.21,10968,1.21,10969,1.21,10970,1.21,10971,2.193,10972,1.21,10973,1.21,10974,1.21,10975,1.21,10976,1.21,10977,1.21,10978,1.21,10979,1.21,10980,1.21,10981,2.193,10982,1.21,10983,3.693,10984,1.21,10985,1.21,10986,1.21,10987,1.21,10988,1.21,10989,3.008,10990,1.21,10991,1.21]],["description//posts/python-snippets/",[1611,1.021,10673,5.747]],["title//posts/pyscript-python-embedded-in-html/",[750,2.519,755,2.13,1611,0.768,10992,4.018]],["content//posts/pyscript-python-embedded-in-html/",[2,1.855,6,0.419,8,1.913,13,3.89,17,2.153,27,1.472,29,1.489,32,0.822,34,0.976,38,0.651,58,1.333,65,1.618,74,0.924,75,1.282,83,2.734,102,2.209,107,1.113,110,1.94,114,1.329,116,2.385,120,2.368,136,1.401,137,1.52,144,1.706,161,2.816,164,1.968,173,1.565,175,0.868,190,1.81,191,0.967,198,2.041,203,1.987,216,1.022,221,1.58,222,2.845,224,1.455,225,1.253,230,0.967,234,1.534,240,1.506,245,1.061,265,3.663,267,2.33,268,1.847,278,2.153,289,1.821,295,1.55,311,2.114,355,1.987,356,0.797,366,1.974,374,0.95,381,2.45,383,1.292,396,2.284,406,2.114,421,3.716,422,1.18,431,1.987,435,2.153,470,1.423,476,1.662,479,1.031,542,1.319,556,1.319,593,1.041,595,1.561,598,1.64,600,0.725,623,2.193,626,1.265,640,1.423,647,1.802,701,2.567,718,1.524,745,2.422,750,4.242,755,1.855,758,0.916,770,2.385,771,2.385,774,2.098,778,1.102,828,2.076,845,1.753,875,2.902,882,2.153,896,2.567,918,0.745,934,3.062,935,1.004,940,2.194,952,3.756,955,3.6,991,1.18,1019,3.18,1024,0.822,1066,1.542,1080,2.804,1090,2.717,1138,1.595,1178,2.902,1179,2.902,1181,2.82,1195,4.001,1211,2.284,1224,1.62,1269,2.33,1271,2.274,1280,2.333,1284,2.247,1287,1.943,1293,3.44,1296,3.093,1300,1.777,1301,2.876,1302,2.959,1312,2.567,1315,1.662,1341,1.423,1366,3.499,1482,1.58,1483,2.194,1592,1.423,1611,1.648,1623,2.902,1628,1.802,1690,3.35,1696,2.638,1698,3.499,1735,3.145,1741,1.802,1745,3.613,1749,3.535,1751,2.303,1768,2.567,1827,3.517,1840,3.517,1854,2.567,1863,2.736,1875,3.145,1898,3.302,1918,8.012,1920,3.104,1933,2.333,1998,3.499,2005,2.076,2013,2.385,2038,3.499,2055,2.238,2098,1.943,2099,3.009,2146,4.895,2214,2.567,2255,4.87,2275,4.279,2285,3.763,2287,3.785,2382,1.58,2585,4.445,2586,3.014,2629,2.076,2640,3.763,2643,1.883,2678,2.638,2693,3.203,2694,3.499,2846,3.763,2904,2.153,2906,2.804,3028,3.014,3173,4.87,3175,2.441,3189,2.238,3191,7.758,3194,5.549,3306,2.638,3504,3.44,3587,4.006,3665,4.006,3685,3.302,3696,1.61,3748,3.302,3913,3.014,3916,2.804,4085,2.804,4335,3.302,4525,2.194,4712,3.014,4721,2.502,4723,3.763,4897,3.499,5031,2.804,5091,3.6,5132,2.567,5258,3.302,5287,2.717,5294,4.135,5309,6.029,5319,3.302,5367,3.499,5388,2.902,5484,2.902,5548,2.502,6252,3.302,6327,3.763,6349,3.499,6473,3.014,6551,3.145,6684,2.114,6736,2.567,6921,3.499,7121,3.763,7126,2.638,7315,3.499,7474,3.014,7590,5.509,7591,3.145,7727,2.902,7754,3.763,7912,3.499,8131,3.302,8175,3.014,8450,3.499,8511,3.763,8840,3.763,8940,3.763,9643,3.499,9928,3.145,10242,5.549,10264,3.499,10378,3.145,10402,3.763,10812,3.499,10992,8.969,10993,4.164,10994,4.164,10995,4.164,10996,4.164,10997,4.164,10998,4.164,10999,4.164,11000,6.14,11001,4.164,11002,4.164,11003,4.164,11004,4.164,11005,4.164,11006,4.164,11007,4.164,11008,4.164,11009,4.164,11010,4.164,11011,4.164,11012,4.164,11013,4.164,11014,4.164,11015,4.164,11016,4.164,11017,4.164,11018,6.14,11019,7.293,11020,10.26,11021,7.293,11022,7.293,11023,7.293,11024,7.293,11025,6.14,11026,4.164,11027,4.164,11028,3.763,11029,4.164,11030,4.164,11031,4.164,11032,4.164,11033,4.164,11034,4.164,11035,4.164,11036,6.14,11037,6.14,11038,4.164,11039,6.14,11040,6.14,11041,6.14,11042,6.14,11043,6.14,11044,8.05,11045,6.14,11046,6.14,11047,6.14,11048,4.164,11049,7.293,11050,4.164,11051,6.14,11052,4.164,11053,4.164,11054,4.164,11055,4.164,11056,4.164,11057,4.164,11058,4.164,11059,4.164,11060,4.164,11061,4.164,11062,4.164,11063,4.164,11064,4.164]],["description//posts/pyscript-python-embedded-in-html/",[750,2.592,755,2.192,1611,0.79,10992,4.134]],["title//posts/nextjs-to-github-pages-ations/",[75,0.752,1489,1.665,3923,2.882,8747,2.571,11065,3.597]],["content//posts/nextjs-to-github-pages-ations/",[6,0.423,17,2.111,35,2.139,49,1.112,65,1.483,68,1.102,73,1.102,83,2.703,94,2.393,109,1.427,120,1.472,126,0.914,133,2.517,136,0.931,137,1.143,144,4.259,146,2.072,159,1.411,164,1.102,173,1.041,175,0.44,176,1.227,219,1.204,234,0.858,245,1.041,248,2.151,257,1.875,268,1.228,270,3.356,289,1.958,302,4.354,313,1.802,329,2.845,334,2.036,344,0.431,351,1.112,355,1.958,356,0.53,361,2.194,362,1.081,388,2.955,393,1.102,408,1.767,441,2.657,448,2.749,476,1.629,479,1.203,488,1.335,492,2.111,494,2.001,548,1.38,575,3.035,612,1.875,620,2.587,623,1.112,636,1.395,668,3.084,681,2.517,741,1.608,742,1.081,777,2.823,800,1.875,809,3.238,856,1.695,901,1.53,905,0.556,932,2.823,970,3.69,992,6.73,993,2.241,994,2.664,996,3.78,1010,2.664,1026,3.973,1046,2.639,1066,1.512,1079,1.549,1110,1.512,1181,1.875,1183,4.704,1211,3.319,1212,4.57,1237,1.695,1269,1.549,1277,3.238,1278,4.57,1280,3.39,1288,2.111,1341,3.577,1365,3.851,1386,2.737,1405,1.494,1424,1.494,1426,2.001,1435,3.418,1455,6.059,1463,2.955,1488,1.695,1489,3.687,1509,4.217,1530,2.393,1531,5.718,1608,3.238,1661,1.395,1735,3.084,1759,2.393,1768,2.517,1769,3.728,1818,3.182,1863,1.819,1876,2.517,1937,6.516,1982,3.431,2096,5.311,2098,1.905,2131,2.287,2165,3.431,2186,2.517,2247,2.664,2261,2.955,2280,3.084,2470,2.966,2678,2.587,2693,1.793,2765,2.072,2768,2.664,2820,1.875,2821,4.799,2837,3.466,2859,4.445,2904,2.111,3009,4.445,3028,5.219,3174,2.909,3175,2.393,3189,2.194,3370,2.339,3427,2.955,3446,3.238,3500,2.749,3544,4.799,3617,2.151,3658,2.869,3913,2.955,3914,3.69,4010,2.339,4380,3.238,4835,2.845,5022,4.075,5025,3.084,5026,4.926,5030,2.393,5045,6.059,5058,6.324,5143,2.393,5153,1.767,5182,4.59,5198,2.749,5294,2.749,5330,3.238,5377,5.063,5389,2.036,5585,3.084,5814,3.238,5917,3.431,5919,2.955,5931,5.085,6245,6.516,6372,3.084,6472,6.748,6480,4.542,6626,5.219,6684,2.072,7280,5.469,7284,5.469,7285,5.469,7286,3.69,7383,5.085,7385,3.129,7406,6.753,7812,3.431,7819,3.238,7820,3.431,7887,2.517,8098,3.69,8248,3.238,8642,3.69,8708,2.955,8734,2.845,8747,6.394,8890,4.38,8925,3.431,10283,3.69,10365,5.718,10366,6.059,10458,5.469,10630,6.059,11065,5.085,11066,4.082,11067,4.082,11068,4.082,11069,9.851,11070,6.051,11071,8.514,11072,4.082,11073,6.516,11074,4.082,11075,6.051,11076,4.082,11077,4.082,11078,4.082,11079,6.051,11080,4.082,11081,4.082,11082,7.209,11083,7.209,11084,7.209,11085,6.051,11086,6.051,11087,6.051,11088,4.082,11089,4.082,11090,6.051,11091,4.082,11092,6.051,11093,6.051,11094,7.209,11095,7.209,11096,4.082,11097,4.082,11098,4.082,11099,4.082,11100,4.082,11101,7.209,11102,4.082,11103,4.082,11104,4.082,11105,4.082,11106,4.082,11107,9.23,11108,4.082,11109,4.082,11110,4.082,11111,4.082,11112,4.082,11113,7.209,11114,3.69,11115,4.082,11116,4.082,11117,4.082,11118,7.206,11119,4.082,11120,4.082,11121,4.082,11122,4.082,11123,4.082,11124,7.209,11125,4.082,11126,4.082,11127,4.082,11128,4.082,11129,4.082,11130,4.082,11131,4.082,11132,6.051,11133,6.051,11134,6.051,11135,6.051,11136,6.051,11137,4.082,11138,4.082,11139,4.082,11140,4.082,11141,4.082,11142,4.082,11143,4.082,11144,4.082,11145,4.082,11146,4.082]],["description//posts/nextjs-to-github-pages-ations/",[38,0.404,126,0.578,344,0.273,593,0.438,1269,0.98,1489,1.645,3923,1.738,5377,1.416,8747,1.551,11065,2.169,11114,2.333]],["title//posts/markdown-syntax/",[289,1.014,2949,2.04,3931,3.611,6432,3.219]],["content//posts/markdown-syntax/",[1,2.573,2,2.67,6,0.427,18,1.392,26,0.613,32,1.183,38,1.324,53,2.925,57,1.224,65,1.38,67,1.361,68,1.091,73,1.087,74,1.33,80,1.33,96,1.646,102,2.482,107,1.076,112,1.097,114,0.734,172,1.795,175,0.646,176,1.215,188,1.795,202,1.119,206,1.066,212,1.407,221,1.036,229,1.65,234,1.78,246,0.878,261,1.547,289,0.854,337,1.346,342,1.695,344,0.755,356,0.523,362,1.066,376,1.743,377,1.587,380,2.807,381,2.854,393,1.087,394,2.916,422,0.774,433,2.083,444,3.693,446,3.194,461,1.424,468,1.672,479,0.569,490,1.485,530,1.85,532,2.916,536,0.74,564,2.307,582,2.42,593,1.213,635,3.19,643,2.628,675,1.766,702,1.85,733,2.122,745,2.84,750,3.157,762,5.701,832,3.631,856,1.672,903,2.273,911,2.628,916,7.508,938,1.601,955,3.512,1020,2.916,1024,0.795,1026,1.879,1036,1.332,1055,1.187,1079,3.213,1138,1.046,1177,4.525,1178,2.807,1180,2.795,1181,4.337,1187,1.909,1198,1.974,1202,2.42,1224,1.567,1271,2.219,1284,1.474,1315,1.607,1320,3.844,1341,2.047,1363,3.327,1424,1.474,1474,2.257,1484,1.695,1583,3.796,1590,5.673,1628,2.593,1646,1.909,1694,1.795,1741,3.978,1745,2.33,1774,2.257,1791,1.974,1792,1.587,1796,5.019,1849,2.628,1868,2.807,1873,3.385,1880,3.844,1881,4.425,1890,1.822,1940,3.385,1955,1.909,1964,3.909,1978,3.432,2001,2.209,2004,1.695,2016,2.712,2027,2.307,2080,3.194,2103,5.79,2121,4.525,2222,4.175,2225,2.045,2227,2.42,2269,3.385,2327,5.178,2364,2.471,2367,3.042,2382,3.006,2419,2.42,2467,3.447,2468,3.567,2645,2.361,2820,4.337,2870,2.209,2937,5.623,3099,4.175,3173,6.715,3339,3.042,3376,2.916,3387,3.194,3392,4.336,3400,3.194,3437,2.807,3505,3.385,3517,3.385,3531,5.414,3622,3.385,3649,3.64,3670,2.712,3889,3.042,3891,2.936,3931,4.525,3937,7.935,3966,5.414,4001,7.417,4078,3.385,4244,3.194,4274,2.361,4295,4.007,4990,3.64,5028,3.567,5159,4.751,5161,2.628,5173,3.698,5295,3.194,5309,2.257,5597,4.175,5797,2.628,5818,4.297,5838,5.035,6039,6.282,6213,3.64,6355,3.187,6432,5.701,6724,2.916,6735,3.385,6745,3.64,6753,3.385,6833,8.02,7219,3.64,7803,5.035,8177,5.035,8188,6.464,8611,3.64,8696,3.64,8863,3.64,9195,5.414,9205,3.64,9217,3.64,9297,3.64,9537,6.464,9643,6.657,10276,3.64,10365,3.194,10504,5.414,10533,3.64,10538,3.64,10551,5.414,10552,5.414,10575,5.414,10604,3.64,10608,4.883,10812,6.657,10921,3.64,11147,4.027,11148,4.027,11149,5.99,11150,5.99,11151,5.99,11152,5.99,11153,5.99,11154,5.99,11155,8.873,11156,4.027,11157,5.99,11158,5.99,11159,5.99,11160,5.99,11161,4.027,11162,4.027,11163,4.027,11164,4.027,11165,5.99,11166,4.027,11167,4.027,11168,4.027,11169,4.027,11170,4.027,11171,4.027,11172,4.027,11173,4.027,11174,4.027,11175,4.027,11176,4.027,11177,5.99,11178,4.027,11179,4.027,11180,4.027,11181,4.027,11182,4.027,11183,4.027,11184,4.027,11185,4.027,11186,4.027,11187,4.027,11188,4.027,11189,4.027,11190,4.027,11191,4.027,11192,4.027,11193,7.92,11194,5.99,11195,5.99,11196,7.92,11197,7.92,11198,4.027,11199,4.027,11200,7.92,11201,5.99,11202,4.027,11203,4.027,11204,4.027,11205,5.99,11206,4.027,11207,4.027,11208,4.027,11209,4.027,11210,4.027,11211,4.027,11212,4.027,11213,4.027,11214,4.027,11215,4.027,11216,4.027,11217,4.027,11218,4.027,11219,4.027,11220,4.027,11221,4.027,11222,4.027,11223,4.027,11224,4.027,11225,4.027,11226,4.027]],["description//posts/markdown-syntax/",[289,1.044,2949,2.099,3931,3.715,6432,3.312]],["title//posts/interactivebrokers-deposit/",[1777,2.172,11227,3.597,11228,3.597,11229,3.868,11230,3.868]],["content//posts/interactivebrokers-deposit/",[6,0.391,55,4.425,109,2.819,144,3.305,176,1.636,257,3.706,344,0.852,424,4.252,479,1.14,488,2.639,507,3.056,568,4.847,951,6.161,1269,3.062,1441,5.264,1536,3.543,1777,4.096,1840,4.622,2283,4.172,2434,6.399,3145,4.425,3495,2.819,3905,9.497,3944,5.112,4189,5.84,4361,5.433,4474,4.622,4902,6.781,5332,6.048,5944,7.292,6562,6.781,6867,7.292,9557,7.292,10462,8.627,11227,6.781,11231,8.067,11232,9.545,11233,9.545,11234,8.067,11235,9.545,11236,8.067,11237,8.067,11238,8.627,11239,8.067,11240,8.067]],["description//posts/interactivebrokers-deposit/",[1777,1.864,4189,2.658,11227,3.086,11228,3.086,11229,3.319,11230,3.319,11241,3.319]],["title//posts/integrate-hugo-react/",[222,1.513,334,2.134,10608,2.638,11242,3.098,11243,3.597]],["content//posts/integrate-hugo-react/",[5,3.028,6,0.426,34,1.321,65,0.982,70,1.843,73,2.052,75,0.99,83,2.85,114,1.027,173,1.436,175,0.607,176,1.869,206,1.492,221,1.45,222,3.581,234,1.185,246,1.228,247,4.167,248,5.223,254,5.12,289,2.15,334,4.291,342,2.372,344,0.803,351,1.535,356,0.732,362,1.492,369,2.588,397,1.436,421,4.519,472,2.995,479,0.796,492,2.913,507,1.804,540,2.372,583,4.568,593,0.956,595,3.914,604,3.028,623,2.072,626,1.712,750,2.969,757,2.762,778,1.492,819,2.969,823,2.86,849,1.185,864,2.86,875,3.927,888,4.079,907,1.657,909,1.712,931,1.992,938,1.506,992,3.794,1007,2.588,1211,3.091,1212,5.743,1240,2.248,1269,2.138,1273,3.091,1277,6.825,1278,5.743,1296,3.306,1300,3.673,1302,4.147,1386,2.549,1470,1.992,1487,2.81,1509,3.927,1545,4.256,1592,1.925,1646,2.671,1658,4.687,1741,4.29,1745,2.958,1763,3.794,1774,3.157,1865,6.03,1891,4.079,1920,2.974,1933,4.26,1954,2.241,2027,3.228,2099,2.762,2225,2.86,2659,3.304,2789,2.762,3145,5.277,3385,4.817,3434,2.439,3504,3.157,3630,4.469,3642,3.157,3685,4.469,3777,4.735,4525,2.969,5304,2.248,5309,3.157,5523,3.794,5558,4.687,5663,4.256,5690,3.927,6252,4.469,7854,3.927,8249,4.079,10073,5.092,10608,6.246,11242,7.894,11243,7.232,11244,5.634,11245,5.634,11246,5.634,11247,5.634,11248,5.634,11249,6.872,11250,5.634,11251,5.634,11252,6.872,11253,5.634,11254,7.603,11255,5.092,11256,5.634,11257,5.634,11258,5.634,11259,5.634,11260,5.092,11261,5.634,11262,5.092,11263,5.634,11264,5.634,11265,5.634,11266,9.212,11267,7.603,11268,7.603,11269,5.634,11270,5.634,11271,5.634,11272,5.634,11273,5.634,11274,5.634,11275,5.634,11276,5.634,11277,7.603,11278,5.634,11279,5.634,11280,5.634,11281,5.634,11282,5.634,11283,5.634,11284,5.634,11285,5.634,11286,5.634,11287,5.634,11288,7.603,11289,5.634,11290,5.634,11291,5.634,11292,5.634]],["description//posts/integrate-hugo-react/",[222,1.562,247,1.999,421,1.913,10608,2.724,11242,3.199]],["title//posts/hugo-add-image-zoomin/",[1472,3.611,3621,2.738,8734,3.332,10608,2.947]],["content//posts/hugo-add-image-zoomin/",[6,0.426,11,2.711,26,0.812,38,1.146,57,1.623,58,1.71,65,1.458,70,1.747,83,2.002,110,1.154,113,2.477,120,1.299,136,1.218,146,4.249,160,3.484,161,1.674,173,2.407,175,0.79,191,1.241,202,1.484,219,1.574,222,1.888,241,3.208,246,1.964,247,3.316,248,5.603,257,3.367,274,4.235,288,1.289,289,2.003,292,3.292,313,1.59,334,3.656,342,2.248,344,0.884,356,0.952,359,2.782,378,3.623,389,4.519,461,1.888,479,0.755,488,1.747,536,0.982,593,0.906,595,4.014,600,0.93,636,2.505,742,1.414,750,2.814,841,4.034,875,5.109,887,3.722,888,3.866,930,4.205,931,3.337,968,4.034,1026,3.905,1030,3.292,1066,1.978,1080,3.596,1088,1.252,1090,3.484,1151,2.491,1269,3.419,1278,5.537,1280,2.992,1293,2.992,1296,2.052,1300,2.279,1346,3.866,1472,4.034,1515,3.596,1528,2.345,1595,4.826,1597,2.491,1600,3.059,1632,1.427,1735,5.537,1759,3.131,1780,4.404,1858,2.026,1876,3.292,1886,3.292,1901,2.617,2016,3.596,2096,2.992,2137,3.484,2164,4.488,2287,5.554,2569,4.235,2699,2.617,2906,3.596,3114,4.034,3145,4.942,3432,3.208,3457,3.866,3495,1.866,3666,2.761,4816,4.107,5308,3.484,5315,3.292,5558,3.292,6343,4.488,6415,3.866,6432,5.637,6481,4.235,6921,4.488,6950,3.866,7459,8.142,7562,5.109,7887,3.292,8201,4.826,8734,3.722,8864,6.625,8884,4.826,9865,7.565,10177,9.735,10608,5.16,10633,7.565,11228,4.488,11249,4.826,11293,7.33,11294,5.34,11295,5.34,11296,5.34,11297,5.34,11298,8.37,11299,5.34,11300,5.34,11301,8.142,11302,8.37,11303,8.142,11304,7.33,11305,5.34,11306,7.33,11307,9.754,11308,7.33,11309,7.33,11310,5.34,11311,7.33,11312,5.34,11313,7.33,11314,5.34,11315,5.34,11316,5.34,11317,5.34,11318,7.33,11319,5.34,11320,5.34,11321,5.34,11322,5.34,11323,5.34,11324,5.34,11325,7.33,11326,7.33,11327,7.33,11328,5.34,11329,5.34,11330,7.33,11331,5.34,11332,5.34,11333,5.34,11334,5.34,11335,5.34,11336,5.34,11337,5.34,11338,5.34,11339,5.34,11340,5.34,11341,7.33,11342,7.33,11343,5.34,11344,5.34,11345,5.34,11346,5.34,11347,5.34]],["description//posts/hugo-add-image-zoomin/",[83,1.504,595,1.504,903,1.522,1472,3.03,1780,2.41,8734,2.795]],["title//posts/howto-rename-files-in-python/",[289,1.149,1611,0.87,8560,4.55]],["content//posts/howto-rename-files-in-python/",[6,0.413,34,1.792,67,2.583,68,1.393,270,3.89,289,2.342,331,2.473,352,2.991,527,4.379,593,1.296,606,2.765,623,2.083,755,3.406,1066,3.68,1301,2.959,1341,2.612,1364,3.174,1377,4.379,1670,6.424,1790,4.712,1793,5.147,1829,2.901,1917,4.482,1920,3.433,2190,4.028,2225,3.881,2693,3.357,2743,8.353,2749,6.908,4285,4.108,5315,4.712,5548,4.592,11348,9.242,11349,9.242,11350,10.321,11351,9.934,11352,7.644,11353,7.644,11354,7.644,11355,7.644,11356,7.644,11357,7.644,11358,9.934,11359,7.644,11360,7.644,11361,9.934,11362,7.644,11363,7.644,11364,7.644,11365,7.644,11366,7.644,11367,9.242,11368,6.908,11369,9.242,11370,7.644,11371,7.644]],["description//posts/howto-rename-files-in-python/",[206,1.17,289,0.937,397,1.126,1611,0.71,11372,4.418]],["title//posts/howto-redirect-to-url/",[126,1.071,251,2.343,1195,2.622,11373,4.32]],["content//posts/howto-redirect-to-url/",[6,0.416,27,2.635,34,2.134,58,2.387,63,4.478,68,1.358,89,3.372,113,2.519,114,1.358,120,1.813,124,1.88,147,1.936,190,2.198,201,3.095,206,1.973,221,1.918,234,1.567,248,5.178,251,4.816,265,2.864,289,1.581,311,3.784,313,2.22,319,3.779,344,0.787,362,1.973,381,3.632,426,4.089,431,2.412,593,1.666,628,2.198,636,2.547,750,5.178,778,1.973,910,2.289,1019,3.64,1100,3.653,1195,5.613,1470,2.635,1717,5.63,2690,5.195,2695,5.912,2872,6.129,3495,2.605,3661,3.653,3737,5.912,7562,5.195,7950,5.912,9142,6.737,9185,6.737,9660,8.601,11374,7.454,11375,7.454,11376,10.233,11377,7.454,11378,7.454,11379,7.454,11380,10.233,11381,9.102,11382,7.454,11383,7.454,11384,7.454,11385,9.102,11386,7.454,11387,7.454,11388,7.454,11389,7.454,11390,7.454,11391,7.454]],["description//posts/howto-redirect-to-url/",[126,1.102,251,2.411,1195,2.698,11373,4.446]],["title//posts/howto-install-ubuntu-desktop-on-arm/",[164,0.879,3658,1.544,5249,2.582,7821,1.716,8046,2.736,11392,2.736,11393,2.943,11394,2.943]],["content//posts/howto-install-ubuntu-desktop-on-arm/",[6,0.235,26,0.96,32,1.246,38,0.986,44,1.957,75,1.109,96,1.452,105,2.19,111,2.344,113,3.075,164,2.906,202,1.753,205,3.46,219,1.86,245,1.608,257,2.898,265,2.424,268,2.898,295,1.593,344,0.666,351,2.233,354,1.67,355,2.945,408,2.731,439,2.991,467,1.917,471,2.77,479,0.892,507,2.02,536,1.16,548,2.132,578,4.765,593,1.07,598,3.228,600,1.099,626,2.49,628,2.683,636,2.8,675,3.071,713,3.79,757,3.092,773,4.765,849,1.326,869,4.765,903,2.394,951,5.854,991,1.787,993,3.035,1026,2.943,1103,2.55,1249,3.997,1269,2.394,1293,5.099,1374,2.898,1377,3.614,1405,2.309,1426,5.015,1469,6.342,1470,2.896,1478,2.619,1484,2.655,1487,3.146,1503,5.003,1529,3.39,1618,2.156,1625,3.997,1626,3.266,1767,4.116,1863,2.811,1901,3.092,1930,2.774,1976,3.534,2052,3.885,2096,3.534,2211,3.699,2225,3.202,2277,3.56,2611,3.699,2929,4.494,3154,3.18,3189,3.39,3495,2.863,3656,4.566,3657,2.256,3658,5.142,3662,5.302,3699,2.77,3701,4.765,3750,3.534,4415,2.811,4791,4.566,5182,3.764,5249,7.64,5311,5.003,5385,7.405,5387,5.701,5411,4.765,5931,5.302,6247,5.192,6312,4.765,6736,5.939,6775,4.248,7398,4.248,7664,3.997,7806,3.699,7821,4.796,7825,5.302,7844,4.248,8254,4.397,8300,4.923,8694,7.405,9787,5.302,11392,5.302,11393,7.405,11394,7.405,11395,8.6,11396,6.308,11397,8.193,11398,8.193,11399,5.003,11400,8.193,11401,6.308,11402,6.308,11403,6.308,11404,7.405]],["description//posts/howto-install-ubuntu-desktop-on-arm/",[164,0.697,1484,1.086,1626,0.809,1639,0.785,2277,0.882,2611,1.513,3658,1.224,5249,2.047,7821,1.36,8658,2.169,11392,2.169,11395,2.169]],["title//posts/howto-install-rhel-9-free/",[164,1.29,1901,2.343,3657,1.709,11399,3.791]],["content//posts/howto-install-rhel-9-free/",[1,1.306,6,0.234,26,0.654,29,1.537,38,0.983,45,2.222,64,1.362,65,0.749,68,1.145,73,1.16,75,1.691,83,2.356,96,1.71,105,2.324,107,1.149,109,1.502,111,2.126,113,2.124,124,1.298,126,1.408,127,2.265,130,3.884,133,2.65,137,0.812,141,1.816,143,2.265,147,1.116,153,3.612,164,2.727,172,1.915,176,1.275,179,2.143,205,3.447,219,1.267,222,1.519,245,2.083,246,1.37,257,1.974,264,1.502,268,1.293,272,1.834,282,3.111,289,1.576,299,3.111,343,1.065,344,0.918,351,1.171,354,1.138,355,2.645,356,0.816,358,2.222,359,2.385,362,1.138,370,1.915,377,1.693,406,2.182,417,2.582,422,1.208,459,1.452,462,1.116,467,1.306,468,2.609,471,2.76,479,1.05,485,2.358,536,0.79,583,2.582,593,0.729,600,1.095,604,3.378,626,1.91,628,3.111,636,1.469,675,2.41,678,2.222,702,1.974,709,2.462,716,2.005,758,0.945,774,1.469,785,1.347,800,1.974,819,2.265,821,2.995,823,2.182,828,3.134,843,1.784,845,3.44,849,0.904,867,1.437,907,1.37,925,1.78,938,1.149,946,4.583,951,5.326,952,4.238,991,1.218,993,3.221,994,2.804,1007,2.887,1019,1.592,1024,0.849,1028,3.6,1041,3.884,1046,1.573,1055,1.267,1087,2.408,1088,1.008,1089,1.573,1138,1.116,1151,2.005,1152,3.884,1205,2.483,1206,2.143,1237,1.784,1255,1.611,1269,1.631,1293,2.408,1296,2.414,1297,2.358,1304,2.894,1315,1.715,1362,2.143,1374,1.974,1405,1.573,1424,1.573,1426,3.08,1443,2.408,1469,2.995,1470,1.519,1487,4.53,1516,1.519,1536,3.262,1610,2.328,1611,0.69,1626,2.726,1652,2.385,1656,1.502,1669,1.834,1690,2.887,1717,3.246,1718,3.246,1765,2.52,1869,1.97,1901,5.172,1920,1.485,1930,2.064,1950,2.52,1976,2.408,1987,2.819,2002,2.723,2016,2.894,2037,3.246,2046,2.508,2053,2.894,2101,2.65,2146,2.265,2270,2.65,2277,2.539,2364,2.172,2382,2.385,2611,2.52,2642,3.612,2659,2.52,2731,2.408,2778,2.995,2789,4.715,2859,2.65,2929,2.932,3008,3.993,3013,3.378,3154,2.856,3174,2.539,3179,2.887,3198,3.982,3311,2.52,3312,3.874,3316,3.246,3365,3.246,3457,3.111,3495,1.502,3619,2.358,3642,2.408,3656,3.111,3657,3.508,3659,4.58,3661,2.107,3662,5.282,3699,3.262,3701,3.246,3708,2.894,3891,2.107,4010,2.462,4071,2.804,4229,2.107,4230,3.246,4320,3.884,4424,2.72,4480,2.804,4525,3.915,4533,3.312,4802,2.182,5058,3.409,5260,4.549,5264,3.612,5287,2.804,5294,2.894,5295,3.409,5300,4.522,5304,1.715,5311,3.409,5313,2.143,5329,4.984,5332,2.723,5411,3.246,5484,2.995,5618,3.685,5706,2.894,5818,2.582,6371,3.246,6381,3.246,6465,2.52,6506,2.508,6736,3.874,6775,4.232,6777,2.804,6784,4.747,6838,3.111,6919,2.408,6927,3.111,6994,3.246,7126,2.723,7231,3.111,7281,3.409,7372,3.111,7414,3.612,7466,2.582,7571,9.044,7572,9.044,7806,2.52,7927,6.318,8085,3.612,8184,3.409,8254,2.995,8271,3.246,8294,5.282,8300,3.776,8562,3.884,8604,3.612,8658,5.282,8693,2.804,8749,3.409,9154,3.409,9189,3.246,9191,3.111,9264,3.884,9300,3.884,9311,5.68,9532,3.612,9693,3.884,9843,3.884,9896,5.68,10210,3.612,10475,3.884,11028,3.884,11238,3.884,11395,7.309,11399,8.417,11404,5.68,11405,4.298,11406,4.298,11407,4.298,11408,4.298,11409,4.298,11410,3.884,11411,4.298,11412,4.298,11413,4.298,11414,4.298,11415,4.298,11416,4.298,11417,4.298,11418,4.298,11419,4.298,11420,4.298,11421,4.298,11422,4.298,11423,4.298,11424,7.429,11425,4.298,11426,6.284,11427,4.298,11428,4.298,11429,4.298,11430,4.298,11431,4.298,11432,6.284,11433,4.298,11434,4.298,11435,4.298,11436,4.298,11437,4.298,11438,4.298,11439,4.298,11440,4.298,11441,4.298,11442,4.298,11443,4.298,11444,4.298,11445,4.298,11446,6.284,11447,4.298,11448,4.298]],["description//posts/howto-install-rhel-9-free/",[111,1.148,1293,2.247,1901,1.966,3657,1.434,3699,1.761,11399,3.181]],["title//posts/howto-create-react-electron-app-ts/",[75,0.752,479,0.605,3515,2.398,3997,3.232,11242,3.098]],["content//posts/howto-create-react-electron-app-ts/",[6,0.424,26,1.559,30,1.523,38,0.76,64,1.539,65,1.589,68,1.45,75,1.664,105,1.299,110,1.05,111,1.964,114,0.885,120,1.182,137,0.917,139,1.171,144,1.991,146,2.467,147,1.262,161,1.523,164,1.311,176,0.986,221,1.25,222,3.514,230,1.849,246,1.059,248,2.561,257,2.232,264,1.698,268,1.462,289,2.109,295,1.227,313,1.447,319,4.303,333,2.294,342,2.045,354,1.817,355,2.952,356,0.631,431,1.572,432,2.045,467,1.477,472,1.914,476,2.739,479,1.125,492,3.549,544,2.783,564,3.932,595,2.573,598,1.914,611,1.779,623,1.324,647,2.103,729,3.67,731,3.67,750,2.561,807,4.084,832,4.631,849,1.443,867,1.624,902,2.512,907,1.059,925,2.816,938,1.299,992,6.376,993,2.542,994,4.478,996,2.304,1007,2.232,1012,2.423,1024,0.959,1042,2.919,1043,4.954,1046,2.913,1088,1.139,1138,1.262,1178,3.387,1183,5.193,1195,3.765,1198,2.382,1211,5.004,1213,4.084,1227,3.387,1249,3.079,1277,6.312,1300,2.074,1302,2.342,1386,4.497,1437,2.611,1483,2.561,1632,1.299,1656,1.698,1694,3.059,1711,2.561,1724,2.467,1789,2.103,1818,1.939,1874,3.272,1919,3.67,1920,3.272,1930,1.35,1956,2.722,2146,2.561,2251,5.004,2261,3.517,2382,1.844,2459,5.185,2564,2.198,2659,2.849,2670,4.084,2692,2.919,2713,6.689,2949,2.074,3145,2.665,3146,4.349,3174,2.345,3179,3.153,3189,2.611,3311,2.849,3312,2.996,3402,4.084,3515,2.722,3997,8.319,5030,2.849,5182,3.972,5299,2.722,5351,5.444,5397,2.919,5548,4.124,5558,2.996,5575,3.67,5935,3.272,6472,3.387,6480,2.074,6506,2.739,6551,5.185,6770,3.17,7727,5.547,7782,4.391,7939,5.769,8158,4.084,8360,3.854,8400,3.517,8843,4.784,8890,5.761,9789,4.391,10031,4.391,11118,8.245,11242,7.847,11243,5.769,11252,7.193,11255,4.391,11260,4.391,11262,4.391,11449,4.859,11450,6.864,11451,6.864,11452,6.864,11453,6.864,11454,4.859,11455,4.859,11456,4.859,11457,6.864,11458,7.958,11459,6.864,11460,7.958,11461,4.859,11462,4.859,11463,4.859,11464,6.864,11465,4.859,11466,4.859,11467,4.859,11468,4.859,11469,4.859,11470,4.859,11471,4.859,11472,4.859,11473,4.859,11474,4.859,11475,6.864,11476,6.864,11477,6.864,11478,4.859,11479,4.859,11480,4.859,11481,4.859,11482,4.859,11483,4.859,11484,4.859,11485,4.859,11486,4.859,11487,4.859,11488,4.859,11489,4.859,11490,4.859,11491,4.859,11492,6.864,11493,6.864,11494,4.859,11495,6.864,11496,8.648,11497,4.859,11498,4.859]],["description//posts/howto-create-react-electron-app-ts/",[75,0.645,479,0.519,1664,2.658,3515,2.057,3997,2.774,7939,3.086,11242,2.658]],["title//posts/howto-create-deepclone-js/",[126,0.959,240,1.548,1195,2.347,2189,2.571,6946,3.098]],["content//posts/howto-create-deepclone-js/",[6,0.426,17,5.123,112,2.07,114,1.384,120,1.848,124,1.569,240,3.726,248,5.221,302,3.489,462,1.973,479,1.073,518,2.406,556,2.406,600,1.323,623,2.07,636,2.595,819,4.003,1175,5.294,1195,4.166,1289,4.453,1427,6.024,1490,6.384,1491,6.007,1561,4.956,1689,4.563,1768,5.676,1890,3.436,1923,6.865,2131,4.256,2183,6.384,2189,4.563,2221,4.813,2445,8.954,5315,4.683,5557,5.737,6095,4.683,6946,5.498,11499,7.595,11500,9.206,11501,7.595,11502,7.595,11503,7.595,11504,7.595,11505,7.595,11506,7.595,11507,7.595,11508,9.206,11509,7.595,11510,9.206,11511,9.206,11512,7.595,11513,7.595,11514,7.595,11515,7.595,11516,7.595,11517,7.595]],["description//posts/howto-create-deepclone-js/",[126,0.99,240,1.598,1195,2.424,2189,2.655,6946,3.199]],["title//posts/google-sheets-2-json/",[8,1.966,771,2.451,1880,2.3,2587,2.255,7012,2.571]],["content//posts/google-sheets-2-json/",[5,3.67,6,0.419,8,4.929,34,2.215,35,2.414,49,1.861,56,3.812,71,2.097,75,1.865,114,1.244,136,1.558,141,1.973,175,0.736,212,2.386,246,1.489,248,5.59,251,3.347,337,2.282,366,3.237,383,2.119,426,4.728,468,3.579,473,3.137,479,0.965,487,4.154,492,4.457,519,2.835,525,3.959,583,4.103,595,2.56,604,3.67,623,2.349,626,2.62,628,2.013,636,2.333,741,2.69,756,2.233,771,3.912,778,1.808,796,4.759,882,4.457,905,0.93,1067,4.21,1100,3.347,1211,5.181,1234,2.386,1246,3.467,1386,4.273,1424,2.499,1459,5.739,1531,5.416,1652,2.591,1661,2.945,1711,3.599,1880,5.332,2009,2.914,2132,3.912,2209,5.739,2284,4.103,2462,4.943,2587,5.229,2859,4.21,2952,6.172,3009,4.21,3036,5.675,3703,4.327,4010,3.912,4439,4.21,5560,6.172,6372,5.158,6695,4.455,7012,6.146,8373,6.172,9145,6.172,10630,5.739,11073,6.172,11518,6.828,11519,6.828,11520,6.828,11521,6.828,11522,6.828,11523,6.828,11524,6.828,11525,6.828,11526,6.828,11527,6.828,11528,6.828,11529,8.62,11530,6.828,11531,8.62,11532,6.828,11533,6.828,11534,6.828,11535,6.828,11536,6.828,11537,6.828,11538,6.828,11539,9.446]],["description//posts/google-sheets-2-json/",[8,1.687,344,0.388,1470,1.298,2587,1.935,4380,2.912,4439,2.264,7012,2.206]],["title//posts/gallery-example/",[2468,3.113,11540,5.641]],["content//posts/gallery-example/",[1026,4.163,2454,6.219,2468,4.45,11540,8.064]],["description//posts/gallery-example/",[]],["title//posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom",[1802,3.43,4065,4.09,11541,4.55]],["content//posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom",[6,0.258,15,1.829,31,1.707,32,0.975,33,2.654,37,4.824,38,0.772,46,2.421,53,2.399,57,1.501,60,4.172,73,1.333,96,1.137,109,2.426,126,1.106,137,1.645,160,5.239,165,2.967,197,1.615,216,1.213,246,1.077,263,1.997,333,1.651,337,1.651,342,2.923,344,0.521,353,3.045,356,1.043,372,2.923,375,1.615,383,1.532,395,2.603,396,2.709,397,1.259,419,2.896,422,1.764,459,2.713,462,1.283,470,1.688,482,2.304,518,1.565,525,2.269,530,2.269,536,1.687,541,2.603,548,2.346,555,1.921,556,2.2,637,2.023,645,2.654,649,3.575,675,1.456,745,1.486,756,1.615,779,1.946,783,3.326,856,2.883,859,2.108,917,1.283,918,1.243,935,1.674,938,2.146,1055,1.456,1087,2.767,1120,3.917,1205,1.651,1282,2.603,1283,2.554,1308,2.086,1309,2.138,1315,1.971,1447,1.688,1466,5.684,1482,1.874,1528,2.169,1539,4.6,1586,3.442,1587,2.829,1622,3.978,1624,4.839,1686,3.326,1691,3.917,1734,3.732,1740,2.829,1745,1.921,1777,4.076,1802,3.129,1854,3.045,1876,4.281,1904,3.24,1905,3.045,1930,1.372,1933,3.89,1955,4.13,1983,3.045,2004,2.079,2022,3.917,2023,3.731,2134,3.575,2237,3.917,2245,2.829,2570,2.507,2699,2.421,2820,2.269,2932,3.525,3008,4.682,3214,2.023,3221,4.676,3237,3.917,3305,2.507,3665,3.222,3811,2.342,3878,6.58,3880,5.761,3887,3.326,3891,2.421,4029,3.129,4063,6.708,4064,5.816,4065,7.54,4068,4.676,4079,3.659,4081,5.407,4099,3.731,4103,2.554,4105,4.839,4120,3.129,4131,3.326,4161,6.58,4184,3.731,4194,3.731,4232,3.917,4247,5.866,4269,4.839,4290,3.731,4315,3.731,4324,3.222,4330,3.575,4360,3.917,4363,3.222,4364,5.407,4421,3.575,4434,4.151,4439,4.281,4457,4.151,4475,4.881,4480,4.53,4533,3.659,4555,3.917,4574,4.151,4630,4.151,4632,4.151,4634,5.507,4794,8.295,4798,3.326,4807,5.507,4848,7.257,4851,4.464,4870,3.129,4885,4.464,4889,6.58,4890,6.275,4892,5.836,4901,6.275,4904,4.464,4905,4.464,4919,3.917,4924,7.714,4927,4.464,4943,4.464,4969,4.464,4979,6.275,4982,4.464,4989,3.292,4991,4.464,5391,3.442,5458,4.464,5496,3.917,5670,3.731,5704,4.151,5906,7.714,6039,3.917,6198,4.464,6353,5.026,6693,3.917,6918,3.731,7529,3.917,7982,3.917,8561,7.257,8578,4.464,8648,4.151,8753,3.917,8816,4.464,9546,6.275,10185,4.464,11541,8.818,11542,4.939,11543,6.275,11544,4.939,11545,8.711,11546,6.943,11547,6.943,11548,6.943,11549,8.295,11550,4.939,11551,4.939,11552,4.939,11553,8.029,11554,4.939,11555,4.939,11556,4.939,11557,4.939,11558,7.873,11559,4.939,11560,8.711,11561,4.939,11562,8.029,11563,8.029,11564,6.943,11565,4.939,11566,4.939,11567,4.939,11568,4.939,11569,4.939,11570,4.939,11571,4.939,11572,4.939,11573,4.939,11574,4.464,11575,4.939,11576,4.939,11577,4.939,11578,4.939,11579,4.939,11580,6.943,11581,4.939,11582,4.939,11583,4.939,11584,4.939,11585,6.943,11586,4.939,11587,4.939,11588,4.939,11589,4.939,11590,4.939,11591,6.943,11592,4.939,11593,4.939,11594,4.939,11595,4.939,11596,4.939,11597,4.939,11598,4.939,11599,4.939,11600,4.464,11601,4.939,11602,4.939,11603,4.939,11604,4.939,11605,4.939,11606,4.939,11607,4.939,11608,4.939,11609,4.939,11610,4.939]],["description//posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom",[1857,2.472,4065,4.19,11541,4.662]],["title//posts/economics/diff-forward-contracts-futures",[1802,3.029,4144,3.332,4376,3.791,4431,3.791]],["content//posts/economics/diff-forward-contracts-futures",[25,2.651,32,1.557,38,1.233,46,2.916,73,1.605,74,1.75,80,1.32,118,1.653,149,3.8,175,0.641,182,4.995,205,3.263,206,1.575,221,2.423,244,5.163,288,1.386,337,1.988,372,4.123,375,1.946,381,3.909,394,4.306,395,3.135,397,1.516,411,3.135,422,1.144,462,2.668,518,1.885,525,3.621,538,4.006,655,2.079,675,2.324,718,2.177,758,1.734,778,2.087,827,3.574,864,3.02,935,1.434,939,2.755,1033,3.333,1037,3.932,1087,3.333,1138,2.048,1143,2.405,1180,4.126,1207,6.207,1254,4.573,1315,3.146,1460,4.718,1593,5.955,1632,2.517,1639,1.808,1768,3.667,1829,2.992,1863,2.651,1891,6.401,1914,3.881,1933,3.333,2057,3.408,2364,2.056,2570,3.02,2662,2.437,2974,3.135,2982,5.495,3591,3.408,3621,3.408,3958,4.999,4079,5.413,4081,5.309,4088,3.667,4099,4.493,4114,4.306,4126,5.707,4141,7.435,4144,6.163,4149,8.146,4150,5.313,4156,4.999,4157,6.78,4219,6.163,4225,5.376,4226,7.432,4229,2.916,4248,4.306,4271,2.612,4307,4.999,4330,6.401,4360,4.718,4361,4.006,4363,5.144,4376,8.453,4379,7.112,4385,7.913,4386,8.51,4388,7.125,4407,7.125,4408,5.376,4410,4.306,4411,6.626,4413,7.014,4420,7.432,4422,8.765,4424,3.828,4425,4.718,4428,4.999,4431,8.453,4432,3.769,4433,7.432,4630,4.999,4757,3.488,4830,3.488,5775,3.197,6453,3.333,7143,5.376,7854,4.146,8129,7.014,8604,4.999,9310,4.493,11543,5.376,11611,5.948,11612,5.948,11613,5.948,11614,8.843,11615,5.948,11616,7.884,11617,5.948,11618,7.884,11619,5.948,11620,5.948,11621,5.948,11622,5.948,11623,5.948,11624,7.884,11625,5.948,11626,5.948]],["description//posts/economics/diff-forward-contracts-futures",[1857,2.192,4144,3.428,4376,3.901,4431,3.901]],["title//posts/docker-commands/",[849,1.138,3189,2.91,6964,1.914]],["content//posts/docker-commands/",[2,2.192,6,0.405,14,1.48,26,0.748,33,3.721,68,0.896,71,2.46,100,6.577,105,1.315,109,1.719,124,1.016,136,1.122,144,2.015,146,2.497,161,1.542,173,1.254,175,0.53,183,3.657,202,1.366,234,1.685,245,1.254,257,2.259,263,1.989,268,2.616,270,2.914,271,2.756,288,0.865,289,1.469,295,1.748,297,3.58,304,4.652,329,3.428,344,0.519,354,1.302,378,4.447,395,2.592,420,3.032,433,3.58,479,0.695,490,1.219,494,2.411,518,1.558,532,3.561,571,2.955,626,2.104,635,2.649,636,1.681,660,5.012,675,3.115,681,3.032,722,2.698,741,3.928,829,3.715,849,1.685,925,1.394,1002,1.495,1026,4.652,1036,1.626,1046,1.8,1066,1.822,1069,4.813,1109,2.371,1110,1.822,1151,4.057,1179,3.428,1191,4.16,1208,1.51,1234,1.719,1242,2.592,1271,4.036,1314,4.825,1341,1.681,1351,1.938,1375,3.117,1405,1.8,1424,1.8,1447,2.366,1487,2.453,1502,3.032,1509,3.428,1514,4.134,1515,4.662,1516,2.832,1534,3.428,1536,2.16,1550,3.312,1557,2.884,1558,4.445,1663,4.134,1677,2.497,1745,1.913,1750,2.295,1811,2.818,1871,4.662,2214,3.032,2245,3.966,2252,6.568,2452,4.134,2629,3.995,2649,3.901,2659,2.884,2662,2.015,2693,4.175,2710,3.428,2765,4.067,2915,2.756,3147,2.698,3179,2.259,3283,3.901,3370,5.446,3434,4.574,3537,5.8,3658,3.282,3661,2.411,3899,3.901,3980,2.698,4011,6.257,4164,4.825,4244,3.901,5021,4.134,5128,2.543,5146,3.117,5164,3.209,5182,4.209,5308,3.209,5309,3.879,5548,2.955,5555,3.561,6188,3.312,6460,3.901,6473,5.012,6480,4.057,6550,6.171,6555,6.257,6581,3.715,6633,3.209,6813,3.901,6964,4.008,7011,3.209,7012,2.955,7032,4.445,7051,3.428,7070,3.561,7330,3.715,7331,7.181,7357,3.561,7398,5.395,7447,6.354,7695,4.445,7763,4.445,7764,4.134,7998,7.377,8169,3.715,8249,3.561,8364,6.257,8464,3.715,8505,7.241,8610,3.715,8699,4.445,8805,4.445,8881,3.901,8890,3.561,8931,7.241,9222,4.445,9422,4.445,9502,4.445,9660,4.134,10077,4.445,10290,6.257,10437,4.445,11301,4.445,11303,7.241,11627,4.918,11628,4.918,11629,4.918,11630,6.923,11631,4.918,11632,8.011,11633,4.918,11634,4.918,11635,4.918,11636,4.918,11637,6.923,11638,4.918,11639,4.918,11640,4.918,11641,6.923,11642,4.918,11643,4.918,11644,4.918,11645,4.918,11646,4.918,11647,4.918,11648,6.923,11649,4.918,11650,4.918,11651,4.918,11652,4.918,11653,4.918,11654,4.918,11655,4.918,11656,4.918]],["description//posts/docker-commands/",[267,1.393,536,0.675,849,0.772,938,0.981,1088,0.861,6964,1.298,7231,2.658]],["title//posts/diploma/",[4150,3.75,4236,4.518]],["content//posts/diploma/",[1088,2.073,1721,6.161,2873,5.311,2982,6.161,4236,6.399,6956,5.953,11657,8.84,11658,8.84,11659,8.84]],["description//posts/diploma/",[1485,2.923,4236,4.015,4736,4.015]],["title//posts/cheat-sheet-command-tar/",[8361,4.294,9752,4.294,11660,4.893]],["content//posts/cheat-sheet-command-tar/",[6,0.372,14,2.329,114,1.411,120,1.883,161,2.92,176,1.571,289,1.643,479,1.412,593,1.579,716,3.612,832,4.728,931,3.292,1246,3.931,1647,3.861,1716,6.078,1749,3.4,2233,6.963,2236,8.396,2259,3.45,2768,5.052,3185,6.998,5339,6.507,8843,5.396,9226,6.998,9752,8.772,9874,6.998,11661,9.314,11662,9.314,11663,9.314,11664,10.366,11665,10.605,11666,7.742,11667,9.314,11668,7.742,11669,9.314,11670,9.314,11671,7.742,11672,7.742,11673,7.742,11674,7.742,11675,9.314,11676,7.742,11677,9.314,11678,7.742,11679,9.314,11680,7.742,11681,7.742]],["description//posts/cheat-sheet-command-tar/",[191,1.027,246,0.963,849,0.929,9752,3.505,11660,3.994]],["title//posts/archive/",[3009,3.848,9229,5.641]],["content//posts/archive/",[6,0.375,1855,5.193,3009,5.46,5426,9.107,5427,9.107]],["description//posts/archive/",[]],["title//photos/_index",[922,5.843]],["content//photos/_index",[]],["description//photos/_index",[]],["title//photos/midjourney/",[2247,3.532,11682,4.294,11683,4.893]],["content//photos/midjourney/",[]],["description//photos/midjourney/",[2247,3.619,11682,4.399,11683,5.013]],["title//photos/icons/",[1386,2.449,3424,3.338,5203,3.919]],["content//photos/icons/",[2468,4.466,5203,6.483]],["description//photos/icons/",[1386,2.509,3424,3.42,5203,4.015]],["title//photos/ai/",[2247,4.072,11682,4.95]],["content//photos/ai/",[]],["description//photos/ai/",[2247,4.149,11682,5.043]],["title//photos/22-07-02-israel-haifa-bahai-gardens/",[3886,3.119,9611,4.018,11684,4.32,11685,4.32]],["content//photos/22-07-02-israel-haifa-bahai-gardens/",[6,0.377,1102,6.471]],["description//photos/22-07-02-israel-haifa-bahai-gardens/",[3886,3.209,9611,4.134,11684,4.446,11685,4.446]],["title//p/репатриация",[3886,3.532,11686,5.414,11687,4.55]],["content//p/репатриация",[6,0.269,55,3.972,56,2.782,96,1.667,191,1.682,359,2.748,395,3.816,425,2.559,461,2.559,490,1.794,593,1.228,612,3.326,636,2.474,778,1.917,785,2.27,1053,2.42,1089,2.65,1330,4.148,1452,6.544,1531,5.743,1599,3.433,1678,3.49,1731,4.724,1777,3.676,1980,6.085,2035,4.904,2057,4.148,2158,4.245,2159,5.046,2283,3.744,2573,5.469,2982,5.046,3151,6.544,3343,4.588,3494,5.469,3495,3.125,3507,7.091,3886,7.081,4082,4.35,4118,3.611,4189,5.241,4194,5.469,4201,3.326,4295,4.057,4361,4.876,4551,5.743,4561,8.081,4634,5.743,4805,4.724,4870,4.588,4920,8.081,6050,4.724,6659,4.724,6710,4.148,7051,5.046,7217,4.464,7820,6.085,8027,6.085,8585,6.544,8956,5.743,11241,6.544,11558,6.544,11687,6.085,11688,7.24,11689,7.24,11690,7.24,11691,7.24,11692,7.24,11693,8.941,11694,7.24,11695,7.24,11696,7.24,11697,7.24,11698,7.24,11699,7.24,11700,7.24,11701,7.24,11702,7.24,11703,7.24,11704,7.24,11705,7.24,11706,7.24,11707,7.24,11708,7.24,11709,7.24,11710,7.24,11711,7.24,11712,7.24,11713,7.24,11714,7.24,11715,7.24,11716,7.24,11717,7.24,11718,7.24,11719,7.24,11720,7.24,11721,7.24,11722,7.24,11723,7.24,11724,7.24,11725,7.24,11726,7.24,11727,7.24,11728,8.941,11729,7.24,11730,7.24,11731,7.24,11732,7.24,11733,7.24,11734,7.24,11735,7.24,11736,7.24,11737,7.24,11738,7.24,11739,7.24]],["description//p/репатриация",[3886,4.149,11687,5.344]],["title//p/publications",[3923,4.203,4052,4.95]],["content//p/publications",[6,0.424,8,2.374,68,0.941,75,0.908,94,3.03,114,0.941,118,1.436,120,1.257,147,1.342,151,4.67,161,2.247,191,2.064,206,1.368,234,1.087,267,1.961,356,0.931,424,2.723,425,1.827,470,1.766,525,3.292,528,3.372,598,2.036,759,3.186,805,3.058,903,3.122,915,2.146,917,2.137,1018,1.709,1019,3.291,1066,1.914,1078,2.895,1205,1.727,1210,4.099,1296,1.985,1308,1.342,1375,3.274,1441,5.797,1451,2.835,1539,4.105,1623,7.035,1632,1.381,1636,3.186,1664,5.188,1674,3.638,1711,3.776,1724,3.638,1774,2.895,1789,2.237,1996,2.672,2002,3.274,2043,4.676,2158,3.03,2321,3.741,2330,4.099,2364,2.476,2382,1.961,2570,2.623,2859,3.186,3062,4.676,3143,2.623,3147,2.835,3154,2.504,3159,1.891,3514,4.099,3878,3.903,3880,4.015,3886,4.676,3899,7.046,3900,6.477,3910,7.401,3917,4.67,3918,4.67,3922,6.477,3923,3.48,3928,4.343,3937,4.343,3968,6.477,3970,6.023,3980,2.835,4036,4.343,4052,4.099,4055,6.477,4063,5.797,4067,2.723,4082,5.338,4087,3.741,4088,3.186,4090,6.525,4091,3.372,4111,3.903,4115,5.413,4118,3.574,4155,3.186,4200,3.903,4201,2.374,4207,3.741,4219,3.602,4228,4.099,4296,6.711,4301,6.477,4314,2.723,4359,6.73,4423,3.03,4439,3.186,4463,3.186,4506,4.67,4699,4.67,4767,6.914,4850,6.023,4876,6.023,4891,4.67,4897,6.023,4930,4.67,5270,5.983,5680,2.895,5781,4.541,6229,4.343,6353,3.741,6751,6.914,6828,4.343,7135,4.995,7988,5.684,8027,4.343,8274,4.67,8674,3.903,8744,4.67,9294,6.914,9484,6.477,9894,6.477,10403,4.67,11740,5.167,11741,7.843,11742,8.226,11743,5.167,11744,5.167,11745,5.167,11746,5.167,11747,5.167,11748,5.167,11749,5.167,11750,5.167,11751,5.167,11752,5.167,11753,8.226,11754,5.167,11755,5.167,11756,5.167,11757,5.167,11758,7.166,11759,5.167,11760,5.167,11761,5.167,11762,5.167,11763,5.167,11764,5.167,11765,5.167,11766,5.167,11767,5.167,11768,5.167,11769,5.167,11770,5.167,11771,5.167,11772,5.167,11773,7.166,11774,5.167,11775,5.167,11776,5.167,11777,5.167,11778,5.167,11779,5.167,11780,5.167,11781,5.167,11782,5.167,11783,5.167,11784,5.167,11785,5.167,11786,7.166,11787,5.167,11788,5.167,11789,5.167,11790,5.167,11791,5.167,11792,5.167,11793,5.167,11794,5.167,11795,5.167,11796,5.167,11797,8.884,11798,7.166,11799,5.167,11800,5.167,11801,5.167,11802,5.167,11803,5.167,11804,5.167,11805,5.167,11806,5.167,11807,8.226,11808,5.167,11809,5.167,11810,7.166,11811,7.166,11812,5.167,11813,5.167,11814,5.167,11815,5.167,11816,7.166,11817,6.477,11818,7.166,11819,7.166,11820,7.166,11821,7.166,11822,7.166,11823,5.167,11824,5.167,11825,5.167,11826,5.167,11827,5.167,11828,5.167,11829,5.167,11830,5.167,11831,5.167,11832,5.167,11833,5.167,11834,5.167,11835,5.167,11836,5.167,11837,5.167,11838,5.167,11839,5.167,11840,5.167,11841,5.167,11842,5.167,11843,5.167,11844,5.167,11845,5.167]],["description//p/publications",[6,0.183,3899,3.901,3980,2.698,4052,3.901]],["title//p/privacy_ru",[4067,3.289,7175,4.203]],["content//p/privacy_ru",[6,0.353,8,2.966,11,2.265,18,1.542,26,1.155,29,1.595,30,1.399,38,0.698,44,1.384,46,2.187,49,1.76,56,1.714,68,1.177,71,2.914,73,1.743,75,1.708,107,1.193,137,1.944,175,0.696,182,2.827,190,1.315,198,2.187,204,1.525,206,1.71,215,4.939,216,1.095,218,4.348,227,2.746,244,4.652,245,1.137,264,1.559,288,0.784,297,2.307,300,1.633,307,1.804,331,2.456,337,1.491,344,1.185,356,0.579,381,2.577,383,2.004,411,2.351,414,3.339,419,3.786,422,1.241,435,2.307,437,1.758,470,2.207,471,1.959,472,1.758,478,1.959,488,1.459,490,1.106,507,2.068,518,1.413,525,3.486,533,3.75,536,0.82,542,1.413,545,2.681,546,3.88,583,3.88,593,0.757,605,3.11,611,1.633,625,3.11,628,3.199,635,2.135,636,1.525,649,5.494,708,2.556,709,4.348,770,4.765,778,2.337,779,2.544,781,4.73,793,2.231,828,2.225,907,0.973,935,2.218,938,1.193,1018,1.475,1037,2.225,1066,1.653,1101,2.556,1138,1.971,1143,1.804,1205,2.158,1206,2.225,1234,1.559,1255,1.673,1269,2.451,1315,3.523,1371,2.827,1470,1.577,1484,1.878,1521,4.501,1666,3.37,1764,2.911,1775,3.23,1776,2.827,1829,2.88,1854,2.751,1858,2.88,1930,1.24,1934,2.911,1943,2.827,1987,1.693,2035,2.447,2046,1.78,2125,3.786,2222,3.11,2364,1.542,2570,2.265,2612,3.75,2643,3.763,2698,2.265,2718,5.427,2985,2.827,3103,3.11,3253,2.751,3787,3.539,3803,1.693,3934,4.032,3984,2.187,4033,3.75,4067,5.52,4118,2.225,4126,4.675,4140,3.75,4195,3.75,4340,6.379,4367,3.11,4445,4.032,4459,1.959,4494,3.37,4559,4.032,4721,2.681,4729,3.75,4738,4.675,4767,8.168,4798,3.004,4830,2.616,4883,3.75,4892,3.75,4937,3.37,4955,3.539,4971,6.379,5075,3.75,5345,3.539,6194,5.122,6399,2.512,6403,3.37,6506,1.78,6612,4.032,6704,3.75,6752,3.75,6835,4.032,6919,5.318,7171,3.37,7175,7.185,7210,5.122,7216,2.911,7469,4.032,7477,4.032,7811,6.02,7912,3.75,8127,3.75,8129,5.122,8580,3.75,9294,8.168,9562,4.032,9602,4.032,9612,4.032,10731,4.032,10903,4.032,10942,4.032,11368,4.032,11410,4.032,11549,6.859,11574,7.518,11600,4.032,11817,5.836,11846,4.461,11847,11.195,11848,4.461,11849,7.589,11850,4.461,11851,4.461,11852,6.457,11853,4.461,11854,8.318,11855,4.461,11856,4.461,11857,4.461,11858,4.461,11859,4.461,11860,6.457,11861,4.461,11862,4.461,11863,4.461,11864,4.461,11865,4.461,11866,4.461,11867,4.461,11868,6.457,11869,4.461,11870,4.461,11871,4.461,11872,4.461,11873,4.461,11874,4.461,11875,4.461,11876,4.461,11877,4.461,11878,4.461,11879,4.461,11880,4.461,11881,4.461,11882,4.461,11883,4.461,11884,4.461,11885,4.461,11886,4.461,11887,6.457,11888,4.461,11889,4.461,11890,4.461,11891,4.461,11892,4.461,11893,4.461,11894,6.457,11895,4.461,11896,4.461,11897,6.457,11898,4.461,11899,4.461,11900,4.461,11901,4.461,11902,4.461,11903,4.461,11904,4.461,11905,4.461,11906,4.461,11907,4.461,11908,4.461,11909,4.461,11910,4.461,11911,4.461,11912,4.461,11913,4.461,11914,4.461,11915,4.461,11916,4.461,11917,4.461]],["description//p/privacy_ru",[]],["title//homepage/pages",[3885,4.32]],["content//homepage/pages",[]],["description//homepage/pages",[]],["title//homepage/",[]],["content//homepage/",[]],["description//homepage/",[]],["title//homepage/experience",[5548,4.426]],["content//homepage/experience",[]],["description//homepage/experience",[]],["title//homepage/education",[3990,5.843]],["content//homepage/education",[]],["description//homepage/education",[]],["title//homepage/about",[4197,5.246,11741,5.246]],["content//homepage/about",[]],["description//homepage/about",[]],["title//authors/roman-kurnovskii/_index",[4197,5.246,11741,5.246]],["content//authors/roman-kurnovskii/_index",[]],["description//authors/roman-kurnovskii/_index",[]],["title//authors/michael-cade/_index",[10239,5.246,10240,5.641]],["content//authors/michael-cade/_index",[]],["description//authors/michael-cade/_index",[]],["title//apps/_index",[75,1.295]],["content//apps/_index",[256,6.234,270,4.022,424,4.259,532,5.85,695,7.578,842,4.259,992,5.442,1249,5.12,1278,6.104,1377,4.629,1405,3.497,1611,1.298,1612,6.917,1757,6.41,1958,3.355,2084,7.304,2214,4.982,2434,6.41,2767,6.104,3034,7.217,3143,4.103,3701,6.104,5008,4.136,5014,6.104,5036,3.144,5056,6.792,5122,3.402,5138,4.433,5140,7.578,5868,4.982,6319,6.792,6432,6.434,6777,5.273,6802,4.433,6950,5.85,7385,4.179,7974,7.304,8254,7.09,10482,7.304,10608,5.891,11918,8.081,11919,8.081,11920,8.636,11921,7.304,11922,8.081,11923,6.792,11924,7.304]],["description//apps/_index",[]],["title//apps/npm/hugo-lunr-ml/",[10608,3.338,11920,4.893,11921,4.893]],["content//apps/npm/hugo-lunr-ml/",[]],["description//apps/npm/hugo-lunr-ml/",[479,0.567,1019,1.486,1089,1.468,2006,1.966,10608,2.473,11925,4.011]],["title//apps/npm/cognito-token-observer/",[256,3.532,5140,4.294,6950,3.919]],["content//apps/npm/cognito-token-observer/",[]],["description//apps/npm/cognito-token-observer/",[271,1.365,378,1.055,602,1.26,1315,1.609,3915,1.155,5078,1.429,5140,1.932,8129,3.198,9998,2.202,11926,4.032]],["title//apps/cloud-exam-quizz/",[5014,4.09,5036,2.106,11924,4.893]],["content//apps/cloud-exam-quizz/",[513,7.432,730,4.477,840,3.964,989,4.393,1395,7.679,1889,6.626,2043,5.543,2287,5.238,2837,4.867,3795,5.543,5014,6.418,5015,9.387,5016,7.14,5033,3.843,5036,3.305,5061,7.14,5680,4.76,7281,6.738,7337,7.679,9024,7.679,9930,7.14,10399,7.679,10689,7.679,11927,8.496,11928,8.496,11929,8.496,11930,8.496]],["description//apps/cloud-exam-quizz/",[4010,2.818,4033,4.134,5008,2.129,11931,4.919]],["title//apps/brewmate/",[11923,6.192]],["content//apps/brewmate/",[144,3.24,270,3.97,678,4.089,722,4.338,840,4.703,888,5.725,993,3.867,1365,3.577,1386,4.825,1509,6.574,1557,4.637,1758,6.646,2836,6.646,3332,7.147,3655,5.418,3656,7.557,3701,7.885,4530,4.53,5022,5.325,5128,4.089,5157,5.174,5162,5.16,5180,6.788,5228,7.147,5384,6.646,5554,5.512,6407,5.325,6777,5.16,7009,5.16,7613,5.512,7844,5.325,7887,5.815,8254,5.512,8747,4.751,11923,8.774,11932,7.908,11933,9.433,11934,7.908,11935,7.908,11936,7.908,11937,7.908,11938,7.908,11939,7.908,11940,7.908,11941,7.908,11942,7.908]],["description//apps/brewmate/",[1386,2.225,5122,2.07,6777,3.209,8254,3.428]],["title//_home/vintage",[11943,7.367]],["content//_home/vintage",[]],["description//_home/vintage",[]],["title//_home/blank",[11944,7.367]],["content//_home/blank",[1561,6.616]],["description//_home/blank",[]]],"invertedIndex":[["",{"_index":6,"title":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/archive/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/posts/archive/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{},"/p/репатриация":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day05/":{},"/p/publications":{}}}],["0",{"_index":313,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["0,0000133334",{"_index":5250,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0,0000166667",{"_index":5244,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0,20",{"_index":5247,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0.0.0.0",{"_index":7095,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["0.0.0.0:8080",{"_index":8523,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["0.0.1",{"_index":1366,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day53":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["0.1.3",{"_index":11035,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["0.10.6",{"_index":6776,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["0.10.6.ex",{"_index":6780,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["0.12.26",{"_index":8097,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0.13.x",{"_index":8095,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0.14.9",{"_index":8088,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0.19",{"_index":1798,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["0.19.21",{"_index":7079,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["0.2.2",{"_index":8039,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["0.20",{"_index":11058,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["0.7.10",{"_index":1368,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["0.75.0",{"_index":6531,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["0.97",{"_index":1801,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["00",{"_index":5755,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["000",{"_index":7055,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["0000",{"_index":11835,"title":{},"content":{"/p/publications":{}},"description":{}}],["0002",{"_index":11836,"title":{},"content":{"/p/publications":{}},"description":{}}],["00:00:00",{"_index":2877,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["01",{"_index":1210,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day34":{},"/p/publications":{}},"description":{}}],["01.png",{"_index":5303,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["01/05/2021",{"_index":9326,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["01/deploymentparameters.json",{"_index":8992,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["01/deploymenttemplate.json",{"_index":9001,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["02",{"_index":1060,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["02.png",{"_index":5331,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["02d",{"_index":8043,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["02t15",{"_index":6614,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["02t15:04:05.999999999z07:00",{"_index":6613,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["03",{"_index":1531,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/p/репатриация":{}},"description":{}}],["03.png",{"_index":5333,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["03/js/main.j",{"_index":1537,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["04",{"_index":1281,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["04.png",{"_index":5334,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["05",{"_index":1455,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day88":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["05.png",{"_index":5336,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["05/js/main.j",{"_index":1457,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["06",{"_index":933,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["06.png",{"_index":5340,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["07",{"_index":9097,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["07.png",{"_index":5342,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["08",{"_index":9017,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["08.00.14",{"_index":4059,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["08.png",{"_index":5349,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["09.png",{"_index":5362,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["09a",{"_index":9143,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["0:3",{"_index":3632,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["0\\n",{"_index":9455,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["0b001",{"_index":3597,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["0b011",{"_index":3596,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["0b101",{"_index":3595,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["0cbb",{"_index":8123,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["0x1e",{"_index":3542,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["0x7f45caf44048",{"_index":1788,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["1",{"_index":114,"title":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day01":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/cheat-sheet-command-tar/":{},"/p/publications":{}},"description":{}}],["1\":\"$2",{"_index":10318,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["1*2",{"_index":5849,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["1,1,1,1",{"_index":5847,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["1,2",{"_index":8986,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["1,2,3",{"_index":10784,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["1,2,3):[1,2,3",{"_index":10787,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["1,2,3,4,5",{"_index":5710,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/posts/python-snippets/":{}},"description":{}}],["1..num_worker_nodes).each",{"_index":8332,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["1.0",{"_index":5076,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-snippets/":{}},"description":{}}],["1.0.0.0",{"_index":8994,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["1.1",{"_index":11848,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["1.1.6",{"_index":8118,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["1.2",{"_index":11850,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["1.2.0",{"_index":1369,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["1.4",{"_index":9085,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["1.5k",{"_index":11668,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["1/2=1/4",{"_index":5000,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["10",{"_index":1750,"title":{"/tracks/90daysofdevops/day10":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["10,20,30],[40,50,60],[70,80,90",{"_index":2156,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["10.0",{"_index":10719,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["10.0.0.0/16",{"_index":5353,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.0.1",{"_index":7835,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["10.0.1.0/24",{"_index":5361,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.100.0/24(u",{"_index":5356,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.101.0/24",{"_index":5358,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.10.88.110",{"_index":9383,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.111",{"_index":9386,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.112",{"_index":9389,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.113",{"_index":9392,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.10.88.114",{"_index":9395,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["10.15",{"_index":11940,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["10.40.0.0/22",{"_index":9054,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.40.0.0/24",{"_index":9056,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.40.1.0/24",{"_index":9058,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.70.0.0/22",{"_index":9110,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.70.0.0/24",{"_index":9112,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["10.png",{"_index":5363,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["100",{"_index":1273,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{"/tracks/python-101/_index":{}}}],["1000",{"_index":3616,"title":{},"content":{"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["10000",{"_index":9167,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1000:1000",{"_index":7444,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["1004",{"_index":6036,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["1005",{"_index":9164,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1009",{"_index":8541,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["100daysofkubernet",{"_index":8220,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["101",{"_index":2651,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{}}}],["101/400_frameworks/403_fastapi.ru.md",{"_index":3101,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["1010",{"_index":9166,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1024",{"_index":815,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["1024x768",{"_index":813,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["104",{"_index":6228,"title":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day34":{}},"description":{"/tracks/algorithms-101/leetcode/easy/104/":{}}}],["1071",{"_index":6206,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["10шек",{"_index":11725,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["11",{"_index":1950,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day11":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["11,6",{"_index":10127,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["11.png",{"_index":5365,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["112",{"_index":6567,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["12",{"_index":1711,"title":{"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{}},"description":{}}],["12.26.28.png",{"_index":11520,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["12.png",{"_index":5370,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["120",{"_index":2338,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["121",{"_index":2139,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["123",{"_index":3409,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-snippets/":{}},"description":{}}],["123\".isalnum",{"_index":2602,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["1234",{"_index":6101,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["12345",{"_index":6100,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["1237",{"_index":8731,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["127.0.0.1",{"_index":1419,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["127.0.0.1:9090:9090",{"_index":7192,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["128",{"_index":9909,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["1280",{"_index":739,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["1280x720",{"_index":736,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["128mb",{"_index":9907,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["12–18",{"_index":4311,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["13",{"_index":1974,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["13.png",{"_index":5371,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["1321",{"_index":6571,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["1372",{"_index":6003,"title":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["138",{"_index":5987,"title":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["139",{"_index":11743,"title":{},"content":{"/p/publications":{}},"description":{}}],["14",{"_index":1985,"title":{"/tracks/90daysofdevops/day14":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["14.png",{"_index":5375,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["14.x",{"_index":11131,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["141",{"_index":11744,"title":{},"content":{"/p/publications":{}},"description":{}}],["143",{"_index":11745,"title":{},"content":{"/p/publications":{}},"description":{}}],["144",{"_index":6576,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["1443",{"_index":9179,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["1448",{"_index":5980,"title":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1448/":{}}}],["145",{"_index":11775,"title":{},"content":{"/p/publications":{}},"description":{}}],["14:42",{"_index":11670,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["15",{"_index":1996,"title":{"/tracks/90daysofdevops/day15":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/p/publications":{}},"description":{}}],["15.png",{"_index":5374,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["151",{"_index":5443,"title":{"/tracks/algorithms-101/leetcode/medium/151":{}},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["152",{"_index":11858,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["16",{"_index":2002,"title":{"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{}}],["16.06.2022",{"_index":6787,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["16.png",{"_index":5379,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["16.x",{"_index":5259,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["1605—1680",{"_index":4933,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["1657",{"_index":11833,"title":{},"content":{"/p/publications":{}},"description":{}}],["1679",{"_index":5973,"title":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["17",{"_index":2011,"title":{"/tracks/90daysofdevops/day17":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["17.png",{"_index":5381,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["1723—1790",{"_index":4948,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["1732",{"_index":6190,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["1768",{"_index":6175,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["1772",{"_index":4977,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["1776",{"_index":4944,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["18",{"_index":2016,"title":{"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/_index":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["18.0",{"_index":7579,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["18.04",{"_index":8536,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["1823",{"_index":4978,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["184",{"_index":4265,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["18:00:00",{"_index":2860,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["18:26",{"_index":6786,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["18:27",{"_index":6807,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["19",{"_index":2032,"title":{"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["19.35.50.png",{"_index":11112,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["19.50.08.png",{"_index":11074,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["19.52.04.png",{"_index":11077,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["192.168.169.115",{"_index":9384,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.125",{"_index":9393,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.130",{"_index":7772,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.131",{"_index":7775,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.131:8000",{"_index":7716,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["192.168.169.132",{"_index":7777,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.132:8000",{"_index":7717,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["192.168.169.133",{"_index":7809,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.134",{"_index":7779,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.140",{"_index":7808,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["192.168.169.178",{"_index":9387,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.193",{"_index":9390,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.169.197",{"_index":9396,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["192.168.49.2",{"_index":8207,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["1920",{"_index":11813,"title":{},"content":{"/p/publications":{}},"description":{}}],["1930",{"_index":11814,"title":{},"content":{"/p/publications":{}},"description":{}}],["19403",{"_index":239,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["1962",{"_index":4347,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["1970",{"_index":2876,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["1995",{"_index":4353,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["1999",{"_index":4321,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["19:50",{"_index":6423,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["1d",{"_index":5812,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["1st",{"_index":2425,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["1с",{"_index":11794,"title":{},"content":{"/p/publications":{}},"description":{}}],["1с:монитор",{"_index":11795,"title":{},"content":{"/p/publications":{}},"description":{}}],["2",{"_index":120,"title":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day02":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/cheat-sheet-command-tar/":{},"/p/publications":{}},"description":{}}],["2)(2",{"_index":10854,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2)(3",{"_index":10853,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2**3",{"_index":10720,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2*3",{"_index":5851,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["2*c",{"_index":5602,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["2*n",{"_index":6255,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["2,3,4,5",{"_index":5846,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["2.0",{"_index":5367,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["2.0.0",{"_index":7954,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["2.1",{"_index":5075,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/p/privacy_ru":{}},"description":{}}],["2.16.0",{"_index":7991,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["2.2",{"_index":11863,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["2.3",{"_index":11864,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["2.4",{"_index":11865,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["2.5",{"_index":3592,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["2.console.aws.amazon.com/lambda/home?region=u",{"_index":5253,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["2.x",{"_index":2220,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["2/2",{"_index":7446,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["2/3",{"_index":4998,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["20",{"_index":2043,"title":{"/tracks/90daysofdevops/day20":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/p/publications":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["20.04",{"_index":8474,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["200",{"_index":10658,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["2000",{"_index":4089,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["2006",{"_index":6612,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/p/privacy_ru":{}},"description":{}}],["2007",{"_index":8744,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/p/publications":{}},"description":{}}],["2008",{"_index":3970,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day40":{},"/p/publications":{}},"description":{}}],["2009",{"_index":10134,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["200мб",{"_index":8644,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["201",{"_index":3051,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["2010",{"_index":4090,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day06":{},"/p/publications":{}},"description":{}}],["2011",{"_index":10126,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["2012",{"_index":11803,"title":{},"content":{"/p/publications":{}},"description":{}}],["2013",{"_index":11800,"title":{},"content":{"/p/publications":{}},"description":{}}],["2014",{"_index":4506,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/p/publications":{}},"description":{}}],["2015",{"_index":11192,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["2017",{"_index":8529,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["2018",{"_index":132,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["2019",{"_index":153,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day34":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2020",{"_index":4236,"title":{"/posts/diploma/":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day81":{},"/posts/diploma/":{}},"description":{"/posts/diploma/":{}}}],["2020:2020",{"_index":7120,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["2021",{"_index":179,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2021]](https://www.upgrad.com/blog/devop",{"_index":10140,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["2022",{"_index":2859,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/articles-notes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{}},"description":{}}],["2022г",{"_index":11756,"title":{},"content":{"/p/publications":{}},"description":{}}],["2023",{"_index":1664,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-snippets/":{},"/p/publications":{}},"description":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["2023/01",{"_index":11830,"title":{},"content":{"/p/publications":{}},"description":{}}],["2023/02/17",{"_index":1667,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["2023/02/27",{"_index":1613,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["204",{"_index":3059,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["2048",{"_index":7804,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["206",{"_index":6165,"title":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["2095",{"_index":5957,"title":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{}}}],["21",{"_index":2056,"title":{"/tracks/90daysofdevops/day21":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["21.10",{"_index":7771,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["210",{"_index":5930,"title":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["212530",{"_index":11310,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["2130",{"_index":5912,"title":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["215",{"_index":5902,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["21:41:24.871910",{"_index":10674,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["22",{"_index":1972,"title":{"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["22.04",{"_index":11396,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["22.10",{"_index":11392,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["2210",{"_index":7774,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["2211",{"_index":7776,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["2212",{"_index":7778,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["2213",{"_index":7780,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["23",{"_index":2121,"title":{"/tracks/90daysofdevops/day23":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["233",{"_index":6578,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["2352",{"_index":5880,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["236",{"_index":5863,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{}}}],["237",{"_index":5854,"title":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/237/":{}}}],["238",{"_index":5828,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["24",{"_index":2167,"title":{"/tracks/90daysofdevops/day24":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["240",{"_index":5813,"title":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/240/":{}}}],["2418",{"_index":11840,"title":{},"content":{"/p/publications":{}},"description":{}}],["243",{"_index":11801,"title":{},"content":{"/p/publications":{}},"description":{}}],["247",{"_index":11802,"title":{},"content":{"/p/publications":{}},"description":{}}],["25",{"_index":2137,"title":{"/tracks/90daysofdevops/day25":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["2500",{"_index":4041,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["251",{"_index":5793,"title":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["256",{"_index":10403,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/p/publications":{}},"description":{}}],["25px",{"_index":10634,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["26",{"_index":2204,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["260",{"_index":11804,"title":{},"content":{"/p/publications":{}},"description":{}}],["2666",{"_index":11834,"title":{},"content":{"/p/publications":{}},"description":{}}],["27",{"_index":2222,"title":{"/tracks/90daysofdevops/day27":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/p/privacy_ru":{}},"description":{}}],["277",{"_index":5768,"title":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["28",{"_index":2242,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day28":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["283",{"_index":6157,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["2844",{"_index":5752,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["287",{"_index":5732,"title":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/287/":{}}}],["29",{"_index":178,"title":{"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["2994",{"_index":11697,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["2a",{"_index":8079,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["2a)и",{"_index":5357,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2b",{"_index":5359,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2d",{"_index":5794,"title":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{}}}],["2dbc9a819cb8",{"_index":11143,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["2n",{"_index":6254,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["2nd",{"_index":2428,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["2rem",{"_index":10628,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["2тыс",{"_index":4047,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["3",{"_index":147,"title":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day03":{},"/posts/ruGPT-3-notes":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/ruGPT-3-notes":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{"/posts/ruGPT-3-notes":{}}}],["3.0",{"_index":3365,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.1",{"_index":11870,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["3.10",{"_index":3789,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["3.12",{"_index":2754,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["3.14",{"_index":3609,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["3.2",{"_index":11871,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["3.27",{"_index":8086,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["3.3",{"_index":11873,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["3.3333333333333335",{"_index":3615,"title":{},"content":{"/tracks/python-101/basis/numbers":{},"/posts/python-snippets/":{}},"description":{}}],["3.5",{"_index":10800,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.6",{"_index":3543,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{}},"description":{}}],["3.7",{"_index":3155,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/posts/python-snippets/":{}},"description":{}}],["3.8",{"_index":11002,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["3.9",{"_index":8562,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.x",{"_index":2219,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["3/4",{"_index":4999,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["30",{"_index":2158,"title":{"/tracks/90daysofdevops/day30":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["300",{"_index":4023,"title":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{}},"description":{"/tracks/algorithms-101/leetcode/medium/300/":{}}}],["3000",{"_index":6077,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day65":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["3002",{"_index":10397,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["30201",{"_index":7968,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["30201:80",{"_index":7972,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["31",{"_index":2271,"title":{"/tracks/90daysofdevops/day31":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["3104",{"_index":1778,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["32",{"_index":2280,"title":{"/tracks/90daysofdevops/day32":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["320px",{"_index":1274,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["321",{"_index":6096,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["328",{"_index":5677,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["33",{"_index":2291,"title":{"/tracks/90daysofdevops/day33":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["334",{"_index":5656,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["3389",{"_index":9135,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["34",{"_index":2296,"title":{"/tracks/90daysofdevops/day34":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["341",{"_index":5639,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{}}}],["345",{"_index":6145,"title":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["35",{"_index":2317,"title":{"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["358",{"_index":6569,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["36",{"_index":2321,"title":{"/tracks/90daysofdevops/day36":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/_index":{},"/p/publications":{}},"description":{}}],["365",{"_index":9295,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["3683",{"_index":11838,"title":{},"content":{"/p/publications":{}},"description":{}}],["37",{"_index":2330,"title":{"/tracks/90daysofdevops/day37":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/p/publications":{}},"description":{}}],["377",{"_index":6580,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["38",{"_index":2344,"title":{"/tracks/90daysofdevops/day38":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["384",{"_index":5625,"title":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/384/":{}}}],["387",{"_index":5614,"title":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/387/":{}}}],["39",{"_index":2348,"title":{"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["392",{"_index":6132,"title":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["394",{"_index":5588,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["3[a2[c",{"_index":5598,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["3a99af449ca2",{"_index":8513,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["3j",{"_index":3610,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["4",{"_index":161,"title":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day04":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/p/publications":{}},"description":{"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["4.0",{"_index":10263,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["4.1",{"_index":11874,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["4.2",{"_index":11876,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["4.3",{"_index":11882,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["4.4",{"_index":11886,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["40",{"_index":2159,"title":{"/tracks/90daysofdevops/day40":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/_index":{},"/p/репатриация":{}},"description":{}}],["400",{"_index":5396,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["4000",{"_index":9169,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["404",{"_index":3044,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["4048",{"_index":8325,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["4096",{"_index":11068,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["41",{"_index":2437,"title":{"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["42",{"_index":2457,"title":{"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day42":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["43",{"_index":2486,"title":{"/tracks/90daysofdevops/day43":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["437",{"_index":5547,"title":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{}}}],["44",{"_index":2488,"title":{"/tracks/90daysofdevops/day44":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["443",{"_index":5532,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day33":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["443(http",{"_index":9174,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["443:443",{"_index":8268,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["4443",{"_index":7616,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["445",{"_index":9233,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["45",{"_index":2491,"title":{"/tracks/90daysofdevops/day45":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["454",{"_index":5515,"title":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{}}}],["46",{"_index":2524,"title":{"/tracks/90daysofdevops/day46":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["47",{"_index":1481,"title":{"/tracks/90daysofdevops/day47":{}},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["48",{"_index":2569,"title":{"/tracks/90daysofdevops/day48":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["480",{"_index":811,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["49",{"_index":2138,"title":{"/tracks/90daysofdevops/day49":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["4sum",{"_index":5516,"title":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"content":{},"description":{}}],["5",{"_index":30,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["5,12",{"_index":6301,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["5,12,21",{"_index":6302,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["5,12,21,24",{"_index":6303,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["5.0",{"_index":3364,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["5.1",{"_index":11888,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["5.14",{"_index":11412,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.2",{"_index":11892,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["5.3",{"_index":11893,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["5.32",{"_index":11416,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.4",{"_index":11895,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["50",{"_index":1641,"title":{"/tracks/90daysofdevops/day50":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/_index":{},"/posts/trading-indicators/sma":{}},"description":{}}],["500",{"_index":1203,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["5000",{"_index":10386,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["500стр",{"_index":4263,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["51",{"_index":2590,"title":{"/tracks/90daysofdevops/day51":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["512",{"_index":8047,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["52",{"_index":2591,"title":{"/tracks/90daysofdevops/day52":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["520",{"_index":4502,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["53",{"_index":2595,"title":{"/tracks/90daysofdevops/day53":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["535",{"_index":4504,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["536",{"_index":9155,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["54",{"_index":2603,"title":{"/tracks/90daysofdevops/day54":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["55",{"_index":1665,"title":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["5500",{"_index":11659,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["5589",{"_index":6574,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["56",{"_index":8135,"title":{"/tracks/90daysofdevops/day56":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["5601:5601",{"_index":7029,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["57",{"_index":7934,"title":{"/tracks/90daysofdevops/day57":{}},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["58",{"_index":8061,"title":{"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["587",{"_index":2728,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["59",{"_index":8031,"title":{"/tracks/90daysofdevops/day59":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["5mb",{"_index":7103,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["6",{"_index":1789,"title":{"/tracks/90daysofdevops/day06":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{}}],["6*4",{"_index":5853,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["6.1",{"_index":10903,"title":{},"content":{"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["6.2",{"_index":10942,"title":{},"content":{"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["60",{"_index":2160,"title":{"/tracks/90daysofdevops/day60":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["600",{"_index":7782,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["6040",{"_index":11837,"title":{},"content":{"/p/publications":{}},"description":{}}],["605",{"_index":6117,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["61",{"_index":7947,"title":{"/tracks/90daysofdevops/day61":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["62",{"_index":7895,"title":{"/tracks/90daysofdevops/day62":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["63",{"_index":7848,"title":{"/tracks/90daysofdevops/day63":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["64",{"_index":7825,"title":{"/tracks/90daysofdevops/day64":{}},"content":{"/tracks/90daysofdevops/_index":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["640",{"_index":810,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["64000",{"_index":973,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["640x480",{"_index":808,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["6433",{"_index":8358,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["649",{"_index":5467,"title":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/649/":{}}}],["64b",{"_index":11673,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["64kb",{"_index":984,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["65",{"_index":7747,"title":{"/tracks/90daysofdevops/day65":{}},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["66",{"_index":7619,"title":{"/tracks/90daysofdevops/day66":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["67",{"_index":7702,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["670d",{"_index":8122,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["68",{"_index":7606,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["69",{"_index":7565,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["7",{"_index":1818,"title":{"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day22":{}}}],["7.0",{"_index":10717,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["7.0.108",{"_index":3971,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["7.0.5",{"_index":3969,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["7.1",{"_index":11900,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.1",{"_index":11902,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.2",{"_index":11903,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.3",{"_index":11905,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.1.4",{"_index":11907,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.2",{"_index":11910,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["7.2.1",{"_index":11913,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["70",{"_index":2161,"title":{"/tracks/90daysofdevops/day70":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["700",{"_index":8253,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["709a",{"_index":8974,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["71",{"_index":7461,"title":{"/tracks/90daysofdevops/day71":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["72",{"_index":7420,"title":{"/tracks/90daysofdevops/day72":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["720",{"_index":740,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["720/1000",{"_index":5049,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["73",{"_index":7353,"title":{"/tracks/90daysofdevops/day73":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["735",{"_index":5451,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["74",{"_index":7328,"title":{"/tracks/90daysofdevops/day74":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["7469bbb6d7",{"_index":8163,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["75",{"_index":5756,"title":{"/tracks/90daysofdevops/day75":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["75/100",{"_index":5054,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["750",{"_index":9880,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["76",{"_index":7233,"title":{"/tracks/90daysofdevops/day76":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["768",{"_index":816,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["77",{"_index":7207,"title":{"/tracks/90daysofdevops/day77":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["775",{"_index":9877,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["777",{"_index":9876,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["78",{"_index":7184,"title":{"/tracks/90daysofdevops/day78":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["79",{"_index":7146,"title":{"/tracks/90daysofdevops/day79":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["7:00",{"_index":11126,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["8",{"_index":1724,"title":{"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{}}],["8.0",{"_index":11417,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["8.1",{"_index":11915,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["8.2",{"_index":11916,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["8.8.8.8",{"_index":9600,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["80",{"_index":2162,"title":{"/tracks/90daysofdevops/day80":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["80/tcp",{"_index":8524,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["800",{"_index":11478,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["8000",{"_index":7614,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["8000:80",{"_index":8571,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["8080",{"_index":1429,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["8080:443",{"_index":7256,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["8080:80",{"_index":8521,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["8080:8000",{"_index":6455,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["8080:8080",{"_index":7452,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["8090:80",{"_index":8240,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["8096",{"_index":9904,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["80:80",{"_index":8267,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["81",{"_index":7041,"title":{"/tracks/90daysofdevops/day81":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["82",{"_index":7016,"title":{"/tracks/90daysofdevops/day82":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["826",{"_index":9587,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["83",{"_index":6947,"title":{"/tracks/90daysofdevops/day83":{}},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["830c94e3",{"_index":8089,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["84",{"_index":6905,"title":{"/tracks/90daysofdevops/day84":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["84cf7f59c",{"_index":7027,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["85",{"_index":6515,"title":{"/tracks/90daysofdevops/day85":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["86",{"_index":6716,"title":{"/tracks/90daysofdevops/day86":{}},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["867",{"_index":11129,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["87",{"_index":6663,"title":{"/tracks/90daysofdevops/day87":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["872",{"_index":6102,"title":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/872/":{}}}],["88",{"_index":6514,"title":{"/tracks/90daysofdevops/day88":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["89",{"_index":6376,"title":{"/tracks/90daysofdevops/day89":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["8kvl4",{"_index":7119,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["9",{"_index":1901,"title":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-install-rhel-9-free/":{}}}],["90",{"_index":2163,"title":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["900000000",{"_index":10977,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["9090",{"_index":6988,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["9090:80",{"_index":6690,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["9093",{"_index":7004,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["90day",{"_index":9004,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["90days.php",{"_index":9739,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["90daysofdevop",{"_index":6350,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["90daysofdevops.sh",{"_index":10287,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["90daysofdevops.txt",{"_index":9756,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["90daysofdevops:0.1",{"_index":8624,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["928",{"_index":11776,"title":{},"content":{"/p/publications":{}},"description":{}}],["931",{"_index":11777,"title":{},"content":{"/p/publications":{}},"description":{}}],["933",{"_index":6074,"title":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["9733333",{"_index":11698,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["99",{"_index":9245,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["99,99",{"_index":9243,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["9999999",{"_index":7393,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["99d",{"_index":7390,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["9mhxd",{"_index":8164,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["_",{"_index":2460,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["__",{"_index":2463,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["__,_|\\__",{"_index":10300,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["___",{"_index":10298,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["___/\\___/|_",{"_index":10301,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["____",{"_index":10299,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["__ansh",{"_index":1947,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["__private_method(self",{"_index":2477,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["_advance_to_next(self",{"_index":5810,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["_default",{"_index":11345,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_dir",{"_index":2792,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["_ediri",{"_index":10200,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["_file",{"_index":2794,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["_formatter_field_name_split",{"_index":3815,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["_formatter_pars",{"_index":3816,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["_markup",{"_index":11346,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_protected_method(self",{"_index":2475,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["_sara",{"_index":1941,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["_systemd_unit=kubelet.servic",{"_index":7108,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["_например",{"_index":5369,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["a&b\\\\c&d",{"_index":10490,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["a**pach",{"_index":9730,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["a+b",{"_index":3719,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["a+b+c",{"_index":10499,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["a.init(self",{"_index":2397,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["a.obj",{"_index":11516,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["a048",{"_index":8124,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["a2",{"_index":1973,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["a3b2a3",{"_index":5536,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["a74296e7",{"_index":8121,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["a81944423cbfeeb92be0784edebba1af799735ebc30ba8cbe5cc5f996094f30b",{"_index":8292,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["a:j",{"_index":11527,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["a=3",{"_index":10836,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["a=5",{"_index":3721,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["a=msid",{"_index":69,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["a[client",{"_index":10644,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["a[end",{"_index":6044,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["a[i",{"_index":5517,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["a[start",{"_index":6045,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["a[учеб",{"_index":10652,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["a_func(self",{"_index":2424,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["a_funct",{"_index":3709,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["a_nam",{"_index":2389,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["aa",{"_index":9360,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["aaabbaaa",{"_index":5535,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["aarch64",{"_index":11419,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abbr",{"_index":11209,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["abc",{"_index":2601,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/posts/python-snippets/":{}},"description":{}}],["abc123\".isalnum",{"_index":2599,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["abcd",{"_index":6135,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["abcddeef",{"_index":10859,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["abil",{"_index":11928,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["about:blank",{"_index":324,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["abov",{"_index":9496,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/posts/emoji-support":{}},"description":{}}],["absolut",{"_index":8215,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["ac",{"_index":6134,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/featured-image":{}},"description":{}}],["academia.edu",{"_index":11786,"title":{},"content":{"/p/publications":{}},"description":{}}],["acc",{"_index":5603,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["access",{"_index":271,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{},"/apps/npm/cognito-token-observer/":{}}}],["access/consum",{"_index":9954,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["access123",{"_index":9405,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["access_key",{"_index":6587,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["access_token",{"_index":9943,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["access_token_secret",{"_index":9944,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accesstoken",{"_index":9958,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accesstokensecret",{"_index":9959,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accordingli",{"_index":703,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["account",{"_index":6562,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day19/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["account:\\n%+v\\n",{"_index":9983,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["accounts(nam",{"_index":6564,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["accumsan",{"_index":10600,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["accumul",{"_index":2962,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["acid",{"_index":6858,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["acm",{"_index":5139,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["aco",{"_index":2061,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["act",{"_index":10424,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["action",{"_index":5377,"title":{"/tracks/90daysofdevops/day75":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["action='store_const",{"_index":2966,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["action@4.1.1",{"_index":11136,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actions/checkout@v2",{"_index":7284,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actions/setup",{"_index":7285,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actions_deploy_key",{"_index":11075,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["actionset",{"_index":6521,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["actionset'ов",{"_index":6641,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["activ",{"_index":8749,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["actual",{"_index":10245,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ad",{"_index":582,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["adapt",{"_index":1495,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["adapter.j",{"_index":1035,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["adc",{"_index":9558,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["add",{"_index":575,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["add(2",{"_index":3712,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["add(5",{"_index":3691,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/posts/python-snippets/":{}},"description":{}}],["add(a",{"_index":3711,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["add(self",{"_index":6330,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["add(x",{"_index":10822,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add(y=6",{"_index":10823,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10",{"_index":10850,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(3",{"_index":10852,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(i",{"_index":10858,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["adder",{"_index":10849,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["adder(i",{"_index":10848,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["addeventlistener('icecandid",{"_index":1092,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["addicecandid",{"_index":1122,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["addit",{"_index":8867,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["addon",{"_index":6484,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["addons=ingress",{"_index":7582,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["addr",{"_index":8525,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["address",{"_index":1354,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["addressprefix",{"_index":9053,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["addressspac",{"_index":9052,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["adhoc",{"_index":6785,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["adipis",{"_index":11160,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["adjust",{"_index":5167,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["admin",{"_index":3107,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["adminpassword",{"_index":8998,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["adminusernam",{"_index":8997,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["adopt",{"_index":10142,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["advanc",{"_index":6474,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["advis",{"_index":11008,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ae",{"_index":10413,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["aec",{"_index":6136,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["aenean",{"_index":10521,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ag",{"_index":1964,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["again",{"_index":10278,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["against",{"_index":9955,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["age(self",{"_index":10883,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.delet",{"_index":10885,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.sett",{"_index":10884,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age=25",{"_index":3731,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["age=30",{"_index":3773,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["agent",{"_index":7358,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["agent:v2.6.3",{"_index":8287,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["aggreg",{"_index":10076,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["agil",{"_index":10157,"title":{"/tracks/90daysofdevops/day04":{}},"content":{"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day04":{}}}],["agnost",{"_index":7935,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["ahv",{"_index":8067,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["ai",{"_index":11682,"title":{"/photos/midjourney/":{},"/photos/ai/":{}},"content":{},"description":{"/photos/midjourney/":{},"/photos/ai/":{}}}],["ain't",{"_index":8556,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["ak",{"_index":8345,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["al",{"_index":9878,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["alert('getusermedia",{"_index":949,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["alert('hello",{"_index":11259,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["alertmanag",{"_index":7000,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["algorithm",{"_index":6347,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["algorithmica",{"_index":6344,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["alia",{"_index":8485,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["alic",{"_index":3531,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/markdown-syntax/":{}},"description":{}}],["alice’",{"_index":1144,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["align",{"_index":10497,"title":{},"content":{"/posts/math-support":{},"/posts/emoji-support":{}},"description":{}}],["aliquam",{"_index":10533,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["aliquet",{"_index":10546,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["all_the_args(**kwarg",{"_index":10839,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(*arg",{"_index":10838,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(1",{"_index":10835,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(a=3",{"_index":10840,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(arg",{"_index":10833,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["allow",{"_index":269,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["allowapptodb",{"_index":9177,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["allowinternettoweb",{"_index":9173,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["allowj",{"_index":11465,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowsyntheticdefaultimport",{"_index":11468,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowwebtoapp",{"_index":9175,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["along",{"_index":5041,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["alpha",{"_index":11010,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["alpha.1",{"_index":8040,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["alreadi",{"_index":5786,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["altern",{"_index":6176,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["altitud",{"_index":6192,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{},"description":{}}],["alway",{"_index":836,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["amazon",{"_index":5078,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/aws-certified-developer-associate/ec2/":{},"/apps/npm/cognito-token-observer/":{}}}],["amazonec2readonlyaccess",{"_index":5306,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["amd",{"_index":9525,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["amend",{"_index":8918,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["american",{"_index":3986,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["amet",{"_index":10552,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["ami",{"_index":5412,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["amount",{"_index":10307,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["amp",{"_index":987,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["amplifi",{"_index":5108,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["anaconda",{"_index":3176,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["analit",{"_index":11887,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["analysi",{"_index":6189,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["analyt",{"_index":5077,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["anatomi",{"_index":10254,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ancestor",{"_index":5866,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"content":{},"description":{}}],["and/or",{"_index":10725,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["andaepu",{"_index":11180,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["android",{"_index":1604,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/posts/emoji-support":{}},"description":{}}],["angular",{"_index":8855,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["anim",{"_index":3845,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["annot",{"_index":6673,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["annotations\":{\"storageclass.kubernetes.io/i",{"_index":6679,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["anoth",{"_index":5159,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day46":{},"/posts/diagram-support":{},"/posts/markdown-syntax/":{}},"description":{}}],["another_tupl",{"_index":3371,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["anotherday",{"_index":9857,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["ansh",{"_index":1800,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ansibl",{"_index":7566,"title":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ansible.builtin.p",{"_index":7762,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["ansible.builtin.setup",{"_index":7759,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["ansible.com",{"_index":7574,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["ansible/terraform",{"_index":7849,"title":{"/tracks/90daysofdevops/day63":{}},"content":{},"description":{}}],["ansible_facts['nodenam",{"_index":7635,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["ansible_os_famili",{"_index":7756,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["answer",{"_index":513,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["answer.append(prefix[i",{"_index":5844,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["answer[i",{"_index":5829,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["ant",{"_index":7472,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/posts/featured-image":{}},"description":{}}],["antu%c3%b1a",{"_index":11146,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["any((x",{"_index":10699,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["any.whl",{"_index":11037,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ap",{"_index":8072,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["apa",{"_index":3985,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["apach",{"_index":7474,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day18":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["apache2",{"_index":7620,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["apache2_install.yml",{"_index":7739,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["api",{"_index":35,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day13":{}}}],["apiserv",{"_index":6486,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["apivers",{"_index":6593,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["aplic",{"_index":9810,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["apm",{"_index":7036,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["app",{"_index":1386,"title":{"/tracks/90daysofdevops/day74":{},"/photos/icons/":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/apps/brewmate/":{}},"description":{"/photos/icons/":{},"/apps/brewmate/":{}}}],["app.config['elastic_apm",{"_index":10468,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["app.config['sqlalchemy_database_uri",{"_index":3021,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["app.delete(\"/tasks/{task_id",{"_index":3095,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.get(\"/task",{"_index":3078,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.get(\"/tasks/{task_id",{"_index":3082,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.kubernetes.io/inst",{"_index":6604,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app.kubernetes.io/instance=flu",{"_index":7073,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.kubernetes.io/manag",{"_index":7074,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.kubernetes.io/name=flu",{"_index":7076,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.kubernetes.io/version=1.8.14",{"_index":7077,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["app.listen(8888",{"_index":3006,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["app.on('activ",{"_index":11490,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.on('window",{"_index":11487,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.post(\"/task",{"_index":3088,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.put(\"/tasks/{task_id",{"_index":3093,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["app.quit",{"_index":11489,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.route('/book",{"_index":3031,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["app.tsx",{"_index":11455,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.update.en",{"_index":327,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["app.whenready().then(createwindow",{"_index":11486,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app/mysql",{"_index":6643,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app/s3",{"_index":6644,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app=prometheus,component=serv",{"_index":7203,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["app_nam",{"_index":3112,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["app_name=mi",{"_index":6534,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["app_ns=${app_nam",{"_index":6552,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["appconfig",{"_index":5124,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["append",{"_index":895,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["appendnumber(arr",{"_index":2292,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["appl",{"_index":3376,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day28":{},"/posts/emoji-support":{},"/posts/markdown-syntax/":{}},"description":{}}],["appli",{"_index":7251,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["applic",{"_index":840,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/cloud-exam-quizz/":{},"/apps/brewmate/":{}},"description":{}}],["applications,servic",{"_index":5416,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["applyconstraint",{"_index":824,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["approach",{"_index":5409,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["approv",{"_index":8106,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["approxim",{"_index":11023,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["apprtc",{"_index":1199,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["apps/v1",{"_index":8228,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["appserv",{"_index":9176,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["appservic",{"_index":9307,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["appsync",{"_index":5084,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["apt",{"_index":3660,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["arc",{"_index":9306,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["arch=amd64",{"_index":9782,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["architect",{"_index":5200,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["architectur",{"_index":5194,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["archiv",{"_index":9229,"title":{"/posts/archive/":{}},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["archive.tar",{"_index":11662,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["arcu",{"_index":10554,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["area",{"_index":2552,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["area(self",{"_index":2536,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arg",{"_index":2331,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/posts/python-snippets/":{}},"description":{}}],["arg1",{"_index":2111,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["arg1.capit",{"_index":2112,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arg2",{"_index":2110,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["arg2.capit",{"_index":2113,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arg3",{"_index":2343,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["argo",{"_index":7235,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["argocd",{"_index":7234,"title":{"/tracks/90daysofdevops/day76":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["argpars",{"_index":2951,"title":{"/tracks/python-101/standard_library/argparse":{}},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{}},"description":{}}],["argparse.argumentparser(description='process",{"_index":2956,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["argument",{"_index":1397,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{}},"description":{}}],["argv",{"_index":2336,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arista",{"_index":9505,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["arkad",{"_index":6681,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["arm",{"_index":5249,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["arm64",{"_index":8247,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["armv8/aarch64",{"_index":11398,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["around",{"_index":7522,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["arp",{"_index":9585,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["arr",{"_index":2294,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arr.append(4",{"_index":2293,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["array",{"_index":696,"title":{"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["array.array('i",{"_index":2025,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["array.from(clon",{"_index":11513,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.from(obj",{"_index":11514,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.isarray(obj",{"_index":11510,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.prototype.foreach",{"_index":11503,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.push.apply(array",{"_index":1396,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["array[i",{"_index":5667,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["array_obj",{"_index":2312,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arraybuff",{"_index":884,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["arraybufferview",{"_index":885,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["arraylist",{"_index":2302,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["arraylist([1",{"_index":2313,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["artifacthub",{"_index":8258,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["artifactsin.mysqlclouddump.keyvalue.s3path",{"_index":6631,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["asd",{"_index":11706,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["asg",{"_index":9170,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["asgi",{"_index":3063,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["asjob",{"_index":9099,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["ask",{"_index":1345,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["aslink",{"_index":11385,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["assert",{"_index":3767,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["assertequ",{"_index":3212,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["assertionerror",{"_index":3770,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["asset",{"_index":11253,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["assetprefix",{"_index":11116,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["associ",{"_index":3988,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["asteroid",{"_index":5452,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["asteroidcollision(asteroid",{"_index":5463,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["async",{"_index":388,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["async/await",{"_index":621,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["async_iter",{"_index":2938,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asynchron",{"_index":443,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["asyncio",{"_index":2924,"title":{"/tracks/python-101/standard_library/asyncio":{}},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["asyncio.gath",{"_index":2940,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.gather(coroutine1",{"_index":2947,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.get_event_loop",{"_index":2934,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.sleep(1",{"_index":2943,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["asyncio.sleep(2",{"_index":2946,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["athena",{"_index":5079,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["atlanti",{"_index":7933,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["atom",{"_index":6859,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["attach",{"_index":8483,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["attribut",{"_index":1939,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["attributeerror",{"_index":1949,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["audio",{"_index":286,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/posts/python-snippets/":{}},"description":{}}],["audioinput",{"_index":651,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["audiooutput",{"_index":652,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["audit",{"_index":5189,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["augu",{"_index":10536,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["aurora",{"_index":5102,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["aut",{"_index":11166,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["auth",{"_index":255,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["auth.tokenauth.enabled=tru",{"_index":6494,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["authent",{"_index":9293,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["author",{"_index":3030,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["author=request.json['author",{"_index":3048,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["author=request.post.get('author",{"_index":3127,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["authorid",{"_index":3920,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["auto",{"_index":8105,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["auto.tfvar",{"_index":8058,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["autoclose_load",{"_index":11056,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["autom",{"_index":7570,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["automat",{"_index":1514,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["autoplay",{"_index":752,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["autosuggest",{"_index":9688,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["autosuggestions.git",{"_index":9686,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["avail",{"_index":734,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["availability_zon",{"_index":8078,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["averag",{"_index":10656,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["avoid",{"_index":7363,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["aw",{"_index":5008,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/apps/cloud-exam-quizz/":{}}}],["await",{"_index":346,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["away",{"_index":6341,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["awesom",{"_index":3424,"title":{"/photos/icons/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{}},"description":{"/photos/icons/":{}}}],["awk",{"_index":9881,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["aws_inst",{"_index":8074,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["aws_security_group.allow_web.nam",{"_index":8081,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["awx",{"_index":7568,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["awx.ansible.com/v1beta1",{"_index":7587,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["ax",{"_index":11045,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ax.scatter(x",{"_index":11047,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["az",{"_index":8984,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["azaccount",{"_index":9197,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["azresourcegroup",{"_index":9075,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["azresourcegroupdeploy",{"_index":9069,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["azur",{"_index":7182,"title":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}}}],["azurechinacloud",{"_index":9329,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["azureusgovern",{"_index":9328,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["azvm",{"_index":9077,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["azvmextens",{"_index":9080,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["azwebapp",{"_index":9146,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["b",{"_index":17,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b(a",{"_index":2392,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["b(load",{"_index":10649,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["b.init(self",{"_index":2402,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["b.obj",{"_index":11517,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b2b",{"_index":9289,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["b8f8",{"_index":8973,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["b=10",{"_index":3727,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["b=2",{"_index":3718,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["b=4",{"_index":10837,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["b[2",{"_index":6309,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[5",{"_index":6300,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[j",{"_index":5518,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["b[l",{"_index":6308,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[load",{"_index":10645,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["b[r",{"_index":6306,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["b[учеб",{"_index":10653,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["b_func(self",{"_index":2427,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["b_name",{"_index":2393,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["back",{"_index":5214,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["backend",{"_index":6691,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["background",{"_index":11301,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["backup",{"_index":6404,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["backup.txt",{"_index":9473,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["balanc",{"_index":5133,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{},"/posts/diagram-support":{}},"description":{}}],["bamboo",{"_index":7471,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["banana",{"_index":3387,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/posts/markdown-syntax/":{}},"description":{}}],["band",{"_index":7900,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["bank",{"_index":3905,"title":{},"content":{"/tracks/disser/articles-notes":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["banner",{"_index":8869,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["bar",{"_index":1923,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["bare",{"_index":8397,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["bark",{"_index":3679,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["barrier",{"_index":4641,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["base",{"_index":1550,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/posts/docker-commands/":{}},"description":{}}],["base64",{"_index":6464,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["base_object",{"_index":2509,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["base_object.method",{"_index":2516,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["baseclass",{"_index":2498,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["baseclass.method",{"_index":2517,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["basemodel",{"_index":3071,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["baseof.html",{"_index":11341,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["basepath",{"_index":11115,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["bash",{"_index":6558,"title":{"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day19/":{}}}],["bash_profil",{"_index":9668,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["bashrc",{"_index":9667,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["basic",{"_index":5215,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["basicus",{"_index":8539,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["bat",{"_index":7282,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/python-snippets/":{}},"description":{}}],["bat.init(self",{"_index":10961,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bat.pi",{"_index":10944,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batch",{"_index":5347,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["batman",{"_index":10953,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batman(superhero",{"_index":10954,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bcdedit",{"_index":9533,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["be",{"_index":8094,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["beanstalk",{"_index":5094,"title":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}}}],["beat",{"_index":7128,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["becom",{"_index":7612,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["befor",{"_index":10399,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["beg",{"_index":10981,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["beg(target_funct",{"_index":10984,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["begin",{"_index":5264,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["beginn",{"_index":6898,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["beginner'",{"_index":9705,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["begin{align",{"_index":10498,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["begin{bmatrix",{"_index":10493,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["begin{pmatrix",{"_index":10489,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["begin{vmatrix",{"_index":10495,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["below",{"_index":10636,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["bento/ubuntu",{"_index":7770,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["best",{"_index":5201,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["beta",{"_index":171,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["bi",{"_index":4405,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["big",{"_index":6667,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["bin",{"_index":9786,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["bin/bash",{"_index":10290,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["bin/cat",{"_index":7449,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["bin/sh",{"_index":8617,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["binari",{"_index":5867,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["binary_nam",{"_index":10029,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name=90daysofdevop",{"_index":10023,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_darwin",{"_index":10014,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_darwin_arm64",{"_index":10021,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_linux",{"_index":10016,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_linux_arm64",{"_index":10020,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.1_window",{"_index":10018,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_darwin",{"_index":10024,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_darwin_arm64",{"_index":10028,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_linux",{"_index":10025,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_linux_arm64",{"_index":10027,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["binary_name}_0.2_window",{"_index":10026,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["bind",{"_index":7695,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/posts/docker-commands/":{}},"description":{}}],["bing",{"_index":9332,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["bisect",{"_index":5821,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["bisect_left",{"_index":5822,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["bisect_left(row",{"_index":5825,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["bit",{"_index":6312,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["bit.conf",{"_index":7087,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["bitbucket",{"_index":8739,"title":{"/tracks/90daysofdevops/day40":{}},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["bitmap",{"_index":11214,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bitnami",{"_index":6536,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["bitnami/mysql",{"_index":6538,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["bitwis",{"_index":10724,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bj",{"_index":1852,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["black",{"_index":3864,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["blandit",{"_index":10515,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["blank",{"_index":11944,"title":{"/_home/blank":{}},"content":{},"description":{}}],["blink",{"_index":108,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["blob",{"_index":883,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["block",{"_index":1900,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/emoji-support":{}},"description":{}}],["blockquot",{"_index":11174,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["blog",{"_index":5222,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["blue",{"_index":5325,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["blueprint",{"_index":6520,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["blueprint.yml",{"_index":6637,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["bluetooth",{"_index":672,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["blur(4px",{"_index":1257,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["boast(self",{"_index":10919,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bob",{"_index":11194,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bodi",{"_index":6921,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["bold",{"_index":11197,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["book",{"_index":3034,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/apps/_index":{}},"description":{}}],["book(db.model",{"_index":3025,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book(title=request.json['titl",{"_index":3047,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.author",{"_index":3039,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.delet",{"_index":3142,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.id",{"_index":3037,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.objects.al",{"_index":3122,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.published_d",{"_index":3138,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.query.al",{"_index":3035,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.query.get(book_id",{"_index":3042,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["book.sav",{"_index":3129,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["book.titl",{"_index":3038,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{}},"description":{}}],["book_id",{"_index":3133,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["bool",{"_index":1853,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["bool(0",{"_index":10726,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(4",{"_index":10727,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(int",{"_index":10723,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["boolean",{"_index":794,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["boot",{"_index":9787,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["bosch",{"_index":7499,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["bot",{"_index":9331,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["bottlerocket",{"_index":8347,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["bottom",{"_index":5255,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["bourn",{"_index":10277,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["box",{"_index":896,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["br",{"_index":9381,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["branch",{"_index":7406,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["break",{"_index":1975,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/posts/python-snippets/":{}},"description":{}}],["breed",{"_index":3850,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["brew",{"_index":3656,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["brewmat",{"_index":11923,"title":{"/apps/brewmate/":{}},"content":{"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["bridg",{"_index":7791,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["brief",{"_index":5170,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["broadcast",{"_index":1402,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["broker",{"_index":11229,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{}}}],["browser",{"_index":841,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["browser.cache.disk.capac",{"_index":312,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.cache.disk.en",{"_index":310,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.cache.disk.smart_size.en",{"_index":314,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.cache.disk.smart_size.first_run",{"_index":315,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.sessionstore.resume_from_crash",{"_index":316,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.shell.checkdefaultbrows",{"_index":330,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.startup.firstrunskipshomepag",{"_index":325,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.startup.homepag",{"_index":323,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser.startup.pag",{"_index":317,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["browser=non",{"_index":11494,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow",{"_index":11475,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow.getallwindows().length",{"_index":11491,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["bst",{"_index":6424,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["bucket",{"_index":6585,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["buddi",{"_index":3866,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["bug",{"_index":7519,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["build",{"_index":5182,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["build/index.html",{"_index":11484,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["build_and_run",{"_index":10030,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["build_id",{"_index":7348,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["build_tre",{"_index":6299,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(a",{"_index":6267,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(array",{"_index":6261,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["buildbot",{"_index":7473,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["builder",{"_index":11458,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["buildid",{"_index":11105,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["built",{"_index":3497,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["builtins.str",{"_index":3498,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["busi",{"_index":5233,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["button",{"_index":875,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day38":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["button.addeventlistener('click",{"_index":11315,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["by=helm",{"_index":7075,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["byte",{"_index":970,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["byte(",{"_index":982,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["bzip2",{"_index":11677,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["c",{"_index":800,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/lists":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["c('child",{"_index":2407,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c(a",{"_index":2429,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c(b",{"_index":2398,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c01",{"_index":5011,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c02",{"_index":5012,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c5",{"_index":8518,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["c:\\program",{"_index":6799,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["c:\\users\\micha/.ssh",{"_index":9719,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevop",{"_index":6808,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevops\\days\\cloud\\01virtualnetworking\\mod04_90daysofdevop",{"_index":9072,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevops\\days\\cloud\\02trafficmanagement\\mod06_90daysofdevop",{"_index":9074,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["c:\\users\\micha\\demo\\90daysofdevops\\days\\cloud\\03storage\\mod07_90daysofdevop",{"_index":9098,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["c:\\users\\username\\.kube\\config",{"_index":8341,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["c[k",{"_index":5519,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["c[server1",{"_index":10646,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["c[учеб",{"_index":10654,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["c_func(self",{"_index":2430,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["c_name",{"_index":2401,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ca",{"_index":8290,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["caa",{"_index":9362,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["cach",{"_index":329,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["cade",{"_index":10240,"title":{"/authors/michael-cade/_index":{}},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["caffein",{"_index":9694,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["calcul",{"_index":9930,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["calculate_sum(self",{"_index":6282,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["call",{"_index":1047,"title":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day51":{},"/posts/emoji-support":{}},"description":{}}],["callabl",{"_index":1885,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["callback",{"_index":657,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["callback(filt",{"_index":664,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["callbutton.dis",{"_index":1117,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["camera",{"_index":666,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["camera.deviceid",{"_index":692,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["camera.label",{"_index":690,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraid",{"_index":728,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraopt",{"_index":687,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraoption.label",{"_index":689,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameraoption.valu",{"_index":691,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameras.length",{"_index":732,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["cameras.map(camera",{"_index":686,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["can_fli",{"_index":10948,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=fals",{"_index":10962,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=tru",{"_index":10946,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["canari",{"_index":123,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["candid",{"_index":567,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["candidate:\\n",{"_index":1134,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["canon",{"_index":7908,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["canplaceflowers(flowerb",{"_index":6129,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["cant",{"_index":2453,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["canva",{"_index":928,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["cap",{"_index":9249,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["capabl",{"_index":725,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["capit",{"_index":2107,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["captur",{"_index":287,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["case",{"_index":3503,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["casefold",{"_index":3456,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["cask",{"_index":3701,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["cassandra",{"_index":6836,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["cat",{"_index":3862,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["cat(\"luna",{"_index":3863,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["cat(anim",{"_index":3854,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["cat.speak",{"_index":3873,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["catalina",{"_index":11941,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["catch",{"_index":580,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["catch((error",{"_index":1131,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["catch(error",{"_index":617,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["catch(function(",{"_index":948,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["catch(handlelocalmediastreamerror",{"_index":1113,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["catch(setsessiondescriptionerror",{"_index":1158,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["cbc",{"_index":10420,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["cc",{"_index":10261,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["cc%20bi",{"_index":10273,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["cd",{"_index":5397,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["cd/stable/manifests/install.yaml",{"_index":7253,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["cdk",{"_index":5038,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cdn",{"_index":11249,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["ce",{"_index":9699,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["ceil",{"_index":10861,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["celebr",{"_index":5769,"title":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["center",{"_index":3457,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["cento",{"_index":9896,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["central",{"_index":10388,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["certain",{"_index":697,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["certif",{"_index":5138,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/apps/_index":{}},"description":{}}],["certifi",{"_index":5009,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["certificatesigningrequest",{"_index":8367,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["cf",{"_index":11661,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["challeng",{"_index":6351,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["challenge.\\nthi",{"_index":9921,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["challenge=\"90daysofdevop",{"_index":10295,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["challenge\\n",{"_index":9935,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["challengenam",{"_index":10305,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["challengename=#90daysofdevop",{"_index":10303,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["chan",{"_index":9449,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.recv(999999",{"_index":9459,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send('enable\\n",{"_index":9451,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send('sh",{"_index":9456,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send('term",{"_index":9454,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chan.send(enable_password",{"_index":9452,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["chang",{"_index":701,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["changem",{"_index":7139,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["channel",{"_index":445,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["char",{"_index":5534,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["char.isdigit",{"_index":5609,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["char_count",{"_index":5621,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["char_count.get(char",{"_index":5623,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["char_count[char",{"_index":5622,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["charact",{"_index":3502,"title":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{}},"description":{}}],["chars[write_ptr",{"_index":5546,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["chart",{"_index":7068,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["chart/graph/diagram",{"_index":10637,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["chart=jenkinsci/jenkin",{"_index":7437,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["chat",{"_index":1444,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["chatgpt/rugpt",{"_index":10479,"title":{"/posts/ruGPT-3-notes":{}},"content":{},"description":{}}],["cheat",{"_index":7011,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day17":{},"/posts/emoji-support":{},"/posts/docker-commands/":{}},"description":{}}],["cheatsheet",{"_index":8741,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["check",{"_index":7281,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-install-rhel-9-free/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["check_neighbors(n",{"_index":6130,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["checkout",{"_index":7294,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["checkov",{"_index":7918,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["checksum",{"_index":8291,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["chees",{"_index":11208,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["chef",{"_index":7866,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["chenhan/ubuntu",{"_index":9901,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["cherri",{"_index":3623,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{}},"description":{}}],["chicago",{"_index":3977,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["child",{"_index":2378,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(\"interviewbit",{"_index":2456,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(\"parentnam",{"_index":2446,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(par",{"_index":2441,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child(parent1",{"_index":2420,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["child_func(self",{"_index":2380,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["childclass",{"_index":2384,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["childclass(parentclass",{"_index":2379,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["chmod",{"_index":5395,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["chocolatey",{"_index":8255,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["choic",{"_index":10418,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["choos",{"_index":1508,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["chosen",{"_index":5154,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["choudhari",{"_index":10040,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["chown",{"_index":7443,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["chpasswd",{"_index":10317,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["chrome",{"_index":13,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["chrome://about",{"_index":1176,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["chrome://flag",{"_index":142,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["chrome://webrtc",{"_index":1172,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["chsh",{"_index":9676,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["chunk",{"_index":969,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/basis/file_io":{}},"description":{}}],["chunk_len",{"_index":972,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["ci",{"_index":285,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ci/cd",{"_index":7269,"title":{"/tracks/90daysofdevops/day70":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["cicd",{"_index":7264,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["cidr",{"_index":5352,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cio",{"_index":10151,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["cipher",{"_index":10414,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["cisco",{"_index":9485,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["cisco_io",{"_index":9404,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["cite",{"_index":11176,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["citi",{"_index":3367,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["city='london",{"_index":3774,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["city='new",{"_index":3732,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["civo",{"_index":8348,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["cjf",{"_index":11678,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["cl",{"_index":3254,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["class",{"_index":1958,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{},"/apps/_index":{}},"description":{}}],["class1",{"_index":2412,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["class2",{"_index":2416,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["class=tru",{"_index":6676,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["classmethod",{"_index":3252,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["clean",{"_index":1476,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["clear",{"_index":3780,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["cli",{"_index":5127,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["click",{"_index":888,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/brewmate/":{}},"description":{}}],["client",{"_index":454,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["client(",{"_index":1411,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["client.accounts.verifycredentials(verifyparam",{"_index":9980,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["client.statuses.update(\"a",{"_index":9995,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["client.statuses.update(messag",{"_index":10006,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["clientid",{"_index":1349,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["clientsinroom",{"_index":1406,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["clone",{"_index":1491,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["clone.length",{"_index":11512,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["clone/get",{"_index":7333,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["clone[key",{"_index":11506,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["close",{"_index":807,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["closebutton.dis",{"_index":1579,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["closur",{"_index":3322,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["closure(5",{"_index":3324,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["cloud",{"_index":5036,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["cloud9",{"_index":5109,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudacademi",{"_index":5155,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cloudacademylab",{"_index":5265,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cloudbe",{"_index":7497,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["cloudform",{"_index":5035,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["cloudfront",{"_index":5131,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudshel",{"_index":5110,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudtrail",{"_index":5125,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudwatch",{"_index":5086,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["cls.speci",{"_index":10880,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cluster",{"_index":6897,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["cluster:node_cpu:ratio",{"_index":6991,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["clusterip",{"_index":7263,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["cm",{"_index":8370,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["cmath",{"_index":2059,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["cmath.exp",{"_index":2066,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["cmd",{"_index":9202,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["cncf",{"_index":8422,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["co",{"_index":4529,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["code",{"_index":2382,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["code.txt",{"_index":8796,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["code\\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\\nenabled=1\\ngpgcheck=1\\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc",{"_index":11444,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["code]\\nname=visu",{"_index":11443,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["codeartifact",{"_index":5111,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codebuild",{"_index":5112,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codec",{"_index":10385,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["codecommit",{"_index":5113,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codedeploy",{"_index":5114,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codeforc",{"_index":6348,"title":{"/tracks/algorithms-101/codeforces/_index":{}},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{"/tracks/algorithms-101/codeforces/_index":{}}}],["codeguru",{"_index":5115,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codelab",{"_index":988,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["codepipelin",{"_index":5116,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["codestar",{"_index":5117,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cognito",{"_index":5140,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["col",{"_index":5800,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["collect",{"_index":5503,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/python-snippets/":{}},"description":{}}],["collis",{"_index":5453,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{},"description":{}}],["colon",{"_index":8880,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["color",{"_index":3855,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/emoji-support":{}},"description":{}}],["column",{"_index":5882,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["combo_list",{"_index":3638,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["combo_list.extend(one_list",{"_index":3640,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["command",{"_index":1336,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["command+option+j",{"_index":1248,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["comment",{"_index":9024,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["commit",{"_index":8610,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/docker-commands/":{}},"description":{}}],["committe",{"_index":3909,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["commodi",{"_index":11167,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["commodo",{"_index":10564,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["common",{"_index":5865,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["common.sh",{"_index":8277,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["common_variables.yml",{"_index":7645,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["commun",{"_index":444,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day78":{},"/posts/markdown-syntax/":{}},"description":{}}],["community.github.io/helm",{"_index":7195,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["community.mysql.mysql_us",{"_index":7682,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["community/prometheu",{"_index":7199,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["compani",{"_index":5401,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["compat",{"_index":8098,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["competit",{"_index":6345,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["compil",{"_index":2288,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["compileropt",{"_index":11461,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["complet",{"_index":550,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["complex",{"_index":1851,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["complianc",{"_index":5137,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["compon",{"_index":10396,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["componentstatus",{"_index":8369,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["compos",{"_index":7136,"title":{"/tracks/90daysofdevops/day46":{}},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["compose.yml",{"_index":8551,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["comprehens",{"_index":2122,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["compress",{"_index":5533,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{},"description":{}}],["compress(char",{"_index":5543,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["comput",{"_index":5091,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["compute_pi(100000",{"_index":11022,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["compute_pi(n",{"_index":11019,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["computeapivers",{"_index":9015,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["computernam",{"_index":9028,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat('microsoft.network/virtualnetwork",{"_index":9061,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat(parameters('vmname'),copyindex",{"_index":9018,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat(variables('nic'),copyindex",{"_index":9026,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concat(variables('subnetname'),copyindex",{"_index":9065,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["concept",{"_index":5231,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["concurr",{"_index":11457,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["conda",{"_index":3177,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["condimentum",{"_index":10525,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["condit",{"_index":2649,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/operators":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/docker-commands/":{}},"description":{}}],["confer",{"_index":4523,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["config",{"_index":2904,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["config.client(oauth1.nocontext",{"_index":9970,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["config.get('databas",{"_index":2912,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.json",{"_index":7401,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["config.read('config.ini",{"_index":2905,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.set('databas",{"_index":2913,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.set('sect",{"_index":2907,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.vm.base_address",{"_index":7781,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["config.vm.box",{"_index":8315,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["config.vm.box_check_upd",{"_index":8316,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["config.vm.defin",{"_index":7784,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["config.vm.provid",{"_index":9902,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["config.vm.provis",{"_index":8312,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["config.write(f",{"_index":2909,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["config.yaml",{"_index":10642,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["config/enterpris",{"_index":10404,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["config/filebeat.yml",{"_index":10390,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["config/metricbeat.yml",{"_index":10377,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["config_path",{"_index":7955,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["configmap",{"_index":7071,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["configpars",{"_index":2901,"title":{"/tracks/python-101/standard_library/configparser":{}},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["configparser.configpars",{"_index":2903,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["configur",{"_index":494,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["confirm",{"_index":10474,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["congu",{"_index":10586,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["connect",{"_index":417,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["connecthandl",{"_index":9400,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["connecthandler(**devic",{"_index":9411,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["connecthandler(**sw2",{"_index":9425,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["connectionstatechang",{"_index":586,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["consectetur",{"_index":10575,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["consecut",{"_index":6037,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{},"description":{}}],["consequat",{"_index":10605,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["consequuntur",{"_index":11161,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["consist",{"_index":6860,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["consol",{"_index":1220,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["console.error('error",{"_index":618,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["console.error(‘error",{"_index":581,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["console.log('camera",{"_index":667,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["console.log('get",{"_index":945,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["console.log('got",{"_index":616,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["console.log('load",{"_index":5276,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log('messag",{"_index":1344,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["console.log('navigator.getusermedia",{"_index":1222,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["console.log('send",{"_index":980,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["console.log(json.stringify(ev",{"_index":5279,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log.apply(consol",{"_index":1359,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["consolid",{"_index":5044,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["const",{"_index":248,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["const=sum",{"_index":2967,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["constant",{"_index":10243,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["constraint",{"_index":613,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["constraintboolean",{"_index":790,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constraintdomstr",{"_index":792,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constraintdoubl",{"_index":791,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constraintlong",{"_index":789,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["constructor",{"_index":2396,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["consult",{"_index":5208,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["consum",{"_index":9964,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumer_key",{"_index":9941,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumer_secret",{"_index":9942,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumerkey",{"_index":9956,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["consumersecret",{"_index":9957,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["contain",{"_index":3434,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{}},"description":{}}],["container('kaniko",{"_index":7411,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["container('maven",{"_index":7407,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["container('shel",{"_index":7371,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["container_cpu_usage_seconds_tot",{"_index":7206,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["container_port",{"_index":7964,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["containerd",{"_index":8336,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["containerd.io",{"_index":9698,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["containerport",{"_index":8230,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["containers/app",{"_index":8638,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["containertempl",{"_index":7364,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["content",{"_index":3737,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/emoji-support":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["content/tracks/python",{"_index":3100,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["content=\"0",{"_index":11390,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["contentservice.createtextoutput",{"_index":11535,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["contentvers",{"_index":8993,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["context",{"_index":3277,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["context.succe",{"_index":5289,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["context.succeed(\"us",{"_index":5284,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["contextlib",{"_index":3274,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["contextmanag",{"_index":3269,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["contin",{"_index":7500,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["continin",{"_index":7507,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["continu",{"_index":1976,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["contract",{"_index":11611,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["contribut",{"_index":5206,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["contributor",{"_index":9302,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["control",{"_index":760,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["controlplan",{"_index":8282,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["conval",{"_index":10553,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["conveni",{"_index":1395,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["convent",{"_index":7916,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["convert",{"_index":2084,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/apps/_index":{}},"description":{}}],["cook",{"_index":5288,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cook_sec",{"_index":5271,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cookbook",{"_index":7872,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["cooki",{"_index":9188,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["cool",{"_index":9227,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["copi",{"_index":2186,"title":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day18":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["copilot",{"_index":5096,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["copy(list_1",{"_index":2196,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["copyrandomlist(head",{"_index":5994,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["core",{"_index":7213,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["core.editor",{"_index":8926,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["core.windows.net",{"_index":9204,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["core/ppa",{"_index":8943,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["core_sw_config",{"_index":9416,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["coredn",{"_index":8489,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["coroutine1",{"_index":2941,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["coroutine2",{"_index":2944,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["correct",{"_index":8872,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["correctli",{"_index":10639,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["cosmo",{"_index":9242,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["coturn",{"_index":223,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["count",{"_index":3385,"title":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day34":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["count(x",{"_index":3383,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["count.index",{"_index":8044,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["counter",{"_index":1781,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["cours",{"_index":5158,"title":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["course]](https://www.youtube.com/watch?v=7s_tz1z_5ba",{"_index":6902,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["coursera",{"_index":5193,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["coursera'",{"_index":5185,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["courses(fre",{"_index":5186,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cover",{"_index":5064,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["coverag",{"_index":5163,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cp",{"_index":9860,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["cpu",{"_index":8046,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["cpus=4",{"_index":7580,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["cpython",{"_index":2285,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["cr.kanister.io/v1alpha1",{"_index":6594,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["crash",{"_index":6895,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["creat",{"_index":1405,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["create(request",{"_index":3124,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["create.html",{"_index":3131,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["create_adder(10",{"_index":10851,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_adder(x",{"_index":10847,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_book",{"_index":3046,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["create_task(task",{"_index":3089,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["create_user.sh",{"_index":10313,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["createansw",{"_index":508,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createconnect",{"_index":1543,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["createdanswer(descript",{"_index":1164,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createdatachannel",{"_index":860,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["createdoffer(descript",{"_index":1153,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createoff",{"_index":483,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["createopt",{"_index":9043,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["createroot",{"_index":11256,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["createroot(contain",{"_index":11264,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["createwindow",{"_index":11477,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["creation",{"_index":1152,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["creativ",{"_index":10265,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["creatur",{"_index":11226,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["cred",{"_index":9986,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["credenti",{"_index":243,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["credentialsneed",{"_index":5415,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["creds.accesstokensecret",{"_index":9968,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["creds.consumersecret",{"_index":9966,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["cri",{"_index":7101,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["criteria",{"_index":5047,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["criterion",{"_index":5051,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["critic",{"_index":2824,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["cron",{"_index":10458,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["cross",{"_index":11459,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["crud",{"_index":3017,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{}},"description":{}}],["crystal",{"_index":10172,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["cs",{"_index":8368,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["csi",{"_index":6388,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["csr",{"_index":8366,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["css",{"_index":1178,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["csv",{"_index":2588,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["ctime",{"_index":2879,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["ctrl",{"_index":1333,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["ctrl+alt+delet",{"_index":11219,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ctrl+shift+j",{"_index":1247,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["cur_max",{"_index":5986,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["curabitur",{"_index":10599,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["curat",{"_index":10455,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["curl",{"_index":7733,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["curr",{"_index":5921,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["curr.next",{"_index":5923,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["curr.random",{"_index":5999,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["curr_num",{"_index":5608,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["curr_str",{"_index":5607,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["current",{"_index":2767,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/_index":{},"/apps/_index":{}},"description":{}}],["current_altitud",{"_index":6201,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["current_dir",{"_index":2777,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["current_sum",{"_index":5576,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["current_tim",{"_index":2849,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["cursor",{"_index":835,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["cursu",{"_index":10528,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["custom",{"_index":5287,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["custom_parsers.conf",{"_index":7081,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["cut",{"_index":6460,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["cycl",{"_index":5745,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["czf",{"_index":11674,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["d",{"_index":2629,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{}},"description":{}}],["d+e+f+g",{"_index":10500,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["d[l",{"_index":5520,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["d[server2",{"_index":10647,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["daeemon",{"_index":8651,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["daemon",{"_index":7088,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["daemonless",{"_index":8502,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["daemonset",{"_index":7066,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["daili",{"_index":11397,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["dairi",{"_index":11206,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["danda",{"_index":11181,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["darwin",{"_index":10031,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dasboard",{"_index":5364,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dash",{"_index":9695,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["dashboard",{"_index":6384,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["data",{"_index":882,"title":{"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["data.aws_ami.instance_id.id",{"_index":8075,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["data.pi",{"_index":11049,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["data/jenkin",{"_index":7445,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["data1",{"_index":3222,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data2",{"_index":3223,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data3",{"_index":3224,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data=payload",{"_index":3170,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["data[0",{"_index":3226,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["data[start",{"_index":6290,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["databas",{"_index":2915,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/posts/docker-commands/":{}},"description":{}}],["databrick",{"_index":9330,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["datacent",{"_index":9041,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["datachannel",{"_index":861,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.addeventlistener('clos",{"_index":881,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.addeventlistener('messag",{"_index":898,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.addeventlistener('open",{"_index":876,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannel.send(len",{"_index":983,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["datachannel.send(messag",{"_index":891,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["datachannelrec",{"_index":1596,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["datachannelsend.placehold",{"_index":1544,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["datachannelsend.valu",{"_index":1580,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["dataconstraint",{"_index":1547,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["datadisk",{"_index":9045,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["datadog",{"_index":7177,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["dataop",{"_index":6933,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["date",{"_index":2831,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["date().tolocaletimestr",{"_index":11325,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["date1",{"_index":10678,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["date1).total_second",{"_index":10684,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["date2",{"_index":10682,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["date_object",{"_index":2861,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["date_str",{"_index":2858,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetim",{"_index":2586,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["datetime.date.today",{"_index":2847,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime.datetime(2023",{"_index":10679,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["datetime.datetime.now",{"_index":2844,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["datetime.datetime.now().strftime(\"%i",{"_index":10677,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["datetime.datetime.strptime(date_str",{"_index":2862,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime.time(hour=12",{"_index":2850,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime.timedelta(days=1",{"_index":2866,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["datetime/tim",{"_index":2826,"title":{"/tracks/python-101/standard_library/datetime_time":{}},"content":{},"description":{}}],["day",{"_index":2837,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["day13_example2",{"_index":9946,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["day15",{"_index":9847,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["day19",{"_index":10294,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["day38_git01",{"_index":8842,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["days.\\n",{"_index":9933,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["days\\n",{"_index":9922,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["dayscomplet",{"_index":9924,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["daystot",{"_index":9917,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["dazzling_darwin",{"_index":8484,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["db",{"_index":3023,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["db.column(db.integ",{"_index":3026,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.column(db.string(100",{"_index":3029,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.pop(task_id",{"_index":3097,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["db.session.add(book",{"_index":3049,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.session.commit",{"_index":3050,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db.session.delete(book",{"_index":3058,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["db01",{"_index":7657,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["db[task_id",{"_index":3087,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["db_data",{"_index":8003,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["db_data:/var/lib/mysql",{"_index":8563,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["db_name",{"_index":2911,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["db_name=my_db",{"_index":2916,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["db_pass",{"_index":7690,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["db_password=secret_password",{"_index":2918,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["db_user",{"_index":7689,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["db_user=user_nam",{"_index":2917,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["dba",{"_index":6917,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["dbserver",{"_index":9178,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["dc5zm",{"_index":6645,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["dd",{"_index":9769,"title":{},"content":{"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{}},"description":{}}],["ddi",{"_index":9560,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["dean",{"_index":7852,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["deb",{"_index":8475,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["debian",{"_index":7765,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["debiti",{"_index":11168,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["debug",{"_index":2822,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["debugg",{"_index":3317,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["declar",{"_index":7355,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["declart",{"_index":7354,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["decod",{"_index":3817,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["decodestring(",{"_index":5606,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["decompos",{"_index":5219,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["decor",{"_index":2083,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["decorator_nam",{"_index":2081,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["deep",{"_index":2199,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["deepclon",{"_index":11504,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(a",{"_index":11515,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(obj[key",{"_index":11509,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepcopi",{"_index":2193,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["deepcopy(list_1",{"_index":2201,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["def",{"_index":1751,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["default",{"_index":146,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["default=0",{"_index":3091,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["default=max",{"_index":2968,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["default_branch",{"_index":7296,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["defaultcontain",{"_index":7373,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["defaultdict",{"_index":5527,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["defaultdict(int",{"_index":5529,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["defaultdict(list",{"_index":5941,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["defaultpathmap",{"_index":11102,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["defaultvalu",{"_index":9002,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["defend",{"_index":9305,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["defin",{"_index":1763,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["definit",{"_index":1959,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/posts/diagram-support":{}},"description":{}}],["del",{"_index":10765,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["delattr",{"_index":3435,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["delet",{"_index":3000,"title":{"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["delete(request",{"_index":3141,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["delete(self",{"_index":2998,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["delete_book(book_id",{"_index":3057,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["delete_task(task_id",{"_index":3096,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["deletefromblobstor",{"_index":6635,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["deletemiddlenode(head",{"_index":5970,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["deletenode(nod",{"_index":5859,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["deliveri",{"_index":1553,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["demo",{"_index":7261,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["demo.yaml",{"_index":6686,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["demo.yml",{"_index":7585,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["demonstr",{"_index":10302,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["deni",{"_index":9168,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["denyallinbound",{"_index":9181,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["depend",{"_index":1367,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/posts/emoji-support":{}},"description":{}}],["depends_on",{"_index":8569,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["dependson",{"_index":9025,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["deploy",{"_index":5026,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["deploy_key",{"_index":11085,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["deployment/nginx",{"_index":8239,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["deposit",{"_index":11232,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["deprec",{"_index":7903,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["depth",{"_index":5553,"title":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dequ",{"_index":5504,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["deque([i",{"_index":5948,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["deriv",{"_index":2426,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object1",{"_index":2510,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object1.method",{"_index":2518,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object2",{"_index":2512,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object2.new_method",{"_index":2520,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object3",{"_index":2514,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derived_object3.method",{"_index":2522,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass",{"_index":2579,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass(baseclass",{"_index":2576,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass1",{"_index":2511,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass1(baseclass",{"_index":2501,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass1.method",{"_index":2519,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass2",{"_index":2513,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass2(baseclass",{"_index":2503,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass2.new_method",{"_index":2521,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass3",{"_index":2515,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass3(baseclass",{"_index":2506,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["derivedclass3.method",{"_index":2523,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["describ",{"_index":6649,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["descript",{"_index":1140,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["design",{"_index":5228,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/brewmate/":{}},"description":{}}],["desktop",{"_index":7821,"title":{"/tracks/90daysofdevops/day44":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["dest",{"_index":7729,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["dest='accumul",{"_index":2965,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["dest=/etc/apache2/ports.conf",{"_index":7726,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["dest=/etc/mysql/conf.d/mysql.cnf",{"_index":7678,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["destin",{"_index":7414,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day33":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["destinationaddressprefix",{"_index":9138,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["destinationportrang",{"_index":9134,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["destroy",{"_index":8055,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["detach",{"_index":11303,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["detail",{"_index":6188,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["detail=\"task",{"_index":3086,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["details.address",{"_index":1418,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["details.famili",{"_index":1416,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["detect",{"_index":5746,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["dev",{"_index":1183,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dev.to",{"_index":11844,"title":{},"content":{"/p/publications":{}},"description":{}}],["dev/sdb",{"_index":9831,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["develop",{"_index":4525,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["deviantony/dock",{"_index":7137,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["devic",{"_index":619,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["device.kind",{"_index":662,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["device.storage.en",{"_index":321,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["device_typ",{"_index":9403,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["devicechang",{"_index":677,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["deviceid",{"_index":717,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["devices.filter(devic",{"_index":661,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["devop",{"_index":5305,"title":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}}}],["devops90",{"_index":7680,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["devopscube.com",{"_index":7380,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["df",{"_index":5555,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["dfs(node",{"_index":5574,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dfs(node.left",{"_index":5583,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dfs(node.right",{"_index":5584,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dfs(root",{"_index":5587,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["dhcp",{"_index":9380,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["diagram",{"_index":5196,"title":{"/posts/diagram-support":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/diagram-support":{}},"description":{}}],["diam",{"_index":10585,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["dict",{"_index":1865,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/dict":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["dict(name='mari",{"_index":3772,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["dict[int",{"_index":3077,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["dict_keys(['on",{"_index":10815,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dictionari",{"_index":88,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/basis/types":{},"/posts/python-snippets/":{}},"description":{}}],["dictum",{"_index":10574,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["diff",{"_index":8795,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["diff.tool",{"_index":8802,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["differ",{"_index":3554,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["difference_in_second",{"_index":10683,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["difference_set",{"_index":3574,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["difference_upd",{"_index":3558,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["difftool",{"_index":8801,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["digit",{"_index":5544,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["dignissim",{"_index":10588,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["dimens",{"_index":2554,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["dimensions(self",{"_index":2547,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["dimensions.sett",{"_index":2548,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["dir",{"_index":2261,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dir(math",{"_index":10867,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dir(my_str",{"_index":3431,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["dir(x",{"_index":3813,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["dir_archive.tar",{"_index":11665,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["dir_archive.tar.bz2",{"_index":11679,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["dir_archive.tar.gz",{"_index":11675,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["dir_exist",{"_index":2785,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["dire",{"_index":5473,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["dire.append(d",{"_index":5514,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["dire.append(i",{"_index":5508,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["dire.popleft",{"_index":5512,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["direct",{"_index":6007,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["directli",{"_index":10610,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["directori",{"_index":2768,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["disabl",{"_index":274,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["disast",{"_index":6374,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["discard",{"_index":3550,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["discount",{"_index":11235,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["discov",{"_index":7031,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["disk",{"_index":9222,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/docker-commands/":{}},"description":{}}],["display",{"_index":829,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day51":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/docker-commands/":{}},"description":{}}],["display(self",{"_index":2443,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["display_names(self",{"_index":2403,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["displaysurfac",{"_index":839,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["dist",{"_index":10009,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["distdir",{"_index":11104,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["distort",{"_index":4650,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["dit",{"_index":8482,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["div",{"_index":11266,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["divisor",{"_index":6208,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["divrender=\"react_count_exampl",{"_index":11292,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["django",{"_index":3102,"title":{"/tracks/python-101/frameworks/django":{}},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["django.http",{"_index":3116,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["django.shortcut",{"_index":3113,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["django.url",{"_index":3118,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["dmg",{"_index":11933,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["dmyimportantdata",{"_index":6548,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["dn",{"_index":5327,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["dnf",{"_index":11446,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["do",{"_index":10005,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["doc",{"_index":1855,"title":{"/tracks/archive/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/archive/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/archive/":{}},"description":{}}],["dock",{"_index":9696,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["docker",{"_index":6964,"title":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/posts/docker-commands/":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day42":{},"/posts/docker-commands/":{}}}],["docker.html",{"_index":10382,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["docker.io/bitnami/mysql:latest",{"_index":6557,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["docker/get",{"_index":8637,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["docker=podman",{"_index":8486,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["docker_contain",{"_index":7995,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_imag",{"_index":7992,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_image.nginx.latest",{"_index":7996,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_network",{"_index":8004,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["docker_no_tim",{"_index":7082,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["docker_volum",{"_index":8002,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["dockercon",{"_index":8530,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["dockerconfigjson",{"_index":7400,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["dockercr",{"_index":7378,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["dockerd",{"_index":8652,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["dockerfil",{"_index":7331,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/posts/docker-commands/":{}},"description":{}}],["dockerhub",{"_index":7332,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["dockerignor",{"_index":8620,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["docs.docker.com",{"_index":11654,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["docstr",{"_index":1997,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["documen",{"_index":8657,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["document",{"_index":5173,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["document.createelement(‘opt",{"_index":688,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["document.getelementbyid(\"my_react_app",{"_index":11291,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["document.getelementbyid('my_render_block",{"_index":11263,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["document.getelementbyid('photo",{"_index":957,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["document.getelementbyid('root",{"_index":11262,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["document.getelementbyid('video",{"_index":943,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["document.queryselector('#button",{"_index":11314,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('#histori",{"_index":11322,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('#incomingmessag",{"_index":894,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["document.queryselector('#messagebox",{"_index":871,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["document.queryselector('#remotevideo",{"_index":386,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["document.queryselector('#sendbutton",{"_index":873,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["document.queryselector('video",{"_index":1216,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["document.queryselector('video#localvideo",{"_index":748,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["document.queryselector(‘select#availablecamera",{"_index":684,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["documentdb",{"_index":5425,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["dog",{"_index":3683,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["dog(\"buddi",{"_index":3859,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["dog(anim",{"_index":3849,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["dog.bark",{"_index":3684,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["dog.pi",{"_index":3678,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["dog.speak",{"_index":3868,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["doget",{"_index":11534,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["doget(",{"_index":11521,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["dolor",{"_index":11159,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dom",{"_index":11252,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dom.iter",{"_index":11463,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dom/client",{"_index":11257,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["domain",{"_index":5025,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["don't",{"_index":5161,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{}},"description":{}}],["done",{"_index":2642,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["donec",{"_index":10587,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["dopost(",{"_index":11522,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["dot1q",{"_index":9421,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["dota2",{"_index":5468,"title":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/649/":{}}}],["dotfil",{"_index":9664,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["doubl",{"_index":3332,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/apps/brewmate/":{}},"description":{}}],["double_numbers(iter",{"_index":10974,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["double_numbers(range(1",{"_index":10976,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["doublerang",{"_index":798,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["down",{"_index":7764,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day46":{},"/posts/docker-commands/":{}},"description":{}}],["download",{"_index":5180,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/apps/brewmate/":{}},"description":{}}],["dp",{"_index":5720,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["dp[i",{"_index":5724,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["dp[j",{"_index":5726,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["dr",{"_index":6505,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["dracula",{"_index":9701,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["draft",{"_index":21,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["drag",{"_index":11935,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["dream",{"_index":6904,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["dri",{"_index":7932,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["driven",{"_index":10173,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["driver",{"_index":2381,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["driver'",{"_index":2423,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["drop",{"_index":6560,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["drwxr",{"_index":11671,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["ds",{"_index":8371,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["dsl",{"_index":7879,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["dsбор",{"_index":5251,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["dt",{"_index":8511,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["dt%h:%m:%s.%l",{"_index":7086,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["dt.date.today().strftime('%a",{"_index":11031,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["dt_string",{"_index":9429,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["dump.sql.gz",{"_index":6615,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["dumptoobjectstor",{"_index":6601,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["duplic",{"_index":5733,"title":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"content":{},"description":{}}],["durabl",{"_index":6862,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["durat",{"_index":9471,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["dure",{"_index":446,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["dva",{"_index":5010,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["dx=uv",{"_index":10487,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["dynam",{"_index":7634,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["dynamodb",{"_index":5103,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["e",{"_index":583,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/p/privacy_ru":{}},"description":{}}],["e.g",{"_index":10615,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["e.nam",{"_index":950,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["e=mc^2",{"_index":10485,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["each",{"_index":5061,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["earli",{"_index":5286,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["easi",{"_index":6407,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day01":{},"/apps/brewmate/":{}},"description":{}}],["easier",{"_index":8096,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["easili",{"_index":5417,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["eb",{"_index":5147,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ec",{"_index":5099,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ec2",{"_index":5092,"title":{"/tracks/aws-certified-developer-associate/ec2/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day58":{}},"description":{"/tracks/aws-certified-developer-associate/ec2/":{}}}],["echo",{"_index":6465,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["echo1",{"_index":7458,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["echocancel",{"_index":727,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["eclips",{"_index":3313,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["econom",{"_index":4528,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["ecr",{"_index":5098,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ed25519",{"_index":9717,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["edg",{"_index":9163,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["edit",{"_index":5343,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["editor",{"_index":10247,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ef",{"_index":5148,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["effect",{"_index":10252,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["efficitur",{"_index":10593,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["efk",{"_index":6962,"title":{"/tracks/90daysofdevops/day82":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["egesta",{"_index":10547,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["eget",{"_index":10530,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["eiu",{"_index":11162,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["eject",{"_index":11492,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ek",{"_index":5101,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["ekonomicheski",{"_index":11750,"title":{},"content":{"/p/publications":{}},"description":{}}],["ekosistemi",{"_index":11783,"title":{},"content":{"/p/publications":{}},"description":{}}],["eksporta",{"_index":11761,"title":{},"content":{"/p/publications":{}},"description":{}}],["elast",{"_index":5093,"title":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}}}],["elasticach",{"_index":5104,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["elasticapm",{"_index":10466,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["elasticapm.contrib.flask",{"_index":10467,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["elasticsearch",{"_index":5081,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["elasticsearch'",{"_index":10421,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["elasticsearch/config/elasticsearch.yml",{"_index":10422,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["elb",{"_index":5168,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["electr",{"_index":3996,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["electron",{"_index":3997,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day38":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["electron/main.t",{"_index":11452,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:build",{"_index":11497,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dev",{"_index":11493,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dist",{"_index":11498,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["element",{"_index":680,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-snippets/":{}},"description":{}}],["element(virtualbox_vm.node.*.network_adapter.0.ipv4_address",{"_index":8053,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["elibrari",{"_index":3943,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["elif",{"_index":3792,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["elimin",{"_index":5420,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["elit",{"_index":10504,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["elk",{"_index":6961,"title":{"/tracks/90daysofdevops/day80":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["email",{"_index":2714,"title":{"/tracks/python-101/standard_library/smtplib":{}},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["email@example.com",{"_index":8945,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["emoji",{"_index":10607,"title":{"/posts/emoji-support":{}},"content":{"/posts/emoji-support":{}},"description":{"/posts/emoji-support":{}}}],["emojifi",{"_index":10609,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["emojisymbol",{"_index":10627,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["emp_1",{"_index":2353,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["emp_1.introduc",{"_index":2360,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["emp_nam",{"_index":2350,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["employe",{"_index":2349,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["employee(\"mr",{"_index":2354,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["empti",{"_index":10406,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["empty_dict",{"_index":10779,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["empty_funct",{"_index":3716,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["empty_set",{"_index":10801,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["en",{"_index":5426,"title":{},"content":{"/tracks/archive/":{},"/posts/archive/":{}},"description":{}}],["enabl",{"_index":103,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{}},"description":{}}],["enable_password",{"_index":9436,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["enabled/dir.conf",{"_index":9737,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["enableemoji",{"_index":10612,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["enc",{"_index":10419,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["encapsul",{"_index":9420,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["encod",{"_index":3458,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["encoded_str",{"_index":5592,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["encourag",{"_index":11013,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["encrypt",{"_index":10398,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["end",{"_index":2027,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["end_tim",{"_index":3292,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["endfor",{"_index":7639,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["endpoint",{"_index":8373,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["endswith",{"_index":3459,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["end{align",{"_index":10501,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["end{bmatrix",{"_index":10494,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["end{pmatrix",{"_index":10491,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["end{vmatrix",{"_index":10496,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["enforc",{"_index":7915,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["engin",{"_index":3779,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["english",{"_index":11627,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["enhanc",{"_index":1727,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["enrol",{"_index":5187,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ensur",{"_index":7667,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["ent_search.auth.sourc",{"_index":10438,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["ent_search_default_password",{"_index":10434,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["enter",{"_index":3670,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["enterpris",{"_index":7927,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["enterprise_search",{"_index":10433,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["enterprisesearch",{"_index":10440,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["enterprisesearch.host",{"_index":10427,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["entranc",{"_index":5750,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["entrypoint",{"_index":5071,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["enum",{"_index":85,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["enumerate(",{"_index":5624,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["enumerate(sen",{"_index":5506,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["enumeratedevic",{"_index":642,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["env",{"_index":6551,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day60":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["environ",{"_index":5029,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["eof",{"_index":8084,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["ep",{"_index":8372,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["episod",{"_index":7595,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["eq",{"_index":3436,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["equal",{"_index":5881,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["equalpairs(self",{"_index":5895,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["equat",{"_index":10484,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["erat",{"_index":10532,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["erlang",{"_index":7868,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["ero",{"_index":10508,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["erp",{"_index":11796,"title":{},"content":{"/p/publications":{}},"description":{}}],["err",{"_index":9979,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["errexit",{"_index":6608,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["error",{"_index":620,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["es",{"_index":5166,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["es2023",{"_index":11462,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["esc",{"_index":9763,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["escap",{"_index":9759,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["eslint",{"_index":8884,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["esmoduleinterop",{"_index":11467,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["esnext",{"_index":11464,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["est",{"_index":10601,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["establish",{"_index":418,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["esx",{"_index":8301,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["et",{"_index":10562,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["etc",{"_index":8881,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["etc/ans",{"_index":7653,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["etc/ansible/host",{"_index":7661,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["etc/apache2/mod",{"_index":9736,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["etc/apache2/ports.conf",{"_index":7818,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list",{"_index":8477,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["etc/fstab",{"_index":9836,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["etc/host",{"_index":7807,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["etc/kubernetes:/etc/kubernet",{"_index":8285,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["etc/o",{"_index":7843,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["etc/passwd",{"_index":9883,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["etc/ssh/sshd_config",{"_index":9722,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["etc/sudo",{"_index":11432,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["etc/yum.repos.d/vscode.repo",{"_index":11445,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["etcd",{"_index":8281,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["ethernet",{"_index":7793,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["etiam",{"_index":10544,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["etsi",{"_index":10131,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["eu",{"_index":6589,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/posts/featured-image":{}},"description":{}}],["ev",{"_index":8374,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["evalu",{"_index":11003,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["even",{"_index":5679,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even,`odd",{"_index":5689,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even.next",{"_index":5691,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even_head",{"_index":5687,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even_head.next",{"_index":5700,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["even_numb",{"_index":3245,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["event",{"_index":389,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["event.candid",{"_index":573,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["event.candidate.candid",{"_index":1135,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["event.channel",{"_index":866,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["event.data",{"_index":899,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["event.stream",{"_index":391,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["event.target",{"_index":1124,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["event.target.alt",{"_index":11327,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["eventbridg",{"_index":5085,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["everyon",{"_index":8349,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["everyth",{"_index":8501,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["evgschegolkova",{"_index":6788,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["ex",{"_index":10545,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["exact",{"_index":802,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["exam",{"_index":5014,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["examin",{"_index":5218,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["exampl",{"_index":2468,"title":{"/posts/gallery-example/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/markdown-syntax/":{},"/posts/gallery-example/":{},"/photos/icons/":{}},"description":{}}],["example.__private_method",{"_index":2485,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["example._protected_method",{"_index":2482,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["example.log",{"_index":2819,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["example.public_method",{"_index":2480,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["example.txt",{"_index":3735,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["example2@yandex.ru",{"_index":2734,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["example@yandex.ru",{"_index":2730,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["example_1.pi",{"_index":3704,"title":{},"content":{"/tracks/python-101/basis/ide":{}},"description":{}}],["exampleappserverinst",{"_index":8090,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["excel",{"_index":9476,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["except",{"_index":2316,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["exchang",{"_index":1006,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["exclud",{"_index":8899,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["exclus",{"_index":6335,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["exec",{"_index":7447,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day47":{},"/posts/docker-commands/":{}},"description":{}}],["exectut",{"_index":9872,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["execut",{"_index":2095,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["exercis",{"_index":10042,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["exist",{"_index":5263,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["exit",{"_index":6581,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["exp",{"_index":2062,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["expand",{"_index":5211,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["expandtab",{"_index":3460,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["expect",{"_index":1898,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["experi",{"_index":10425,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["expert",{"_index":5204,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["explain",{"_index":5217,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["explan",{"_index":5435,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["explor",{"_index":8840,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["export",{"_index":6472,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["exportpathmap",{"_index":11093,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["exports.handl",{"_index":5277,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["expos",{"_index":8619,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["ext",{"_index":11354,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["ext4",{"_index":9830,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["extend",{"_index":3637,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["extens",{"_index":3703,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["extensions.update.en",{"_index":326,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["extensions/apm",{"_index":10459,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["extensions/curator/cur",{"_index":10457,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["extensions/enterpris",{"_index":10430,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["extensions/filebeat/filebeat",{"_index":10389,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["extensions/logspout/logspout",{"_index":10384,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["extensions/metricbeat/metricbeat",{"_index":10376,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["extern",{"_index":7997,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["extra",{"_index":5062,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{}},"description":{}}],["extrem",{"_index":10171,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["eще",{"_index":10943,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f",{"_index":2693,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{}}],["f\"rectangle({self.width",{"_index":2550,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["f\"{f.stem}_new{f.suffix",{"_index":11364,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f\"{name",{"_index":10735,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f\"{name}_new{ext",{"_index":11359,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f\"он",{"_index":10734,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f(i",{"_index":6314,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["f.read",{"_index":3738,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["f.read(100",{"_index":3744,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["f.rename(new_nam",{"_index":11365,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f.write(\"hello",{"_index":3747,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["f0",{"_index":9439,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f0.close",{"_index":9467,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f0.readlin",{"_index":9441,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f1",{"_index":9462,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["f1.close",{"_index":9465,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f1.write(output.decode(\"utf",{"_index":9464,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["f332696ca850",{"_index":8125,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["f=\"name=\"exampl",{"_index":11646,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["faa",{"_index":9363,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["fabric",{"_index":9267,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["facilisi",{"_index":10603,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["fact",{"_index":7629,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["facts.json",{"_index":7630,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["fail",{"_index":5069,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["fake",{"_index":279,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["faktori",{"_index":11778,"title":{},"content":{"/p/publications":{}},"description":{}}],["fals",{"_index":311,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["famili",{"_index":10623,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["faq",{"_index":11939,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["fargat",{"_index":5169,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["farm/virtualbox",{"_index":8038,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["fastapi",{"_index":3061,"title":{"/tracks/python-101/frameworks/fastapi":{}},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["fault",{"_index":5118,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["fauna",{"_index":6889,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["faunadb",{"_index":6903,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["favorit",{"_index":7946,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["fd",{"_index":8821,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["fdisk",{"_index":9807,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["feat",{"_index":8861,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["featur",{"_index":8827,"title":{"/posts/featured-image":{}},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day04":{}},"description":{"/posts/featured-image":{}}}],["features=rtcunifiedplan",{"_index":125,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["features=rtcunifiedplanbydefault",{"_index":104,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["feb",{"_index":5073,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["februari",{"_index":5019,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["feder",{"_index":9278,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["federico",{"_index":11145,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["feedback",{"_index":7520,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["feli",{"_index":10598,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["fenwick",{"_index":6326,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["fermentum",{"_index":10512,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["fetch",{"_index":695,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/apps/_index":{}},"description":{}}],["feugiat",{"_index":10597,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["few",{"_index":10432,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["fi",{"_index":9614,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["fib(10",{"_index":2256,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fib(n",{"_index":2250,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fibonacci",{"_index":2248,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fibonacci(n",{"_index":3286,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["fig",{"_index":11044,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["figlet",{"_index":7711,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["file",{"_index":270,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["file.txt",{"_index":2782,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file1.txt",{"_index":2769,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file2.txt",{"_index":2770,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file://${path.join(__dirnam",{"_index":11483,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["file://url",{"_index":273,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["file=\"90daysofdevops.txt",{"_index":10311,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["file=c:\\users\\micha\\appdata\\roaming\\kopia\\repository.config",{"_index":6801,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["file_exist",{"_index":2783,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["file_handl",{"_index":3751,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["filebeat",{"_index":10387,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["filenam",{"_index":2680,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["filename_prefix",{"_index":9443,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["files\\kopiaui\\resources\\server\\kopia.ex",{"_index":6800,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["fileserv",{"_index":1384,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["fileserver.serve(req",{"_index":1389,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["filesystem",{"_index":10246,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["filezilla",{"_index":9488,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["filled_dict",{"_index":10781,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"four",{"_index":10796,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"on",{"_index":10795,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.setdefault(\"f",{"_index":10797,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.update({\"four\":4",{"_index":10799,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"f",{"_index":10798,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"four",{"_index":10794,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"on",{"_index":10788,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set",{"_index":10804,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set.add(5",{"_index":10808,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filter",{"_index":660,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day81":{},"/posts/docker-commands/":{}},"description":{}}],["filter(text",{"_index":11337,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["final",{"_index":3761,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["finansovoi",{"_index":11782,"title":{},"content":{"/p/publications":{}},"description":{}}],["find",{"_index":1086,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day62":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["findcelebrity(n",{"_index":5777,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["findcelebrity(self",{"_index":5788,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["findduplicate(num",{"_index":5742,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["findkthlargest(num",{"_index":5910,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{}}],["findmediansortedarrays(nums1",{"_index":6069,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["findorder(numcours",{"_index":5939,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["finish",{"_index":10244,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["finop",{"_index":10201,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["firefox",{"_index":138,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["firewal",{"_index":9662,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["first",{"_index":733,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["firstuniqchar(",{"_index":5620,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["fix",{"_index":8172,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["flask",{"_index":3012,"title":{"/tracks/python-101/frameworks/flask":{}},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["flask(nam",{"_index":3020,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["flask_sqlalchemi",{"_index":3016,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["flatten",{"_index":2157,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["flatten(self",{"_index":5649,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["flavour",{"_index":7766,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["float",{"_index":1836,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["float('inf",{"_index":5676,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["float=\"right",{"_index":5712,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["floor",{"_index":10862,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["flow",{"_index":10211,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["flowchart",{"_index":10651,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["flower",{"_index":6118,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{},"description":{}}],["flowerbed[i",{"_index":6131,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["floyd'",{"_index":5744,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["fluent",{"_index":7063,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["fluent/fluent",{"_index":7069,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["fluentbit",{"_index":7019,"title":{"/tracks/90daysofdevops/day81":{}},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["fluentd",{"_index":7014,"title":{"/tracks/90daysofdevops/day81":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["flush",{"_index":7089,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["fmt",{"_index":7906,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["fmt.printf(\"%v",{"_index":10051,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"challeng",{"_index":10079,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.printf(\"thank",{"_index":9932,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"thi",{"_index":10049,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"welcom",{"_index":9920,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.printf(\"you",{"_index":9934,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"ent",{"_index":9925,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"go",{"_index":9984,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["fmt.println(\"good",{"_index":9936,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"great",{"_index":10052,"title":{},"content":{"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.println(\"hello",{"_index":10091,"title":{},"content":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["fmt.println(\"how",{"_index":9927,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(\"thi",{"_index":10071,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.println(\"welcom",{"_index":10068,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["fmt.println(&challeng",{"_index":10060,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.println(challeng",{"_index":10059,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.scan(&twitternam",{"_index":10057,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.scanln(&dayscomplet",{"_index":9929,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.scanln(&twitternam",{"_index":9926,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["fmt.sprintf(\"hey",{"_index":10004,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["fname",{"_index":1962,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["focu",{"_index":5027,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["focus",{"_index":10259,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["folder",{"_index":1509,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day10":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["follow",{"_index":5164,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/docker-commands/":{}},"description":{}}],["font",{"_index":10622,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["foo",{"_index":1427,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["foot",{"_index":10830,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["footer",{"_index":8863,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/markdown-syntax/":{}},"description":{}}],["forc",{"_index":8931,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/posts/docker-commands/":{}},"description":{}}],["forceconsistentcasinginfilenam",{"_index":11469,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["foreach",{"_index":9079,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["foreach(cameraopt",{"_index":693,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["forg",{"_index":3178,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["fork",{"_index":8775,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["form",{"_index":5256,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["format",{"_index":3437,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/markdown-syntax/":{}},"description":{}}],["format(\"nod",{"_index":8042,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["format(ag",{"_index":3540,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["format(msg",{"_index":10987,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["format(sw2",{"_index":9424,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["format_map",{"_index":3461,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["formatt",{"_index":2802,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["formatted_d",{"_index":2854,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["formatted_gm_tim",{"_index":2898,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["formatted_tim",{"_index":2890,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["formula",{"_index":10482,"title":{},"content":{"/posts/math-support":{},"/apps/_index":{}},"description":{}}],["fortun",{"_index":10118,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["forward",{"_index":6453,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["forwarded_port",{"_index":7796,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["found",{"_index":668,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/loops":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["foundat",{"_index":8421,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["four",{"_index":3363,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["foursumcount(a",{"_index":5528,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["frac{du}{dx}v\\,dx",{"_index":10488,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["frac{dv}{dx",{"_index":10486,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["frac{n}{2",{"_index":6257,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{4",{"_index":6258,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{8",{"_index":6259,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["framework",{"_index":6660,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["free",{"_index":5157,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/brewmate/":{}},"description":{}}],["freecodecamp",{"_index":5156,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["fringilla",{"_index":10571,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["from_addr",{"_index":2732,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["fromimag",{"_index":9044,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["fromkey",{"_index":3781,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["front",{"_index":8193,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["frozenset",{"_index":1870,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["fruit",{"_index":3622,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/posts/markdown-syntax/":{}},"description":{}}],["fruits.append('orang",{"_index":3648,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.insert(1",{"_index":3650,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.pop",{"_index":3652,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.remove('banana",{"_index":3653,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fruits.sort",{"_index":3654,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["fssl",{"_index":8250,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["fstab",{"_index":9837,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ftp",{"_index":9588,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["full",{"_index":1351,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/docker-commands/":{}},"description":{}}],["full_path",{"_index":2780,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["fun",{"_index":9862,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["func",{"_index":2075,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["func(arg",{"_index":3291,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["func.low",{"_index":2089,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["func.nam",{"_index":3294,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["func.split",{"_index":2093,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["function",{"_index":492,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day13":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["function(arg1",{"_index":2115,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["function(array",{"_index":1358,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(ev",{"_index":5278,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["function(ipaddr",{"_index":1353,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(messag",{"_index":1399,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(room",{"_index":1348,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["function(socket",{"_index":1394,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["functool",{"_index":3284,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["fundament",{"_index":6900,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["futur",{"_index":9996,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["g",{"_index":7287,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["ga",{"_index":11406,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gain",{"_index":6196,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["gain[i",{"_index":6197,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["galaxi",{"_index":7601,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["galleri",{"_index":11540,"title":{"/posts/gallery-example/":{}},"content":{"/posts/gallery-example/":{}},"description":{}}],["gateway",{"_index":5130,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["gather",{"_index":549,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["gaza",{"_index":3906,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["gb",{"_index":10395,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["gc",{"_index":6806,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["gcc",{"_index":11414,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gcdofstrings(remaind",{"_index":6227,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcdofstrings(str1",{"_index":6219,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcloud",{"_index":6797,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["gcr.io/kaniko",{"_index":7391,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["gd",{"_index":9745,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["ge",{"_index":3438,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["geeksforgeek",{"_index":10058,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["geerl",{"_index":7600,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["gen_to_list",{"_index":10978,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gener",{"_index":2247,"title":{"/photos/midjourney/":{},"/photos/ai/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/photos/midjourney/":{},"/photos/ai/":{}}}],["get",{"_index":7516,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["get(self",{"_index":2992,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["get_all_book",{"_index":3033,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["get_book(book_id",{"_index":3041,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["get_external_data",{"_index":3220,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["get_helm.sh",{"_index":8251,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["get_object_or_404",{"_index":3115,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["get_object_or_404(book",{"_index":3134,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["get_species(cl",{"_index":10879,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["get_task",{"_index":3080,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["get_task(task_id",{"_index":3083,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["getattr",{"_index":10928,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["getattribut",{"_index":3439,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["getboolean",{"_index":2921,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["getclient",{"_index":9960,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["getclient(&cr",{"_index":9991,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["getclient(cr",{"_index":9962,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["getconnecteddevices('videoinput",{"_index":665,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getconnecteddevices(typ",{"_index":656,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getconnecteddevices(‘video",{"_index":706,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getconnecteddevices(‘videoinput",{"_index":699,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["getdata",{"_index":11529,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["getdisplaymedia",{"_index":830,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["getfloat",{"_index":2923,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["getint",{"_index":2922,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["getitem",{"_index":3440,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["getleaves(root",{"_index":6110,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["getleaves(root.left",{"_index":6113,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["getleaves(root.right",{"_index":6114,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["getleaves(root1",{"_index":6115,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["getleaves(root2",{"_index":6116,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["getnewarg",{"_index":3441,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["getotherpeer(peerconnect",{"_index":1128,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["getpass",{"_index":9401,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["getslic",{"_index":3814,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["getter",{"_index":2527,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["gettng",{"_index":8500,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["getusermedia",{"_index":338,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["getusermedia({vid",{"_index":347,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["gh",{"_index":11069,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["ghcr.io/kanisterio/mysql",{"_index":6606,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["gi0/0",{"_index":9379,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["giant",{"_index":10154,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["gif",{"_index":11213,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["gig0/1",{"_index":9417,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["gil",{"_index":2605,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["git",{"_index":1488,"title":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}}}],["gitconfig",{"_index":8947,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["github",{"_index":1489,"title":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day40":{},"/posts/nextjs-to-github-pages-ations/":{}},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["github.com/dghubble/go",{"_index":9951,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["github.com/dghubble/oauth1",{"_index":9953,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["github.com/michaelcade/go",{"_index":9938,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["github.com/webrtc/sampl",{"_index":1453,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["github/sup",{"_index":7291,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["github/workflows/sup",{"_index":7312,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["github/workflows/workflow_nam",{"_index":7310,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["github_token",{"_index":7297,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["gitignor",{"_index":8116,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["gitlab",{"_index":7526,"title":{"/tracks/90daysofdevops/day40":{}},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["gitop",{"_index":7237,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["given",{"_index":5430,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["gke",{"_index":8346,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["glacier",{"_index":5150,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["global",{"_index":1555,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/posts/emoji-support":{},"/posts/python-snippets/":{}},"description":{}}],["glyph",{"_index":10621,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["gm_time",{"_index":2895,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["gmt",{"_index":2878,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["gmtime",{"_index":2883,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["gnome",{"_index":9693,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gns3",{"_index":9510,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["gnu",{"_index":8937,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["go",{"_index":5065,"title":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}}}],["go.dev/learn",{"_index":10045,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["go.dev/tour/list",{"_index":10044,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["go.mod",{"_index":9939,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goal",{"_index":7337,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["goarch",{"_index":10011,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goarch=amd64",{"_index":10012,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goarch=arm64",{"_index":10019,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["gobyexampl",{"_index":10043,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["gochronicl",{"_index":10085,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["golang",{"_index":8354,"title":{"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{}},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/90daysofdevops/day09":{}}}],["golden",{"_index":3860,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["goo",{"_index":10010,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["good",{"_index":5981,"title":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{},"description":{}}],["goodnodes(root",{"_index":5985,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["googl",{"_index":8,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["google.com",{"_index":9599,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["goos=darwin",{"_index":10013,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goos=linux",{"_index":10015,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["goos=window",{"_index":10017,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["gopath",{"_index":10083,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["gopherfest",{"_index":11190,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["gotdescription1",{"_index":1576,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["gotlocalmediastream(mediastream",{"_index":1114,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["govern",{"_index":5123,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["gpg",{"_index":8478,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["grabwebcamvideo",{"_index":944,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["gradl",{"_index":8490,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["grafana",{"_index":6948,"title":{"/tracks/90daysofdevops/day83":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["grant",{"_index":9744,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["grape",{"_index":3651,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["graph",{"_index":5940,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day30":{},"/posts/diagram-support":{}},"description":{}}],["graph[prereq",{"_index":5953,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["graph[prereq].append(cours",{"_index":5946,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["graphit",{"_index":6959,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["graphql",{"_index":6890,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["gravida",{"_index":10542,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["great",{"_index":10041,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["greater",{"_index":5070,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["greatest",{"_index":6207,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["greem",{"_index":8814,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["green",{"_index":5326,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["gremlin",{"_index":9248,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["grep",{"_index":7070,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["grid",{"_index":5884,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["group",{"_index":5302,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["group_var",{"_index":7643,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["group_vars/all/common_variables.yml",{"_index":7693,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["groupadd",{"_index":8538,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["groups['webserv",{"_index":7637,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["grunt",{"_index":10881,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gt",{"_index":3442,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["guest",{"_index":7797,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["gui",{"_index":6777,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/apps/brewmate/":{}}}],["guid",{"_index":5043,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/posts/emoji-support":{}}}],["guidanc",{"_index":5205,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["gump",{"_index":7475,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["gunzip",{"_index":6634,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["guru99",{"_index":7133,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["gzip",{"_index":6624,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["gzr",{"_index":9214,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["h",{"_index":3520,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["h1",{"_index":11149,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h2",{"_index":11150,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h2o",{"_index":11215,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h3",{"_index":11151,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h4",{"_index":11152,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h5",{"_index":11153,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h6",{"_index":11154,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h:%m:%",{"_index":2863,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["habr",{"_index":2950,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["hacker",{"_index":9707,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["had_0",{"_index":5762,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["had_5",{"_index":5761,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["hand",{"_index":5227,"title":{"/tracks/90daysofdevops/day78":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["handl",{"_index":1218,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["handle.clos",{"_index":3742,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["handleconnect",{"_index":1096,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnection(ev",{"_index":1123,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnectionchang",{"_index":1099,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnectionfailure(peerconnect",{"_index":1132,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handleconnectionsuccess(peerconnect",{"_index":1130,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["handlelocalmediastreamerror(error",{"_index":1221,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["handler",{"_index":2800,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["handler.setformatter(formatt",{"_index":2812,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["handler.setlevel(logging.info",{"_index":2807,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["hang",{"_index":1048,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["happen",{"_index":1894,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["hard",{"_index":8394,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["hardcod",{"_index":5421,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["hardwareprofil",{"_index":9033,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["hare",{"_index":5736,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["hash",{"_index":3443,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["hashicorp",{"_index":7597,"title":{"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["hashicorp/aw",{"_index":8071,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["hashicorp/kubernet",{"_index":7953,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["hasnext",{"_index":5642,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["hasnext(self",{"_index":5654,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["hat",{"_index":7572,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["have",{"_index":11317,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["haystack",{"_index":5432,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["haystack.find(needl",{"_index":5439,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["haystack[start:end",{"_index":5442,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["hcl",{"_index":7938,"title":{"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["hdconstraint",{"_index":1235,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["hdd",{"_index":9224,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["head",{"_index":5690,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day37":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["head.html",{"_index":11268,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["head.next",{"_index":5699,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["header",{"_index":8874,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["headless",{"_index":294,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["head~1",{"_index":8807,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["health_check",{"_index":7097,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["hear_no_evil",{"_index":10617,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["heavi",{"_index":11011,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["heavili",{"_index":7894,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["height",{"_index":731,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["height(self",{"_index":2543,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["height.sett",{"_index":2545,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["height=\"555px",{"_index":5711,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["height[i",{"_index":6063,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["height[left",{"_index":6035,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["height[right",{"_index":6033,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["hello",{"_index":2098,"title":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}}}],["hello.html",{"_index":11016,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["hello_world",{"_index":8101,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["helloworld",{"_index":7306,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["helm",{"_index":6491,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["helm.sh/chart=flu",{"_index":7078,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["help",{"_index":2260,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["help(my_string.capit",{"_index":3496,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["help='an",{"_index":2961,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["help='sum",{"_index":2969,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["helper",{"_index":9961,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["hendrerit",{"_index":10509,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["here",{"_index":2454,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/diagram-support":{},"/posts/gallery-example/":{}},"description":{}}],["hero",{"_index":5220,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["hertz",{"_index":10144,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["hex(ag",{"_index":3541,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["high",{"_index":6711,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["highest",{"_index":6191,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{},"description":{}}],["highli",{"_index":10435,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["highlight",{"_index":9690,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["highlighting.git",{"_index":9689,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["histfilesize=10000000",{"_index":9868,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["histori",{"_index":9865,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["history.innerhtml",{"_index":11326,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["histsize=100000",{"_index":9867,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["histtimeformat=\"%d",{"_index":9866,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["hitesh",{"_index":10039,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["hlq",{"_index":11839,"title":{},"content":{"/p/publications":{}},"description":{}}],["hoc",{"_index":3907,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["home",{"_index":5393,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["home/.kube/config",{"_index":8343,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["home/michael/projects/go",{"_index":10084,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["home/usernam",{"_index":10315,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["home_dir",{"_index":2773,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["homebrew",{"_index":8254,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/apps/brewmate/":{}}}],["horizont",{"_index":8866,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["horizontalpodautoscal",{"_index":8376,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["host",{"_index":7106,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["host=127.0.0.1",{"_index":2919,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["host_interfac",{"_index":8051,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["host_var",{"_index":7651,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["hostnam",{"_index":236,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["hostonli",{"_index":8050,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["hostpath",{"_index":6389,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["hostvarshost['nodenam",{"_index":7638,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["hour",{"_index":2838,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["hours]](https://www.youtube.com/watch?v=x48vudvv0do",{"_index":8214,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["hpa",{"_index":8375,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["htaccess",{"_index":11375,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["html",{"_index":750,"title":{"/posts/pyscript-python-embedded-in-html/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day68":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/pyscript-python-embedded-in-html/":{}}}],["html5",{"_index":9537,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/posts/markdown-syntax/":{}},"description":{}}],["html_welcome_msg",{"_index":7617,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["http",{"_index":426,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["http.createserver(function(req",{"_index":1387,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["http://127.0.0.1:3000",{"_index":11495,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://127.0.0.1:8080/k10",{"_index":6456,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["http://172.25.218.154:8080",{"_index":8526,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["http://192.168.169.135",{"_index":9733,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["http://192.168.169.135/90days.php",{"_index":9740,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["http://apm",{"_index":10472,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["http://creativecommons.org/licenses/bi",{"_index":10268,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["http://enterpris",{"_index":10428,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["http://localhost:3000",{"_index":11482,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://localhost:8000",{"_index":8579,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["http://localhost:8200",{"_index":10470,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["http://webserv",{"_index":7641,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["http_listen",{"_index":7094,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["http_port",{"_index":7096,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["http_server",{"_index":7093,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["httpclient",{"_index":9969,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["httpd",{"_index":7833,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["httpexcept",{"_index":3069,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["httpexception(status_code=404",{"_index":3085,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["httpresponseredirect",{"_index":3117,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["httpresponseredirect(reverse('index",{"_index":3130,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["https://10",{"_index":8288,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["https://app.vagrantup.com/ubuntu/boxes/bionic64/versions/20180903.0.0/providers/virtualbox.box",{"_index":8045,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["https://apt.releases.hashicorp.com",{"_index":9783,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["https://apt.releases.hashicorp.com/gpg",{"_index":9781,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["https://aws.amazon.com/lambda",{"_index":5236,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://cdn.jsdelivr.net/pyodide/v0.20.0/full/pyodide.j",{"_index":11057,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["https://charts.bitnami.com/bitnami",{"_index":6537,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["https://charts.jenkins.io",{"_index":7431,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["https://charts.kasten.io",{"_index":6680,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["https://code.visualstudio.com/docs/setup/linux",{"_index":11439,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://codelabs.developers.google.com/codelabs/webrtc",{"_index":921,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["https://developers.redhat.com/products/rhel/get",{"_index":11447,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://docs.aws.amazon.com/lambda/?id=docs_gateway",{"_index":5235,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://download.opensuse.org/repositories/devel:/kub",{"_index":8479,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xubuntu_20.04",{"_index":8476,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["https://fluent.github.io/helm",{"_index":7067,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["https://forms.gle/nfb2jxs1fhrcjn5q7",{"_index":11732,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://github.com/arnaudj/mooc",{"_index":5176,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/itsmostafa/certifi",{"_index":5175,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/michaelcade/awx",{"_index":7583,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["https://github.com/prometheu",{"_index":6972,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["https://github.com/romankurnovskii/not",{"_index":11071,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://github.com/scriptcamp/kubernet",{"_index":7404,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["https://github.com/zsh",{"_index":9684,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["https://gregrickaby.blog/article/nextj",{"_index":11140,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://img.shields.io/badge/licens",{"_index":10272,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["https://licensebuttons.net/l/bi",{"_index":10270,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["https://localhost",{"_index":8270,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["https://medium.com/@anotherplanet/git",{"_index":11141,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://nextjs.org/docs/api",{"_index":11099,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://nextjs.org/docs/messages/export",{"_index":11098,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://olehadash.com",{"_index":11714,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://packages.microsoft.com/keys/microsoft.asc",{"_index":11442,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://prometheu",{"_index":7194,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["https://raw.githubusercontent.com/argoproj/argo",{"_index":7252,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["https://raw.githubusercontent.com/helm/helm/master/scripts/get",{"_index":8252,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh",{"_index":9681,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["https://schema.management.azure.com/schemas/2015",{"_index":8991,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["https://sourabhbajaj.com/mac",{"_index":11655,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["https://t.me/brootto",{"_index":11716,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/forum_israel",{"_index":11701,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/izrail_rabota",{"_index":11736,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/joinchat/dlamlxn_",{"_index":11733,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/olehadash_com_chat",{"_index":11700,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/olimhadashim",{"_index":11699,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/rabotadlyadruzei",{"_index":11738,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/rabotaisra",{"_index":11739,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/rus_work_israel",{"_index":11735,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://t.me/sidejobisrael",{"_index":11737,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://u",{"_index":5252,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://wallis.dev/blog/deploy",{"_index":11139,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://webrtc.org/get",{"_index":919,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["https://wordpress.org/latest.tar.gz",{"_index":9751,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["https://www.elastic.co/guide/en/apm/guide/current/components.html",{"_index":10477,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["https://www.elastic.co/guide/en/apm/guide/current/run",{"_index":10478,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/filebeat/current/filebeat",{"_index":10391,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/filebeat/current/index.html",{"_index":10393,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/filebeat/current/run",{"_index":10392,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/metricbeat/current/index.html",{"_index":10383,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat",{"_index":10379,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/beats/metricbeat/current/run",{"_index":10381,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["https://www.elastic.co/guide/en/elasticsearch/reference/current/secur",{"_index":10452,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["https://www.elastic.co/guide/en/enterpris",{"_index":10441,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["https://www.elastic.co/guide/en/workplac",{"_index":10444,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["https://www.facebook.com/groups/1511311149184796",{"_index":11711,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/1524467887858435",{"_index":11710,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/1601685156757272",{"_index":11713,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/asdisraelru",{"_index":11708,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.facebook.com/groups/nyani.uchitelya.shkoli.israel",{"_index":11705,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.google.com",{"_index":11381,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["https://www.jewishagency.org/ru",{"_index":11694,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["https://www.linkedin.com/pulse/deploy",{"_index":11144,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["https://www.redhat.com/sysadmin/instal",{"_index":11448,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https_port",{"_index":7615,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["http‑запрос",{"_index":5239,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["hub",{"_index":7376,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["hue",{"_index":1260,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["hugo",{"_index":10608,"title":{"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/npm/hugo-lunr-ml/":{}},"content":{"/posts/emoji-support":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/emoji-support":{},"/posts/integrate-hugo-react/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["human",{"_index":9828,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["human(\"пётр",{"_index":10889,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human(name=\"ива",{"_index":10886,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.pi",{"_index":10906,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.speci",{"_index":10893,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["hunt",{"_index":11222,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["hybrid",{"_index":9151,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["hyper",{"_index":8065,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["hyperkit",{"_index":8351,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["hyperloglog",{"_index":6824,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["hypervisor",{"_index":9519,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["hypervisorlaunchtyp",{"_index":9534,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["i'm",{"_index":3838,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["i.ag",{"_index":10899,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.grunt",{"_index":10897,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(\"привет",{"_index":10887,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.ag",{"_index":10900,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.get_speci",{"_index":10892,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i/o",{"_index":10055,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["i219",{"_index":7794,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["i=1",{"_index":5848,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["i=2",{"_index":5850,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["i=3",{"_index":5852,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["iaa",{"_index":8661,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["iac",{"_index":7850,"title":{"/tracks/90daysofdevops/day56":{}},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["iaculi",{"_index":10537,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["iam",{"_index":5141,"title":{"/tracks/aws-certified-developer-associate/iam/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["ib",{"_index":11231,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["ibm",{"_index":10210,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ic",{"_index":407,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["icecallback1",{"_index":1565,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["icecallback2",{"_index":1572,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["icecandid",{"_index":565,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["iceconfigur",{"_index":249,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["iceconnectionstatechang",{"_index":1098,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["icegatheringstatechang",{"_index":547,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["iceserv",{"_index":250,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["icmp",{"_index":7760,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["icon",{"_index":5203,"title":{"/photos/icons/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{},"/photos/icons/":{}},"description":{"/photos/icons/":{}}}],["id",{"_index":378,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/featured-image":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["id=\"zoom",{"_index":11347,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["idea",{"_index":7945,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["ideal",{"_index":801,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["ident",{"_index":5136,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day55":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["identifi",{"_index":5789,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["idx",{"_index":6283,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["ieee",{"_index":3998,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["ietf",{"_index":22,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["if(self.po",{"_index":2308,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["if/elif/els",{"_index":3788,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["ifac",{"_index":1413,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ifaces[dev].foreach(function(detail",{"_index":1415,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ifconfig,swapon",{"_index":9808,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ii",{"_index":2978,"title":{"/tracks/python-101/standard_library/_index":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{},"description":{}}],["iii",{"_index":3341,"title":{"/tracks/python-101/enhance_python/_index":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["ikt",{"_index":11760,"title":{},"content":{"/p/publications":{}},"description":{}}],["ilb",{"_index":9165,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["imag",{"_index":1026,"title":{"/posts/featured-image":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/gallery-example/":{},"/posts/docker-commands/":{}},"description":{"/posts/featured-image":{}}}],["image.html",{"_index":11344,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image.tag=0.75.0",{"_index":6533,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["image/index.j",{"_index":11305,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image/placeholders.j",{"_index":11329,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["imagerefer",{"_index":9036,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["images/day38_git1.ru.png",{"_index":8846,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["imf",{"_index":3901,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["img",{"_index":974,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["img.data.bytelength",{"_index":979,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["immedi",{"_index":11640,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["immut",{"_index":7889,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/posts/python-snippets/":{}},"description":{}}],["imper",{"_index":8857,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["implement",{"_index":5406,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["import",{"_index":1920,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["import_task",{"_index":7675,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["importantdata",{"_index":6656,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["improv",{"_index":7521,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["inbound",{"_index":9136,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["inc",{"_index":6844,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["includ",{"_index":5030,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/diagram-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["includeemail",{"_index":9977,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["inclus",{"_index":6334,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["incom",{"_index":897,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["incomingmessag",{"_index":893,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["incomingmessages.textcont",{"_index":900,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["increas",{"_index":5657,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{}},"content":{},"description":{}}],["increasingtriplet(num",{"_index":5674,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["increment",{"_index":1783,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["indegre",{"_index":5942,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["indegree[cours",{"_index":5947,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["indegree[i",{"_index":5950,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["indent",{"_index":1899,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["indentationerror",{"_index":1897,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["index",{"_index":3143,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/p/publications":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["index(request",{"_index":3121,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["index(x",{"_index":3384,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["index.html",{"_index":1042,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["index.html.j2",{"_index":7815,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["index.j",{"_index":997,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["index.php",{"_index":9735,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["index.tsx",{"_index":11456,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["indexerror",{"_index":10755,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["indic",{"_index":10456,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["individu",{"_index":7370,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["infin",{"_index":7366,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["infinit",{"_index":9147,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["info",{"_index":2821,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day52":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["inform",{"_index":5023,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["information_sourc",{"_index":10411,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["infrastructur",{"_index":7248,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ing",{"_index":8377,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["ingress",{"_index":6513,"title":{"/tracks/90daysofdevops/day55":{}},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ingress.yaml",{"_index":8203,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["ini",{"_index":2983,"title":{},"content":{"/tracks/python-101/standard_library/_index":{}},"description":{}}],["init",{"_index":1956,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["init(self",{"_index":1961,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-snippets/":{}},"description":{}}],["init(self,c_nam",{"_index":2399,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["init_subclass",{"_index":3444,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["initi",{"_index":698,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["inject",{"_index":5119,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["injectkanistersidecar.enabled=tru",{"_index":6495,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["injectkanistersidecar.namespaceselector.matchlabels.k10/injectkanistersidecar=tru",{"_index":6496,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["inlin",{"_index":7359,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/posts/math-support":{},"/posts/emoji-support":{}},"description":{}}],["inner_func",{"_index":3321,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["inner_func(i",{"_index":3320,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["inp",{"_index":2688,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/inputs":{},"/posts/python-snippets/":{}},"description":{}}],["input",{"_index":880,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["input(\"ent",{"_index":9434,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["input(\"what",{"_index":2685,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["input(\"введ",{"_index":3667,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/posts/python-snippets/":{}},"description":{}}],["input_string_var",{"_index":10740,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inputartifactnam",{"_index":6629,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["inputbox",{"_index":11062,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["insect",{"_index":11223,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["insert",{"_index":3643,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["insert(self",{"_index":6322,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["insid",{"_index":7357,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{}}],["insight",{"_index":8772,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["insomnia",{"_index":9700,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["inspect",{"_index":8505,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/posts/docker-commands/":{}},"description":{}}],["instal",{"_index":993,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/brewmate/":{}},"description":{}}],["install_mysql.yml",{"_index":7665,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["install_tools.yml",{"_index":7709,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["instanc",{"_index":3499,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-snippets/":{}},"description":{}}],["instance_typ",{"_index":8076,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["institut",{"_index":3995,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["instl",{"_index":10998,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["instruct",{"_index":10462,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["int",{"_index":1843,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/posts/math-support":{},"/posts/python-snippets/":{}},"description":{}}],["int(curr_num",{"_index":5611,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["int(input(\"введ",{"_index":3756,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["int(input(\"скольк",{"_index":3672,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["int(x",{"_index":5992,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["int_max",{"_index":5672,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["integ",{"_index":1834,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/90daysofdevops/day88":{},"/posts/featured-image":{}},"description":{}}],["integr",{"_index":5083,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{}},"description":{}}],["integracii",{"_index":11751,"title":{},"content":{"/p/publications":{}},"description":{}}],["integration/contin",{"_index":7501,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["intel",{"_index":9522,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["intel(r",{"_index":7792,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["intend",{"_index":10319,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["interact",{"_index":11228,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["interconnect",{"_index":9629,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["interfac",{"_index":5126,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["interfaces.html",{"_index":10451,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["intermedi",{"_index":2391,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["intern",{"_index":1173,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["internet",{"_index":416,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["interplanetari",{"_index":10148,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["interpret",{"_index":2606,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["intersect",{"_index":3552,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["intersection_set",{"_index":3571,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["intersection_upd",{"_index":3559,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["interviewbitemploye",{"_index":2361,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["interviewbitemployee(\"mr",{"_index":2362,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["intl",{"_index":9749,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["intro",{"_index":6899,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["introduc",{"_index":2359,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["introduce(self",{"_index":2357,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["introduct",{"_index":6342,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["invalid_dict",{"_index":10783,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["invalid_set",{"_index":10805,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inventori",{"_index":10257,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["invert(1",{"_index":1258,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["invok",{"_index":2395,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["io",{"_index":1391,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["io.connect",{"_index":1343,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.adapter.rooms[room",{"_index":1407,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.in(room).emit('join",{"_index":1412,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.in(room).emit('readi",{"_index":1326,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io.sockets.on('connect",{"_index":1393,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["io|grep",{"_index":6459,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["ip",{"_index":1109,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/posts/docker-commands/":{}},"description":{}}],["ip,now.year,now.month,now.day,now.hour,now.minute,now.second",{"_index":9461,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ip.strip",{"_index":9442,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ip_nw",{"_index":8320,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_nw$((ip_start+1",{"_index":8313,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_nw$((ip_start+2",{"_index":8314,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_nw=\"10.0.0",{"_index":8310,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_start",{"_index":8321,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ip_start=10",{"_index":8311,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["ipaddr",{"_index":1355,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day59":{}},"description":{}}],["ipaddr_2",{"_index":8054,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["ipaddress",{"_index":11651,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ipam",{"_index":9561,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["ipconfig1",{"_index":9063,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["ipconfigur",{"_index":9062,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["ipsam",{"_index":11169,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ipsum",{"_index":11158,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["iptabl",{"_index":9805,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["iputil",{"_index":8515,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["ipv4",{"_index":1417,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["ipv6",{"_index":9158,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["is_odd",{"_index":5697,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["isalnum",{"_index":2598,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isalpha",{"_index":3462,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isascii",{"_index":3463,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isdecim",{"_index":3464,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isdev",{"_index":11476,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["isdigit",{"_index":3465,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isdisjoint",{"_index":3560,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["isidentifi",{"_index":3466,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isiniti",{"_index":1338,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["isinst",{"_index":1824,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["isinstance(sup",{"_index":10923,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["islow",{"_index":3467,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isnumer",{"_index":3468,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["iso",{"_index":9513,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["isol",{"_index":6861,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["isolatedmodul",{"_index":11473,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ispalindrome(x",{"_index":6097,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["isprint",{"_index":3469,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["isspac",{"_index":3470,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["issu",{"_index":7315,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day40":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["issubclass",{"_index":2571,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["issubclass(baseclass",{"_index":2582,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["issubclass(derivedclass",{"_index":2581,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["issubsequence(",{"_index":6138,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["issubset",{"_index":3561,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["issuperset",{"_index":3562,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["istitl",{"_index":3471,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["isupp",{"_index":3472,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["it'",{"_index":7518,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["ital",{"_index":11196,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["item",{"_index":2937,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day38":{},"/posts/markdown-syntax/":{}},"description":{}}],["item.isinteg",{"_index":5650,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["itemhandl",{"_index":3005,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["itemhandler(tornado.web.requesthandl",{"_index":2994,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["iter",{"_index":2150,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{}},"description":{}}],["iter(array_obj",{"_index":2314,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["iter(our_iter",{"_index":10818,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["iter(self",{"_index":2305,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["iv",{"_index":3188,"title":{"/tracks/python-101/external_packages/_index":{}},"content":{},"description":{}}],["izrailya.pdf",{"_index":11752,"title":{},"content":{"/p/publications":{}},"description":{}}],["j",{"_index":1335,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{}},"description":{}}],["j.say(\"привет",{"_index":10890,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.ag",{"_index":10901,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.get_speci",{"_index":10895,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["jake",{"_index":10034,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["jamesives/github",{"_index":11135,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["java",{"_index":594,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["javascript",{"_index":1195,"title":{"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day07":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}}}],["javaskript",{"_index":1486,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{}},"description":{}}],["javasсript",{"_index":1609,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["jdk",{"_index":7389,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["jeff",{"_index":7599,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["jenkin",{"_index":7267,"title":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["jenkins.io",{"_index":7268,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["jenkins.jenkin",{"_index":7305,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["jenkinsci",{"_index":7430,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["jenkinsfil",{"_index":7329,"title":{"/tracks/90daysofdevops/day74":{}},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["jira",{"_index":8909,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["jit",{"_index":2286,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["job",{"_index":7280,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["john",{"_index":2568,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["join",{"_index":1346,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["join(result",{"_index":6187,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["join(s_list",{"_index":6156,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["join(string_list",{"_index":2329,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["join(word",{"_index":5449,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["jpl",{"_index":10150,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["js",{"_index":1212,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day07":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["js.build",{"_index":11274,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["js/main.j",{"_index":1337,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["jsep",{"_index":24,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["json",{"_index":2587,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/posts/google-sheets-2-json/":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["json.parse(event.records[0].sns.messag",{"_index":5280,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["json.stringifi",{"_index":11536,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["jsonifi",{"_index":3018,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["jsonify(result",{"_index":3040,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["jsonify({'error",{"_index":3043,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["jsonpath=\"{.data.mysql",{"_index":6542,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["jsonpath=\"{.data.password",{"_index":7257,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["jsonpath=\"{.data.token",{"_index":6463,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["jsonpath=\"{.items[0].metadata.nam",{"_index":7204,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["jsx",{"_index":11243,"title":{"/posts/integrate-hugo-react/":{}},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["jun",{"_index":11669,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["junior",{"_index":1668,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["junior/middl",{"_index":2346,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["junip",{"_index":9504,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["justo",{"_index":10560,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["k",{"_index":3519,"title":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day17":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["k10",{"_index":6383,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["k10.kasten.io/i",{"_index":6675,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["k3",{"_index":8272,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["k8",{"_index":6987,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["k[encoded_str",{"_index":5591,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["kafka",{"_index":7061,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["kaiser",{"_index":10145,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["kak",{"_index":11762,"title":{},"content":{"/p/publications":{}},"description":{}}],["kanban",{"_index":10170,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["kanctl",{"_index":6582,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kando",{"_index":6583,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kaniko",{"_index":7377,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kaniko.git",{"_index":7405,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kaniko/.dock",{"_index":7396,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kaniko/executor",{"_index":7413,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["kanist",{"_index":6450,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["kanister/kanist",{"_index":6532,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kanisterio:mast",{"_index":8710,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["kasten",{"_index":6382,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["kasten/k10",{"_index":6492,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["katex",{"_index":10483,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["kbd",{"_index":11211,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["kbn",{"_index":10454,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["kdbd9dff738996cfe7bcf99b45314e193",{"_index":6814,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["kdiff3",{"_index":8798,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["keep",{"_index":5021,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["keep_loc",{"_index":7994,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["keep_log",{"_index":7112,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["kernel",{"_index":9797,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["key",{"_index":2131,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["key1",{"_index":3165,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["key2",{"_index":3167,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["key=list.count",{"_index":10695,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyerror",{"_index":10793,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keygen",{"_index":7812,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["keys.html",{"_index":10443,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["keyvalu",{"_index":6598,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["keyvault",{"_index":9308,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["keyword",{"_index":1896,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["keyword_args(**kwarg",{"_index":10827,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyword_args(big=\"foot",{"_index":10828,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyword_funct",{"_index":3723,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["keyword_function(a=1",{"_index":3717,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["keyword_function(b=4",{"_index":3720,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["kibana",{"_index":6949,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["kibana/config/kibana.yml",{"_index":10426,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["kill",{"_index":11630,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["kind",{"_index":650,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/posts/math-support":{}},"description":{}}],["kinesi",{"_index":5082,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["kinet",{"_index":11393,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["kit",{"_index":5037,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["km",{"_index":5142,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["knew",{"_index":10187,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["know",{"_index":5034,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["knowledg",{"_index":5184,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["known",{"_index":6327,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["knows(a",{"_index":5779,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["knows(candid",{"_index":5785,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["knows(i",{"_index":5792,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["kodekloud",{"_index":7944,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["kopia",{"_index":6665,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["kopia.ex",{"_index":6815,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["kopiaui",{"_index":6779,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["kreuzwerker/dock",{"_index":7990,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["kth",{"_index":5903,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{},"description":{}}],["kube",{"_index":6975,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kube/config",{"_index":7956,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubeadm",{"_index":8278,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["kubeapp",{"_index":8260,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["kubeconfig",{"_index":7951,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["kubectl",{"_index":6377,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kubeexec",{"_index":6527,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kubelet",{"_index":8337,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kubernet",{"_index":5100,"title":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["kubernetes.io",{"_index":8416,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["kubernetes.tf",{"_index":7949,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_deploy",{"_index":7958,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_deployment.test.spec.0.template.0.metadata.0.labels.app",{"_index":7966,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_namespac",{"_index":7957,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_namespace.test.metadata.0.nam",{"_index":7959,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubernetes_servic",{"_index":7965,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["kubetask",{"_index":6528,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["kudu",{"_index":11394,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["kunal",{"_index":8216,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kushwaha",{"_index":8217,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["kvm",{"_index":8352,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["kwarg",{"_index":2332,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/functions":{},"/posts/python-snippets/":{}},"description":{}}],["kwargs.item",{"_index":2340,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["l",{"_index":2703,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["l**inux",{"_index":9729,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["l2",{"_index":9490,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["la",{"_index":9675,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["lab",{"_index":5178,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["label",{"_index":7072,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["labor",{"_index":11163,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["lacinia",{"_index":10526,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["lacu",{"_index":10535,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["lambda",{"_index":2174,"title":{"/tracks/aws-certified-developer-associate/lambda/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{}}}],["lambdaexecutionrol",{"_index":5266,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["lamp",{"_index":9728,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["lang",{"_index":11059,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["languag",{"_index":3993,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["largest",{"_index":5904,"title":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"content":{},"description":{}}],["largestaltitude(gain",{"_index":6204,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["last",{"_index":1758,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/apps/brewmate/":{}},"description":{}}],["last_digit",{"_index":6099,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["lastrow",{"_index":11531,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["later",{"_index":10686,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["latest",{"_index":5022,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day34":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/brewmate/":{}},"description":{}}],["latest.tar.gz",{"_index":9754,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["launch",{"_index":5384,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/brewmate/":{}},"description":{}}],["layer",{"_index":9184,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["layer2",{"_index":9640,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["layer3",{"_index":9639,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["layout",{"_index":8864,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["layouts/partials/footer.html",{"_index":11277,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["layouts/partials/head.html",{"_index":11275,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["lbm",{"_index":10147,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["lca",{"_index":5870,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["ldot",{"_index":6260,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["le",{"_index":3445,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["leader",{"_index":9153,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["leaf",{"_index":6103,"title":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["leafsimilar(root1",{"_index":6109,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["lean",{"_index":8547,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["learn",{"_index":5153,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["lectu",{"_index":10519,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["leetcod",{"_index":5428,"title":{"/tracks/algorithms-101/leetcode/_index":{}},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}}}],["leeto",{"_index":5437,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["left",{"_index":5571,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["left=non",{"_index":5566,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["left_depth",{"_index":6236,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["legaci",{"_index":5403,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["len",{"_index":978,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["len(",{"_index":6141,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["len(\"эт",{"_index":10732,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(a",{"_index":6266,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(grid",{"_index":5899,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["len(haystack",{"_index":5441,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["len(height",{"_index":6029,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["len(li",{"_index":10772,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(merg",{"_index":6072,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["len(nam",{"_index":10736,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(needl",{"_index":5440,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["len(num",{"_index":5728,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["len(ord",{"_index":5955,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["len(row",{"_index":5826,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["len(self",{"_index":6287,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(self.numb",{"_index":2309,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["len(self.queu",{"_index":6089,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["len(self.stack",{"_index":5655,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["len(self.vec",{"_index":5809,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["len(self.vec[self.row",{"_index":5811,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["len(sen",{"_index":5509,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["len(str1",{"_index":6222,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(str2",{"_index":6223,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(sys.argv",{"_index":2675,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["len(t",{"_index":6142,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["len(tup",{"_index":10776,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(word1",{"_index":6183,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["len(word2",{"_index":6184,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["length",{"_index":971,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["lengthoflis(num",{"_index":5727,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["leo",{"_index":10573,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["less",{"_index":10309,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["lesson",{"_index":10143,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["let",{"_index":7909,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["let'",{"_index":10242,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["letter",{"_index":2628,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["level",{"_index":6662,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["levelname)",{"_index":2810,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["li",{"_index":3513,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/posts/python-snippets/":{}},"description":{}}],["li.append(1",{"_index":10748,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(2",{"_index":10749,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(3",{"_index":10751,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(4",{"_index":10750,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.extend(other_li",{"_index":10771,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(2",{"_index":10768,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(4",{"_index":10769,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.insert(1",{"_index":10767,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.pop",{"_index":10752,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.remove(2",{"_index":10766,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li2",{"_index":10764,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[0",{"_index":10753,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[1:3",{"_index":10756,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[2",{"_index":10757,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[4",{"_index":10754,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[:3",{"_index":10758,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[::2",{"_index":10759,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[начало:конец:шаг",{"_index":10762,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["liaison",{"_index":3908,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["lib",{"_index":9789,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["libapache2",{"_index":9734,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["libcontainers:/stable/xubuntu_20.04/release.key",{"_index":8480,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["libmysqlcli",{"_index":7671,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["librari",{"_index":5221,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["licens",{"_index":6847,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["life",{"_index":10139,"title":{},"content":{"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["lifecycl",{"_index":5419,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["lighten",{"_index":6744,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["lightgrey.svg",{"_index":10275,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["lightweight",{"_index":10368,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["ligula",{"_index":10543,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["limit",{"_index":8378,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["limitrang",{"_index":8379,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["line",{"_index":1759,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["lineag",{"_index":8120,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["link",{"_index":5680,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["lint",{"_index":7293,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["linter",{"_index":7292,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["linter.yml",{"_index":7313,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["linter@v3",{"_index":7295,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["linux",{"_index":3657,"title":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}}}],["linux)instal",{"_index":8629,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["linux/mac",{"_index":10332,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["list",{"_index":702,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["list(",{"_index":6151,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["list(filled_dict.valu",{"_index":10791,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(filter(lambda",{"_index":3246,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/posts/python-snippets/":{}},"description":{}}],["list(map(add_10",{"_index":10855,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(map(max",{"_index":10856,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(my_set",{"_index":3583,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["list(our_iter",{"_index":10821,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(valu",{"_index":10979,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list.txt",{"_index":9886,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["list[int",{"_index":5675,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["list[list[int",{"_index":5803,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["list_1",{"_index":2194,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_2",{"_index":2195,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_2[2].append(6",{"_index":2198,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_2[3",{"_index":2197,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_3",{"_index":2200,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_3[2].append(7",{"_index":2203,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["list_3[3",{"_index":2202,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["listel",{"_index":683,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["listelement.add(cameraopt",{"_index":694,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["listelement.innerhtml",{"_index":685,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["listen",{"_index":570,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["listen(8080",{"_index":1390,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["listnod",{"_index":5713,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["listnode(0",{"_index":5696,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["live",{"_index":11400,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["ljust",{"_index":3473,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["ll",{"_index":11666,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["lname",{"_index":1963,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["load",{"_index":5132,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["loadbalanc",{"_index":7262,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["loader",{"_index":11095,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["local",{"_index":571,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/posts/docker-commands/":{}},"description":{}}],["localconnect",{"_index":1554,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localconnection.createdatachannel('senddatachannel",{"_index":1563,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localconnection.createoffer().then",{"_index":1575,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localconnection.onicecandid",{"_index":1564,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["localhost",{"_index":1428,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["localhost:8080",{"_index":1421,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["localhost:8080/foo",{"_index":1442,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["localpeerconnecionpc1.localdescript",{"_index":1186,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnect",{"_index":1093,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.addeventlisten",{"_index":1097,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.addeventlistener('icecandid",{"_index":1095,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.addstream(localstream",{"_index":1118,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.createoffer(offeropt",{"_index":1146,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.setlocaldescription(descript",{"_index":1156,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection.setremotedescription(descript",{"_index":1169,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localpeerconnection:\\n${description.sdp",{"_index":1155,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["localstream",{"_index":345,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localstream.gettracks().foreach(track",{"_index":349,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["localstream.getvideotrack",{"_index":1250,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localstream.getvideotracks()[0].stop",{"_index":1251,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localtim",{"_index":2887,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["localvideo",{"_index":1215,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["localvideo.srcobject",{"_index":1115,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["locat",{"_index":6625,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["loch",{"_index":10831,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["loch=\"",{"_index":10829,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lock",{"_index":2607,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{}},"description":{}}],["log",{"_index":1151,"title":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day79":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["log('client",{"_index":1400,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log('got",{"_index":1318,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log('receiv",{"_index":1403,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log('room",{"_index":1409,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["log.printf(\"%+v\\n",{"_index":9997,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log.printf(\"user'",{"_index":9982,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log.println(\"error",{"_index":9992,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log.println(err",{"_index":9993,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["log10",{"_index":2060,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["log_level",{"_index":7090,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logdna",{"_index":7179,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["logger",{"_index":2799,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.addhandler(handl",{"_index":2813,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.critical('crit",{"_index":2818,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.debug('debug",{"_index":2814,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.error('error",{"_index":2817,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.info('info",{"_index":2815,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.setlevel(logging.info",{"_index":2805,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logger.warning('warn",{"_index":2816,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.exclud",{"_index":7114,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logging.filehandler('example.log",{"_index":2806,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.formatter('%(asctime)",{"_index":2808,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.getlogger('exampl",{"_index":2804,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["logging.pars",{"_index":7113,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logic",{"_index":9274,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["login",{"_index":2729,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["login_password",{"_index":7687,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["login_unix_socket",{"_index":7683,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["login_us",{"_index":7685,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["logspout",{"_index":8494,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["logstash",{"_index":7017,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["logstash_format",{"_index":7116,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["logstash_prefix",{"_index":7118,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["long_period",{"_index":10660,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["longer",{"_index":6224,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["longer[len(short",{"_index":6226,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["longest",{"_index":5717,"title":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{},"description":{}}],["longestones(a",{"_index":6042,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["longestzigzag(root",{"_index":6011,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["longrang",{"_index":797,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["look",{"_index":9945,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["look_for_keys=fals",{"_index":9448,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["loop",{"_index":2255,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day34":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["loop.run_until_complete(main",{"_index":2948,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["loop.run_until_complete(my_coroutin",{"_index":2936,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["lorem",{"_index":11157,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["lot",{"_index":5017,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["lower",{"_index":3429,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["lowercas",{"_index":2085,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["lowercase_decor",{"_index":2097,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["lowercase_decorator(funct",{"_index":2086,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["lowest",{"_index":5864,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"content":{},"description":{}}],["lowestcommonancestor(root",{"_index":5874,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["lowestcommonancestor(root.left",{"_index":5878,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["lowestcommonancestor(root.right",{"_index":5879,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["lqvkgdt16bf1q6cx",{"_index":5018,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["lr",{"_index":9210,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/diagram-support":{}},"description":{}}],["lru",{"_index":3282,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["lru_cach",{"_index":3280,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["lru_cache(maxsize=128",{"_index":3285,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["ls",{"_index":2710,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["lsb_releas",{"_index":9784,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["lsblk",{"_index":9823,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["lstrip",{"_index":3474,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["lt",{"_index":3446,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["lucen",{"_index":6880,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["luck",{"_index":9937,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["luna",{"_index":3871,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["lunr",{"_index":11920,"title":{"/apps/npm/hugo-lunr-ml/":{}},"content":{"/apps/_index":{}},"description":{}}],["lunr.j",{"_index":11925,"title":{},"content":{},"description":{"/apps/npm/hugo-lunr-ml/":{}}}],["lvl",{"_index":6661,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["lxc",{"_index":8487,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["m",{"_index":2856,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["m**ysql",{"_index":9731,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["m.sqrt(16",{"_index":10866,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["m1",{"_index":8658,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["m65",{"_index":119,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m69",{"_index":129,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m71",{"_index":106,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m72",{"_index":150,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m93",{"_index":168,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["m96",{"_index":170,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["mac",{"_index":1249,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{}}],["macbook",{"_index":11418,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["macd",{"_index":10672,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["machin",{"_index":5411,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day34":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["machine[:box",{"_index":7787,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["machine[:hostnam",{"_index":7785,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["machine[:ip",{"_index":7795,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["machine[:ssh_port",{"_index":7798,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["maco",{"_index":3655,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/apps/brewmate/":{}},"description":{}}],["made",{"_index":6406,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["maecena",{"_index":10502,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mail",{"_index":2718,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["main",{"_index":1769,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["main.ex",{"_index":10331,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["main.go",{"_index":9940,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["main.j",{"_index":1050,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["main.pi",{"_index":3682,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["main.t",{"_index":11454,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["main.tf",{"_index":8070,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["main.yml",{"_index":7663,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["mainhandl",{"_index":3003,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["mainhandler(tornado.web.requesthandl",{"_index":2991,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["make",{"_index":1557,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/posts/diagram-support":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["make_app",{"_index":3001,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["make_x_and_i",{"_index":11052,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["make_x_and_y(n",{"_index":11050,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["make_x_and_y(n=1000",{"_index":11053,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["makecal",{"_index":493,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["makefil",{"_index":10022,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["maketran",{"_index":3475,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["malesuada",{"_index":10566,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["man",{"_index":6364,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["manag",{"_index":5122,"title":{"/tracks/90daysofdevops/day79":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{},"/apps/brewmate/":{}}}],["manage.pi",{"_index":3110,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["management(cloud0",{"_index":9378,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["mani",{"_index":9928,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day19/":{},"/posts/math-support":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["manifest",{"_index":6977,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["manifests/setup",{"_index":6976,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["manual",{"_index":3973,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["map",{"_index":2165,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["map(text",{"_index":11339,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["march",{"_index":10680,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["margin",{"_index":10633,"title":{},"content":{"/posts/emoji-support":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["margo",{"_index":11552,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["mariadb",{"_index":9241,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["mark",{"_index":11212,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["markdown",{"_index":6432,"title":{"/posts/markdown-syntax/":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day41":{},"/posts/diagram-support":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/markdown-syntax/":{}}}],["marketplac",{"_index":8275,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["markup",{"_index":8557,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["markup.goldmark.renderer.unsaf",{"_index":10641,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["mask",{"_index":9604,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["massa",{"_index":10590,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["master",{"_index":7115,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.sh",{"_index":8338,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.hostnam",{"_index":8317,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.network",{"_index":8318,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.provid",{"_index":8322,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["master.vm.provis",{"_index":8329,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["match",{"_index":7110,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["match/cas",{"_index":3790,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["match_label",{"_index":7962,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["matchlabel",{"_index":8229,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["materi",{"_index":5213,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["math",{"_index":2058,"title":{"/posts/math-support":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/posts/python-snippets/":{}},"description":{}}],["math.exp",{"_index":2065,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["math.pi",{"_index":3686,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/posts/python-snippets/":{}},"description":{}}],["math.sqrt(16",{"_index":10865,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mathemat",{"_index":10481,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["matplotlib",{"_index":3194,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["matplotlib.pyplot",{"_index":11040,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["matrix",{"_index":5814,"title":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/posts/math-support":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["matrix.nod",{"_index":11132,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["matti",{"_index":10531,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mauri",{"_index":10524,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["maven",{"_index":7387,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{}},"description":{}}],["maven:3.8.1",{"_index":7388,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["max",{"_index":814,"title":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/argparse":{},"/posts/emoji-support":{}},"description":{}}],["max(db.key",{"_index":3090,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["max(dp",{"_index":5731,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["max(dp[i",{"_index":5725,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["max(height[:i",{"_index":6059,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max(height[i",{"_index":6061,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max(left_depth",{"_index":6240,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["max(max_altitud",{"_index":6205,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max(max_area",{"_index":6034,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max(max_length",{"_index":6046,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max(max_twin_sum",{"_index":5929,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["max(max_zigzag",{"_index":6008,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["max(set(list",{"_index":10694,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["max_altitud",{"_index":6202,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max_area",{"_index":6030,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max_left",{"_index":6058,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max_length",{"_index":6040,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max_right",{"_index":6060,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["max_twin_sum",{"_index":5918,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["max_valu",{"_index":3604,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["max_zigzag",{"_index":6006,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["maxarea(height",{"_index":6028,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["maxdepth(root",{"_index":6235,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["maxdepth(root.left",{"_index":6237,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["maxdepth(root.right",{"_index":6239,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["maxim",{"_index":11428,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["maximu",{"_index":10503,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["maximum",{"_index":5913,"title":{"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["maxoperations(num",{"_index":5979,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["maxtwinsum(self",{"_index":5920,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["mbstring",{"_index":9746,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["mc",{"_index":8191,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["mcdonald'",{"_index":4427,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["md",{"_index":8618,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["mdor",{"_index":9203,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["mdprompt",{"_index":9846,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["meanwhil",{"_index":10461,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["measur",{"_index":4656,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["media",{"_index":281,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day16":{},"/posts/emoji-support":{}},"description":{}}],["media.gstreamer.en",{"_index":322,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["media.navigator.permission.dis",{"_index":320,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["media.navigator.streams.fak",{"_index":318,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["mediadevic",{"_index":599,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["mediadevicesinfo",{"_index":644,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["median",{"_index":6064,"title":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{},"description":{}}],["mediarecord",{"_index":1029,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["mediastream",{"_index":371,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["mediastream.gettrack",{"_index":850,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mediastream.id",{"_index":373,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["mediastreamconstraint",{"_index":609,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["mediastreamtrack",{"_index":384,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mediastreamtrack.getset",{"_index":820,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mediatrackconstraint",{"_index":788,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["mediatrackset",{"_index":822,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["medium",{"_index":6343,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day81":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["medium.com",{"_index":11843,"title":{},"content":{"/p/publications":{}},"description":{}}],["mediumzoom('#zoom",{"_index":11307,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["meet",{"_index":5410,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mehyedes/nodej",{"_index":7457,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["mem_buf_limit",{"_index":7102,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["memori",{"_index":7803,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/posts/markdown-syntax/":{}},"description":{}}],["memory=6g",{"_index":7581,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["memorydb",{"_index":5105,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["mendeley",{"_index":3938,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["mentor",{"_index":8860,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["meow",{"_index":3874,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["merg",{"_index":6070,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["merge_log",{"_index":7111,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["mergealternately(word1",{"_index":6182,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["merged.sort",{"_index":6071,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["merged[middl",{"_index":6073,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["mermaid",{"_index":10635,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["messag",{"_index":452,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["message)",{"_index":2811,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["message.answ",{"_index":497,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["message.cook_sec",{"_index":5281,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message.icecandid",{"_index":577,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["message.off",{"_index":510,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["message.pr",{"_index":5283,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message.req_sec",{"_index":5282,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message=msg",{"_index":10875,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["messagebox",{"_index":870,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["messagebox.dis",{"_index":877,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["messagebox.focu",{"_index":878,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["messagebox.textcont",{"_index":890,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["message}\".format(name=self.nam",{"_index":10874,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["meta.helm.sh/releas",{"_index":7080,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["metadata",{"_index":6595,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["metal",{"_index":8398,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["metallb",{"_index":8238,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["metavar='n",{"_index":2958,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["method",{"_index":2434,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/posts/interactivebrokers-deposit/":{},"/apps/_index":{}},"description":{}}],["method(self",{"_index":2499,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["methods=['delet",{"_index":3056,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["methods=['get",{"_index":3032,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["methods=['post",{"_index":3045,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["methods=['put",{"_index":3052,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["metric",{"_index":6990,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["metricbeat",{"_index":10367,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["metricfir",{"_index":7145,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["metu",{"_index":10529,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mgmt",{"_index":7893,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["mi",{"_index":10549,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mib",{"_index":8048,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["michael",{"_index":10239,"title":{"/authors/michael-cade/_index":{}},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["michaelcade/dotfil",{"_index":9671,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["michaelcade1",{"_index":10050,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["michaelcade1/helloworld:latest",{"_index":7415,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["michaelcade1\\90daysofdevop",{"_index":7346,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["microservic",{"_index":7008,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["microsoft",{"_index":3700,"title":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}}}],["microsoft.azure.networkwatch",{"_index":9082,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.compute/virtualmachin",{"_index":9021,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/networkinterfac",{"_index":9060,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/networksecuritygroup",{"_index":9128,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/publicipaddress",{"_index":9126,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoft.network/virtualnetwork",{"_index":9049,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["microsoftwindowsserv",{"_index":9038,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["middl",{"_index":2030,"title":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/posts/emoji-support":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["midjourney",{"_index":11683,"title":{"/photos/midjourney/":{}},"content":{},"description":{"/photos/midjourney/":{}}}],["midnight",{"_index":10681,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["migrat",{"_index":5402,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["milk",{"_index":11207,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["min",{"_index":730,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["min(height[left",{"_index":6032,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["min(max_left",{"_index":6062,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["min1",{"_index":5665,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["min2",{"_index":5666,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["min_height",{"_index":6031,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["minheight",{"_index":724,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["minikub",{"_index":6380,"title":{"/tracks/90daysofdevops/day51":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["minim",{"_index":11429,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["minimum",{"_index":5052,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day58":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["minimumoperations(num",{"_index":5760,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["mint",{"_index":11179,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["minut",{"_index":2839,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["minute=30",{"_index":2851,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["minwidth",{"_index":723,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["miss",{"_index":8878,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["mkdir",{"_index":8843,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["mkf",{"_index":9829,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ml",{"_index":11921,"title":{"/apps/npm/hugo-lunr-ml/":{}},"content":{"/apps/_index":{}},"description":{}}],["mla",{"_index":3991,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["mlocat",{"_index":9856,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["mm",{"_index":10676,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mnt",{"_index":9793,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["mobil",{"_index":6414,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["mock",{"_index":3219,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock.patch",{"_index":3236,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock.patch('main.get_external_data",{"_index":3228,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock_get_external_data",{"_index":3230,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mock_get_external_data.return_valu",{"_index":3231,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["mod",{"_index":3447,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["mod04_90daysofdevop",{"_index":8988,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["mod07_90daysofdevop",{"_index":9100,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["mode",{"_index":9422,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/posts/docker-commands/":{}},"description":{}}],["model",{"_index":3120,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["models.pi",{"_index":3144,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["modern",{"_index":3992,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["modifi",{"_index":1814,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["modifyvm",{"_index":7802,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["modul",{"_index":1874,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["module.export",{"_index":11101,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["module4_90daysofdevops.ps1",{"_index":9067,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["moduleresolut",{"_index":11471,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["modules/librari",{"_index":2268,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["molecul",{"_index":7602,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["molli",{"_index":10527,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["mongo",{"_index":8165,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["mongodb",{"_index":6365,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["monitor",{"_index":842,"title":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/apps/_index":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["month",{"_index":2836,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/_index":{},"/apps/brewmate/":{}},"description":{}}],["mood",{"_index":8858,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["more",{"_index":3500,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["mosh",{"_index":8499,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["most_freq(list",{"_index":10693,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["motion",{"_index":837,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["mount",{"_index":6813,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["mountpath",{"_index":7395,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["move",{"_index":6158,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/90daysofdevops/day38":{},"/posts/trading-indicators/sma":{}},"description":{}}],["movezeroes(num",{"_index":6163,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["movi",{"_index":10911,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["movie=fals",{"_index":10912,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["movie=tru",{"_index":10959,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mpq8cbjjwrj88z4xmf7blqxcfmwdsmq92bmwjpphdkklfckk5hfwc2",{"_index":8289,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["mr",{"_index":2356,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["mro",{"_index":10927,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["msdn",{"_index":9334,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["msg",{"_index":7755,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/python-snippets/":{}},"description":{}}],["msid",{"_index":62,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["msp",{"_index":8402,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["mssql",{"_index":9180,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["mul",{"_index":2173,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["mulfiv",{"_index":2178,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["multibranch",{"_index":7360,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["multicloud",{"_index":9152,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["multiline.pars",{"_index":7100,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["multilingu",{"_index":11922,"title":{},"content":{"/apps/_index":{}},"description":{}}],["multinod",{"_index":10255,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["multipl",{"_index":10256,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["multipli",{"_index":3331,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiplier(n",{"_index":3330,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply(a",{"_index":2335,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["multiply_bi",{"_index":3338,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply_by(2",{"_index":3333,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply_by(3",{"_index":3335,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["multiply_by(num",{"_index":3329,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["mutabl",{"_index":7888,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["mute",{"_index":298,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["mv",{"_index":5398,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["my.cnf",{"_index":7676,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["my.cnf.j2",{"_index":7694,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["my_attribut",{"_index":3818,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_class_method(cl",{"_index":3255,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_context",{"_index":3275,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_coroutin",{"_index":2933,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["my_dict",{"_index":3366,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["my_dict.get('nam",{"_index":3776,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict.item",{"_index":3786,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict.key",{"_index":3784,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict.valu",{"_index":3785,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict['nam",{"_index":3775,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict['occup",{"_index":3778,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dict_2",{"_index":3771,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["my_dir",{"_index":11664,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["my_first_encryption_key",{"_index":10409,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["my_fodl",{"_index":8844,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["my_fold",{"_index":8845,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["my_func",{"_index":1760,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/scope":{}},"description":{}}],["my_func(1",{"_index":1755,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_func(a",{"_index":1752,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_list",{"_index":1809,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{}},"description":{}}],["my_list2",{"_index":3635,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["my_list[0",{"_index":1817,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_method",{"_index":3820,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_method(self",{"_index":3819,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_nested_list",{"_index":3634,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["my_numb",{"_index":3408,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_obj",{"_index":3266,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_object",{"_index":2565,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["my_other_method",{"_index":3826,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_other_method(self",{"_index":3824,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["my_program.pi",{"_index":2666,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["my_react_app",{"_index":11288,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["my_second_encryption_key",{"_index":10410,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["my_set",{"_index":3369,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["my_set.add(4",{"_index":3565,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.difference(other_set",{"_index":3575,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.intersection(other_set",{"_index":3572,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.remove(2",{"_index":3566,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.symmetric_difference(other_set",{"_index":3578,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_set.union(other_set",{"_index":3569,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["my_static_method(arg1",{"_index":3259,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["my_str",{"_index":3410,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0",{"_index":3529,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:12",{"_index":3525,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:13",{"_index":3527,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:14",{"_index":3528,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[0:4",{"_index":3512,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[2",{"_index":3530,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_string[:1",{"_index":3524,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["my_tag",{"_index":11634,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["my_tupl",{"_index":1808,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{}},"description":{}}],["my_tuple[0",{"_index":1813,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["my_valu",{"_index":2776,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["myclass",{"_index":2490,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["myclass(\"john",{"_index":2566,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myclass(10",{"_index":3267,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["myclass.my_class_method('a",{"_index":3257,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["myclass.my_static_method('a",{"_index":3261,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["mycountbutton",{"_index":11283,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["mycustomfunc",{"_index":5257,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["myemptyfunc",{"_index":1892,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myfunc",{"_index":3728,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["myfunc(*arg",{"_index":3724,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["myfunc(a",{"_index":3726,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["myimportantdata",{"_index":6559,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mykey",{"_index":5392,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mykey.pem",{"_index":5399,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mymod",{"_index":1878,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["mymod.myobj",{"_index":1877,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myobj",{"_index":1879,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["myscript.pi",{"_index":3309,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["mysite.j2",{"_index":7633,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql",{"_index":5404,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["mysql.us",{"_index":7700,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql:5.7",{"_index":8006,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql=mi",{"_index":6646,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_databas",{"_index":8566,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_database=wordpress",{"_index":8011,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_db",{"_index":7692,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql_exec",{"_index":6563,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_exec=\"${mysql_exec",{"_index":6553,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_exec=\"mysql",{"_index":6545,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_host",{"_index":6546,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_host=${mysql_host",{"_index":6554,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_host=mysql",{"_index":6543,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_password",{"_index":8568,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_password=wordpress",{"_index":8009,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_root_password",{"_index":8564,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_root_password=$(kubectl",{"_index":6541,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_root_password=${mysql_root_password",{"_index":6549,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysql_root_password=wordpress",{"_index":8008,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_us",{"_index":8567,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["mysql_user=wordpress",{"_index":8010,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["mysql_user_nam",{"_index":7686,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysql_user_password",{"_index":7688,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysqlclouddump",{"_index":6597,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysqldb",{"_index":7670,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["mysqldump",{"_index":6619,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mysqlsecret",{"_index":6602,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["mytestapp",{"_index":7963,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["mywrapper(5",{"_index":2179,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["mywrapper(n",{"_index":2177,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["n",{"_index":901,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day11":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["n+1",{"_index":6329,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["n.b",{"_index":10619,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["na",{"_index":6666,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["nagio",{"_index":6960,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{}},"description":{}}],["nam",{"_index":10565,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["name",{"_index":1341,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{}}],["name)",{"_index":2809,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["name1",{"_index":2119,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["name2",{"_index":2118,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["name:tag",{"_index":11633,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["name=apache2",{"_index":7723,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["name=httpd",{"_index":7831,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["name=mysql",{"_index":7672,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["nameerror",{"_index":1761,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["names_decor",{"_index":2116,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["names_decorator(funct",{"_index":2108,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["namespac",{"_index":6452,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["namespace.nam",{"_index":6636,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["namespace.yml",{"_index":7429,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["namespace=${app_nam",{"_index":6540,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["namespace=awx",{"_index":7589,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["namespace=kasten",{"_index":6493,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["name}!\\n",{"_index":2687,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["nana",{"_index":8213,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["nano",{"_index":9691,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["nano/vim",{"_index":9755,"title":{"/tracks/90daysofdevops/day17":{}},"content":{},"description":{}}],["narg",{"_index":2960,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["nasa",{"_index":10149,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["nat",{"_index":211,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["natdnshostresolver1",{"_index":8328,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["nation",{"_index":4522,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["nativ",{"_index":6913,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["navig",{"_index":8868,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["navigator.mediadevic",{"_index":596,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["navigator.mediadevices.addeventlistener(‘devicechang",{"_index":704,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["navigator.mediadevices.enumeratedevic",{"_index":658,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["navigator.mediadevices.getdisplaymedia",{"_index":913,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["navigator.mediadevices.getusermedia",{"_index":912,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["navigator.mediadevices.getusermedia(constraint",{"_index":614,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["navigator.mediadevices.getusermedia(mediastreamconstraint",{"_index":1111,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["nc",{"_index":10262,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["ne",{"_index":3448,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["near",{"_index":806,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["nec",{"_index":10534,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["necessari",{"_index":9478,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["need",{"_index":5033,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["needl",{"_index":5431,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["neg",{"_index":3796,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["neo4j",{"_index":6873,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["neofetch",{"_index":7710,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["nequ",{"_index":10580,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ness",{"_index":10832,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nest",{"_index":2151,"title":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["nestediter",{"_index":5643,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["nestedlist",{"_index":5644,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["net",{"_index":7940,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["net=host",{"_index":8284,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["net_connect",{"_index":9410,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["net_connect.disconnect",{"_index":9414,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["net_connect.en",{"_index":9426,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["net_connect.send_config_set(core_sw_config",{"_index":9427,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["netaddr",{"_index":9475,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["netapp",{"_index":9235,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["netdevop",{"_index":9652,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["netflix",{"_index":10117,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["netmiko",{"_index":9399,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["network",{"_index":5129,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["network.http.us",{"_index":328,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["network_adapt",{"_index":8049,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["network_mod",{"_index":8007,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["networkapivers",{"_index":9016,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkchuck",{"_index":7603,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["networkinterfac",{"_index":9047,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkprofil",{"_index":9046,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networksecuritygroup",{"_index":9124,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkwatcherag",{"_index":9081,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["networkwatcheragentwindow",{"_index":9083,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["netyc",{"_index":9584,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["never",{"_index":838,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["new",{"_index":257,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["new(nodestatic.serv",{"_index":1385,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["new_db_nam",{"_index":2914,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["new_dict",{"_index":2130,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["new_file.txt",{"_index":8895,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["new_image_name:v1",{"_index":11652,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["new_method(self",{"_index":2504,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["new_nam",{"_index":11358,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["new_sourc",{"_index":11350,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["newcameralist",{"_index":705,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["newdisk",{"_index":9833,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["newer",{"_index":11942,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["newfile.txt",{"_index":8810,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["newfilenam",{"_index":11369,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["newicecandid",{"_index":1125,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["newurl",{"_index":11380,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["newus",{"_index":9870,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["next",{"_index":2096,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day26":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["next(our_iter",{"_index":10819,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["next(self",{"_index":2307,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["next.config.j",{"_index":11094,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["next.j",{"_index":11065,"title":{"/posts/nextjs-to-github-pages-ations/":{}},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["next/imag",{"_index":11097,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["next=non",{"_index":5714,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["nextj",{"_index":11107,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["nf",{"_index":6783,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["ng",{"_index":9375,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["nginx",{"_index":7060,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["nginx:latest",{"_index":7993,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["nibh",{"_index":10548,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nic",{"_index":9008,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nic0",{"_index":9103,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["niccopi",{"_index":9059,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nicnam",{"_index":9102,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nigel",{"_index":10036,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["nil",{"_index":9981,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["nisi",{"_index":10507,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nisl",{"_index":10510,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nn",{"_index":1496,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["nobi",{"_index":11170,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nocturn",{"_index":11221,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["node",{"_index":996,"title":{"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day07":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["node(curr.v",{"_index":5996,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node(pod_label",{"_index":7402,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["node(s[idx",{"_index":6324,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["node.j",{"_index":994,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["node.left",{"_index":6009,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["node.next",{"_index":5861,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["node.next.next",{"_index":5862,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["node.next.v",{"_index":5860,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["node.right",{"_index":6010,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["node.v",{"_index":5578,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["node.vm.box",{"_index":7786,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["node.vm.hostnam",{"_index":7788,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["node.vm.network",{"_index":7789,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["node.vm.provid",{"_index":7799,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["node.vm.provis",{"_index":8334,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node0#{i",{"_index":8333,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node01",{"_index":8306,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node02",{"_index":8307,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["node@v2",{"_index":7286,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["node@v3",{"_index":11089,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["node_map",{"_index":5991,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node_map[curr",{"_index":5995,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node_map[curr.next",{"_index":5998,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node_map[curr.random",{"_index":6001,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node_map[curr].next",{"_index":5997,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node_map[curr].random",{"_index":6000,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node_map[head",{"_index":6002,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node_port",{"_index":7967,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["nodeintegr",{"_index":11480,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nodej",{"_index":6368,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["nodeport",{"_index":7586,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["nodestat",{"_index":1379,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["noemit",{"_index":11474,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nofallthroughcasesinswitch",{"_index":11470,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nojekyl",{"_index":11133,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["nomad",{"_index":8413,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["non",{"_index":4639,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day19/":{},"/posts/featured-image":{}},"description":{}}],["noncommerci",{"_index":10266,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["none",{"_index":1827,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["nonetyp",{"_index":1832,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["nonloc",{"_index":1772,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["nopasswd",{"_index":11434,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["normal",{"_index":9760,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["nornir",{"_index":9581,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["nosql",{"_index":6834,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["nostion",{"_index":11182,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["note",{"_index":2452,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/docker-commands/":{}},"description":{}}],["notfounderror",{"_index":634,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["noth",{"_index":1893,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["notic",{"_index":9495,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["notif",{"_index":5087,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["notifi",{"_index":7679,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["notion",{"_index":11114,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["notocoloremoji",{"_index":10625,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["novel",{"_index":10213,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["novemb",{"_index":11191,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["now",{"_index":1410,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["now.strftime(\"%d",{"_index":2855,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["now.strftime(\"%d/%m/%i",{"_index":9430,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["nowrap",{"_index":10632,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["np",{"_index":11042,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["np.random.randn(1000",{"_index":11043,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["np.random.randn(n",{"_index":11051,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["npm",{"_index":992,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day75":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{}}],["ns",{"_index":6378,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["nsg",{"_index":9129,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["nsg0",{"_index":9108,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nsgname",{"_index":9107,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["nso",{"_index":9583,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["ntp",{"_index":7647,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["null",{"_index":1545,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["nulla",{"_index":10513,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nullam",{"_index":10517,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["num",{"_index":1782,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/python-snippets/":{}},"description":{}}],["num[i",{"_index":5764,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["num_worker_nodes=2",{"_index":8309,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["number",{"_index":1840,"title":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/posts/emoji-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/interactivebrokers-deposit/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["number_list",{"_index":2303,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["numclient",{"_index":1321,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["numcours",{"_index":5943,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["numer",{"_index":10077,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/posts/docker-commands/":{}},"description":{}}],["numpi",{"_index":3191,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["nums.sort",{"_index":5911,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["nums1",{"_index":6065,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["nums2",{"_index":6066,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["nums[0",{"_index":5747,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nums[har",{"_index":5751,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nums[i",{"_index":5721,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["nums[j",{"_index":5723,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["nums[nums[har",{"_index":5749,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nums[p1",{"_index":5976,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["nums[p2",{"_index":5977,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["nums[po",{"_index":6164,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["nums[tortois",{"_index":5748,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["nunc",{"_index":10550,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["nutanix",{"_index":8066,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["n×n",{"_index":5885,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["o",{"_index":2213,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["o(n",{"_index":5831,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["oauth",{"_index":8430,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["oauth1.newconfig(creds.consumerkey",{"_index":9965,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["oauth1.newtoken(creds.accesstoken",{"_index":9967,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["oauth2",{"_index":9280,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["obj",{"_index":2445,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj.display",{"_index":2447,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj.length",{"_index":11511,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj1",{"_index":2383,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.a_func",{"_index":2432,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.b_func",{"_index":2433,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.child_func",{"_index":2386,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.display_nam",{"_index":2409,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj1.par_func",{"_index":2385,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj2",{"_index":2431,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj2.a_func",{"_index":2435,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj2.c_func",{"_index":2436,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["obj[key",{"_index":11508,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object",{"_index":1561,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/vps-docker-subdomains-setup/project/projects/3/":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{},"/_home/blank":{}},"description":{}}],["object.assign",{"_index":11500,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.config",{"_index":6805,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["object.key",{"_index":11502,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.keys(clientsinroom.sockets).length",{"_index":1408,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["object.keys(clone).foreach",{"_index":11505,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.metadata.label",{"_index":6603,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["observ",{"_index":6950,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{}}],["observedzoom",{"_index":11321,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["observedzooms.foreach(zoom",{"_index":11323,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["obstacl",{"_index":4648,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["occur",{"_index":5436,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["occurr",{"_index":5429,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{}}}],["oci",{"_index":8471,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["odd",{"_index":5678,"title":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["odd.next",{"_index":5698,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["odd_head",{"_index":5688,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["odd_head.next",{"_index":5701,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oddevenlist(head",{"_index":5716,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oddevenlist(self",{"_index":5694,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oecd",{"_index":4531,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["offer",{"_index":501,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["offic",{"_index":8630,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["offici",{"_index":5172,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["oh",{"_index":9679,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["ohmyzsh",{"_index":9678,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["ok",{"_index":7383,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["old.\".format(self.nam",{"_index":3839,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["old_dict.item",{"_index":2133,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["old_fil",{"_index":8892,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["old_file.txt",{"_index":8891,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["old_sourc",{"_index":11348,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["on",{"_index":3795,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["on_click",{"_index":11064,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["on_focu",{"_index":11063,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["onc",{"_index":6481,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["onclick",{"_index":11286,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["oncreatesessiondescriptionerror",{"_index":1577,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["one_day",{"_index":2865,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["one_list",{"_index":3639,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["onedr",{"_index":9350,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["onelin",{"_index":8804,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["onicecandid",{"_index":1091,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["online/offlin",{"_index":10417,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["onsendchannelstatechang",{"_index":1567,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["opacity(0.5",{"_index":1259,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["open",{"_index":722,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["open(\"example.txt",{"_index":3736,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["open(\"test.txt",{"_index":3740,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["open('backup.txt",{"_index":9440,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["open('clcoding.pdf",{"_index":10702,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["open('config.ini",{"_index":2908,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["open('output.txt",{"_index":2691,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["open(filenam",{"_index":9463,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["opencamera(cameraid",{"_index":726,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["opencamera(cameras[0].deviceid",{"_index":738,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["openid",{"_index":9279,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["openmediadevic",{"_index":622,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["openmediadevices({'video':true,'audio':tru",{"_index":624,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["opensearch",{"_index":5080,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["openshift",{"_index":6483,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["openssh",{"_index":8939,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["openssl",{"_index":10415,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["oper",{"_index":4530,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day05/":{}}}],["opera",{"_index":1602,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["operator.git",{"_index":7584,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["operator/kub",{"_index":6973,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["opex",{"_index":9366,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["opredeljajushhi",{"_index":11780,"title":{},"content":{"/p/publications":{}},"description":{}}],["opscod",{"_index":7867,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["opt",{"_index":9795,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["optim",{"_index":5045,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["option",{"_index":254,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["optional[listnod",{"_index":5695,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["oracl",{"_index":7545,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["orang",{"_index":3649,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/posts/markdown-syntax/":{}},"description":{}}],["orchestr",{"_index":7886,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["orci",{"_index":10602,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["orcid",{"_index":3917,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["order",{"_index":1552,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/diagram-support":{}},"description":{}}],["order.append(prereq",{"_index":5952,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["org/mi",{"_index":11636,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["org:mi",{"_index":11638,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["origin",{"_index":5338,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["orm",{"_index":3153,"title":{},"content":{"/tracks/python-101/frameworks/_index":{}},"description":{}}],["ornar",{"_index":10505,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["os",{"_index":1377,"title":{"/tracks/python-101/standard_library/os":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/apps/_index":{}},"description":{}}],["os.chdir('/path/to/new/dir",{"_index":2779,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.chdir(path",{"_index":2757,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.environ",{"_index":2755,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.environ['hom",{"_index":2774,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.environ['my_var",{"_index":2775,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.getcwd",{"_index":2756,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.getenv",{"_index":2746,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.getenv(\"access_token",{"_index":9987,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.getenv(\"access_token_secret",{"_index":9988,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.getenv(\"consumer_key",{"_index":9989,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.getenv(\"consumer_secret",{"_index":9990,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["os.listdir",{"_index":2743,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.makedirs('/path/to/new/dir",{"_index":2787,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.makedirs(nam",{"_index":10691,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["os.makedirs(path",{"_index":2763,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.mkdir",{"_index":2744,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.networkinterfac",{"_index":1414,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["os.path.exists('/path/to/file.txt",{"_index":2784,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.exists(nam",{"_index":10690,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["os.path.exists(path",{"_index":2760,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.isdir('/path/to/dir",{"_index":2786,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.isdir(path",{"_index":2762,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.isfile(path",{"_index":2761,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.join('/path/to",{"_index":2781,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.join(path1",{"_index":2758,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.path.splitext",{"_index":11353,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.path.splitext(fil",{"_index":11355,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.putenv",{"_index":2747,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.remov",{"_index":2748,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.remove(\"changedfile.csv",{"_index":2319,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["os.remove(\"file.txt",{"_index":2771,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.remove(file_nam",{"_index":2318,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["os.renam",{"_index":2749,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(\"old_sourc",{"_index":11352,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(fil",{"_index":11360,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rmdir('/path/to/dir",{"_index":2788,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.rmdir(path",{"_index":2764,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.startfil",{"_index":2750,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.system",{"_index":2745,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.system(\"l",{"_index":2772,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.walk",{"_index":2751,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["os.walk(path",{"_index":2790,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["osdisk",{"_index":9042,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["osi",{"_index":9591,"title":{"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day22":{}}}],["osobennosti",{"_index":11747,"title":{},"content":{"/p/publications":{}},"description":{}}],["osprofil",{"_index":9027,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["other_li",{"_index":10747,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["other_set",{"_index":3567,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/posts/python-snippets/":{}},"description":{}}],["otherp",{"_index":1127,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["otherpeer.addicecandidate(newicecandid",{"_index":1129,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["otherwis",{"_index":11642,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["our_iter",{"_index":10816,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["our_iterable[1",{"_index":10817,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["out",{"_index":5058,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["out/.nojekyl",{"_index":11134,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["outdir",{"_index":11103,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["outer_func",{"_index":3326,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["outer_func(10",{"_index":3323,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["outer_func(x",{"_index":3319,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["output",{"_index":1811,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/posts/docker-commands/":{}},"description":{}}],["output.txt",{"_index":2696,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["outputartifact",{"_index":6596,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["overconstrainederror",{"_index":1238,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["overrid",{"_index":2494,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["overview",{"_index":5171,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["ovf",{"_index":9514,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["owner",{"_index":9301,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["p",{"_index":2251,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["p**hp",{"_index":9732,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["p.val",{"_index":5876,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["p/deploy",{"_index":11109,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["p/hello",{"_index":11106,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["p/learn",{"_index":11108,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["p1",{"_index":5965,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["p1.next",{"_index":5969,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["p2",{"_index":5966,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["p2.next",{"_index":5971,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["p2.next.next",{"_index":5972,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["p2p",{"_index":400,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["p4merg",{"_index":8799,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["pa55w.rd1234",{"_index":8999,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["paa",{"_index":8068,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["pac",{"_index":6363,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{}},"description":{}}],["pace",{"_index":8392,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["packag",{"_index":3175,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["package.json",{"_index":1277,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["package_nam",{"_index":3180,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["package_name==version_numb",{"_index":3181,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["packer",{"_index":8492,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["pacman",{"_index":6379,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["page",{"_index":8747,"title":{"/search/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/brewmate/":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["pages.pub",{"_index":11070,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pages@v3",{"_index":11084,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pair",{"_index":5883,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{},"description":{}}],["palindrom",{"_index":6090,"title":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{},"description":{}}],["panda",{"_index":3193,"title":{},"content":{"/tracks/python-101/external_packages/_index":{}},"description":{}}],["panel",{"_index":6989,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["par_func(self",{"_index":2376,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["paradigm",{"_index":6410,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["paragraph",{"_index":11330,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.innerhtml",{"_index":11335,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.textcont",{"_index":11336,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraphs.foreach(paragraph",{"_index":11332,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["parallel",{"_index":2149,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["param",{"_index":11333,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paramet",{"_index":5413,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('adminpassword",{"_index":9030,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('adminusernam",{"_index":9029,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('virtualnetworknam",{"_index":9009,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('vmcount",{"_index":9020,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters('vms",{"_index":9034,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["parameters.json",{"_index":8989,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["paramiko",{"_index":9428,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["paramiko.sshcli",{"_index":9445,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["parent",{"_index":2374,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent(object",{"_index":2439,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent.nam",{"_index":2442,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent1",{"_index":2413,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent1_func(self",{"_index":2414,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent2",{"_index":2417,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parent2_func(self",{"_index":2418,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["parentclass",{"_index":2375,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pars",{"_index":9948,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["parseint(sheet.getlastrow",{"_index":11532,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["parser",{"_index":2955,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["parser.add_argu",{"_index":2963,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["parser.add_argument('integ",{"_index":2957,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["parser.parse_arg",{"_index":2970,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["parsers.conf",{"_index":7092,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["parsers_fil",{"_index":7091,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["part",{"_index":5405,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["parti",{"_index":10366,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["partial",{"_index":87,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["partit",{"_index":3476,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["partner",{"_index":5209,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["partnership",{"_index":5192,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["pass",{"_index":1889,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["passwd",{"_index":9869,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["password",{"_index":2731,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["password=${mysql_root_password",{"_index":6547,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["password=${root_password",{"_index":6621,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["passwordauthent",{"_index":9723,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["paswd",{"_index":9435,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["patch",{"_index":6677,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["path",{"_index":5548,"title":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/homepage/experience":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["path(fil",{"_index":11363,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path.rename(new_nam",{"_index":11362,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path/to/package.whl",{"_index":3182,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["path2",{"_index":2759,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["pathlib",{"_index":11361,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["pathlib.path.walk",{"_index":2753,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["pathsum(root",{"_index":5586,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["pattern",{"_index":5202,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["payload",{"_index":3164,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["pbs.twimg.com",{"_index":11111,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pc1",{"_index":1074,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["pc2",{"_index":1075,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["pcconstraint",{"_index":1546,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["pdb",{"_index":3302,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pdb.set_trac",{"_index":3307,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["pdf",{"_index":1612,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/_index":{},"/posts/python-snippets/":{},"/apps/_index":{}},"description":{}}],["pdf]](/articles/2022",{"_index":11758,"title":{},"content":{"/p/publications":{}},"description":{}}],["pdf]](/articles/2023",{"_index":11746,"title":{},"content":{"/p/publications":{}},"description":{}}],["pdffileread",{"_index":10704,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pdfreader",{"_index":10705,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pdfreader.getpage(pages).extracttext",{"_index":10710,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["peaceiris/act",{"_index":11083,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["peer",{"_index":447,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["peerconnect",{"_index":41,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["peerconnection.addeventlistener('datachannel",{"_index":865,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["peerconnection.addeventlistener('track",{"_index":387,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["peerconnection.addeventlistener(‘icecandid",{"_index":572,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.addicecandidate(message.icecandid",{"_index":579,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.addtrack(track",{"_index":350,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["peerconnection.createansw",{"_index":514,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.createdatachannel",{"_index":862,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["peerconnection.createoff",{"_index":502,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setlocaldescription(answ",{"_index":515,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setlocaldescription(off",{"_index":503,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setremotedescription(new",{"_index":511,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["peerconnection.setremotedescription(remotedesc",{"_index":500,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["pellentesqu",{"_index":10596,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["peopl",{"_index":11014,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pep",{"_index":1723,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["perimet",{"_index":2553,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["perimeter(self",{"_index":2537,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["period",{"_index":10370,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["perl",{"_index":11415,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["permanent",{"_index":10146,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["permiss",{"_index":5261,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["permissiondeniederror",{"_index":633,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["persist",{"_index":10437,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{}}],["persistentvolum",{"_index":8381,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["persistentvolumeclaim",{"_index":8380,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["person",{"_index":3836,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["person(\"alic",{"_index":3841,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["person1",{"_index":3840,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["person1.introduc",{"_index":3842,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["perspiciati",{"_index":11171,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pexpect",{"_index":9540,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["pharetra",{"_index":10592,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["phase",{"_index":5743,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["phasellu",{"_index":10579,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["phases.dumptoobjectstore.output.s3path",{"_index":6600,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["phases.dumptoobjectstore.secrets.mysqlsecret.data",{"_index":6617,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["phases.restorefromblobstore.secrets.mysqlsecret.data",{"_index":6632,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["phoenix",{"_index":10212,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["photo",{"_index":956,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photo.getcontext('2d",{"_index":959,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photo.height",{"_index":963,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photo.width",{"_index":962,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontext",{"_index":958,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontext.drawimage(video",{"_index":961,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontext.getimagedata(0",{"_index":975,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontexth",{"_index":977,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["photocontextw",{"_index":976,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["php",{"_index":1717,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["physic",{"_index":8871,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["pi",{"_index":11020,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pi:.3f",{"_index":11024,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pickl",{"_index":2223,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pickle.dump",{"_index":2235,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pickle.load",{"_index":2241,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pictur",{"_index":6668,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["pid",{"_index":9798,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["pike",{"_index":11187,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ping",{"_index":6076,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["ping(self",{"_index":6085,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["ping(t",{"_index":6083,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["pinta",{"_index":8605,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["pip",{"_index":2987,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["pip0",{"_index":9106,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["pip3",{"_index":7698,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["pipefail",{"_index":6609,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["pipelin",{"_index":7265,"title":{"/tracks/90daysofdevops/day74":{}},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["pixel",{"_index":737,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["pk=book_id",{"_index":3135,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["pkg",{"_index":8257,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["place",{"_index":1214,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["placehold",{"_index":1595,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["plaintext",{"_index":5423,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["plan",{"_index":16,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day05/":{}}}],["plane",{"_index":8359,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["platform",{"_index":5335,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/_index":{},"/posts/emoji-support":{}},"description":{}}],["play",{"_index":7754,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["playback",{"_index":764,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["playbook",{"_index":7622,"title":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["playbook.yml",{"_index":7654,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["playbook1.yml",{"_index":7740,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["playbook2.yml",{"_index":7731,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["playbook3.yaml",{"_index":7705,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["playbook3.yml",{"_index":7741,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["playbook4.yml",{"_index":7712,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["playbook5.yml",{"_index":7623,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["playbook6.yml",{"_index":7650,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["playbook7.yml",{"_index":7696,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["player",{"_index":9517,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["playground",{"_index":8344,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["playlist",{"_index":8740,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["playsinlin",{"_index":753,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["playvideofromcamera",{"_index":746,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["pleas",{"_index":10378,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plot",{"_index":11039,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plow",{"_index":11405,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["plt",{"_index":11041,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plt.subplot",{"_index":11046,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["plu",{"_index":5046,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["plugin",{"_index":7454,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["plugins=(git",{"_index":9692,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["pluralsight",{"_index":10038,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["po",{"_index":5824,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pod",{"_index":6498,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["pod.yaml",{"_index":7362,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["pod_nam",{"_index":7205,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["pod_name=$(kubectl",{"_index":7202,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["podcast",{"_index":5225,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["podderzhka",{"_index":11759,"title":{},"content":{"/p/publications":{}},"description":{}}],["poddisruptionbudget",{"_index":8382,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["podman",{"_index":8353,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["podsecuritypolici",{"_index":8384,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["podspec",{"_index":8443,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["podtemplate(yaml",{"_index":7386,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["point",{"_index":1837,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["pointer",{"_index":5988,"title":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["pointer_",{"_index":6139,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["pointer_t",{"_index":6140,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["pokrytiya",{"_index":11764,"title":{},"content":{"/p/publications":{}},"description":{}}],["polici",{"_index":6469,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["politiki",{"_index":11749,"title":{},"content":{"/p/publications":{}},"description":{}}],["poll",{"_index":2711,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["pong",{"_index":7761,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["pop",{"_index":3563,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/posts/python-snippets/":{}},"description":{}}],["popen",{"_index":2700,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["popitem",{"_index":3782,"title":{},"content":{"/tracks/python-101/basis/dict":{}},"description":{}}],["popul",{"_index":10407,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["popular",{"_index":10138,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["port",{"_index":2727,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["port=22",{"_index":9438,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["port=6443",{"_index":6487,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["port=8080",{"_index":2920,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{}},"description":{}}],["portabl",{"_index":6413,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["portain",{"_index":8498,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["portal",{"_index":9311,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ports.conf",{"_index":7724,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["ports.conf.j2",{"_index":7816,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["porttitor",{"_index":10506,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["posit",{"_index":2542,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/posts/python-snippets/":{}},"description":{}}],["possibl",{"_index":809,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["post",{"_index":3009,"title":{"/posts/archive/":{}},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/archive/":{},"/tracks/90daysofdevops/day24":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/posts/archive/":{}},"description":{"/posts/featured-image":{}}}],["post(self",{"_index":2995,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["postgresql",{"_index":6901,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["postman",{"_index":9582,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["posuer",{"_index":10584,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["potenti",{"_index":10558,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["potrebnostei",{"_index":11766,"title":{},"content":{"/p/publications":{}},"description":{}}],["poulton",{"_index":10037,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["power",{"_index":9497,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["powershel",{"_index":5241,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["pow}'!\".format(pow=pow",{"_index":10920,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ppa:ansible/ans",{"_index":7830,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["ppa:git",{"_index":8942,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["ppp",{"_index":4368,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["pr",{"_index":6435,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["practic",{"_index":5060,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["praesent",{"_index":10589,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["predicat",{"_index":8171,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["predictpartyvictory(sen",{"_index":5505,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["pref",{"_index":309,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["prefix",{"_index":5833,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["prefix[i",{"_index":5835,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["prefix_sum",{"_index":5577,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["prefix_sum(k",{"_index":6316,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["prefix_sum(self",{"_index":6338,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["prefix_sums.get(current_sum",{"_index":5579,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["prefix_sums[current_sum",{"_index":5581,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["premium",{"_index":9218,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["prepar",{"_index":5056,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["prereq",{"_index":5945,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["prerequisit",{"_index":5933,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["prerequisites[i",{"_index":5934,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["presen",{"_index":8705,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["present",{"_index":5224,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["presentation/resourc",{"_index":8730,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["preset",{"_index":5285,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["press",{"_index":11218,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pretti",{"_index":10249,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["prettier",{"_index":8885,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["prev",{"_index":5963,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["prev.next",{"_index":5968,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["prev_str",{"_index":5612,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["prevent",{"_index":10401,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["preview",{"_index":7910,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["primari",{"_index":6896,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["primary.persistence.size=1gi,volumepermissions.enabled=tru",{"_index":6539,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["primary_key=tru",{"_index":3027,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["print",{"_index":2214,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["print(",{"_index":11025,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["print(\"'x",{"_index":3797,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["print(\"3",{"_index":3582,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/loops":{}},"description":{}}],["print(\"a",{"_index":2404,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"at",{"_index":3794,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["print(\"b",{"_index":2405,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"baseclass.method",{"_index":2500,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"both",{"_index":3793,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["print(\"c",{"_index":2406,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"congratul",{"_index":9469,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(\"coroutine1",{"_index":2942,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["print(\"coroutine2",{"_index":2945,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["print(\"date1",{"_index":10688,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"date2",{"_index":10685,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"derivedclass1.method",{"_index":2502,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"derivedclass2.new_method",{"_index":2505,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"derivedclass3.method",{"_index":2508,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"don",{"_index":2637,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print(\"fil",{"_index":2320,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"found",{"_index":3629,"title":{},"content":{"/tracks/python-101/basis/loops":{}},"description":{}}],["print(\"hello",{"_index":2358,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"hi",{"_index":2415,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"i",{"_index":2377,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"let'",{"_index":11018,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["print(\"meow",{"_index":3858,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"mi",{"_index":3837,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"priv",{"_index":2478,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"protect",{"_index":2476,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"publ",{"_index":2474,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(\"some_var",{"_index":10814,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"woof",{"_index":3853,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(\"x",{"_index":3791,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/posts/python-snippets/":{}},"description":{}}],["print(\"you",{"_index":3710,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["print(\"your",{"_index":9431,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(\"в",{"_index":3673,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["print(\"делен",{"_index":3758,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(\"значен",{"_index":3586,"title":{},"content":{"/tracks/python-101/basis/scope":{}},"description":{}}],["print(\"конец",{"_index":3762,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(\"мен",{"_index":3532,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(\"мне",{"_index":3538,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(\"неверн",{"_index":3766,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(\"нов",{"_index":11371,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["print(\"привет",{"_index":3668,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/posts/python-snippets/":{}},"description":{}}],["print(\"я",{"_index":10739,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('arg1",{"_index":3260,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('class",{"_index":3256,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('ent",{"_index":3276,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('exit",{"_index":3278,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('hello",{"_index":2694,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day25":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["print('insid",{"_index":3279,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print('pass",{"_index":10697,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('pleas",{"_index":2676,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["print('гав",{"_index":3680,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["print('достоин",{"_index":10939,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('мог",{"_index":10970,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('я",{"_index":10924,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(2",{"_index":3599,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["print(4",{"_index":3600,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["print(_dir",{"_index":2793,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(_fil",{"_index":2795,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(a",{"_index":3614,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(add(2",{"_index":3241,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["print(arg",{"_index":3725,"title":{},"content":{"/tracks/python-101/basis/functions":{},"/posts/python-snippets/":{}},"description":{}}],["print(args.accumulate(args.integ",{"_index":2971,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["print(arr",{"_index":2295,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(b.fli",{"_index":10951,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(b.say('привет",{"_index":10950,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(batman.mro",{"_index":10967,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(c",{"_index":1787,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(cat.color",{"_index":3872,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(cat.nam",{"_index":3870,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(ceil(3.7",{"_index":10863,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(chunk",{"_index":3745,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["print(collections.counter(x).most_common(1)0",{"_index":10692,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(cont",{"_index":3739,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["print(current_tim",{"_index":2853,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(date_object",{"_index":2864,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(difference_set",{"_index":3576,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(dog.bre",{"_index":3867,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(dog.nam",{"_index":3865,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(double(5",{"_index":3336,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["print(emp_1.emp_nam",{"_index":2355,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(even_numb",{"_index":3247,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["print(example.__private_vari",{"_index":2484,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(example._protected_vari",{"_index":2481,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(example.public_vari",{"_index":2479,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(f\"fil",{"_index":2766,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(f\"funct",{"_index":3293,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print(f\"your",{"_index":9470,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(f\"мен",{"_index":3545,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(f\"результат",{"_index":3760,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["print(fibonacci(30",{"_index":3287,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print(floor(3.7",{"_index":10864,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(formatted_d",{"_index":2857,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(formatted_gm_tim",{"_index":2900,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(formatted_tim",{"_index":2892,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(gen_to_list",{"_index":10980,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(gm_tim",{"_index":2897,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(human.grunt",{"_index":10896,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(i",{"_index":2026,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/loops":{},"/posts/python-snippets/":{}},"description":{}}],["print(i.grunt",{"_index":10898,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(intersection_set",{"_index":3573,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(issubclass(baseclass",{"_index":2578,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(issubclass(derivedclass",{"_index":2577,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(item",{"_index":2939,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["print(key",{"_index":2341,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["print(kwarg",{"_index":10834,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(lett",{"_index":2630,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print(lin",{"_index":3741,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["print(math.sqrt(16",{"_index":10860,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(max_valu",{"_index":3605,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["print(most_freq(test",{"_index":10696,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(mul(2",{"_index":2175,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(mulfive(2",{"_index":2180,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(multiply(1",{"_index":2337,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(my_dict",{"_index":3809,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["print(my_list",{"_index":3584,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(my_list[0",{"_index":1812,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{}},"description":{}}],["print(my_list[0:3",{"_index":3633,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["print(my_obj.x",{"_index":3268,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["print(my_object.my_attribut",{"_index":3822,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(my_object.nam",{"_index":2567,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(my_set",{"_index":3547,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["print(my_tuple[0",{"_index":1810,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(myclass.my_attribut",{"_index":3821,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(nam",{"_index":2683,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["print(net_connect.find_prompt",{"_index":9412,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(net_connect.send_command(command",{"_index":9413,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["print(next(it",{"_index":2315,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(now",{"_index":2845,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(numbers[1",{"_index":2010,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(obj1.a_nam",{"_index":2408,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(parent.nam",{"_index":2444,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.area",{"_index":2562,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.height",{"_index":2561,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.perimet",{"_index":2563,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(rect.width",{"_index":2560,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(response.json",{"_index":3171,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["print(response.status_cod",{"_index":3162,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["print(response.text",{"_index":3163,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["print(result",{"_index":3325,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["print(root",{"_index":2791,"title":{},"content":{"/tracks/python-101/standard_library/os":{}},"description":{}}],["print(say",{"_index":10990,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(say(say_please=tru",{"_index":10991,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(self.my_attribut",{"_index":3823,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["print(self.nam",{"_index":2455,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(squar",{"_index":3807,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["print(stdout.decod",{"_index":2709,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["print(string3",{"_index":3417,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string5",{"_index":3420,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string6[7",{"_index":3422,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string7[0:6",{"_index":3425,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["print(string_list",{"_index":2328,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(sup.ag",{"_index":10938,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.get_speci",{"_index":10930,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.s",{"_index":10931,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.sonar",{"_index":10969,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(superhero.mro",{"_index":10929,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(symmetric_difference_set",{"_index":3579,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(sys.argv",{"_index":2667,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["print(t",{"_index":3377,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t.count(\"appl",{"_index":3388,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t.index(\"banana",{"_index":3390,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[0",{"_index":3373,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[1",{"_index":3374,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[1:3",{"_index":3381,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(t[2",{"_index":3375,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["print(temp",{"_index":2076,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print(today",{"_index":2848,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(triple(5",{"_index":3337,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["print(type(a",{"_index":3611,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(type(b",{"_index":3612,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(type(c",{"_index":3613,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["print(union_set",{"_index":3570,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["print(x",{"_index":1753,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/posts/python-snippets/":{}},"description":{}}],["print(yesterday",{"_index":2868,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["print(z",{"_index":1754,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["print_lett",{"_index":2627,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print_numb",{"_index":2623,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["print_valu",{"_index":3733,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["print_values(**kwarg",{"_index":3729,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["print_values(name='john",{"_index":3730,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["printf",{"_index":10073,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["println",{"_index":10072,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["prioriti",{"_index":9132,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["priv",{"_index":7691,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["privat",{"_index":1945,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["private_network",{"_index":8319,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["privateipallocationmethod",{"_index":9066,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["privileg",{"_index":7681,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["pro",{"_index":7873,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["problem",{"_index":5234,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["proc",{"_index":9796,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["procedur",{"_index":7890,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["process",{"_index":2701,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["process.commun",{"_index":2708,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["process.env.baseurl",{"_index":11272,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["process.env.node_env",{"_index":11271,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["process.platform",{"_index":11488,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["process_data",{"_index":3225,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["prod",{"_index":11091,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["product",{"_index":5031,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["productexceptself(num",{"_index":5843,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["profession",{"_index":5207,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["profil",{"_index":6519,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["profile='mc",{"_index":8202,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["profile=mc",{"_index":8206,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["profiles.cr.kanister.io",{"_index":6639,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["program",{"_index":6346,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["progress",{"_index":5016,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["proin",{"_index":10559,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["project",{"_index":7385,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/_index":{}},"description":{}}],["project/blob/main/.github/workflows/main.yml",{"_index":11127,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/blob/main/next.config.j",{"_index":11117,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/executor:debug",{"_index":7392,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["project/new/main?filename=.github%2fworkflows%2fmain.yml&workflow_template=blank",{"_index":11081,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/settings/key",{"_index":11072,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project/settings/secrets/actions/new",{"_index":11076,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["project_nam",{"_index":3109,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["prom/prometheu",{"_index":7193,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["prometheu",{"_index":6957,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["prometheus.git",{"_index":6974,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["prompt(\"ent",{"_index":1340,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["promql",{"_index":7010,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["prop",{"_index":11096,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["properli",{"_index":10476,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["properti",{"_index":2525,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["property_name.delet",{"_index":2532,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["property_name.sett",{"_index":2531,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["propos",{"_index":1728,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["protect",{"_index":1938,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["protocol",{"_index":1141,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["provid",{"_index":681,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["provis",{"_index":7891,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["provision",{"_index":8021,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["provisionvmag",{"_index":9032,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["proxi",{"_index":7621,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["proxy,web",{"_index":7628,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["proxy_pass",{"_index":7640,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["prune",{"_index":11648,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ps",{"_index":7998,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/posts/docker-commands/":{}},"description":{}}],["pseudo",{"_index":11641,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["psp",{"_index":8383,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["pswd",{"_index":9437,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["psycholog",{"_index":3987,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["pub/sub",{"_index":6829,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["public",{"_index":2459,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["public/index.html",{"_index":11453,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["public_method(self",{"_index":2473,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["public_network",{"_index":7790,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["publicipaddress",{"_index":9122,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publicipaddressnam",{"_index":9105,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publicipallocationmethod",{"_index":9127,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publish",{"_index":9037,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["publish_dir",{"_index":11087,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["published_date=request.post.get('published_d",{"_index":3128,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["pull",{"_index":6633,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/posts/docker-commands/":{}},"description":{}}],["pulumi",{"_index":7936,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["pulvinar",{"_index":10581,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["puppet",{"_index":7878,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["puru",{"_index":10561,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["push",{"_index":6626,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["pushgateway",{"_index":7189,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["put",{"_index":3010,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["put(self",{"_index":2997,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["putti",{"_index":9397,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["pv",{"_index":8183,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pvc",{"_index":8186,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["pwd",{"_index":7409,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["py",{"_index":1918,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["py3",{"_index":11036,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pyc",{"_index":2272,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pycharm",{"_index":3310,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["pycodestyl",{"_index":2617,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pycon",{"_index":10994,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pydant",{"_index":3070,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["pyflak",{"_index":2616,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pylint",{"_index":2615,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["pymysql",{"_index":7673,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["pyodid",{"_index":11000,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pypdf2",{"_index":10700,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pypdf2.pdffilereader(path",{"_index":10706,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pypi",{"_index":2290,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["pyscript",{"_index":10992,"title":{"/posts/pyscript-python-embedded-in-html/":{}},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/posts/pyscript-python-embedded-in-html/":{}}}],["pyscript.net",{"_index":11015,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pyscript.write('mi",{"_index":11032,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pyscript.write('today",{"_index":11030,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["pytho",{"_index":3526,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["python",{"_index":1611,"title":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{}},"description":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}}}],["python.ex",{"_index":2672,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["python.org",{"_index":2977,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["python3",{"_index":3308,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["python_execut",{"_index":2671,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["python_flask_test_app",{"_index":10469,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["pythonpath",{"_index":2257,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{}},"description":{}}],["pytre",{"_index":11918,"title":{},"content":{"/apps/_index":{}},"description":{}}],["pyttsx3",{"_index":10701,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pyttsx3.init",{"_index":10708,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pезультат",{"_index":10813,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["q",{"_index":2252,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["q.val",{"_index":5877,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["qa",{"_index":10167,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["qcow2",{"_index":9489,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["qpnqv",{"_index":6650,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["quad",{"_index":10492,"title":{},"content":{"/posts/math-support":{}},"description":{}}],["quae",{"_index":11185,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["queri",{"_index":6245,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["query(self",{"_index":6289,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(0",{"_index":6268,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(1",{"_index":6270,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(4",{"_index":6272,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(l",{"_index":6265,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["question",{"_index":5015,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["queue",{"_index":5089,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["queue.append(cours",{"_index":5954,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["queue.popleft",{"_index":5951,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["qui",{"_index":10520,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["quick",{"_index":8265,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["quickstart",{"_index":8550,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["quidem",{"_index":11164,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["quiet",{"_index":11647,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["quizz",{"_index":11924,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/apps/_index":{}},"description":{}}],["quota",{"_index":8388,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["r",{"_index":1716,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["r'/item/(\\d",{"_index":3004,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["r1",{"_index":9402,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["radiant",{"_index":5472,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["radiant.append(i",{"_index":5507,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["radiant.append(r",{"_index":5513,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["radiant.popleft",{"_index":5511,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["rain",{"_index":6049,"title":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"content":{},"description":{}}],["rais",{"_index":2311,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["ram",{"_index":8426,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["ramp",{"_index":5179,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["rancher",{"_index":8262,"title":{"/tracks/90daysofdevops/day53":{}},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["rancher/ranch",{"_index":8269,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["random",{"_index":2585,"title":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["random.randint(1",{"_index":2594,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["random.shuffl",{"_index":5632,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["random.shuffle(shuffl",{"_index":5637,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["rang",{"_index":812,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["range(1",{"_index":5790,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["range(1,n",{"_index":11021,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["range(10",{"_index":2624,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["range(5",{"_index":3808,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["range(i",{"_index":5730,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["range(len(a",{"_index":6043,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["range(len(num",{"_index":5729,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["range(len(v",{"_index":5924,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["range(n",{"_index":5763,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["range(numcours",{"_index":5949,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["range(pdfreader.numpag",{"_index":10709,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["range(self.n",{"_index":6277,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["range(start",{"_index":5841,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["range_sum(self",{"_index":6333,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["raspberrypi",{"_index":8246,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["raw_input",{"_index":10741,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ray",{"_index":5121,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["rb",{"_index":10703,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["rbac",{"_index":9090,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["rc",{"_index":8386,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["rd",{"_index":5107,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["rdd",{"_index":5488,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["rdp",{"_index":9131,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["re",{"_index":1388,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["react",{"_index":11242,"title":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["react.createel",{"_index":11282,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["react.createelement(app",{"_index":11261,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["react.usestate(100",{"_index":11285,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["reactdom",{"_index":11255,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["reactdom.rend",{"_index":11260,"title":{},"content":{"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["reactdom.render(react.createelement(mycountbutton",{"_index":11290,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["read",{"_index":2678,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["read_from_tail",{"_index":7109,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["read_ptr",{"_index":5538,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["readabl",{"_index":10310,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["reader",{"_index":9303,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["readi",{"_index":11927,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["readm",{"_index":8887,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["readme.md",{"_index":8759,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["readme.mdf",{"_index":8702,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["readme.mdfil",{"_index":8704,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["readme.mdin",{"_index":8785,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["real",{"_index":1401,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["realtim",{"_index":985,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["reason",{"_index":10436,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["reassign",{"_index":11334,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rebas",{"_index":8826,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["reboot",{"_index":9806,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["receiv",{"_index":455,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["receivechannelcallback",{"_index":1574,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["recent",{"_index":1757,"title":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/apps/_index":{}},"description":{}}],["recentcount",{"_index":6075,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["recommend",{"_index":10402,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["record",{"_index":5269,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["recoveri",{"_index":6375,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["rect",{"_index":2558,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["rectangl",{"_index":2533,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["rectangle(3",{"_index":2559,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["red",{"_index":7571,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["redhat",{"_index":7826,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["redi",{"_index":5106,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["redirect",{"_index":11384,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["redirect('https://google.com",{"_index":11387,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["redshift",{"_index":5424,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["reduc",{"_index":3244,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["reduce_ex",{"_index":3449,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["redund",{"_index":9206,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["refactor",{"_index":5040,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["refer",{"_index":5195,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/emoji-support":{}},"description":{}}],["referenc",{"_index":10375,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["reference/next.config.js/exportpathmap",{"_index":11100,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["reflog",{"_index":8919,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["refresh",{"_index":11919,"title":{},"content":{"/apps/_index":{}},"description":{}}],["region",{"_index":4358,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["regionalnoi",{"_index":11748,"title":{},"content":{"/p/publications":{}},"description":{}}],["regist",{"_index":10475,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["registri",{"_index":5097,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["rel",{"_index":8920,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["relat",{"_index":5165,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["relaunch",{"_index":5414,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["relay",{"_index":210,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["relayout",{"_index":8873,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["releas",{"_index":7844,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/apps/brewmate/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["reliabl",{"_index":1551,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["reload",{"_index":1475,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["remain",{"_index":9931,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["remaind",{"_index":6218,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["remainingday",{"_index":9918,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["remmina",{"_index":9704,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["remot",{"_index":453,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["remoteconnect",{"_index":1569,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["remoteconnection.ondatachannel",{"_index":1573,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["remoteconnection.onicecandid",{"_index":1571,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["remotedesc",{"_index":498,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["remotepeerconnect",{"_index":1185,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection.createansw",{"_index":1162,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection.setlocaldescription(descript",{"_index":1167,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection.setremotedescription(descript",{"_index":1160,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotepeerconnection:\\n${description.sdp",{"_index":1166,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["remotestream",{"_index":390,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["remotevideo",{"_index":385,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["remotevideo.srcobject",{"_index":392,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["remov",{"_index":1871,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["removeprefix",{"_index":3477,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["removesuffix",{"_index":3478,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["render",{"_index":3114,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["render(request",{"_index":3123,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["repeat",{"_index":5067,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["repl",{"_index":11054,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["repl(read–eval–print",{"_index":11055,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["replac",{"_index":3479,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["replic",{"_index":8174,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["replica",{"_index":7960,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["replicas=10",{"_index":8200,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["replicaset",{"_index":8233,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["replicationcontrol",{"_index":8387,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["replicationset",{"_index":8458,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["repo",{"_index":6535,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["reponam",{"_index":11113,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["report",{"_index":3902,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["repositori",{"_index":6802,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/_index":{}},"description":{}}],["repr",{"_index":3450,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["repr(self",{"_index":6297,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["reproduc",{"_index":1217,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["req_sec",{"_index":5274,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["request",{"_index":1404,"title":{"/tracks/python-101/external_packages/requests":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["request.json['author",{"_index":3055,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["request.json['titl",{"_index":3054,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["request.method",{"_index":3125,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["request.post.get('author",{"_index":3137,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["request.post.get('published_d",{"_index":3139,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["request.post.get('titl",{"_index":3136,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["requests.get(\"https://www.example.com",{"_index":3161,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["requests.post(\"https://site.org/post",{"_index":3169,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["requir",{"_index":2029,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["require('http",{"_index":1381,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["require('nod",{"_index":1380,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["require('o",{"_index":1378,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["require('socket.io",{"_index":1383,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["required_provid",{"_index":7952,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["required_vers",{"_index":8087,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["res_left",{"_index":6294,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["res_right",{"_index":6295,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["researcherid",{"_index":3918,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["researchg",{"_index":3900,"title":{},"content":{"/tracks/disser/articles-notes":{},"/p/publications":{}},"description":{}}],["reset",{"_index":5630,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["reset(self",{"_index":5634,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["resolut",{"_index":735,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["resolvejsonmodul",{"_index":11472,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["resourc",{"_index":2975,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["resourcegroup().loc",{"_index":9023,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourcegroupnam",{"_index":9070,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/networkinterfac",{"_index":9048,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/networksecuritygroup",{"_index":9125,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/publicipaddress",{"_index":9123,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourceid('microsoft.network/virtualnetworks/subnet",{"_index":9064,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["resourcequota",{"_index":8389,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["resources.get",{"_index":11270,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["resp",{"_index":9994,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["respons",{"_index":3160,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["response_model=tasklist",{"_index":3079,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["rest",{"_index":428,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["restart",{"_index":7664,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["restart='nev",{"_index":6556,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["restart=unless",{"_index":8266,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["restartpolici",{"_index":7397,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["restor",{"_index":6405,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["restorefromblobstor",{"_index":6630,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["restraint",{"_index":4646,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["result",{"_index":3036,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["result.append(word1[i",{"_index":6185,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["result.append(word2[j",{"_index":6186,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["result.push(values[i",{"_index":11533,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["ret",{"_index":6331,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["retail",{"_index":10153,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["retain",{"_index":8173,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["retriev",{"_index":3861,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["retry_limit",{"_index":7117,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["return",{"_index":623,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["revers",{"_index":3119,"title":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day39":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["reversed_num",{"_index":6098,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["reverselist(head",{"_index":6174,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["reversewords(",{"_index":5446,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["revert",{"_index":8916,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["rewrit",{"_index":7907,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["rf",{"_index":8622,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["rfc",{"_index":9586,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["rfind",{"_index":3480,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rgba(25",{"_index":11312,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rgname",{"_index":9068,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["rgname).loc",{"_index":9076,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["rgname).nam",{"_index":9078,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["rhel",{"_index":11399,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["rhoncu",{"_index":10556,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["right",{"_index":5573,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["right=non",{"_index":5567,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["right_depth",{"_index":6238,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["rinc",{"_index":10358,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["rindex",{"_index":3481,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rins",{"_index":7523,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["risu",{"_index":10595,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["rjust",{"_index":3482,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rm",{"_index":6550,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/posts/docker-commands/":{}},"description":{}}],["rmdir",{"_index":9849,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["rmi",{"_index":11632,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["rmod",{"_index":3451,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rmul",{"_index":3452,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["roadmap",{"_index":0,"title":{"/tracks/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["rob",{"_index":11186,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["role",{"_index":5262,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["roles/apache2",{"_index":7737,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["roles/apache2/templates/index.html.j2",{"_index":7649,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["roles/common",{"_index":7745,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["roles/mysql",{"_index":7660,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["roles/nginx",{"_index":7746,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["roll",{"_index":5344,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["romankurnovskii/cask",{"_index":11938,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["romankurnovskii/cask/brewm",{"_index":11936,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["room",{"_index":986,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["root",{"_index":2789,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["root.left",{"_index":6111,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["root.rend",{"_index":11265,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["root.right",{"_index":6112,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["root.val",{"_index":5875,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["root1",{"_index":6105,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["root2",{"_index":6106,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["root_password",{"_index":6616,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["rootless",{"_index":8472,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["rot",{"_index":7897,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["rotat",{"_index":5408,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["rotate(180deg",{"_index":1261,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["rout",{"_index":5134,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["router",{"_index":9382,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["row",{"_index":5799,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["row[po",{"_index":5827,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["rows.get(col",{"_index":5901,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows.get(row",{"_index":5898,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows[row",{"_index":5897,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rpartit",{"_index":3483,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rpc",{"_index":430,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rpm",{"_index":11441,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rrddd",{"_index":5479,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["rs",{"_index":8385,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["rsa",{"_index":11067,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["rsi",{"_index":10671,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["rsplit",{"_index":3484,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rstrip",{"_index":3485,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["rtcconfigur",{"_index":84,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtcdatachannel",{"_index":403,"title":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["rtcdatachannelev",{"_index":863,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["rtcicecandidate(icecandid",{"_index":1126,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcpeerconncet",{"_index":1189,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcpeerconnect",{"_index":81,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["rtcpeerconnection(configur",{"_index":496,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{}},"description":{}}],["rtcpeerconnection(iceconfig",{"_index":348,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["rtcpeerconnection(iceconfigur",{"_index":258,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["rtcpeerconnection(serv",{"_index":1094,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["rtcpeerconnectioncreateoff",{"_index":1142,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcpeerconnectioniceev",{"_index":566,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtcsessiondescript",{"_index":484,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["rtcsessiondescription(message.answ",{"_index":499,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtcsessiondescription(message.off",{"_index":512,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["rtctrackev",{"_index":368,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["rtcweb",{"_index":23,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["rto",{"_index":6441,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["ru",{"_index":5427,"title":{},"content":{"/tracks/archive/":{},"/posts/archive/":{}},"description":{}}],["rubi",{"_index":1718,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day63":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rudn.ru",{"_index":3927,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["rugpt",{"_index":10480,"title":{},"content":{"/posts/ruGPT-3-notes":{}},"description":{"/posts/ruGPT-3-notes":{}}}],["rule",{"_index":8836,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["run",{"_index":6480,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["run/secrets/chart",{"_index":7450,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["run\\n",{"_index":9457,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["runner",{"_index":7283,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["runtim",{"_index":5258,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["runtime=containerd",{"_index":6488,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["rust",{"_index":9272,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["rutrum",{"_index":10582,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["rw",{"_index":9874,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["rwx",{"_index":9875,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["rynka.pdf",{"_index":11767,"title":{},"content":{"/p/publications":{}},"description":{}}],["rтак",{"_index":5489,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["s",{"_index":3504,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["s.split",{"_index":5447,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["s/day/90daysofdevop",{"_index":9764,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["s1",{"_index":11525,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["s3",{"_index":5149,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["s3_path",{"_index":6628,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s3_path=\"/mysql",{"_index":6610,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s3compliant",{"_index":6586,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s3path",{"_index":6599,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["s[pointer_",{"_index":6143,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["s_%.2i%.2i%i_%.2i%.2i%.2i",{"_index":9460,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["s_list",{"_index":6150,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[left",{"_index":6154,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[left].low",{"_index":6152,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[right",{"_index":6155,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["s_list[right].low",{"_index":6153,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["sa",{"_index":8390,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["sa%204.0",{"_index":10274,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["sa.yml",{"_index":7436,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["sa/4.0",{"_index":10269,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["sa/4.0/88x31.png",{"_index":10271,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["saa",{"_index":9321,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["sad",{"_index":5434,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["sadbutsad",{"_index":5433,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["salamand",{"_index":11220,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["salesforc",{"_index":9351,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["salt",{"_index":9899,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["saltstack",{"_index":7883,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["sam",{"_index":5039,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["same",{"_index":10689,"title":{},"content":{"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["saml",{"_index":9276,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["sampl",{"_index":5174,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["samplecode.ps1",{"_index":8972,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["sap",{"_index":9352,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["sapien",{"_index":10578,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["sara",{"_index":1797,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["saturate(200",{"_index":1262,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["save",{"_index":5351,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["say(say_please=fals",{"_index":10988,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say(self",{"_index":10873,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say_hello",{"_index":3828,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["say_hello('sara",{"_index":2120,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["say_hello(name1",{"_index":2117,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["say_hello(self",{"_index":3827,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["say_pleas",{"_index":10983,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sayhello",{"_index":11258,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["sbin",{"_index":9801,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sbin/shutdown",{"_index":7767,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["sc",{"_index":6390,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["scale",{"_index":8199,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["scenario",{"_index":10251,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["scenario2",{"_index":7732,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["scenario3",{"_index":7744,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["scenario4",{"_index":7714,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["scenario5",{"_index":7610,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["scenario6",{"_index":7642,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["scenario7",{"_index":7659,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["schedul",{"_index":5931,"title":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"content":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["schema",{"_index":8990,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["scholar",{"_index":11841,"title":{},"content":{"/p/publications":{}},"description":{}}],["scienc",{"_index":3922,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["sciencedirect",{"_index":3940,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["scm",{"_index":7339,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["scm.com/doc",{"_index":8902,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["scope",{"_index":1556,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{}},"description":{}}],["scopu",{"_index":3919,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["score",{"_index":5048,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["scp",{"_index":7840,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["scratch",{"_index":5254,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["screen",{"_index":10630,"title":{},"content":{"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["script",{"_index":1211,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["script.jsx",{"_index":11254,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["script.pi",{"_index":2954,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["scripts/common.sh",{"_index":8330,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["scripts/master.sh",{"_index":8331,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["scripts/node.sh",{"_index":8335,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["scrolloffset",{"_index":11302,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["scrum",{"_index":10169,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["sctp",{"_index":1549,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sda",{"_index":9788,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sda1",{"_index":9825,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sda2",{"_index":9826,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sda3",{"_index":9827,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sdb",{"_index":9832,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["sdk",{"_index":6796,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["sdlc",{"_index":7514,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["sdn",{"_index":9506,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["sdp",{"_index":3,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["sdpsemant",{"_index":86,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["search",{"_index":5554,"title":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/search/_index":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/brewmate/":{}},"description":{}}],["search.yml",{"_index":10405,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/configuration.html",{"_index":10447,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/docker.html",{"_index":10448,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/encrypt",{"_index":10442,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/index.html",{"_index":10449,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/us",{"_index":10450,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/current/workplac",{"_index":10445,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search/enterpris",{"_index":10431,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["search:3002",{"_index":10429,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["searchmatrix(matrix",{"_index":5823,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["secatur",{"_index":11183,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["second",{"_index":2419,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["second=0",{"_index":2852,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["seconds2",{"_index":10687,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["secret",{"_index":5143,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["secret_key",{"_index":6588,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["secret_management.encryption_key",{"_index":10408,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["secretnam",{"_index":7399,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["secrets.actions_deploy_key",{"_index":11086,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["secrets.github_token",{"_index":7298,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["section",{"_index":1965,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["secur",{"_index":5074,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["securestr",{"_index":9006,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["security.html",{"_index":10446,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["security_group",{"_index":8080,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["securityrul",{"_index":9130,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["sed",{"_index":10511,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["see",{"_index":5162,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/apps/brewmate/":{}},"description":{}}],["see_no_evil",{"_index":10616,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["segment",{"_index":6243,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["segmenttre",{"_index":6273,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["segmenttree({0})\".format(self.data",{"_index":6298,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sego",{"_index":10624,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["select",{"_index":679,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["selector",{"_index":7961,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["selenium",{"_index":7490,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["self",{"_index":1951,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["self).init(arg",{"_index":10956,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self).init(nam",{"_index":2451,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.__private_vari",{"_index":2472,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._advance_to_next",{"_index":5807,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self._ag",{"_index":10872,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self._default",{"_index":6293,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._func(res_left",{"_index":6296,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._func(self.data[2",{"_index":6285,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._height",{"_index":2544,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._len",{"_index":6288,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._protected_vari",{"_index":2471,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._siz",{"_index":6291,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._width",{"_index":2539,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self._x",{"_index":3264,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["self.a_nam",{"_index":2390,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.ag",{"_index":1968,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["self.assertequal(result",{"_index":3235,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(squar",{"_index":3206,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(square(2",{"_index":3202,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(square(3",{"_index":3203,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.assertequal(square(4",{"_index":3204,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["self.b_nam",{"_index":2394,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.bit",{"_index":6328,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.bit[idx",{"_index":6332,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.bit[z",{"_index":6339,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.bre",{"_index":3852,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.c_nam",{"_index":2400,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.children",{"_index":6321,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.children.get(s[idx]).insert(",{"_index":6325,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.children.setdefault(s[idx",{"_index":6323,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.col",{"_index":5806,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.color",{"_index":3857,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.data[2",{"_index":6286,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.data[idx",{"_index":6284,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.emp_nam",{"_index":2351,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.fict",{"_index":10915,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.firstnam",{"_index":1966,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.flatten(item.getlist",{"_index":5652,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.flatten(nestedlist",{"_index":5646,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.fli",{"_index":10947,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.get_argument('nam",{"_index":2996,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["self.height",{"_index":2535,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.lastnam",{"_index":1967,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.left",{"_index":5570,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["self.movi",{"_index":10916,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.my_method",{"_index":3825,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.n",{"_index":6275,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.nam",{"_index":2440,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["self.next",{"_index":5715,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["self.numb",{"_index":2304,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.numbers[self.po",{"_index":2310,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.origin",{"_index":5633,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["self.original.copi",{"_index":5636,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["self.parent1_func",{"_index":2421,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.parent2_func",{"_index":2422,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.po",{"_index":2306,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.prefix_sum(l",{"_index":6337,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.prefix_sum(r",{"_index":6336,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.private_ip",{"_index":8024,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["self.public_vari",{"_index":2469,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.queu",{"_index":6084,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.queue.append(t",{"_index":6086,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.queue.popleft",{"_index":6088,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.queue[0",{"_index":6087,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["self.random",{"_index":5993,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["self.right",{"_index":5572,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["self.row",{"_index":5805,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.sect",{"_index":1969,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.speci",{"_index":3847,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["self.stack",{"_index":5645,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.stack.append(item.getinteg",{"_index":5651,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.stack.pop",{"_index":5653,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.stack.revers",{"_index":5647,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["self.superpow",{"_index":10917,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.tre",{"_index":6276,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i",{"_index":6280,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i+1",{"_index":6281,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[i",{"_index":6279,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[self.n",{"_index":6278,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.val",{"_index":5568,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["self.valu",{"_index":6320,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.vec",{"_index":5804,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.vecself.row",{"_index":5808,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["self.width",{"_index":2534,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["self.write('item",{"_index":2999,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["self.write(tornado.escape.json_encode(item",{"_index":2993,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["semant",{"_index":145,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["semaphor",{"_index":2650,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["semi",{"_index":8879,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["semper",{"_index":10563,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["senat",{"_index":5469,"title":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/649/":{}}}],["send",{"_index":456,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["sendbtn",{"_index":965,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["sendbutton",{"_index":872,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["sendbutton.addeventlistener('click",{"_index":889,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["sendbutton.dis",{"_index":879,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["sendchannel",{"_index":1562,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendchannel.onclos",{"_index":1568,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendchannel.onopen",{"_index":1566,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendchannel.send(data",{"_index":1581,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["senddata",{"_index":1542,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["sendmail",{"_index":2742,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["sendphoto",{"_index":967,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["senior",{"_index":2031,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{"/tracks/python-101/top-questions/":{}}}],["sensit",{"_index":5422,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day59":{}},"description":{}}],["sentinel",{"_index":7926,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["separ",{"_index":10638,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["septemb",{"_index":3903,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["sequenc",{"_index":10620,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["sequi",{"_index":11165,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sequo",{"_index":11184,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["seri",{"_index":5216,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["serial",{"_index":8119,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["server",{"_index":408,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["server'",{"_index":8023,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["server(lamp",{"_index":10248,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["server.login(login",{"_index":2737,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["server.mycompany.com",{"_index":237,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["server.mycompany.com:19403",{"_index":253,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["server.sendmail(from_addr",{"_index":2738,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["server.starttl",{"_index":2736,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["server/apm",{"_index":10460,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["server:8200",{"_index":10473,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["server=https://index.docker.io/v1",{"_index":7379,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["server_url",{"_index":10471,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["serverless",{"_index":5095,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["servers.each",{"_index":7783,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["servic",{"_index":1005,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["service/gateway",{"_index":6454,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["service_nam",{"_index":10464,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["service_typ",{"_index":7588,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["service_url",{"_index":10465,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["serviceaccount",{"_index":8391,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["session",{"_index":532,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day22":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["set",{"_index":441,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/sets":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["set(\"aeiouaeiou",{"_index":6149,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["set([1",{"_index":3548,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["set(my_list",{"_index":3581,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["set_global_x(6",{"_index":10846,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_global_x(num",{"_index":10844,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(43",{"_index":10845,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(num",{"_index":10843,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["setattr",{"_index":3453,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["setcount",{"_index":11284,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["setcount(count",{"_index":11287,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["setdefault",{"_index":3783,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/posts/python-snippets/":{}},"description":{}}],["setlocaldescript",{"_index":92,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setlocaldescriptionsuccess(localpeerconnect",{"_index":1157,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setlocaldescriptionsuccess(remotepeerconnect",{"_index":1168,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setmimetype(contentservice.mimetype.json",{"_index":11537,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["setremotedescript",{"_index":93,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setremotedescriptionsuccess(localpeerconnect",{"_index":1170,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setremotedescriptionsuccess(remotepeerconnect",{"_index":1161,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["setter",{"_index":2529,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["settings.html#api",{"_index":10453,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["setup",{"_index":448,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["setup.pi",{"_index":3186,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{}},"description":{}}],["setup/dock",{"_index":11656,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["setup_mysql.yml",{"_index":7666,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["sftp",{"_index":7839,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sh",{"_index":7372,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["shallow",{"_index":2187,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["share",{"_index":8177,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["sharealik",{"_index":10267,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["shawn",{"_index":10188,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["sheet",{"_index":7012,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day17":{},"/posts/emoji-support":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["sheet.getrange(sheetrange).getvalu",{"_index":11530,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["sheetnam",{"_index":11524,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["sheetrang",{"_index":11526,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["shell",{"_index":7365,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["shield",{"_index":10260,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["shift",{"_index":1334,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ship",{"_index":10372,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["shipper",{"_index":10369,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["short",{"_index":8365,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["short_period",{"_index":10659,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["shortcod",{"_index":10611,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["shorter",{"_index":6225,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["shorthand",{"_index":10614,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["shot",{"_index":11073,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["show",{"_index":1515,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day27":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["show(photo",{"_index":964,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["shuffl",{"_index":5626,"title":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["shuffle(self",{"_index":5635,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["shut",{"_index":7763,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/docker-commands/":{}},"description":{}}],["shutil",{"_index":11367,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.mov",{"_index":11366,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.move(old_sourc",{"_index":11370,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["side",{"_index":6846,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["sidecar:0.75.0",{"_index":6607,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["sign",{"_index":9292,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["signal",{"_index":1004,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["signalingchannel",{"_index":449,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel(remoteclientid",{"_index":450,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.addeventlistener('messag",{"_index":451,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.addeventlistener(‘messag",{"_index":576,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send('hello",{"_index":457,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send({'answ",{"_index":516,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send({'off",{"_index":504,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signalingchannel.send({‘new",{"_index":574,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["signatur",{"_index":9216,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["similar",{"_index":6104,"title":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{},"/posts/python-snippets/":{}},"description":{}}],["simpl",{"_index":886,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day23":{},"/posts/trading-indicators/sma":{}},"description":{}}],["simple_play",{"_index":7757,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["simple_play.yml",{"_index":7758,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["simplest",{"_index":8100,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["simpli",{"_index":7015,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["simplifi",{"_index":8218,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["simul",{"_index":5120,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["sing",{"_index":10905,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sing(self",{"_index":10876,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["singl",{"_index":6622,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["sint",{"_index":11172,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sit",{"_index":10551,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["site",{"_index":7974,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/apps/_index":{}},"description":{}}],["site'",{"_index":10613,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["site.baseurl",{"_index":11273,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["site24x7",{"_index":7013,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["size",{"_index":5348,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/posts/emoji-support":{}},"description":{}}],["sizeof",{"_index":3454,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["skill",{"_index":5183,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["skip",{"_index":2217,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["skip_long_lin",{"_index":7104,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["skiplibcheck",{"_index":11466,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["skipstatu",{"_index":9975,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["sku",{"_index":9040,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["sla",{"_index":9244,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["slack",{"_index":7001,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["slave",{"_index":7494,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["sleep",{"_index":2622,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["sleep(1",{"_index":2625,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["slice",{"_index":3378,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{}},"description":{}}],["slice.call(document.queryselectorall('p.placehold",{"_index":11331,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["slide",{"_index":5223,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["sloc",{"_index":11128,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["sma",{"_index":10655,"title":{"/posts/trading-indicators/sma":{}},"content":{"/posts/trading-indicators/sma":{}},"description":{"/posts/trading-indicators/sma":{}}}],["sma(short_period",{"_index":10661,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["small",{"_index":11225,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["smb",{"_index":6782,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["smb.config",{"_index":6804,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["smb2.1",{"_index":9231,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["smb3",{"_index":9232,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["smtp",{"_index":2720,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["smtp.yandex.ru",{"_index":2726,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["smtp_server",{"_index":2725,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["smtplib",{"_index":2715,"title":{"/tracks/python-101/standard_library/smtplib":{}},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["smtplib.smtp(smtp_serv",{"_index":2735,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["sn",{"_index":5088,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["snap",{"_index":953,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["snap&send",{"_index":1016,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["snapclass",{"_index":6674,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["snapphoto",{"_index":960,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["snapshot",{"_index":6471,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["snyk",{"_index":7924,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["soap",{"_index":9748,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["social",{"_index":8870,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["socket",{"_index":1342,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["socket.broadcast.emit('messag",{"_index":1319,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('cr",{"_index":1323,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('ful",{"_index":1328,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('ipaddr",{"_index":1420,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('join",{"_index":1325,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.emit('log",{"_index":1398,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.id",{"_index":1324,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.io",{"_index":999,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["socket.io/socket.io.j",{"_index":1373,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.join(room",{"_index":1322,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('cr",{"_index":1347,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('ful",{"_index":1350,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('ipaddr",{"_index":1352,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('join",{"_index":1356,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('log",{"_index":1357,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socket.on('messag",{"_index":1317,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socketio",{"_index":1382,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["socketio.listen(app",{"_index":1392,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["softwar",{"_index":7829,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["sollicitudin",{"_index":10539,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["solut",{"_index":5198,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["solv",{"_index":5232,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["some_set",{"_index":10807,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_set.copi",{"_index":10811,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_unknown_var",{"_index":10745,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_var",{"_index":10743,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["someth",{"_index":8060,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["somewordpress",{"_index":8565,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["sonar(self",{"_index":10949,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sort",{"_index":3644,"title":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["sourc",{"_index":5337,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["source=head~1",{"_index":8825,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["sourceaddressprefix",{"_index":9133,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["sourceforge.net",{"_index":11934,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["sourceportrang",{"_index":9137,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["southeast",{"_index":8073,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["sovereign",{"_index":9327,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["sovremennyh",{"_index":11784,"title":{},"content":{"/p/publications":{}},"description":{}}],["space",{"_index":8877,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["speak",{"_index":3875,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["speak(self",{"_index":3848,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["speak.runandwait",{"_index":10712,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["speak.say(text",{"_index":10711,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["speak.stop",{"_index":10713,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["speak_no_evil",{"_index":10618,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["spec",{"_index":7368,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["speci",{"_index":3846,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["special",{"_index":5191,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["species=\"cani",{"_index":3851,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["species=\"f",{"_index":3856,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["specif",{"_index":3501,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["specifi",{"_index":2677,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["speech",{"_index":9333,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["spend",{"_index":11929,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["spin",{"_index":11831,"title":{},"content":{"/p/publications":{}},"description":{}}],["split",{"_index":968,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["splitlin",{"_index":3486,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["splitter_decor",{"_index":2094,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["splitter_decorator(funct",{"_index":2091,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["splunk",{"_index":7181,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["sposob",{"_index":11763,"title":{},"content":{"/p/publications":{}},"description":{}}],["spreadsheetapp.getactive().getsheetbyname(sheetnam",{"_index":11528,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["sq",{"_index":5090,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["sql",{"_index":6848,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["sqlalchemi",{"_index":3019,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["sqlalchemy(app",{"_index":3024,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["sqlite",{"_index":3695,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["sqlite:///example.db",{"_index":3022,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["squar",{"_index":3687,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["square(5",{"_index":3690,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["square(x",{"_index":3199,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["squared_dict",{"_index":2140,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["squared_list",{"_index":2135,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["squid",{"_index":9819,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["src",{"_index":7727,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/app.tsx",{"_index":11450,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/index.tsx",{"_index":11451,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src=templates/my.cnf.j2",{"_index":7677,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["src=templates/ports.conf.j2",{"_index":7725,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["srcobject",{"_index":1233,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["ssd",{"_index":9223,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["ssh",{"_index":5389,"title":{"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/90daysofdevops/day18":{}}}],["ssh.close",{"_index":9466,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh.connect(ip,port",{"_index":9447,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh.invoke_shel",{"_index":9450,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh.set_missing_host_key_policy(paramiko.autoaddpolici",{"_index":9446,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["ssh_port",{"_index":7773,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["sshd",{"_index":9726,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["ssl",{"_index":9187,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["ssl/tl",{"_index":9590,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["ssrn",{"_index":11753,"title":{},"content":{"/p/publications":{}},"description":{}}],["st",{"_index":5144,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["staa",{"_index":9361,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["stabl",{"_index":7198,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["stack",{"_index":5464,"title":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{}},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{}},"description":{}}],["stack.append((curr_str",{"_index":5610,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["stack.append(asteroid",{"_index":5465,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["stack.pop",{"_index":5466,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["stack.yaml",{"_index":7021,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["stackoverflow",{"_index":10032,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["staff",{"_index":11667,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["stage",{"_index":7334,"title":{"/tracks/90daysofdevops/day38":{}},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day38":{}}}],["stage('build",{"_index":7410,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["stage('deploy",{"_index":7412,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["stage('get",{"_index":7403,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["stage('main",{"_index":7374,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["stage('test",{"_index":7408,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["stagig",{"_index":8791,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["staging/stag",{"_index":8847,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["standard",{"_index":6391,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{}},"description":{}}],["standard_d2s_v3",{"_index":8996,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["standbi",{"_index":6489,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["stanovlenija",{"_index":11781,"title":{},"content":{"/p/publications":{}},"description":{}}],["star",{"_index":8779,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["start",{"_index":1046,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["start.telebank.co.il",{"_index":11237,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["start==stop",{"_index":6292,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["start_tim",{"_index":3290,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["start_time:.4f",{"_index":3295,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["startapp",{"_index":3111,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["startbutton.dis",{"_index":1578,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["started/overview",{"_index":920,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["startproject",{"_index":3108,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["startswith",{"_index":3487,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["starttl",{"_index":2740,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["startup",{"_index":10400,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["state",{"_index":6683,"title":{"/tracks/90daysofdevops/day55":{}},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["state=latest",{"_index":7668,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["state=start",{"_index":7832,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["statefulset",{"_index":6642,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["statefulset.namespac",{"_index":6605,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["stateless",{"_index":8159,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["static",{"_index":1278,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{}}],["static/js/my_react_component.j",{"_index":11280,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["static/js/zoom",{"_index":11304,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["static/wheels/mi",{"_index":11038,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["static/wheels/travertino",{"_index":11034,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["staticmethod",{"_index":3258,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["statist",{"_index":10371,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["statistics=0",{"_index":6620,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["statu",{"_index":6803,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["stderr",{"_index":2707,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["stderr=subprocess.pip",{"_index":2705,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["stdin",{"_index":8364,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/posts/docker-commands/":{}},"description":{}}],["stdout",{"_index":2706,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["stdout=subprocess.pip",{"_index":2704,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["step",{"_index":932,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["step=1",{"_index":5842,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["stick",{"_index":10250,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["stop",{"_index":1534,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/posts/docker-commands/":{}},"description":{}}],["stopiter",{"_index":2300,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["storag",{"_index":5146,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/_index":{},"/posts/docker-commands/":{}},"description":{}}],["storageclass",{"_index":6678,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["storageprofil",{"_index":9035,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["store",{"_index":1502,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/docker-commands/":{}},"description":{}}],["store.${app_name}.svc.cluster.loc",{"_index":6544,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["stori",{"_index":10141,"title":{},"content":{"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["str",{"_index":1860,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["str(count",{"_index":5545,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["str(my_numb",{"_index":3411,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["str(self",{"_index":2549,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["str(sup.fli",{"_index":10972,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str(sup.movi",{"_index":10941,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str1",{"_index":6209,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str1.startswith(str2",{"_index":6220,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str2",{"_index":6210,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str2.startswith(str1",{"_index":6221,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["strategi",{"_index":11130,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["stream",{"_index":282,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["stretch",{"_index":7336,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["strftime",{"_index":2833,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["strict",{"_index":1213,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["string",{"_index":795,"title":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["string.split",{"_index":2326,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string1",{"_index":3414,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string2",{"_index":3415,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string3",{"_index":3416,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string4",{"_index":3418,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string5",{"_index":3419,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string6",{"_index":3421,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string7",{"_index":3423,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["string_hello",{"_index":2114,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string_list",{"_index":2325,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string_lowercas",{"_index":2088,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["string_split",{"_index":2092,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["strip",{"_index":3430,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["strong",{"_index":10412,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["strptime",{"_index":2834,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["strstr(self",{"_index":5438,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/28.en":{}},"description":{}}],["struct",{"_index":9947,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["structur",{"_index":6319,"title":{"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/apps/_index":{}},"description":{}}],["structure.ru.png",{"_index":6248,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["stu1",{"_index":1970,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["student",{"_index":1960,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["student(\"sara",{"_index":1971,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["studi",{"_index":5057,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["studio",{"_index":3312,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["stun",{"_index":409,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["stun:stun.l.google.com:19302",{"_index":495,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["style",{"_index":3974,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day62":{},"/posts/emoji-support":{}},"description":{}}],["su",{"_index":9843,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sub",{"_index":11210,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["subclasshook",{"_index":3455,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["subnet",{"_index":5354,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["subnet0",{"_index":9012,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnet0nam",{"_index":9011,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnet1",{"_index":9014,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnet1nam",{"_index":9013,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnetipprefix",{"_index":9111,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnetnam",{"_index":9010,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subnetref",{"_index":9113,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["subprocess",{"_index":2669,"title":{"/tracks/python-101/standard_library/subprocess":{}},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["subprocess.call([python_execut",{"_index":2673,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["subprocess.popen(['l",{"_index":2702,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{}},"description":{}}],["subscript",{"_index":9300,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["subsequ",{"_index":5659,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["subvers",{"_index":8948,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["success",{"_index":1219,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["successfulli",{"_index":9978,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["such",{"_index":10373,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{}},"description":{}}],["sudo",{"_index":3659,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["suffix",{"_index":5834,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["suffix[i",{"_index":5836,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["suggest",{"_index":7674,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["suit",{"_index":10394,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["sum",{"_index":2964,"title":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["sum([1",{"_index":6269,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum([3",{"_index":6271,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum.ru.png",{"_index":6253,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sums[i",{"_index":5530,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["sup",{"_index":10921,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["sup.ag",{"_index":10937,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.boast",{"_index":10935,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('ложк",{"_index":10932,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('я",{"_index":10968,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super",{"_index":2448,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day75":{},"/posts/python-snippets/":{}},"description":{}}],["super().init(nam",{"_index":2449,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["super().method",{"_index":2507,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["super(batman",{"_index":10955,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super(child",{"_index":2450,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["superhero",{"_index":10904,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(human",{"_index":10908,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(name=\"тик",{"_index":10922,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.init(self",{"_index":10958,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.pi",{"_index":10952,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpow",{"_index":10910,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=[\"сверхс",{"_index":10913,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=['богат",{"_index":10960,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["suppli",{"_index":10003,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["support",{"_index":7887,"title":{"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{}},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/math-support":{},"/posts/diagram-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/brewmate/":{}},"description":{}}],["sure",{"_index":10640,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["survey",{"_index":10033,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["surveymonkey",{"_index":10178,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["suscipit",{"_index":10604,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["suspendiss",{"_index":10557,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["svc",{"_index":6981,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["svc/alertmanag",{"_index":7003,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["svc/argocd",{"_index":7255,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["svc/grafana",{"_index":6982,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["svc/jenkin",{"_index":7448,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["svc/nginx",{"_index":7971,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["svc/pacman",{"_index":6689,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["svc/prometheu",{"_index":6986,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["svc/servicenam",{"_index":8363,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["svg",{"_index":1209,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["sw1",{"_index":9406,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sw2",{"_index":9407,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sw3",{"_index":9408,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["sw4",{"_index":9409,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["swap",{"_index":5378,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["swap(x",{"_index":10841,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swap(x,i",{"_index":10842,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swapcas",{"_index":3488,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["swarm",{"_index":8412,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["swipe",{"_index":8865,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["switch",{"_index":8978,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["switch1",{"_index":9385,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switch2",{"_index":9388,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switch3",{"_index":9391,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switch4",{"_index":9394,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["switchport",{"_index":9418,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["sy",{"_index":2584,"title":{"/tracks/python-101/standard_library/sys":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["symbol",{"_index":10626,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["symmetric_differ",{"_index":3556,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["symmetric_difference_set",{"_index":3577,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["symmetric_difference_upd",{"_index":3564,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["synchronis",{"_index":8176,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["syntax",{"_index":7356,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["synthesi",{"_index":10707,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sys.argv",{"_index":2654,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.argv[1",{"_index":2681,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.execut",{"_index":2655,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.exit",{"_index":2674,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.exit(1",{"_index":2679,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.exit([arg",{"_index":2656,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.modul",{"_index":2657,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.modules.item",{"_index":2682,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.path",{"_index":2658,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.platform",{"_index":2661,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stderr",{"_index":2665,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdin",{"_index":2663,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdout",{"_index":2664,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdout.writ",{"_index":2689,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["sys.stdout.write(f\"hello",{"_index":2686,"title":{},"content":{"/tracks/python-101/standard_library/sys":{}},"description":{}}],["system",{"_index":5128,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["systemctl",{"_index":9713,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["systemd",{"_index":7105,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["systemd_filt",{"_index":7107,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["t",{"_index":3370,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["t1",{"_index":2631,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t1.join",{"_index":2638,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t1.start",{"_index":2635,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t2",{"_index":2633,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t2.join",{"_index":2639,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t2.micro",{"_index":8077,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["t2.start",{"_index":2636,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["t=100",{"_index":6079,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["t[pointer_t",{"_index":6144,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["t\\n",{"_index":10080,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["tabl",{"_index":6561,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["tag",{"_index":5308,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/_index":{},"/posts/diagram-support":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["tail",{"_index":7098,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["take",{"_index":5020,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["taken",{"_index":9325,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["talk",{"_index":6745,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/posts/markdown-syntax/":{}},"description":{}}],["tap",{"_index":11937,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["tar",{"_index":9752,"title":{"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/90daysofdevops/day18":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["target",{"_index":5575,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["target_function(arg",{"_index":10986,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["target_port",{"_index":7969,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["targetport",{"_index":8232,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["tariff",{"_index":4640,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["task",{"_index":3076,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["task(basemodel",{"_index":3074,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["task_id",{"_index":3084,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["tasklist(basemodel",{"_index":3075,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["tasklist(tasks=db",{"_index":3081,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["tasks/main.yml",{"_index":7738,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["tcp",{"_index":8231,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["tcp_123",{"_index":10648,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["tcp_456",{"_index":10650,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["td",{"_index":10643,"title":{},"content":{"/posts/diagram-support":{}},"description":{}}],["teach",{"_index":5229,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["team",{"_index":5226,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["technic",{"_index":5212,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["techniqu",{"_index":5230,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["techworld",{"_index":8212,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["tee",{"_index":8083,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["tellarguments(**kwarg",{"_index":2339,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["tellarguments(arg1",{"_index":2342,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["tellu",{"_index":10516,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["telnet",{"_index":9372,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["telnetlib",{"_index":9539,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["temp",{"_index":2068,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["templat",{"_index":3146,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/posts/emoji-support":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["template.json",{"_index":9000,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["templatefil",{"_index":9071,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["templateparameterfil",{"_index":9073,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["templates/index.html.j2",{"_index":7728,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["templates/ports.conf.j2",{"_index":7817,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["templates\\mysite.j2",{"_index":7715,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["tempor",{"_index":10518,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tempu",{"_index":10567,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tenant.onmicrosoft.com",{"_index":9282,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["tens",{"_index":8856,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["termin",{"_index":5380,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["terra",{"_index":8037,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["terraform",{"_index":7851,"title":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{}},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["terraform.io",{"_index":8130,"title":{},"content":{"/tracks/90daysofdevops/day57":{}},"description":{}}],["terraform.tfvar",{"_index":8057,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["terraform.workspac",{"_index":7978,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["terraform_vers",{"_index":8117,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["terragrunt",{"_index":7931,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["terrascan",{"_index":7921,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["terratest",{"_index":7928,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["test",{"_index":5028,"title":{"/tracks/90daysofdevops/day05/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/90daysofdevops/day05/":{}}}],["test.webrtc.org",{"_index":1464,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["test_data1",{"_index":3232,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_data2",{"_index":3233,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_data3",{"_index":3234,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_neg",{"_index":3211,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_negative(self",{"_index":3205,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_posit",{"_index":3210,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_positive(self",{"_index":3201,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_process_data(self",{"_index":3229,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_square.pi",{"_index":3215,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["test_us",{"_index":10322,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["testcas",{"_index":3218,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["testprocessdata(testcas",{"_index":3227,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["testsquar",{"_index":3208,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["testsquare(unittest.testcas",{"_index":3200,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["text",{"_index":887,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text.length",{"_index":11338,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text1",{"_index":3401,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["text2",{"_index":3403,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["text3",{"_index":3405,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["textarea",{"_index":874,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["tf",{"_index":7983,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["tf_k8deploy",{"_index":7948,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["tf_var_nam",{"_index":8056,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["tflint",{"_index":7911,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["tfsec",{"_index":7919,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["tfstate",{"_index":8115,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["that'",{"_index":10359,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["theme",{"_index":9697,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/posts/math-support":{},"/posts/diagram-support":{}},"description":{}}],["then(createdansw",{"_index":1163,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["then(createdoffer).catch(setsessiondescriptionerror",{"_index":1147,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["then(devic",{"_index":659,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["then(gotlocalmediastream",{"_index":1112,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["then(gotlocalmediastream).catch(handlelocalmediastreamerror",{"_index":1223,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["then(gotstream",{"_index":947,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["then(stream",{"_index":615,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["theori",{"_index":5063,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["thing",{"_index":8175,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["think",{"_index":10137,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["third",{"_index":10365,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/README":{},"/posts/emoji-support":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{}}],["those",{"_index":9949,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["thread",{"_index":2618,"title":{"/tracks/python-101/standard_library/threading":{}},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{}},"description":{}}],["threading.thread(target=print_lett",{"_index":2634,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["threading.thread(target=print_numb",{"_index":2632,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["three",{"_index":10782,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["threshold",{"_index":5053,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["through",{"_index":5066,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["throughout",{"_index":5418,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["throw",{"_index":1816,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["tiam",{"_index":11178,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["tic",{"_index":9432,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["tic:0.4f",{"_index":9472,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["tier",{"_index":9228,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["time",{"_index":2287,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day27":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["time.ctime(current_tim",{"_index":2891,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.gmtime(current_tim",{"_index":2896,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.perf_count",{"_index":9433,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(1",{"_index":9453,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(2",{"_index":3297,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(20",{"_index":9458,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["time.sleep(5",{"_index":2894,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.strftime('%i",{"_index":2899,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["time.tim",{"_index":2889,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["time_format",{"_index":7085,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["time_keep",{"_index":7083,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["time_key",{"_index":7084,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["timedelta",{"_index":2840,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["timer",{"_index":3296,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["timer(func",{"_index":3288,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["timestamp",{"_index":7032,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/posts/docker-commands/":{}},"description":{}}],["tip",{"_index":11142,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["titl",{"_index":3028,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["title=request.post.get('titl",{"_index":3126,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["titlebar",{"_index":11427,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["tl",{"_index":9594,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["tl;dr",{"_index":5013,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["tldr",{"_index":8141,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["tmp",{"_index":9809,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["tmp/dockerfil",{"_index":11637,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmp/exec_work",{"_index":11644,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmpf",{"_index":9800,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["to_addr",{"_index":2733,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["toc",{"_index":9468,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["todat",{"_index":6611,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["today",{"_index":2846,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["today.strftime(\"%i",{"_index":2871,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["togeth",{"_index":7517,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["tojson",{"_index":6627,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["token",{"_index":256,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day13":{},"/apps/_index":{}},"description":{}}],["token=$(kubectl",{"_index":6461,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["token_nam",{"_index":6462,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["token_name=$(kubectl",{"_index":6458,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["took",{"_index":10152,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["tool",{"_index":1184,"title":{"/tracks/90daysofdevops/day78":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["toolset",{"_index":8745,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["top",{"_index":7009,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/apps/brewmate/":{}},"description":{}}],["topic",{"_index":5059,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["tornado",{"_index":2986,"title":{"/tracks/python-101/frameworks/tornado":{}},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["tornado.escap",{"_index":2990,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.ioloop",{"_index":2988,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.ioloop.ioloop.current().start",{"_index":3007,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.web",{"_index":2989,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado.web.appl",{"_index":3002,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tornado_app.pi",{"_index":3011,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["tortois",{"_index":5735,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["tortor",{"_index":10583,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tostr",{"_index":6618,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["total",{"_index":981,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["total_wat",{"_index":6057,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["totaldays=90",{"_index":10304,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["touch",{"_index":8890,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["tower",{"_index":7567,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["trace",{"_index":10463,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["trace(${getpeername(peerconnect",{"_index":1133,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('ad",{"_index":1119,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('cr",{"_index":1560,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["trace('localpeerconnect",{"_index":1145,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('receiv",{"_index":1116,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('remotepeerconnect",{"_index":1159,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace('s",{"_index":1582,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["trace('us",{"_index":1548,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["trace(answ",{"_index":1165,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["trace(off",{"_index":1154,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["traceback",{"_index":1756,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["track",{"_index":367,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["trade",{"_index":4524,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["traffic",{"_index":5390,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["trail",{"_index":6340,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["train",{"_index":5151,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["transact",{"_index":6623,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["transfer",{"_index":2719,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["transform",{"_index":6392,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["translat",{"_index":275,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["transport",{"_index":9595,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["trap",{"_index":6048,"title":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"content":{},"description":{}}],["trap(height",{"_index":6056,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["travers",{"_index":209,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["travi",{"_index":8720,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["travisci",{"_index":7470,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["tree",{"_index":5868,"title":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day39":{},"/apps/_index":{}},"description":{}}],["tree[i",{"_index":6317,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["treenod",{"_index":5564,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["trello",{"_index":10176,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["tri",{"_index":578,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day80":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["trickl",{"_index":543,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["trigger",{"_index":7459,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["tripl",{"_index":3334,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["triplet",{"_index":5658,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{},"description":{}}],["tristiqu",{"_index":10555,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["troubleshoot",{"_index":5042,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["true",{"_index":319,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["true/fals",{"_index":3360,"title":{},"content":{"/tracks/python-101/basis/types":{}},"description":{}}],["trunk",{"_index":9419,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["truthi",{"_index":10698,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["try/except",{"_index":3754,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["tsc",{"_index":11496,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tsconfig.json",{"_index":11460,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tti",{"_index":6555,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/posts/docker-commands/":{}},"description":{}}],["tunnel",{"_index":8205,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["tup",{"_index":10773,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[0",{"_index":10774,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[:2",{"_index":10777,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tupl",{"_index":1815,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{}},"description":{}}],["tuple([4",{"_index":3372,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["tuple(gridr",{"_index":5900,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["tuple(row",{"_index":5896,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["turn",{"_index":189,"title":{"/tracks/webrtc/turn-server":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["turn:mi",{"_index":252,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["turpi",{"_index":10572,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["tutori",{"_index":2976,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["tvf",{"_index":11681,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["tweak",{"_index":11426,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["tweet",{"_index":9950,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["twenti",{"_index":8582,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["twin",{"_index":5914,"title":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2130/":{}}}],["twin_i",{"_index":5925,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["twin_sum",{"_index":5926,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["twitter",{"_index":7456,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{"/tracks/90daysofdevops/day13":{}}}],["twitter.accountverifyparam",{"_index":9974,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter.bool(tru",{"_index":9976,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter.cli",{"_index":9963,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter.newclient(httpcli",{"_index":9971,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitter/twitt",{"_index":9952,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["twitterhandl",{"_index":10078,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["twitternam",{"_index":9923,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["two",{"_index":1327,"title":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/28.en":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["txt",{"_index":11357,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["type",{"_index":663,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/_index":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/python-snippets/":{}},"description":{}}],["type((1",{"_index":10775,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type(my_str",{"_index":3509,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["type(sup",{"_index":10925,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type=int",{"_index":2959,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["typeahead",{"_index":6883,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["typeerror",{"_index":2028,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["typehandlervers",{"_index":9084,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["typeof",{"_index":11507,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["typescript",{"_index":7939,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["tэтот",{"_index":7718,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["u",{"_index":6148,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{},"/posts/math-support":{}},"description":{}}],["ubuntu",{"_index":3658,"title":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"content":{"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/docker-commands/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["ubuntu/debian",{"_index":8256,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["ubuntu:18.04",{"_index":8537,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["ubuntu:latest",{"_index":11639,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["udp",{"_index":9645,"title":{},"content":{"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["ufw",{"_index":9714,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["ui",{"_index":280,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/emoji-support":{}},"description":{}}],["uint",{"_index":9919,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["ullamcorp",{"_index":10576,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ultra",{"_index":9221,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["ultric",{"_index":10569,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["ultrici",{"_index":10606,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["umount",{"_index":9834,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["unappli",{"_index":7905,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["unboundlocalerror",{"_index":1785,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["und",{"_index":11173,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["under",{"_index":10264,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["understand",{"_index":5152,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["undo",{"_index":8824,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["unhash",{"_index":10785,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unicod",{"_index":1862,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/emoji-support":{}},"description":{}}],["unifi",{"_index":20,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["unimu",{"_index":9511,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["uninstal",{"_index":11932,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["unint",{"_index":10081,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["union",{"_index":3551,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["union_set",{"_index":3568,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["uniqu",{"_index":5615,"title":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"content":{},"description":{}}],["unit",{"_index":4521,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["unittest",{"_index":3197,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unittest.main",{"_index":3207,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unittest.mock.mock",{"_index":3217,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unittest.testcas",{"_index":3209,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["unix",{"_index":2014,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["unless",{"_index":5055,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["unoffici",{"_index":8362,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["unpickl",{"_index":2224,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["unpin",{"_index":7902,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["unrestrict",{"_index":7382,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["unspecifi",{"_index":5050,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["unstag",{"_index":8809,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["until",{"_index":5068,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["untrack",{"_index":8900,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["unus",{"_index":7913,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["up",{"_index":442,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["updat",{"_index":678,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["update(request",{"_index":3132,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["update.html",{"_index":3140,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["update_book(book_id",{"_index":3053,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["update_task(task_id",{"_index":3094,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["updatecameralist(camera",{"_index":682,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["updatecameralist(newcameralist",{"_index":707,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["updatecameralist(videocamera",{"_index":700,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["updatedb",{"_index":9854,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["upgrad",{"_index":6408,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["upload",{"_index":5368,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["upper",{"_index":3489,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["upstream",{"_index":7636,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["upto",{"_index":2249,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["uri",{"_index":9149,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["url",{"_index":251,"title":{"/posts/howto-redirect-to-url/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{"/posts/howto-redirect-to-url/":{}}}],["url(",{"_index":1511,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["urllib",{"_index":2589,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["urna",{"_index":10514,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["us",{"_index":144,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/posts/math-support":{},"/posts/emoji-support":{},"/posts/diagram-support":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["usabl",{"_index":11012,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["usag",{"_index":10374,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{"/posts/emoji-support":{}}}],["usb",{"_index":671,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["usd",{"_index":5245,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["user",{"_index":946,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["user'@'localhost",{"_index":9743,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["user.email",{"_index":8925,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["user.nam",{"_index":8912,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["user@52.24.109.78",{"_index":5400,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["user_data",{"_index":8082,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["useradd",{"_index":8540,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["userdel",{"_index":10321,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["usermod",{"_index":9871,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["usernam",{"_index":242,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["username:$password",{"_index":10320,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["username}}/{{imagename}}:{{vers",{"_index":8628,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["users/r/desktop/new_source.txt",{"_index":11351,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/r/desktop/old_source.txt",{"_index":11349,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/shambhu/docu",{"_index":9444,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["users/zsh",{"_index":9685,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["uslovijah.pdf",{"_index":11785,"title":{},"content":{"/p/publications":{}},"description":{}}],["usloviya",{"_index":11779,"title":{},"content":{"/p/publications":{}},"description":{}}],["usr",{"_index":9803,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["usr/bin",{"_index":9811,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["usr/bin/apt",{"_index":11437,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/bash",{"_index":10288,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["usr/bin/dnf",{"_index":11438,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/env",{"_index":2015,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["usr/bin/mysql",{"_index":7699,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["usr/bin/softwar",{"_index":11436,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/sbin/synapt",{"_index":11435,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ut",{"_index":10540,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["utc",{"_index":2884,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["util",{"_index":10416,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["utm",{"_index":11395,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["uvicorn",{"_index":3068,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["v",{"_index":3147,"title":{"/tracks/python-101/frameworks/_index":{}},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{}}],["v.cpu",{"_index":9905,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["v.custom",{"_index":7801,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["v.memori",{"_index":9903,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["v/rvi",{"_index":9526,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["v0.01",{"_index":9985,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["v1",{"_index":7367,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["v2",{"_index":7550,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["v2l8v",{"_index":7028,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["v\\n",{"_index":10048,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["vagant",{"_index":9776,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["vagrant",{"_index":7656,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["vagrant.configure(\"2",{"_index":7769,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["vagrant/vagr",{"_index":8305,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vagrant@192.168.169.135",{"_index":9720,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["vagrantfil",{"_index":7658,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["val",{"_index":5569,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["val=0",{"_index":5565,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["valid",{"_index":5791,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["valid_dict",{"_index":10786,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["valid_set",{"_index":10806,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["vals.append(curr.v",{"_index":5922,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["vals[i",{"_index":5927,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["vals[twin_i",{"_index":5928,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["valu",{"_index":2132,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["value1",{"_index":3166,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["value2",{"_index":3168,"title":{},"content":{"/tracks/python-101/external_packages/requests":{}},"description":{}}],["value_if_fals",{"_index":3603,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["value_if_tru",{"_index":3602,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["valueerror",{"_index":3765,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/posts/python-snippets/":{}},"description":{}}],["valueerror(\"height",{"_index":2546,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["valueerror(\"width",{"_index":2541,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["valueerror(\"числ",{"_index":3768,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["values('albert",{"_index":6566,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('alfr",{"_index":6568,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('bartholomew",{"_index":6572,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('beatric",{"_index":6570,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('edward",{"_index":6573,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('edwin",{"_index":6575,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('edwina",{"_index":6577,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('nick",{"_index":6565,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values('rastapopoulo",{"_index":6579,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["values.yml",{"_index":7438,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["vancouv",{"_index":3981,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["var",{"_index":942,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["var.wordpress_port",{"_index":8018,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["var/lib/apt/list",{"_index":8623,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["var/lib/mysql",{"_index":8012,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["var/log",{"_index":9815,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/log/apach",{"_index":9816,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/log/containers/*.log",{"_index":7099,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["var/log/squid",{"_index":9817,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/run",{"_index":9799,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["var/run/mysqld/mysqld.sock",{"_index":7684,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["var/run:/var/run",{"_index":8286,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["var/www",{"_index":9750,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["var/www/html/90days.php",{"_index":9738,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["var/www/html/index.html",{"_index":7730,"title":{},"content":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["varargs(*arg",{"_index":10825,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["varargs(1",{"_index":10826,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["vargant",{"_index":9913,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["variabl",{"_index":2074,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["variables('computeapivers",{"_index":9022,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('networkapivers",{"_index":9051,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('nicnam",{"_index":9116,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('nsgnam",{"_index":9120,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('publicipaddressnam",{"_index":9119,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnet0nam",{"_index":9055,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnet1nam",{"_index":9057,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnetipprefix",{"_index":9118,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnetnam",{"_index":9114,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('subnetref",{"_index":9121,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('virtualnetworknam",{"_index":9050,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('vmnam",{"_index":9115,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["variables('vnetipprefix",{"_index":9117,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["varieti",{"_index":5181,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["variou",{"_index":5190,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["variu",{"_index":10523,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vault",{"_index":7569,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["vb",{"_index":8323,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vb.cpu",{"_index":8326,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vb.custom",{"_index":8327,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vb.memori",{"_index":8324,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["vboxnet1",{"_index":8052,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["vc.ru",{"_index":11845,"title":{},"content":{"/p/publications":{}},"description":{}}],["vec",{"_index":5802,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["vector",{"_index":5795,"title":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["vector2d",{"_index":5801,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["veeam",{"_index":6412,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["vehicula",{"_index":10522,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vel",{"_index":10541,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["velero",{"_index":6409,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["velit",{"_index":10591,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vendor",{"_index":8029,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["venenati",{"_index":10594,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vercel",{"_index":11090,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["veri",{"_index":11009,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["verifi",{"_index":9972,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["verifyparam",{"_index":9973,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["version",{"_index":1365,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{},"/apps/brewmate/":{}},"description":{}}],["version=1.21.2",{"_index":6490,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["vertic",{"_index":10629,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["vestibulum",{"_index":10568,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vet",{"_index":5197,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["vexpert",{"_index":9516,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["vi",{"_index":11433,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["via",{"_index":5188,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["video",{"_index":292,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day26":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["videocamera",{"_index":669,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["videoel",{"_index":747,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["videoelement.srcobject",{"_index":749,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["videoinput",{"_index":653,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["view",{"_index":10253,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["vim",{"_index":9706,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["vintag",{"_index":11943,"title":{"/_home/vintage":{}},"content":{},"description":{}}],["vio",{"_index":9487,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["virl",{"_index":9486,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["virtual",{"_index":8300,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["virtualbox",{"_index":7800,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["virtualbox.tf",{"_index":8036,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["virtualbox_vm",{"_index":8041,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["virtualis",{"_index":9521,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["virtualnetworknam",{"_index":9007,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["visibl",{"_index":1558,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/posts/docker-commands/":{}},"description":{}}],["visual",{"_index":3311,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["visualis",{"_index":10258,"title":{},"content":{"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{}},"description":{}}],["vita",{"_index":10538,"title":{},"content":{"/posts/featured-image":{},"/posts/markdown-syntax/":{}},"description":{}}],["viverra",{"_index":10570,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vlan",{"_index":9423,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["vm",{"_index":7892,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["vm0",{"_index":9101,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmcopi",{"_index":9019,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmcount",{"_index":9005,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmname",{"_index":9003,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmsize",{"_index":8995,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vmss",{"_index":9263,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["vmware",{"_index":8064,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["vnet0",{"_index":9104,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vnetipprefix",{"_index":9109,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["vnutrennih",{"_index":11765,"title":{},"content":{"/p/publications":{}},"description":{}}],["volum",{"_index":7398,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/docker-commands/":{}},"description":{}}],["volume.yml",{"_index":7435,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["volumemount",{"_index":7394,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["volumesnapshot",{"_index":6670,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["volumesnapshotclass",{"_index":6672,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["volumesnapshots,csi",{"_index":6485,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["volutpat",{"_index":10577,"title":{},"content":{"/posts/featured-image":{}},"description":{}}],["vowel",{"_index":6146,"title":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["vpc",{"_index":5135,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["vram",{"_index":9906,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["vs",{"_index":5024,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{}},"description":{}}],["vscode",{"_index":3708,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["vsphere",{"_index":8279,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["vt",{"_index":9523,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["vzilla",{"_index":8757,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["w",{"_index":2692,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["waf",{"_index":5145,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["wait",{"_index":2713,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day36":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["walkthrough",{"_index":6477,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["want",{"_index":10109,"title":{},"content":{"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/curator/README":{}},"description":{}}],["warn",{"_index":2823,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["watch",{"_index":8778,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["watcher",{"_index":9089,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["water",{"_index":6013,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["waterfal",{"_index":10196,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["way",{"_index":5407,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day01":{},"/posts/emoji-support":{}},"description":{}}],["web",{"_index":424,"title":{"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{},"/posts/interactivebrokers-deposit/":{},"/p/publications":{},"/apps/_index":{}},"description":{"/tracks/90daysofdevops/day18":{}}}],["web/tablet/mobil",{"_index":11930,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["web01",{"_index":7706,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["web01.yml",{"_index":7652,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["web01:8000",{"_index":7734,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["web02",{"_index":7707,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["web1",{"_index":8520,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["webapp",{"_index":9145,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["webapp.defaulthostnam",{"_index":9150,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["webapp1",{"_index":9172,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["webassembl",{"_index":11001,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["webhook",{"_index":7345,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["webprefer",{"_index":11479,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["webrequest",{"_index":9148,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["webrtc",{"_index":12,"title":{"/tracks/webrtc/testing":{},"/tracks/webrtc/_index":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}}}],["webrtc.org",{"_index":1194,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["webserv",{"_index":7611,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["websit",{"_index":5072,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["website::tag::1",{"_index":8099,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["websocket",{"_index":1438,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["welcom",{"_index":7618,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["well",{"_index":5199,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["west",{"_index":3904,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["wget",{"_index":9680,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["what'",{"_index":6411,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["wherei",{"_index":10289,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["whether",{"_index":5787,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["while(p",{"_index":2253,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["white",{"_index":8876,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["whitepap",{"_index":5210,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["whl",{"_index":11033,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["whoami",{"_index":9839,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["whole",{"_index":10360,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["wi",{"_index":9613,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["width",{"_index":729,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["width(self",{"_index":2538,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["width.sett",{"_index":2540,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["width:650px",{"_index":10631,"title":{},"content":{"/posts/emoji-support":{}},"description":{}}],["wiki",{"_index":6318,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["win",{"_index":2670,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.loadurl",{"_index":11481,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.webcontents.opendevtool",{"_index":11485,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["window",{"_index":843,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["window.localconnect",{"_index":1559,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["window.location.assign(newurl",{"_index":11383,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.href",{"_index":11376,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.replac",{"_index":11377,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.replace(newurl",{"_index":11382,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.location.replace(url",{"_index":11386,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["window.remoteconnect",{"_index":1570,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["window.room",{"_index":1339,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["windowsconfigur",{"_index":9031,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["windowsserv",{"_index":9039,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["winget",{"_index":8934,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["winmerg",{"_index":8800,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["winop",{"_index":9887,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["wire",{"_index":11233,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["wireshark",{"_index":9480,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["wish",{"_index":10186,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["with_item",{"_index":7669,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{}},"description":{}}],["withbundleanalyz",{"_index":11110,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["without",{"_index":1895,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/logspout/README":{}},"description":{}}],["wm1",{"_index":11650,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["woof",{"_index":3869,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["word",{"_index":2090,"title":{"/tracks/algorithms-101/leetcode/medium/151":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["word1",{"_index":6177,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word2",{"_index":6178,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["wordpress",{"_index":7999,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["wordpress.tf",{"_index":8000,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress:latest",{"_index":8013,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_data",{"_index":8576,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_data:/var/www/html",{"_index":8570,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_host",{"_index":8572,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_host=db:3306",{"_index":8014,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_db_nam",{"_index":8575,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_name=wordpress",{"_index":8016,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_db_password",{"_index":8574,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_password=wordpress",{"_index":8017,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_db_us",{"_index":8573,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["wordpress_db_user=wordpress",{"_index":8015,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_net",{"_index":8005,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpress_port",{"_index":8001,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["wordpressdb",{"_index":9742,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["words.revers",{"_index":5448,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["work",{"_index":989,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["work/index.html",{"_index":1525,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["workdir",{"_index":8615,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["worker",{"_index":8283,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["worker.thread",{"_index":10439,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["workflow",{"_index":7279,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["workflow_dispatch",{"_index":11088,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["workflow_nam",{"_index":7311,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["workshop",{"_index":5160,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["workspac",{"_index":7977,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["workstat",{"_index":9479,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["world",{"_index":2099,"title":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}}}],["worm",{"_index":11224,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["worri",{"_index":9708,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["wq",{"_index":9761,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["wrap",{"_index":7369,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/posts/python-snippets/":{}},"description":{}}],["wrapper",{"_index":2087,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["wrapper(arg",{"_index":3289,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["wrapper(arg1",{"_index":2109,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["wraps(target_funct",{"_index":10985,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wright",{"_index":10035,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["write",{"_index":2906,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day15":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["write_ptr",{"_index":5539,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["wrong",{"_index":10306,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["ws",{"_index":9277,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["wsl",{"_index":8208,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["wsl2",{"_index":7020,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["www.90daysofdevops.com",{"_index":8519,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["wx",{"_index":9873,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["x",{"_index":1749,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/math-support":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["x%2",{"_index":2144,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x(self",{"_index":3265,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["x**2",{"_index":2136,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["x*x",{"_index":3804,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["x,i",{"_index":2147,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x.next",{"_index":2254,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x/ept",{"_index":9524,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["x100",{"_index":9313,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["x86",{"_index":5243,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["x:x**2",{"_index":2141,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["x=5",{"_index":10824,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["xarg",{"_index":9882,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["xcxgj8mqxslg",{"_index":11734,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["xf",{"_index":11663,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xi",{"_index":7214,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["xii",{"_index":11755,"title":{},"content":{"/p/publications":{}},"description":{}}],["xix",{"_index":4982,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["xjf",{"_index":11680,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xlrd",{"_index":9477,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["xm",{"_index":6214,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["xml",{"_index":8555,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["xmlrpc",{"_index":9747,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["xn",{"_index":6213,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/markdown-syntax/":{}},"description":{}}],["xpack.security.authc.api_key.en",{"_index":10423,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/enterprise-search/README":{}},"description":{}}],["xr",{"_index":11672,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xrang",{"_index":2205,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["xrange(1",{"_index":2216,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["xrange(1,10",{"_index":2215,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["xrange(10",{"_index":2212,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["xv",{"_index":4888,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["xvf",{"_index":9753,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["xvi",{"_index":4890,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["xvii",{"_index":4904,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["xzf",{"_index":11676,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["y",{"_index":2146,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["yaml",{"_index":6684,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day07":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["yamlfil",{"_index":7361,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["yarn",{"_index":11118,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ye",{"_index":7613,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day18":{},"/apps/brewmate/":{}},"description":{}}],["year",{"_index":2835,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["yesterday",{"_index":2867,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["yield",{"_index":2208,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/posts/python-snippets/":{}},"description":{}}],["yml.html",{"_index":10380,"title":{},"content":{"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/metricbeat/README":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/filebeat/README":{}},"description":{}}],["yn",{"_index":11216,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["york",{"_index":3368,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["youtub",{"_index":5177,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["you’ll",{"_index":5032,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["yum",{"_index":8085,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["yy",{"_index":9766,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["yyyi",{"_index":10675,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["z",{"_index":1762,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/Monitoring/Elastic Stack/extensions/apm-server/README":{},"/posts/python-snippets/":{}},"description":{}}],["zabbix",{"_index":7211,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["zero",{"_index":6159,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["zerodivisionerror",{"_index":3757,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["zfill",{"_index":3490,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["zigzag",{"_index":6004,"title":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["zip",{"_index":1492,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["zip(a,b",{"_index":2148,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["zn",{"_index":11217,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["zoom",{"_index":10177,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoom.on('detach",{"_index":11328,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoom.on('open",{"_index":11324,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoombackground",{"_index":11309,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomdefault",{"_index":11306,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomin",{"_index":11298,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoommargin",{"_index":11308,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomscrolloffset",{"_index":11311,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach",{"_index":11318,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.detach",{"_index":11320,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.on('clos",{"_index":11319,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigg",{"_index":11313,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigger.open",{"_index":11316,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zotero",{"_index":3941,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["zsh",{"_index":9673,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["zsh_custom/plugins/zsh",{"_index":9687,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["zshrc",{"_index":9669,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["а",{"_index":356,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["а.смит",{"_index":4968,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["аббревиатур",{"_index":531,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["абзац",{"_index":11156,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["абсолютн",{"_index":4071,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day37":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["абстрагир",{"_index":8405,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["абстрагирова",{"_index":1032,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["абстрагирует",{"_index":9237,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["абстрактн",{"_index":5703,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["абстракц",{"_index":3014,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["авар",{"_index":9215,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["аварийн",{"_index":6357,"title":{"/tracks/90daysofdevops/day89":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["август",{"_index":131,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["австрийск",{"_index":11586,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["автобус",{"_index":10113,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["автозаполнен",{"_index":9848,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["автозапуска",{"_index":8679,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["автоматизац",{"_index":6399,"title":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day19/":{}}}],["автоматизир",{"_index":7553,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["автоматизирова",{"_index":6400,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["автоматизиру",{"_index":7504,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["автоматическ",{"_index":261,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["автомобилестроен",{"_index":4831,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["автономн",{"_index":296,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["автоперезагрузк",{"_index":8681,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["автор",{"_index":3916,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["авторизац",{"_index":9140,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["авторизова",{"_index":2741,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["авторск",{"_index":4763,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["авторств",{"_index":11177,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["агент",{"_index":7129,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["агентств",{"_index":11691,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["агностическ",{"_index":8408,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["агрегац",{"_index":7150,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["агрегирова",{"_index":5556,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["ад",{"_index":4069,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["адам",{"_index":4947,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["адаптац",{"_index":10223,"title":{},"content":{"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["адаптер",{"_index":7834,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["адаптирова",{"_index":48,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["адвалорн",{"_index":4563,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["аддон",{"_index":6669,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["административн",{"_index":3103,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day47":{},"/p/privacy_ru":{}},"description":{}}],["администратор",{"_index":6919,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["администрац",{"_index":11898,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["администрирова",{"_index":9888,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["администрирован",{"_index":8399,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["адрес",{"_index":1110,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day12":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["адресац",{"_index":9637,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["адресн",{"_index":1013,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["аз",{"_index":4209,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["аккаунт",{"_index":5260,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["аккурат",{"_index":7290,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["аккуратн",{"_index":7703,"title":{},"content":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["акт",{"_index":3958,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["актив",{"_index":4141,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day39":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["активирова",{"_index":9262,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["активн",{"_index":4480,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day07":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["актуальн",{"_index":818,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["акц",{"_index":11617,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["акцент",{"_index":8561,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ал",{"_index":11696,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["алгоритм",{"_index":3281,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["алис",{"_index":1082,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["алфавитн",{"_index":3949,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["альтернат",{"_index":1064,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["альтернатив",{"_index":1312,"title":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["альтернативн",{"_index":1434,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["амбициозн",{"_index":8643,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["америк",{"_index":4487,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["американск",{"_index":4188,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["амортизац",{"_index":7743,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["ан­ти­дем­пин­го­в",{"_index":4695,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["анализ",{"_index":60,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["анализатор",{"_index":7922,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["анализир",{"_index":7131,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["анализирова",{"_index":7059,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["аналитик",{"_index":6937,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["аналитическ",{"_index":7121,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["аналог",{"_index":8242,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["аналогичн",{"_index":831,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["анатольевн",{"_index":4215,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["анатом",{"_index":8589,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["англ",{"_index":4927,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["английск",{"_index":9626,"title":{},"content":{"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["андроид",{"_index":1603,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["андронов",{"_index":4223,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["аннотац",{"_index":3889,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/posts/markdown-syntax/":{}},"description":{}}],["аннотирова",{"_index":6671,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["анонимн",{"_index":2169,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["анонсирова",{"_index":10993,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["анотац",{"_index":3895,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["антидемпингов",{"_index":4628,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["аппаратн",{"_index":8407,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["аргумент",{"_index":1100,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["аренд",{"_index":11723,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["арендатор",{"_index":9281,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["арифметическ",{"_index":2841,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/posts/trading-indicators/sma":{}},"description":{}}],["армен",{"_index":4780,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["арт",{"_index":10293,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["артефакт",{"_index":6395,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["арх",{"_index":5339,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day37":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["архив",{"_index":9226,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["архиватор",{"_index":11660,"title":{"/posts/cheat-sheet-command-tar/":{}},"content":{},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["архивн",{"_index":9230,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["архитектор/инженер",{"_index":10207,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["архитектур",{"_index":1451,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/p/publications":{}},"description":{}}],["асеа",{"_index":4210,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["асинхрон",{"_index":436,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["аск",{"_index":10292,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["аспект",{"_index":3305,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["аспирант",{"_index":4055,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/p/publications":{}},"description":{}}],["ассоциативн",{"_index":10778,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ассоциир",{"_index":4864,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["астероид",{"_index":5455,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["атак",{"_index":6727,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["атрибут",{"_index":63,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["ауд",{"_index":78,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["аудиодорожек",{"_index":39,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["аутентификац",{"_index":2723,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["аутентифицир",{"_index":9589,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["аутентифицирова",{"_index":6798,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["африк",{"_index":4211,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["аффлек",{"_index":10965,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["б",{"_index":163,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ба",{"_index":4310,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["баз",{"_index":425,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/install":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["базов",{"_index":1484,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/privacy_ru":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["байт",{"_index":966,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["байткод",{"_index":2273,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["баланс",{"_index":4232,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["балансир",{"_index":8162,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["балансировк",{"_index":5322,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["балансировщик",{"_index":5360,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["балл",{"_index":6692,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["бам",{"_index":10918,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["бан",{"_index":5476,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["банк",{"_index":4189,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/posts/interactivebrokers-deposit/":{},"/p/репатриация":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["банковск",{"_index":6867,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["баннер",{"_index":9778,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["барь­е­р",{"_index":4705,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["барьер",{"_index":4117,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["бахайск",{"_index":11685,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["бд",{"_index":7132,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["бегун",{"_index":7274,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["бегунк",{"_index":7273,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["бегунок",{"_index":7275,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["бедн",{"_index":4326,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["бедност",{"_index":4249,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["бедств",{"_index":4352,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["беж",{"_index":9712,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["беззнаков",{"_index":10082,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["безопас",{"_index":1607,"title":{},"content":{"/tracks/webrtc/practice/_index":{}},"description":{}}],["безопасн",{"_index":1610,"title":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{}},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day30":{}}}],["безотказн",{"_index":10136,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["безработиц",{"_index":11592,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["безымя",{"_index":3239,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{}},"description":{}}],["бел",{"_index":7160,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["беларус",{"_index":4778,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["бен",{"_index":10964,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["бер",{"_index":5601,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["берет",{"_index":466,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["берут",{"_index":10135,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["бесед",{"_index":4053,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["бесконечн",{"_index":7482,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["бесплатн",{"_index":3699,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["беспоко",{"_index":8691,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["бесполезн",{"_index":8955,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["беспрепятствен",{"_index":7509,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["беспроигрышн",{"_index":4934,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["бессерверн",{"_index":5237,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["бет",{"_index":130,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["библиограф",{"_index":4026,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["библиографическ",{"_index":3935,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["библиотек",{"_index":1302,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["бизнес",{"_index":4423,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/publications":{}},"description":{}}],["билд",{"_index":11124,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["бинарн",{"_index":5550,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day16":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}}}],["бинарник",{"_index":8355,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["биос",{"_index":7632,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["бирж",{"_index":4386,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["бит",{"_index":7134,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["бит.наук",{"_index":3930,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["битов",{"_index":6242,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["бла­го­при­ят­н",{"_index":4603,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["благодар",{"_index":1310,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["благодарн",{"_index":10063,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["благоразумн",{"_index":4951,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["благосостоян",{"_index":4900,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ближ",{"_index":5004,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["ближайш",{"_index":6525,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["близ­к",{"_index":4643,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["близк",{"_index":804,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["близнец",{"_index":5915,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{}},"description":{}}],["близок",{"_index":9254,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["блог",{"_index":8211,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["блок",{"_index":1741,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["блокир",{"_index":2621,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["блокирован",{"_index":11868,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["блокировк",{"_index":2608,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["блочн",{"_index":9217,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["бо­л",{"_index":4602,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["боб",{"_index":1083,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["богат",{"_index":4854,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["богатств",{"_index":4924,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["боков",{"_index":6708,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["бокс",{"_index":8304,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["бол",{"_index":7824,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["болев",{"_index":8670,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["болееширок",{"_index":4282,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["болезнен",{"_index":10132,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["больничан",{"_index":11726,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["больш",{"_index":909,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["большимчисл",{"_index":4306,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["большинств",{"_index":192,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["бонус",{"_index":9853,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["бонусн",{"_index":1022,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["борьб",{"_index":4783,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["бот",{"_index":9916,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["бразил",{"_index":4491,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["брандмауэр",{"_index":1105,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["брат",{"_index":8585,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/p/репатриация":{}},"description":{}}],["браузер",{"_index":265,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["брейкпоинт",{"_index":3303,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{}},"description":{}}],["брем",{"_index":9359,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["бренд",{"_index":9314,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["бреттон",{"_index":4162,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["британск",{"_index":4393,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["бриф",{"_index":6373,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["брокер",{"_index":4570,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["брокерск",{"_index":4401,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["броса",{"_index":10112,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["бросьт",{"_index":162,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["будуч",{"_index":1673,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["будущ",{"_index":1207,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["будьт",{"_index":8113,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["букв",{"_index":5597,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["буквальн",{"_index":3835,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["буквен",{"_index":2596,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["буклет",{"_index":4261,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["булев",{"_index":1830,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["бумаг",{"_index":4381,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["бункер",{"_index":10133,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["бутылк",{"_index":4995,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["буферизац",{"_index":7044,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["бы­л",{"_index":4671,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["быва",{"_index":8754,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["быстр",{"_index":1639,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["быстродейств",{"_index":3066,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["быстрот",{"_index":3104,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["быч",{"_index":10665,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["бэк",{"_index":7159,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["бэкграунд",{"_index":8438,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["бэкенд",{"_index":6886,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["бэтм",{"_index":10966,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["бюджет",{"_index":4297,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["бюрократ",{"_index":4517,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["в1945",{"_index":4277,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["важ",{"_index":1725,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["важн",{"_index":1592,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["важност",{"_index":7511,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вак",{"_index":11740,"title":{},"content":{"/p/publications":{}},"description":{}}],["валерьевн",{"_index":4108,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["валидац",{"_index":3098,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["валидн",{"_index":7531,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["валют",{"_index":4149,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["валютн",{"_index":4144,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/economics/diff-forward-contracts-futures":{}}}],["ванильн",{"_index":7053,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["вараинт",{"_index":10326,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вариант",{"_index":217,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["варк",{"_index":5272,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ваш",{"_index":230,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["вв",{"_index":4882,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["введ",{"_index":1245,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["введен",{"_index":3666,"title":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{}},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["введет",{"_index":7442,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["ввел",{"_index":10075,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["вверх",{"_index":3707,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["ввест",{"_index":1423,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["ввод",{"_index":1536,"title":{"/tracks/python-101/basis/inputs":{}},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["ввода/вывод",{"_index":2653,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["вводн",{"_index":10276,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{"/tracks/90daysofdevops/_index":{}}}],["ввоз",{"_index":4622,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ввп",{"_index":4817,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["вдав",{"_index":9250,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["вдава",{"_index":8985,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["веб",{"_index":431,"title":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["вед",{"_index":8645,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["веден",{"_index":4751,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["ведет",{"_index":2265,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ведр",{"_index":6447,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["ведут",{"_index":10354,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ведущ",{"_index":7495,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["век",{"_index":4891,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["вектор",{"_index":5796,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["велик",{"_index":8660,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["великобритан",{"_index":4469,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["великородн",{"_index":11757,"title":{},"content":{"/p/publications":{}},"description":{}}],["величин",{"_index":5906,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["велосипед",{"_index":6998,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{}},"description":{}}],["велосипедист",{"_index":6193,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["вентилятор",{"_index":9821,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["вер",{"_index":8789,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["верн",{"_index":5524,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["вернет",{"_index":2600,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/posts/python-snippets/":{}},"description":{}}],["вернувш",{"_index":5350,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вернул",{"_index":3238,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["вернут",{"_index":158,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["вернём",{"_index":8712,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["вернёт",{"_index":5778,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["вероятн",{"_index":1912,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["верс",{"_index":105,"title":{"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}}}],["версиониру",{"_index":7541,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вертикал",{"_index":10119,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["верх",{"_index":8601,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["верхн",{"_index":1362,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["вершин",{"_index":5938,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["весел",{"_index":3351,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["веск",{"_index":7065,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["вест",{"_index":2981,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["весьм",{"_index":8816,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ветв",{"_index":6232,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["ветвлен",{"_index":8962,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["ветк",{"_index":7535,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["веток",{"_index":8797,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["ветроэнергетик",{"_index":4843,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["вечеринк",{"_index":8198,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["вечн",{"_index":7515,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вещ",{"_index":3394,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["веществен",{"_index":3608,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["вжит",{"_index":8668,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["взаимн",{"_index":4992,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["взаимодейств",{"_index":1057,"title":{"/tracks/90daysofdevops/day47":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/external_packages/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["взаимодействова",{"_index":1121,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["взаимодействует",{"_index":10104,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["взаимодейтв",{"_index":10216,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["взаимозависим",{"_index":1911,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["взаимозаменя",{"_index":8462,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["взаимозаменяем",{"_index":8161,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["взаимосвяз",{"_index":1276,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["взвешен",{"_index":4302,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["взгляд",{"_index":9271,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["взглян",{"_index":7277,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["взглянув",{"_index":7350,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["взглянут",{"_index":7034,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["взима",{"_index":4569,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["взлет",{"_index":8673,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["взлом",{"_index":7314,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["взяв",{"_index":6648,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["взял",{"_index":6659,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/p/репатриация":{}},"description":{}}],["взят",{"_index":2004,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["вид",{"_index":219,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["виде",{"_index":293,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["видел",{"_index":1361,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["видениус",{"_index":6857,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["видеоаппаратур",{"_index":9890,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["видеодорожек",{"_index":40,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["видеодорожк",{"_index":79,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["видеокадр",{"_index":954,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["видеоматериал",{"_index":1137,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["видеопамя",{"_index":9908,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["видеопоток",{"_index":941,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["видеоролик",{"_index":7259,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["видеоформат",{"_index":7605,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["видеочат",{"_index":1084,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["видеоэлемент",{"_index":1044,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["видет",{"_index":1266,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["виджет",{"_index":6985,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["видим",{"_index":1244,"title":{"/tracks/python-101/basis/scope":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["видн",{"_index":6466,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["виж",{"_index":7064,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["визуализац",{"_index":3196,"title":{"/tracks/90daysofdevops/day83":{}},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["визуализирова",{"_index":6167,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["визуальн",{"_index":7590,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["вик",{"_index":4576,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["википед",{"_index":4575,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вин",{"_index":4986,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["виновник",{"_index":6910,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["винтик",{"_index":6914,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["виртуализац",{"_index":8032,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["виртуальн",{"_index":2277,"title":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day26":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["вирутальн",{"_index":11404,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["витальевн",{"_index":4224,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вклад",{"_index":1736,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["вкладк",{"_index":1015,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["вкладок",{"_index":1433,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["вкладыва",{"_index":10330,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["включ",{"_index":264,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["включа",{"_index":29,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["включен",{"_index":5388,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["включительн",{"_index":5983,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["вкратц",{"_index":8360,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["владелец",{"_index":9304,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["владельц",{"_index":7528,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["владен",{"_index":3342,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["владимирович",{"_index":4198,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["влев",{"_index":1520,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}},"description":{}}],["влекут",{"_index":11244,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["влия",{"_index":4158,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["влиян",{"_index":4207,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day06":{},"/p/publications":{}},"description":{}}],["влож",{"_index":10349,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["вложен",{"_index":2103,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{}}}],["вм",{"_index":7813,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["вмест",{"_index":756,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["вместим",{"_index":6016,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["вмешательств",{"_index":4886,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["вмешива",{"_index":4969,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["вне",{"_index":1764,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/p/privacy_ru":{}},"description":{}}],["внедр",{"_index":10120,"title":{},"content":{"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["внедрен",{"_index":115,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["внедря",{"_index":8263,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["внезапн",{"_index":4338,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["внеполосн",{"_index":7899,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["внес",{"_index":5291,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["внесен",{"_index":7854,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day17":{},"/posts/integrate-hugo-react/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["внесетев",{"_index":6792,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["внесл",{"_index":7243,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["внест",{"_index":6700,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["внесён",{"_index":8830,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["внеш­н",{"_index":4585,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["внешн",{"_index":530,"title":{"/tracks/python-101/external_packages/_index":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["внешнеторгов",{"_index":4066,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["внешнеэкономическ",{"_index":4237,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вник",{"_index":8659,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["вниман",{"_index":377,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["внимательн",{"_index":7226,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["внов",{"_index":557,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["внос",{"_index":4830,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["вносим",{"_index":8603,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["внутр",{"_index":1745,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["внутрен",{"_index":1774,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/p/publications":{}},"description":{}}],["вовлеч",{"_index":10336,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["воврем",{"_index":3914,"title":{},"content":{"/tracks/disser/_index":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["вод",{"_index":6015,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["водопад",{"_index":10195,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["воедин",{"_index":8965,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["воен",{"_index":4356,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["воз",{"_index":8512,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["воз­дей­ст­во­ва",{"_index":4591,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["возбужда",{"_index":3549,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["возведен",{"_index":3590,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/posts/python-snippets/":{}},"description":{}}],["возвод",{"_index":3688,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["возвра",{"_index":6747,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["возврат",{"_index":2244,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{}},"description":{}}],["возвращ",{"_index":7153,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["возвраща",{"_index":606,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["возвращен",{"_index":834,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["возвышен",{"_index":8908,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["воздейств",{"_index":4708,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["воздержа",{"_index":1944,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["воздух",{"_index":8035,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["возлож",{"_index":8433,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["возможн",{"_index":288,"title":{"/tracks/python-101/enhance_python/_index":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["возможностьполучен",{"_index":4316,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["возника",{"_index":3636,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["возникл",{"_index":1465,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["возникнет",{"_index":2483,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["возникновен",{"_index":166,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["возникнут",{"_index":1822,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["возобновлен",{"_index":2930,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["возраст",{"_index":3674,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["возраста",{"_index":5662,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{}}}],["возрастан",{"_index":3646,"title":{},"content":{"/tracks/python-101/basis/lists":{}},"description":{}}],["возрожден",{"_index":9365,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["возрождён",{"_index":10279,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["возьм",{"_index":6095,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["возьмет",{"_index":8170,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["войд",{"_index":8271,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["войдет",{"_index":9491,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["войн",{"_index":4936,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["войт",{"_index":5314,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["волатильн",{"_index":4454,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["волгин",{"_index":4214,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["волн",{"_index":6590,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["волшебн",{"_index":8236,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["волшебств",{"_index":7527,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["воображен",{"_index":10217,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["вообщ",{"_index":3722,"title":{},"content":{"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["вообще»1",{"_index":11572,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["вопрос",{"_index":1287,"title":{"/tracks/python-101/top-questions/":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{}}}],["воспользова",{"_index":819,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["воспользу",{"_index":5315,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["воспоминан",{"_index":10128,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["воспринима",{"_index":6866,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["восприят",{"_index":11584,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["воспроизведен",{"_index":743,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["воспроизвод",{"_index":853,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["воссоздан",{"_index":2239,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["восстанавлива",{"_index":4510,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["восстанов",{"_index":6394,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["восстановл",{"_index":6508,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["восстановлен",{"_index":3272,"title":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{}},"description":{"/tracks/90daysofdevops/day39":{}}}],["восточн",{"_index":9092,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["востребова",{"_index":10107,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["восхищен",{"_index":6935,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["восходя",{"_index":8420,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/posts/trading-indicators/sma":{}},"description":{}}],["восьмеричн",{"_index":1847,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["вошел",{"_index":6795,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["впаст",{"_index":6763,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["вперв",{"_index":1232,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["вперед",{"_index":5707,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["впита",{"_index":10285,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["вплет",{"_index":7561,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вполн",{"_index":9299,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{}},"description":{}}],["впоследств",{"_index":2228,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["вправ",{"_index":1521,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/p/privacy_ru":{}},"description":{}}],["врем",{"_index":6081,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["времен",{"_index":33,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["врод",{"_index":6710,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{}},"description":{}}],["вруч",{"_index":9335,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["вручн",{"_index":7161,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["вряд",{"_index":4958,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["все",{"_index":1776,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["все­мир­н",{"_index":4680,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["всевозможн",{"_index":7631,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["всемирн",{"_index":2886,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["всемирныйбанк",{"_index":4283,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["всеобъемлющ",{"_index":9651,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["всероссийск",{"_index":11819,"title":{},"content":{"/p/publications":{}},"description":{}}],["вскор",{"_index":6789,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["вслед",{"_index":9253,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["вследств",{"_index":4337,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вслух",{"_index":4044,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["всплеск",{"_index":9258,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["всплыва",{"_index":277,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вспомн",{"_index":8142,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["вспомогательн",{"_index":7929,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["встав",{"_index":3306,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["вставк",{"_index":6735,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/posts/markdown-syntax/":{}},"description":{}}],["вставл",{"_index":3715,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["вставля",{"_index":3544,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day35":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["вставьт",{"_index":9768,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["встал",{"_index":9349,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["встраива",{"_index":8450,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["встрет",{"_index":5661,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["встреч",{"_index":5740,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["встреча",{"_index":3391,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/posts/python-snippets/":{}},"description":{}}],["встро",{"_index":6754,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["встроен",{"_index":755,"title":{"/posts/pyscript-python-embedded-in-html/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/posts/pyscript-python-embedded-in-html/":{}}}],["вступа",{"_index":9602,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["вступительн",{"_index":7506,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["вступлен",{"_index":4124,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["всяк",{"_index":8956,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/p/репатриация":{}},"description":{}}],["втк",{"_index":4821,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["вто",{"_index":4119,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["втор",{"_index":1320,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["вторичк",{"_index":11715,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["ву",{"_index":4700,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вудск",{"_index":4163,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вход",{"_index":2929,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/trading-indicators/sma":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["входн",{"_index":3156,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{}},"description":{}}],["входя",{"_index":506,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["вхожден",{"_index":3389,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/python-snippets/":{}},"description":{}}],["вчер",{"_index":7987,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["вчерашн",{"_index":6476,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["вшэ",{"_index":4060,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["въезд",{"_index":4771,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вы­де­ле­н",{"_index":4663,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["вы­ра­зи­л",{"_index":4677,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["выбер",{"_index":1430,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["выберет",{"_index":6468,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["выбир",{"_index":10760,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["выбира",{"_index":1426,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["выбор",{"_index":1240,"title":{"/tracks/90daysofdevops/day50":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["выборк",{"_index":5908,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{}}],["выборочн",{"_index":4045,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["выбра",{"_index":648,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/frameworks/flask":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["выбрас",{"_index":10902,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["выбрасыва",{"_index":8149,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/posts/python-snippets/":{}},"description":{}}],["выброс",{"_index":8595,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{}},"description":{}}],["вывед",{"_index":3630,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["выведет",{"_index":1710,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["вывел",{"_index":2580,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["вывест",{"_index":3537,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["вывод",{"_index":1447,"title":{"/tracks/webrtc/practice/practice-results":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["выводя",{"_index":11027,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["вывоз",{"_index":4787,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["выгляд",{"_index":1187,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["выглядел",{"_index":6503,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["выглядет",{"_index":1059,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["выглядя",{"_index":10053,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["выгод",{"_index":4549,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["выгодн",{"_index":4984,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["выгрзук",{"_index":10159,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["выгруат",{"_index":10340,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выгруж",{"_index":2231,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выгрузк",{"_index":7302,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["выда",{"_index":1948,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["выдава",{"_index":11519,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["выдаст",{"_index":9999,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["выдач",{"_index":2209,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["выдел",{"_index":7151,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["выделен",{"_index":1524,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["выделя",{"_index":2034,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["выезд",{"_index":4772,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["выж",{"_index":8179,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["выз",{"_index":50,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/posts/python-snippets/":{}},"description":{}}],["вызва",{"_index":848,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/posts/python-snippets/":{}},"description":{}}],["вызов",{"_index":1078,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/p/publications":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["вызовет",{"_index":185,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["вызовут",{"_index":10202,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["вызыв",{"_index":3314,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day42":{},"/posts/python-snippets/":{}},"description":{}}],["вызыва",{"_index":477,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{}},"description":{}}],["выигра",{"_index":4996,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["выигрыва",{"_index":4940,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["выйдет",{"_index":6755,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["выйдут",{"_index":7224,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["выйт",{"_index":3624,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["выкладыва",{"_index":7555,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["выключ",{"_index":854,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["выключа",{"_index":8234,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["выключен",{"_index":8553,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["выкуп",{"_index":6722,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["выкупн",{"_index":6729,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["вылож",{"_index":7375,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["вынес",{"_index":11279,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["выносим",{"_index":4062,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["вынужден",{"_index":11066,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["выпада",{"_index":6386,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["выполн",{"_index":354,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["выполнен",{"_index":1036,"title":{"/tracks/90daysofdevops/day31":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day31":{}}}],["выполнено/н",{"_index":6530,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["выполня",{"_index":58,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["выпуск",{"_index":6909,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выпуска",{"_index":7349,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["выпуст",{"_index":7492,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["выпущ",{"_index":8967,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["выравнива",{"_index":11061,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["выравниван",{"_index":4078,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/markdown-syntax/":{}},"description":{}}],["выражен",{"_index":1085,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["выраз",{"_index":10062,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["выреза",{"_index":5856,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["вырезан",{"_index":9885,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["выслуша",{"_index":10108,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["высок",{"_index":4271,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["высокодоступн",{"_index":8445,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["высококачествен",{"_index":4865,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["высокопроизводительн",{"_index":3157,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["высокоразвит",{"_index":4855,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["высокоуровнев",{"_index":1670,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["высот",{"_index":721,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day59":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["выставлен",{"_index":9320,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["выставля",{"_index":7176,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["выстраива",{"_index":8688,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["выступа",{"_index":4776,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["высш",{"_index":3243,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/posts/python-snippets/":{}},"description":{}}],["выталкива",{"_index":6529,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["вытаскива",{"_index":5605,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["вытащ",{"_index":7138,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["вытека",{"_index":10174,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["выуч",{"_index":10100,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["выход",{"_index":2101,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["выходн",{"_index":7049,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["выходц",{"_index":8414,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["вычест",{"_index":6305,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["вычисл",{"_index":2973,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["вычислен",{"_index":2555,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/posts/python-snippets/":{}},"description":{}}],["вычислительн",{"_index":5238,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["вычисля",{"_index":10657,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["вычита",{"_index":6307,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["вычитан",{"_index":2843,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{}},"description":{}}],["выш",{"_index":107,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["вышедш",{"_index":8428,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["вышеизложен",{"_index":8654,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["вышел",{"_index":1992,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["вышеназва",{"_index":10761,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["вышеописа",{"_index":6809,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["вышеперечислен",{"_index":7127,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["вышеприведен",{"_index":7196,"title":{},"content":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["вышесказа",{"_index":6762,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["вышеуказа",{"_index":4034,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["вышеупомянут",{"_index":7432,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["вышл",{"_index":10803,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["выявлен",{"_index":2612,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/p/privacy_ru":{}},"description":{}}],["выясн",{"_index":404,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["выясня",{"_index":10333,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["гав",{"_index":3681,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["газ",{"_index":4509,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["газетн",{"_index":4049,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["гайд",{"_index":440,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["гайдлайн",{"_index":8852,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["галере",{"_index":9298,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["галк",{"_index":11423,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["галочк",{"_index":7326,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["гарантир",{"_index":2044,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["гарантирова",{"_index":2646,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["гарнитур",{"_index":673,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["гатт",{"_index":4761,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["гатт(генеральн",{"_index":4740,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["гб",{"_index":6769,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["гг",{"_index":11815,"title":{},"content":{"/p/publications":{}},"description":{}}],["гггг",{"_index":2827,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["гедонизм",{"_index":11559,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["генеральн",{"_index":4739,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["генератор",{"_index":1888,"title":{"/tracks/python-101/basis/comprehensions":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["генерац",{"_index":2593,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["генерир",{"_index":2206,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["генерирова",{"_index":2592,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["генерируем",{"_index":1859,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["генетическ",{"_index":11824,"title":{},"content":{"/p/publications":{}},"description":{}}],["географ",{"_index":4102,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["географическ",{"_index":4094,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["геозон",{"_index":9211,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["геоизбыточн",{"_index":9208,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["геополитическ",{"_index":4442,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["геопространствен",{"_index":7122,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["георепликац",{"_index":9213,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["герман",{"_index":4470,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["гетероген",{"_index":7869,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["геттер",{"_index":2526,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["гибк",{"_index":1621,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["гибкост",{"_index":8693,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["гигабайт",{"_index":5246,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["гигант",{"_index":7324,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["гигантск",{"_index":9607,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["гипервизор",{"_index":8299,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["гипермасштаб",{"_index":9369,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["гипермасштабер",{"_index":9355,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["гипермасштабир",{"_index":8401,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["гиперскейлер",{"_index":9356,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["гипертекст",{"_index":9593,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["гирлинг",{"_index":7594,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["гитхаб",{"_index":11079,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["глав",{"_index":2980,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["главенствова",{"_index":4908,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["главн",{"_index":3008,"title":{},"content":{"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["глагольн",{"_index":6732,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["гладк",{"_index":8473,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["глаз",{"_index":7227,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["гласн",{"_index":6147,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["глобализац",{"_index":4403,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["глобальн",{"_index":1243,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/posts/python-snippets/":{}},"description":{}}],["глосар",{"_index":4027,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["глубж",{"_index":6417,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["глубин",{"_index":5871,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day15":{}},"description":{"/tracks/algorithms-101/leetcode/easy/104/":{}}}],["глубок",{"_index":2189,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/howto-create-deepclone-js/":{}}}],["гниен",{"_index":7898,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["го",{"_index":3514,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day56":{},"/p/publications":{}},"description":{}}],["го­су­дар­ст­вен­ны­м",{"_index":4578,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["говор",{"_index":6425,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["год",{"_index":4091,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["года",{"_index":4322,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["годов",{"_index":4264,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["годудл",{"_index":4348,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["гол",{"_index":7750,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["голанг",{"_index":10089,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["голов",{"_index":3523,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["головн",{"_index":5702,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["головоломк",{"_index":7174,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["голос",{"_index":4304,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["голосова",{"_index":5475,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["голосован",{"_index":5510,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["гомосапиенс",{"_index":10868,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["гонк",{"_index":8950,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["гор",{"_index":7240,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["горазд",{"_index":554,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["горизонтальн",{"_index":6820,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["городск",{"_index":11823,"title":{},"content":{"/p/publications":{}},"description":{}}],["гост",{"_index":3967,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["гостев",{"_index":9259,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["государств",{"_index":4194,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["государствен",{"_index":4296,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["государствчлен",{"_index":4257,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["гот",{"_index":8811,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["готов",{"_index":519,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["готовн",{"_index":7022,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["гражданин",{"_index":11826,"title":{},"content":{"/p/publications":{}},"description":{}}],["гражданск",{"_index":11855,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["грамматическ",{"_index":6431,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["границ",{"_index":1908,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/posts/python-snippets/":{}},"description":{}}],["грант",{"_index":4333,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["гранулирова",{"_index":9285,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["граф",{"_index":5937,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["график",{"_index":3195,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["графическ",{"_index":6247,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["графов",{"_index":6869,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["громоздк",{"_index":6968,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["груз",{"_index":4725,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["групп",{"_index":4229,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["группировк",{"_index":7814,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["грустн",{"_index":10963,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["груш",{"_index":8665,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["грядк",{"_index":6119,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["грядут",{"_index":9677,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["грязн",{"_index":8957,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["гугл",{"_index":3898,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["гуманитарн",{"_index":3994,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["гущ",{"_index":8221,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["д",{"_index":3273,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{}},"description":{}}],["д.в",{"_index":11774,"title":{},"content":{"/p/publications":{}},"description":{}}],["д.э.н",{"_index":11770,"title":{},"content":{"/p/publications":{}},"description":{}}],["да",{"_index":10066,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["дава",{"_index":1786,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["давид",{"_index":4072,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["дад",{"_index":5394,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["дадут",{"_index":8423,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["дает",{"_index":272,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дайт",{"_index":2604,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["дал",{"_index":507,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/django":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/privacy_ru":{}},"description":{}}],["далек",{"_index":8528,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["дальн",{"_index":2926,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["дам",{"_index":9482,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["дан",{"_index":344,"title":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}}}],["даст",{"_index":3546,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["дат",{"_index":149,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["дают",{"_index":3964,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дающ",{"_index":8748,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["даёт",{"_index":8805,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/posts/docker-commands/":{}},"description":{}}],["дважд",{"_index":5916,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["две(",{"_index":11499,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["двер",{"_index":7320,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["двиг",{"_index":5741,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["двига",{"_index":5739,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["движ",{"_index":8303,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["движен",{"_index":4131,"title":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["движет",{"_index":5462,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["движк",{"_index":6876,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["движок",{"_index":8470,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["движут",{"_index":5456,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["движущ",{"_index":5458,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["двин",{"_index":10314,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["двоеточ",{"_index":3240,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{}},"description":{}}],["двоичн",{"_index":402,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["двойн",{"_index":1946,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/posts/python-snippets/":{}},"description":{}}],["двум",{"_index":864,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["двумерн",{"_index":5815,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["двунаправлен",{"_index":11004,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["двусмыслен",{"_index":2063,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["двухпроходн",{"_index":5782,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["дд",{"_index":2829,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["де",{"_index":4894,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["дебетован",{"_index":6868,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["дедуктивн",{"_index":11581,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["дедупирова",{"_index":6773,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["дедушк",{"_index":2388,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["дежурн",{"_index":7170,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["деинсталляц",{"_index":8680,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["действ",{"_index":1315,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["действен",{"_index":10238,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["действительн",{"_index":4373,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["действова",{"_index":8393,"title":{},"content":{"/tracks/90daysofdevops/day51":{}},"description":{}}],["декабр",{"_index":151,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/p/publications":{}},"description":{}}],["декларативн",{"_index":7236,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["декларирова",{"_index":8022,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["декодирова",{"_index":5590,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["декодирован",{"_index":5613,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["декоратор",{"_index":2078,"title":{"/tracks/python-101/enhance_python/decorators":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/_index":{},"/posts/python-snippets/":{}},"description":{}}],["декорац",{"_index":7753,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["декорирова",{"_index":3263,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["дел",{"_index":1053,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/p/репатриация":{}},"description":{}}],["дела",{"_index":141,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["делегирова",{"_index":9159,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["делен",{"_index":3588,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/python-snippets/":{}},"description":{}}],["делител",{"_index":6211,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["делов",{"_index":9562,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/p/privacy_ru":{}},"description":{}}],["дем",{"_index":1030,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["демограф",{"_index":4847,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["демон",{"_index":7026,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["демонстрац",{"_index":6449,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day10":{},"/posts/ruGPT-3-notes":{}},"description":{}}],["демонстрацион",{"_index":6470,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["демонстрир",{"_index":1077,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["демонстрирова",{"_index":8112,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["денег",{"_index":8350,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["денежн",{"_index":4360,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["денежнокредитн",{"_index":4299,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["день15",{"_index":9863,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["деньг",{"_index":4902,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day24":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["депенанс",{"_index":8609,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["депл",{"_index":10346,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дерев",{"_index":5551,"title":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day39":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}}}],["дериватив",{"_index":4430,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["дерьм",{"_index":9765,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["десериализ",{"_index":2238,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["десериализова",{"_index":2229,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["дескриптор",{"_index":3743,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["дестабилизир",{"_index":4339,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["десят",{"_index":7155,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["десятилет",{"_index":4485,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["десятичн",{"_index":1848,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["десятк",{"_index":7048,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["дет",{"_index":11707,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["дета",{"_index":8506,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["детал",{"_index":8020,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["детализирова",{"_index":6397,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["детальн",{"_index":59,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["дефакт",{"_index":8224,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["дешев",{"_index":4634,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["дешевл",{"_index":4909,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{}},"description":{}}],["деятел",{"_index":4929,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["деятельн",{"_index":4222,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day76":{}},"description":{}}],["джефф",{"_index":7593,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["джон",{"_index":11594,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["диа",{"_index":4147,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["диагностик",{"_index":2797,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["диагностирова",{"_index":7156,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["диаграмм",{"_index":6969,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["диалогов",{"_index":1507,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["диапазон",{"_index":796,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["дизайн",{"_index":1306,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["дик",{"_index":9318,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["дин",{"_index":7859,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["динамик",{"_index":674,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["динамическ",{"_index":1696,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["директор",{"_index":2659,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day10":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["диск",{"_index":6736,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дисков",{"_index":7223,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["дисконт",{"_index":11241,"title":{},"content":{"/p/репатриация":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["дискриминацион",{"_index":4631,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["дискриминир",{"_index":4724,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["дискуссион",{"_index":8768,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["диспетчер",{"_index":1372,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["диспле",{"_index":833,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["диссернет",{"_index":3888,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["диссертац",{"_index":3911,"title":{"/tracks/disser/_index":{}},"content":{},"description":{"/tracks/disser/_index":{}}}],["дистрибут",{"_index":3183,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["дистрибутив",{"_index":3702,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["дисциплин",{"_index":3356,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["диф­фе­рен­циа­ц",{"_index":4610,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["дифференциальн",{"_index":11554,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["длин",{"_index":2333,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["длинаисходногомассив",{"_index":6264,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["длит",{"_index":10070,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["длительн",{"_index":2925,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["дне",{"_index":4039,"title":{"/tracks/90daysofdevops/_index":{}},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["дневн",{"_index":10227,"title":{},"content":{"/tracks/90daysofdevops/day01":{},"/posts/trading-indicators/sma":{}},"description":{}}],["днем",{"_index":10047,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["дни",{"_index":6719,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["дня",{"_index":7463,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дням",{"_index":9370,"title":{},"content":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["до­ку­мен­т",{"_index":4679,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["доб",{"_index":1660,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["добав",{"_index":173,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["добавл",{"_index":361,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["добавлен",{"_index":359,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{}}],["добавля",{"_index":83,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["добавочн",{"_index":9567,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["добавьт",{"_index":564,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["добр",{"_index":9649,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["добра",{"_index":9577,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["добыч",{"_index":4476,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["довер",{"_index":4341,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["доверен",{"_index":9715,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["доверя",{"_index":8545,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["довол",{"_index":8707,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["довольн",{"_index":8132,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["догада",{"_index":7564,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["договарива",{"_index":4741,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["договор",{"_index":4408,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["договорен",{"_index":4307,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["дожд",{"_index":6053,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["дожда",{"_index":552,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/standard_library/threading":{}},"description":{}}],["дойд",{"_index":9269,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["докаж",{"_index":8823,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["доказыва",{"_index":6992,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["докер",{"_index":7330,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["доклад",{"_index":4526,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["документ",{"_index":1731,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/p/репатриация":{}},"description":{}}],["документальн",{"_index":4754,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["документац",{"_index":741,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{}}],["документацией/readm",{"_index":8886,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["документирова",{"_index":1732,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["документирован",{"_index":1999,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["дол",{"_index":4479,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["долг",{"_index":4193,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["долгов",{"_index":4185,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["долговечн",{"_index":6822,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["долговремен",{"_index":4327,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["долгоживущ",{"_index":8155,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["долгосрочн",{"_index":4284,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["долж",{"_index":472,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["должн",{"_index":74,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["должност",{"_index":10205,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["доллар",{"_index":4169,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["дом",{"_index":4954,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["домашн",{"_index":6983,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["домен",{"_index":9283,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["доминирова",{"_index":9368,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["донест",{"_index":7896,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["дополнен",{"_index":7126,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day20":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дополнительн",{"_index":1234,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["допуска",{"_index":1706,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["допуст",{"_index":3677,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["допустим",{"_index":2269,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day49":{},"/posts/markdown-syntax/":{}},"description":{}}],["допущ",{"_index":6707,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["дорабатыва",{"_index":7557,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["дорог",{"_index":4288,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["дорогостоя",{"_index":7342,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["дорож",{"_index":4911,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["дорожек",{"_index":360,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["дорожк",{"_index":98,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["дорожн",{"_index":8770,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["дос­тиг­ну­т",{"_index":4687,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["доск",{"_index":6871,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["дословн",{"_index":4005,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["доста",{"_index":847,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["доставк",{"_index":1591,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["доставка/непрерывн",{"_index":10362,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["доставля",{"_index":7510,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["достаточн",{"_index":1529,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day11":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["достиг",{"_index":6127,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["достига",{"_index":2410,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["достигл",{"_index":3746,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["достигнет",{"_index":4743,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["достигнут",{"_index":4538,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day50":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["достижен",{"_index":2299,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["достич",{"_index":6442,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["достоверн",{"_index":6864,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["достоинств",{"_index":11603,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["доступ",{"_index":245,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["доступн",{"_index":118,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["дотац",{"_index":4719,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["доход",{"_index":4554,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["доходн",{"_index":4452,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["доцент",{"_index":11793,"title":{},"content":{"/p/publications":{}},"description":{}}],["дочер",{"_index":6854,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["дочерн",{"_index":2367,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["дочита",{"_index":9703,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["дошл",{"_index":8062,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["др",{"_index":4384,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["драгоцен",{"_index":4884,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["драйвер",{"_index":8192,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["дракул",{"_index":9683,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["дробн",{"_index":3607,"title":{},"content":{"/tracks/python-101/basis/numbers":{}},"description":{}}],["друг",{"_index":362,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["дубл",{"_index":7316,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["дубликат",{"_index":3580,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["дублир",{"_index":2192,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day42":{}},"description":{"/tracks/algorithms-101/leetcode/medium/287/":{}}}],["дублирова",{"_index":5734,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["дублирован",{"_index":7980,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["дум",{"_index":9894,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/p/publications":{}},"description":{}}],["дума",{"_index":77,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["дух",{"_index":9341,"title":{},"content":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["дюжев",{"_index":4106,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["еаэс",{"_index":4130,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["евент",{"_index":5296,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["евр",{"_index":4170,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["евразийск",{"_index":4777,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["еврейск",{"_index":11690,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["евровалют",{"_index":4175,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["евровалютн",{"_index":4174,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["еврозон",{"_index":4172,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["еврооблигац",{"_index":4178,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["европ",{"_index":4086,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["европейск",{"_index":4171,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["евросоюз",{"_index":4766,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["егоработ",{"_index":4266,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ед",{"_index":4985,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["един",{"_index":4782,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["единиц",{"_index":4029,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["единообразн",{"_index":8696,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/posts/markdown-syntax/":{}},"description":{}}],["единствен",{"_index":7142,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["ежегодн",{"_index":4478,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["ежедневн",{"_index":8742,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["еженедельн",{"_index":10197,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["емкост",{"_index":9240,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["ен",{"_index":4028,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["енд",{"_index":6688,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["ендпоинт",{"_index":9183,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["естествен",{"_index":1253,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["ждат",{"_index":357,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["ждем",{"_index":505,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["жела",{"_index":3883,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["желан",{"_index":9195,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/posts/markdown-syntax/":{}},"description":{}}],["желез",{"_index":9515,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["жестк",{"_index":7047,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["живет",{"_index":6524,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["животн",{"_index":4626,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["живут",{"_index":8459,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["жидкост",{"_index":6926,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["жизн",{"_index":4937,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/p/privacy_ru":{}},"description":{}}],["жизнен",{"_index":2054,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["жизни/производствен",{"_index":6512,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["жил",{"_index":9503,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["жирн",{"_index":7304,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["жит",{"_index":8019,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["жмем",{"_index":11238,"title":{},"content":{"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["журна",{"_index":1375,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day37":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{}}],["журнал",{"_index":3980,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{"/p/publications":{}}}],["з",{"_index":4015,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["за­щит­н",{"_index":4694,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заархивирова",{"_index":9884,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["забан",{"_index":5481,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["забанен",{"_index":5477,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["забеган",{"_index":8151,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["заблокирова",{"_index":9824,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["заблуд",{"_index":8981,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["забот",{"_index":6766,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["заботя",{"_index":61,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["забуд",{"_index":9657,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["забудет",{"_index":8591,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["забудьт",{"_index":1000,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["забыва",{"_index":1265,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["завед",{"_index":4013,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["заверш",{"_index":553,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/threading":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["заверша",{"_index":1978,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/posts/markdown-syntax/":{}},"description":{}}],["завершен",{"_index":358,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["завис",{"_index":2055,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["зависет",{"_index":76,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["зависим",{"_index":476,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["завися",{"_index":135,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["завтр",{"_index":8782,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["завтрашн",{"_index":8776,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["завышен",{"_index":4731,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заглавн",{"_index":3505,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заглушк",{"_index":3713,"title":{},"content":{"/tracks/python-101/basis/functions":{}},"description":{}}],["заглян",{"_index":1003,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["заголовк",{"_index":3173,"title":{},"content":{"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day22":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заголовок",{"_index":9643,"title":{},"content":{"/tracks/90daysofdevops/day22":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заготовк",{"_index":11449,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["загруж",{"_index":8249,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{}},"description":{}}],["загружа",{"_index":2240,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{}},"description":{}}],["загружен",{"_index":1493,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["загруженных/созда",{"_index":11645,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["загруз",{"_index":3661,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["загрузк",{"_index":1487,"title":{"/tracks/webrtc/practice/practice-get-code":{}},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["загрузка/build",{"_index":11251,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["загрузок",{"_index":3190,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["загрязнен",{"_index":8831,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["зад",{"_index":8969,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["зада",{"_index":474,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day11":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["задава",{"_index":1633,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/strings":{}},"description":{}}],["задан",{"_index":1023,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["заданий/экспортер",{"_index":7190,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["задач",{"_index":905,"title":{"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}}}],["задействова",{"_index":7822,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["задержк",{"_index":563,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["задокументир",{"_index":7428,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["задокументирова",{"_index":8910,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["задолжен",{"_index":4182,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["задолженность.(федякин",{"_index":4181,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["задума",{"_index":6924,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["заем",{"_index":4466,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["заемн",{"_index":4467,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["заемщик",{"_index":4227,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["заинтересова",{"_index":8752,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["зайд",{"_index":6381,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["займет",{"_index":6497,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["зайт",{"_index":7173,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["зайц",{"_index":5737,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["заказ",{"_index":4722,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заканчив",{"_index":3806,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["заканчива",{"_index":1376,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["закладок",{"_index":1505,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["заключ",{"_index":4433,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["заключа",{"_index":939,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["заключен",{"_index":4025,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["заключительн",{"_index":6352,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["закодирова",{"_index":5589,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["закомментирова",{"_index":9724,"title":{},"content":{"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{}},"description":{}}],["закомментирует",{"_index":8954,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["закоммит",{"_index":11078,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["закон",{"_index":11574,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["законодательн",{"_index":4515,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["законодательств",{"_index":11849,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["закономерн",{"_index":11566,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["законотворческ",{"_index":11822,"title":{},"content":{"/p/publications":{}},"description":{}}],["законч",{"_index":3750,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["закр",{"_index":6771,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{}},"description":{}}],["закреп",{"_index":3522,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["закрепл",{"_index":4899,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["закроет",{"_index":3749,"title":{},"content":{"/tracks/python-101/basis/file_io":{}},"description":{}}],["закрыва",{"_index":869,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["закрыт",{"_index":2462,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day18":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["закупк",{"_index":4429,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["закуплен",{"_index":4997,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["залог",{"_index":11623,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["зам",{"_index":3237,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["замедля",{"_index":4750,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["замен",{"_index":1043,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["заменя",{"_index":2496,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{},"/posts/python-snippets/":{}},"description":{}}],["замет",{"_index":2069,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["заметк",{"_index":3885,"title":{"/tracks/disser/israel-notes":{},"/posts/_index":{},"/homepage/pages":{}},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{}},"description":{"/tracks/disser/israel-notes":{},"/tracks/disser/articles-notes":{}}}],["заметн",{"_index":4735,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["заметок",{"_index":9252,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["заметьт",{"_index":8026,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["замеча",{"_index":8584,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["замечан",{"_index":10789,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["замечательн",{"_index":3404,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["замешательств",{"_index":8587,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["замкнут",{"_index":9543,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{}},"description":{}}],["замыкан",{"_index":3318,"title":{"/tracks/python-101/enhance_python/closure":{}},"content":{"/tracks/python-101/enhance_python/closure":{}},"description":{}}],["занима",{"_index":395,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/репатриация":{}},"description":{}}],["занов",{"_index":5917,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day15":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["заня",{"_index":4765,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["занят",{"_index":4272,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["зап",{"_index":828,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["западн",{"_index":4857,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["западноафриканск",{"_index":4212,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["запатентова",{"_index":4869,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["запис",{"_index":845,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["записа",{"_index":2697,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{}},"description":{}}],["записыва",{"_index":767,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["запиш",{"_index":6252,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day43":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["запишет",{"_index":8914,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["запланирова",{"_index":7341,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["заплат",{"_index":8147,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["заполн",{"_index":5618,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["заполнен",{"_index":1666,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["заполнител",{"_index":11029,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["заполня",{"_index":5944,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["запомина",{"_index":2297,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["запомн",{"_index":9601,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["запрашива",{"_index":1231,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["запрет",{"_index":4713,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["запрещ",{"_index":11889,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["запреща",{"_index":4745,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["запрограммирова",{"_index":10054,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["запрос",{"_index":56,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/google-sheets-2-json/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["запрос/ответ",{"_index":475,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["запрош",{"_index":3892,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["запрошен",{"_index":491,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/frameworks/tornado":{}},"description":{}}],["запуск",{"_index":268,"title":{"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}}}],["запуска",{"_index":626,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{}}],["запуст",{"_index":295,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["запут",{"_index":3664,"title":{},"content":{"/tracks/python-101/basis/install":{}},"description":{}}],["запущ",{"_index":995,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["запущен",{"_index":304,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"description":{}}],["запят",{"_index":1868,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["заработа",{"_index":11245,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["заработн",{"_index":11601,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["заран",{"_index":4413,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day39":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["зарегистрирова",{"_index":3921,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["зарплат",{"_index":4920,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/репатриация":{}},"description":{}}],["зарубежн",{"_index":3972,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["зарузк",{"_index":10345,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["засаж",{"_index":6120,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["заслужива",{"_index":4003,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["застав",{"_index":6923,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["заставля",{"_index":9891,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["застрахова",{"_index":8531,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["затрагив",{"_index":8467,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["затрагива",{"_index":9322,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["затрат",{"_index":1686,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["затрач",{"_index":11657,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["затронул",{"_index":6912,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["затронут",{"_index":36,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["затрудн",{"_index":9624,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["затрудня",{"_index":4518,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["затянувш",{"_index":10235,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["зафиксирова",{"_index":4432,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["зафиксиру",{"_index":8822,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["захват",{"_index":290,"title":{"/tracks/webrtc/media-capture-and-constraints":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["захватывающ",{"_index":8683,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["заход",{"_index":5332,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["захот",{"_index":639,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["захотел",{"_index":6396,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["захотет",{"_index":6507,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["зачаст",{"_index":4938,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["зашел",{"_index":10218,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["зашифрова",{"_index":9373,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["зашл",{"_index":9912,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["защ",{"_index":6403,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/p/privacy_ru":{}},"description":{}}],["защит",{"_index":244,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["защитн",{"_index":4716,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["защищ",{"_index":4541,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["защища",{"_index":6638,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["защищен",{"_index":1936,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["заяв",{"_index":9721,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["заявк",{"_index":9557,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["заявл",{"_index":8185,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["заявлен",{"_index":4012,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["заявля",{"_index":8189,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["зван",{"_index":10204,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["звезд",{"_index":7864,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["звездочк",{"_index":3692,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{}},"description":{}}],["звен",{"_index":10215,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["звонк",{"_index":1201,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["звонок",{"_index":561,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["звук",{"_index":291,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["звуков",{"_index":97,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["звуч",{"_index":8682,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["здан",{"_index":6749,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["здесьpacman",{"_index":6685,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["здоров",{"_index":4616,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["здравств",{"_index":1614,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["зелен",{"_index":7241,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["злоумышленник",{"_index":9625,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["злоупотребля",{"_index":10729,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["зна",{"_index":3800,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["знает",{"_index":5775,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["знаеш",{"_index":9549,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["знайт",{"_index":6778,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["знак",{"_index":1849,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["знаком",{"_index":906,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["знакомств",{"_index":8738,"title":{"/tracks/90daysofdevops/day29":{}},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{}},"description":{"/tracks/90daysofdevops/day37":{}}}],["знал",{"_index":3358,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["знаменит",{"_index":5772,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day76":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["знан",{"_index":1485,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{"/posts/diploma/":{}}}],["знат",{"_index":489,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["знач",{"_index":7713,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["значен",{"_index":112,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["значим",{"_index":3965,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["значителел",{"_index":4858,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["значительн",{"_index":558,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["значок",{"_index":1506,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["знают",{"_index":5773,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["зова",{"_index":1446,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["зовут",{"_index":3533,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{}},"description":{}}],["золот",{"_index":4161,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["зон",{"_index":2888,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["зрел",{"_index":7870,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["зрен",{"_index":4989,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["зумирован",{"_index":8862,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["и",{"_index":9542,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["и/",{"_index":711,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/posts/trading-indicators/sma":{}},"description":{}}],["ива",{"_index":10888,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["игнорир",{"_index":9851,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["игнорирова",{"_index":99,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["игр",{"_index":1625,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["игра",{"_index":2104,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["игрок",{"_index":4451,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["ид",{"_index":4533,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ида",{"_index":4291,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["иде",{"_index":4546,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["идеал",{"_index":7229,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["идеальн",{"_index":1538,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["идемпотентн",{"_index":7847,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["идентификатор",{"_index":1916,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["идентификац",{"_index":2613,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["идентифицир",{"_index":1744,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["идентифицирова",{"_index":9822,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["идентифициру",{"_index":5783,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["идентичн",{"_index":5886,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["идет",{"_index":857,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["идеш",{"_index":9550,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["идт",{"_index":5552,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["идут",{"_index":10219,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["иерарх",{"_index":3844,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["иерархическ",{"_index":1924,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["из",{"_index":9354,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["избав",{"_index":8104,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["избавл",{"_index":10097,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["избавлен",{"_index":7748,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["избавля",{"_index":9353,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["избега",{"_index":8649,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["избежа",{"_index":1914,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["избежан",{"_index":1225,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["избыток",{"_index":4448,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["избыточн",{"_index":5002,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["извест",{"_index":7135,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["известн",{"_index":646,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["извин",{"_index":10802,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["извлек",{"_index":8921,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["извлека",{"_index":7167,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["извлеч",{"_index":7232,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["извлечен",{"_index":605,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/p/privacy_ru":{}},"description":{}}],["извлечет",{"_index":7168,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["извн",{"_index":1942,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["изготов",{"_index":4953,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["изготовлен",{"_index":4956,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["издан",{"_index":3924,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["издател",{"_index":8546,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["издержек",{"_index":4950,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["издержк",{"_index":4632,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["излага",{"_index":4008,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["излишн",{"_index":7425,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["излож",{"_index":7485,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["измен",{"_index":57,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["изменен",{"_index":73,"title":{"/tracks/90daysofdevops/day38":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day38":{}}}],["измененен",{"_index":8913,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["изменения",{"_index":10339,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["изменя",{"_index":1803,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{}},"description":{}}],["изменён",{"_index":8813,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["измер",{"_index":4939,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["измеря",{"_index":3300,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["изначальн",{"_index":6170,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["изнутр",{"_index":7040,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["изображен",{"_index":930,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["изобрета",{"_index":6997,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["изолир",{"_index":8695,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["изолирова",{"_index":6918,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["изоляц",{"_index":1051,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day61":{}},"description":{}}],["израил",{"_index":3886,"title":{"/tracks/disser/israel-notes":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{},"/p/репатриация":{}},"content":{"/tracks/disser/israel-notes":{},"/p/репатриация":{},"/p/publications":{}},"description":{"/tracks/disser/israel-notes":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{},"/p/репатриация":{}}}],["израильск",{"_index":11230,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{}}}],["изуч",{"_index":1631,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["изуча",{"_index":1681,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["изучен",{"_index":1309,"title":{"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/90daysofdevops/day07":{}}}],["изходн",{"_index":6262,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["ик",{"_index":4820,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["икономик",{"_index":4852,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["икт",{"_index":11754,"title":{},"content":{"/p/publications":{}},"description":{}}],["иллюстрир",{"_index":233,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["им",{"_index":1054,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["им­пор­т",{"_index":4693,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["им­порт",{"_index":4592,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["име",{"_index":5454,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{}},"description":{}}],["имеет",{"_index":352,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["имел",{"_index":4835,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["имен",{"_index":1364,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["именова",{"_index":3299,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{}},"description":{}}],["именован",{"_index":7914,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["имеют",{"_index":372,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["имеющ",{"_index":610,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["имитац",{"_index":3072,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["имитирова",{"_index":6697,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["имитиру",{"_index":7486,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["имплементир",{"_index":5776,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["импорт",{"_index":1933,"title":{"/tracks/python-101/basis/imports":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["импортер",{"_index":4096,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["импортир",{"_index":1922,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["импортирова",{"_index":1298,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{}},"description":{}}],["импортиру",{"_index":3685,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day89":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["импортируем",{"_index":3676,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["импортирует",{"_index":2274,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["импортн",{"_index":4540,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["импортозамеща",{"_index":4720,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["имён",{"_index":10870,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ин",{"_index":649,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day42":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["ин­ст­ру­мен­та­р",{"_index":4659,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ин­фор­мац",{"_index":4701,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["инач",{"_index":3606,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["инвентар",{"_index":7836,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["инвентаризац",{"_index":7607,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["инвестир",{"_index":4138,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["инвестирова",{"_index":4874,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["инвестирован",{"_index":4362,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["инвестиц",{"_index":4137,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["инвестицион",{"_index":4139,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["инвестор",{"_index":4411,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["инд",{"_index":4490,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["индекс",{"_index":2006,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["индекс(позиц",{"_index":5494,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["индекс/позиц",{"_index":5490,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["индексац",{"_index":3413,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["индексир",{"_index":3896,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["индексирова",{"_index":6311,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["индексируем",{"_index":3925,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["индексов(порядк",{"_index":5497,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["индивид",{"_index":11571,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["индивидуализм",{"_index":11565,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["индивидуальн",{"_index":8604,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["индукц",{"_index":11583,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["индустр",{"_index":4845,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day76":{}},"description":{}}],["инженер",{"_index":3879,"title":{"/tracks/90daysofdevops/day02":{}},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day02":{}}}],["инженер/архитектор",{"_index":10206,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["инженерн",{"_index":10106,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["инициализац",{"_index":2564,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["инициализир",{"_index":2298,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["инициализирова",{"_index":1919,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day58":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["инициализиру",{"_index":5461,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["инициатив",{"_index":4850,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day24":{},"/p/publications":{}},"description":{}}],["инициир",{"_index":51,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["инициирова",{"_index":8970,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["инициирован",{"_index":463,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["инкапсуляц",{"_index":2105,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["инкрементн",{"_index":7335,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["инновац",{"_index":4839,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["инновацион",{"_index":4499,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["ино­стр",{"_index":4605,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["иностра",{"_index":3953,"title":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{}}}],["иностран",{"_index":4037,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["инспекцион",{"_index":4562,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["инсталлирова",{"_index":1501,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["инсталляцион",{"_index":10327,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["инстанс",{"_index":5316,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["инстанцир",{"_index":2487,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["инстанцирова",{"_index":2352,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["институт",{"_index":4115,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{}},"description":{}}],["институционализм",{"_index":11608,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["институциональн",{"_index":4153,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["инструкц",{"_index":2283,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/posts/ruGPT-3-notes":{},"/posts/interactivebrokers-deposit/":{},"/p/репатриация":{}},"description":{}}],["инструмент",{"_index":1632,"title":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["инструментальн",{"_index":7480,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["инструментар",{"_index":7563,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["инструментов/библиотек",{"_index":1676,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["интевенц",{"_index":4446,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["интеграц",{"_index":4201,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["интеграцион",{"_index":4203,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["интеграция/непрерывн",{"_index":10361,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["интегрир",{"_index":7479,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["интегрирова",{"_index":3946,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["интеллект",{"_index":6940,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["интеллектуальн",{"_index":4760,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["интенсивн",{"_index":4456,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["интерактивн",{"_index":420,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/posts/docker-commands/":{}},"description":{}}],["интерв",{"_index":10284,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["интерва",{"_index":6021,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{}},"description":{}}],["интервал",{"_index":6244,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["интерес",{"_index":3221,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["интересн",{"_index":1268,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["интернационализац",{"_index":4814,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["интернет",{"_index":218,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/p/privacy_ru":{}},"description":{}}],["интерпретатор",{"_index":1875,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["интерпретац",{"_index":2282,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["интерпретир",{"_index":2281,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["интерпретирова",{"_index":1714,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["интерпретируем",{"_index":1671,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["интерфейс",{"_index":598,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/publications":{}},"description":{}}],["интерфес",{"_index":8517,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["интроспекц",{"_index":3506,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["интуитивн",{"_index":6229,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day73":{},"/p/publications":{}},"description":{}}],["инф",{"_index":11688,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["инфляц",{"_index":4366,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["информац",{"_index":71,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["информацион",{"_index":4494,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/p/privacy_ru":{}},"description":{}}],["информир",{"_index":11899,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["инфраструктур",{"_index":4497,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["инфраструктурн",{"_index":4286,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["инфраструктуры/сет",{"_index":9556,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["инфрастуктур",{"_index":9371,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day28":{}}}],["ис­ка­же­н",{"_index":4649,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­поль­зо­вать­",{"_index":4608,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­поль­зу­ет­",{"_index":4654,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­поль­зу­ют­",{"_index":4642,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ис­то­ри­че­ск",{"_index":4657,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["иска",{"_index":1658,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["исключ",{"_index":6791,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{}},"description":{}}],["исключа",{"_index":3593,"title":{},"content":{"/tracks/python-101/basis/operators":{}},"description":{}}],["исключен",{"_index":167,"title":{"/tracks/python-101/basis/exception_handling":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["исключительн",{"_index":8127,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/p/privacy_ru":{}},"description":{}}],["иском",{"_index":5767,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["ископа",{"_index":4477,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["искрен",{"_index":1737,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["искусств",{"_index":10230,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["искусствен",{"_index":6939,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["испан",{"_index":4987,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["испанск",{"_index":9627,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["испол",{"_index":1445,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["исполн",{"_index":11621,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["исполнен",{"_index":1891,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day31":{},"/posts/integrate-hugo-react/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["исполнительн",{"_index":8025,"title":{},"content":{"/tracks/90daysofdevops/day60":{}},"description":{}}],["исполня",{"_index":2013,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["использ",{"_index":38,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["использова",{"_index":175,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["использован",{"_index":137,"title":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["использу",{"_index":124,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/docker-commands/":{}},"description":{}}],["используем",{"_index":307,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["использует",{"_index":998,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["испорт",{"_index":8091,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["исправ",{"_index":7441,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["исправлен",{"_index":7423,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["исправля",{"_index":7540,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["испуска",{"_index":7165,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["испытан",{"_index":8133,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["испытыва",{"_index":4293,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["исслед",{"_index":11548,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["исследован",{"_index":1624,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day14":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["исследовательск",{"_index":3947,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["истека",{"_index":9199,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["истечен",{"_index":11926,"title":{},"content":{},"description":{"/apps/npm/cognito-token-observer/":{}}}],["истин",{"_index":3618,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["истор",{"_index":8419,"title":{"/tracks/90daysofdevops/day06":{}},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/90daysofdevops/day06":{}}}],["историзм",{"_index":11582,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["историографическ",{"_index":3962,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["историческ",{"_index":3979,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["источник",{"_index":856,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["исход",{"_index":5485,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["исходн",{"_index":225,"title":{"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["исходник",{"_index":3184,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["исходя",{"_index":9156,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["исчеза",{"_index":8108,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["исчезл",{"_index":6657,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["исчезнет",{"_index":8663,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["исчерпа",{"_index":7218,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{}},"description":{}}],["исчерпыва",{"_index":8128,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["исчислен",{"_index":11555,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ит",{"_index":6372,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day06":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["итак",{"_index":7539,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["итал",{"_index":4926,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["итеративн",{"_index":6166,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["итератор",{"_index":2154,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{}}}],["итерац",{"_index":1981,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["итерирова",{"_index":5595,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["итериру",{"_index":5498,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["итерируем",{"_index":2243,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["итог",{"_index":3432,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["итогов",{"_index":5330,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["ищ",{"_index":5663,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day58":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["ищет",{"_index":7576,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["ищут",{"_index":1766,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["ищущ",{"_index":11007,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["июл",{"_index":11410,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["й",{"_index":5270,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/p/publications":{}},"description":{}}],["йен",{"_index":4392,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["йетс",{"_index":5629,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["йо",{"_index":10877,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["к.т.н",{"_index":11787,"title":{},"content":{"/p/publications":{}},"description":{}}],["кабел",{"_index":9634,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["кабинет",{"_index":11236,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["кавычек",{"_index":3406,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["кавычк",{"_index":3400,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/markdown-syntax/":{}},"description":{}}],["кадр",{"_index":1267,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["кажд",{"_index":80,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["казахстан",{"_index":4779,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["казус",{"_index":6865,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["как",{"_index":461,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/p/репатриация":{}},"description":{}}],["каков",{"_index":1819,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["калькулятор",{"_index":10095,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["кам",{"_index":4325,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["камер",{"_index":589,"title":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{}},"description":{}}],["камн",{"_index":8534,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["кана",{"_index":481,"title":{"/tracks/webrtc/practice/practice-take-photo":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["канал",{"_index":521,"title":{"/tracks/webrtc/data-channels":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["канальн",{"_index":9631,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["канба",{"_index":8769,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["канд",{"_index":11790,"title":{},"content":{"/p/publications":{}},"description":{}}],["кандидат",{"_index":412,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["кандидатск",{"_index":4056,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["кандидатур",{"_index":5784,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["канистер",{"_index":6591,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["каноническ",{"_index":1200,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["кантильон",{"_index":11597,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["капита",{"_index":4132,"title":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["капитал",{"_index":4797,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["капитализм",{"_index":11575,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["капитальн",{"_index":4460,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["капот",{"_index":9270,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["капсул",{"_index":6501,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["карабка",{"_index":6906,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["карантин",{"_index":9623,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["карма",{"_index":187,"title":{"/tracks/webrtc/_index":{},"/tracks/python-101/_index":{}},"content":{},"description":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{}}}],["карт",{"_index":6050,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day01":{},"/p/репатриация":{}},"description":{}}],["картин",{"_index":7149,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{"/tracks/90daysofdevops/day21":{}}}],["картинк",{"_index":8734,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["карточк",{"_index":6385,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["карьер",{"_index":10102,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["каса",{"_index":169,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["касс",{"_index":11727,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["каталог",{"_index":2259,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["катастроф",{"_index":8838,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["категор",{"_index":1826,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["категоризац",{"_index":6877,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["каф",{"_index":9609,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["кафедр",{"_index":4014,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["качеств",{"_index":467,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["качествен",{"_index":4633,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["квадрат",{"_index":3689,"title":{},"content":{"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["квадратн",{"_index":1795,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["квалифицирова",{"_index":4856,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["квартал",{"_index":28,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["квартир",{"_index":11724,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["квот",{"_index":4305,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["кейнсианств",{"_index":11607,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["кеш",{"_index":9251,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["кешир",{"_index":9818,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["киберпреступн",{"_index":6721,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["килограмм",{"_index":4994,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["киргиз",{"_index":4781,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["кириллиц",{"_index":3951,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["кит",{"_index":4221,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["кита",{"_index":4488,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["китайск",{"_index":8765,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["клавиатур",{"_index":9767,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["клавиуатур",{"_index":10046,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["клавиш",{"_index":1473,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["класс",{"_index":465,"title":{"/tracks/python-101/basis/classes":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{}},"description":{}}],["класс(",{"_index":10907,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["классик",{"_index":4979,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["классификац",{"_index":4234,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["классифицируем",{"_index":6842,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["классическ",{"_index":11605,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["классн",{"_index":8298,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["кластер",{"_index":6355,"title":{"/tracks/90daysofdevops/day52":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{}},"description":{}}],["кластерн",{"_index":8237,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["клетк",{"_index":11806,"title":{},"content":{"/p/publications":{}},"description":{}}],["клиент",{"_index":201,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["клиентск",{"_index":231,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["клик",{"_index":11379,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["кликнув",{"_index":1523,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["климат",{"_index":4512,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["клон",{"_index":11501,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["клонир",{"_index":8911,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["клонирова",{"_index":1490,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day69":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["клонирован",{"_index":6946,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["клониру",{"_index":6971,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["клуб",{"_index":4192,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ключ",{"_index":302,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["ключев",{"_index":915,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/p/publications":{}},"description":{}}],["книг",{"_index":188,"title":{"/tracks/webrtc/_index":{},"/tracks/python-101/_index":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{}}}],["кнопк",{"_index":952,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["кнопок",{"_index":1041,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ко",{"_index":1765,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ко­то­р",{"_index":4587,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["код",{"_index":65,"title":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["код/част",{"_index":10338,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["кодд",{"_index":6853,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["кодек",{"_index":1139,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["кодекс",{"_index":11854,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["кодинг",{"_index":7318,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["кодир",{"_index":8126,"title":{},"content":{"/tracks/90daysofdevops/day57":{}},"description":{}}],["кодирован",{"_index":1227,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["кодов",{"_index":1304,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["колебан",{"_index":4420,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["колес",{"_index":7322,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["количеств",{"_index":910,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-redirect-to-url/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["количествен",{"_index":4709,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["коллег",{"_index":8964,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["коллектор",{"_index":7042,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["коллекц",{"_index":1793,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["колонк",{"_index":6833,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/posts/markdown-syntax/":{}},"description":{}}],["колонок",{"_index":6837,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["ком",{"_index":8889,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["комад",{"_index":8794,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["команд",{"_index":849,"title":{"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day15":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}}}],["командлет",{"_index":9194,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["командн",{"_index":101,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["команду.apt",{"_index":8514,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["комбинац",{"_index":1995,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["комбинирова",{"_index":1449,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["комитет",{"_index":11137,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["комм",{"_index":8708,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["комманд",{"_index":11628,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["комментар",{"_index":5845,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["комментирова",{"_index":10291,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["коммерц",{"_index":4764,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["коммерческ",{"_index":537,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["коммит",{"_index":8713,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["коммуникац",{"_index":399,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["коммуникацион",{"_index":4863,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["коммуницирова",{"_index":523,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["коммутатор",{"_index":7837,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["коммутатору/маршрутизатор",{"_index":9638,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["коммутац",{"_index":9661,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["комнат",{"_index":1011,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["компакт",{"_index":2232,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["компактн",{"_index":8613,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["компан",{"_index":4424,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["компании/проект",{"_index":8851,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["компаративн",{"_index":4548,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["компенсацион",{"_index":4715,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["компетентн",{"_index":9773,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["компетенц",{"_index":10164,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["компилир",{"_index":2278,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилирова",{"_index":10007,"title":{},"content":{"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилируем",{"_index":10110,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилирует",{"_index":10111,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["компилятор",{"_index":2289,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["компиляц",{"_index":1722,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["комплексн",{"_index":1838,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["комплект",{"_index":9682,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["компонент",{"_index":421,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{}},"description":{"/posts/integrate-hugo-react/":{}}}],["компромисс",{"_index":6827,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["компьютер",{"_index":398,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["компьютерн",{"_index":3787,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/p/privacy_ru":{}},"description":{}}],["конвейер",{"_index":6936,"title":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{}},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["конвенц",{"_index":8854,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/python-snippets/":{}},"description":{}}],["конверсион",{"_index":4383,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["конвертирова",{"_index":11518,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["конвертиру",{"_index":5888,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["конец",{"_index":3642,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["конечн",{"_index":52,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["конкатенац",{"_index":3395,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["конкатенирова",{"_index":10770,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["конкретик",{"_index":8409,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["конкретн",{"_index":787,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["конкурентн",{"_index":2931,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкурентносспособн",{"_index":4873,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкурентоспособн",{"_index":4801,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкуренц",{"_index":4537,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["конкурир",{"_index":6952,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["конкурирова",{"_index":2644,"title":{},"content":{"/tracks/python-101/standard_library/threading":{}},"description":{}}],["конкурс",{"_index":11820,"title":{},"content":{"/p/publications":{}},"description":{}}],["конкурсн",{"_index":11816,"title":{},"content":{"/p/publications":{}},"description":{}}],["коновалов",{"_index":11771,"title":{},"content":{"/p/publications":{}},"description":{}}],["консол",{"_index":1068,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["консольн",{"_index":8342,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["констант",{"_index":2684,"title":{"/tracks/90daysofdevops/day11":{}},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{"/tracks/90daysofdevops/day11":{}}}],["конституц",{"_index":11853,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["конструирован",{"_index":6246,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["конструктор",{"_index":90,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/posts/python-snippets/":{}},"description":{}}],["конструкц",{"_index":1642,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["консультацион",{"_index":4571,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["контакт",{"_index":9507,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["контактн",{"_index":11881,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["контейнер",{"_index":1271,"title":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["контейнеризац",{"_index":8488,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["контейнеризова",{"_index":10199,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["контейнерн",{"_index":8222,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["контекст",{"_index":3270,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["контекстн",{"_index":3271,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["контенер",{"_index":8699,"title":{},"content":{"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day42":{}}}],["контент",{"_index":2724,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["контрабанд",{"_index":4784,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["контрагент",{"_index":11625,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["контракт",{"_index":4422,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["контрактн",{"_index":4879,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["контрол",{"_index":4459,"title":{"/tracks/90daysofdevops/day35":{}},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day35":{}}}],["контролир",{"_index":5301,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["контролирова",{"_index":1190,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["контролируем",{"_index":5319,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["контроллер",{"_index":6523,"title":{"/tracks/90daysofdevops/day69":{}},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["контрольн",{"_index":1606,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day66":{}},"description":{}}],["контур",{"_index":8451,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["конференц",{"_index":3910,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/p/publications":{}},"description":{}}],["конфиг",{"_index":8339,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["конфигурац",{"_index":235,"title":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["конфигурацион",{"_index":2902,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["конфигурирова",{"_index":9260,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["конфигурирован",{"_index":9603,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["конфиденциальн",{"_index":7175,"title":{"/p/privacy_ru":{}},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["конфликт",{"_index":2047,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["конфликтова",{"_index":1196,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["конц",{"_index":1079,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{}}],["концентратор",{"_index":9095,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["концентрац",{"_index":4974,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["концентрир",{"_index":10198,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["концепт",{"_index":4370,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["концепц",{"_index":1282,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["кооперац",{"_index":4800,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["координац",{"_index":1605,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["координирова",{"_index":2885,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["коп",{"_index":1061,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["копир",{"_index":2183,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day32":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["копирова",{"_index":6739,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["копирован",{"_index":2190,"title":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["копиру",{"_index":11440,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["корен",{"_index":5549,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["корзин",{"_index":5240,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["корм",{"_index":9345,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["корн",{"_index":5558,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day16":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["корнев",{"_index":2752,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["коробк",{"_index":2227,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/posts/markdown-syntax/":{}},"description":{}}],["королевств",{"_index":4961,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["коротк",{"_index":2171,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/operators":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day04":{},"/posts/trading-indicators/sma":{}},"description":{}}],["корпоративн",{"_index":3926,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["корпорац",{"_index":4213,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["корректир",{"_index":11590,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["корректн",{"_index":5989,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["коррекц",{"_index":9544,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["коррупц",{"_index":4516,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["кортеж",{"_index":1790,"title":{"/tracks/python-101/basis/tuples":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["кортеж(tupl",{"_index":5889,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["корутин",{"_index":2927,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["кос­вен­н",{"_index":4590,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["косвен",{"_index":533,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/_index":{},"/p/privacy_ru":{}},"description":{}}],["косн",{"_index":9575,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["коснул",{"_index":9777,"title":{},"content":{"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["коснут",{"_index":82,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["кото",{"_index":10335,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["котор",{"_index":536,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/posts/docker-commands/":{}}}],["коф",{"_index":9610,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["кофейн",{"_index":9615,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["кошк",{"_index":9864,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["кошмар",{"_index":6907,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["кра",{"_index":6039,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["крайн",{"_index":6027,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["крайност",{"_index":6746,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["красив",{"_index":8481,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["красн",{"_index":8723,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["кратк",{"_index":1647,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day02":{},"/posts/ruGPT-3-notes":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["краткосрочн",{"_index":4313,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["крах",{"_index":8181,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["кред",{"_index":4308,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["кредит",{"_index":4292,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["кредитн",{"_index":4226,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["кредитован",{"_index":4250,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["крив",{"_index":7875,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["кризис",{"_index":4166,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["криптограф",{"_index":9718,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["криптографическ",{"_index":9596,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["критер",{"_index":4083,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["критическ",{"_index":5894,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["критичн",{"_index":11125,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["крич",{"_index":10000,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["кров",{"_index":6439,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["кролич",{"_index":9528,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["кросплатформен",{"_index":9576,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["кросс",{"_index":6840,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["кроссплатформен",{"_index":6770,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["крошк",{"_index":6402,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["круг",{"_index":4734,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["кругл",{"_index":1799,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{}},"description":{}}],["крупн",{"_index":3013,"title":{},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day23":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["крупномасштабн",{"_index":9275,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["крут",{"_index":7874,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["крючк",{"_index":7340,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["кулис",{"_index":8503,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["культур",{"_index":9190,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["культурн",{"_index":9563,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["куп",{"_index":9310,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["купить/прода",{"_index":4412,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["куплет",{"_index":8442,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["курируем",{"_index":8632,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["курновск",{"_index":11741,"title":{"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/p/publications":{}},"description":{}}],["курс",{"_index":4150,"title":{"/posts/diploma/":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day07":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["курсор",{"_index":9494,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["куск",{"_index":1063,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["кусочк",{"_index":8966,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["куч",{"_index":2036,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["кэш",{"_index":3283,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/posts/docker-commands/":{}},"description":{}}],["кэширован",{"_index":1467,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["л",{"_index":4930,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["лаборатор",{"_index":1305,"title":{"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["лабораторн",{"_index":5320,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["лайнер",{"_index":7309,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["лаконичн",{"_index":8245,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["ландшафт",{"_index":7185,"title":{},"content":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["латиниц",{"_index":3952,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["латинск",{"_index":11551,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["лев",{"_index":5818,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day40":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["легк",{"_index":1680,"title":{"/tracks/algorithms-101/leetcode/easy/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["легковесн",{"_index":2619,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["легкодоступн",{"_index":11005,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["легкост",{"_index":8690,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["легч",{"_index":7882,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["леж",{"_index":3812,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["лежа",{"_index":7512,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["лежат",{"_index":10165,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["лейк",{"_index":10996,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["лекарств",{"_index":4788,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["лекц",{"_index":9762,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["ленив",{"_index":10973,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["лент",{"_index":8755,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["лес",{"_index":9286,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["лестниц",{"_index":9344,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["лет",{"_index":1713,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["лет\".format(nam",{"_index":3534,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["лета",{"_index":10971,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["летуч",{"_index":10945,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["леум",{"_index":11721,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["ли­цен­зи­ро­ва­н",{"_index":4692,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["либ",{"_index":2046,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["либерализац",{"_index":4173,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["лидер",{"_index":8904,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["лидерборд",{"_index":6830,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["ликвидац",{"_index":11579,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ликвидн",{"_index":4388,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["лимит",{"_index":4742,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["линейн",{"_index":5619,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{}},"description":{}}],["линтер",{"_index":7299,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["линтинг",{"_index":7289,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["лист",{"_index":5560,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["листов",{"_index":6108,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/872/":{}}}],["листоподобн",{"_index":6107,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/872/":{}},"description":{}}],["лит",{"_index":4021,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["литерал",{"_index":1845,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["литератур",{"_index":3932,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["лиц",{"_index":4971,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day01":{},"/p/privacy_ru":{}},"description":{}}],["лиценз",{"_index":4712,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["лицензион",{"_index":4737,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["лицензирова",{"_index":6845,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["лицензирован",{"_index":4557,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["лицензировован",{"_index":4868,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["личн",{"_index":3944,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["личност",{"_index":2073,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["лиша",{"_index":9530,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["лишн",{"_index":2365,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["ло",{"_index":11595,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ловл",{"_index":9844,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["лог",{"_index":1069,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/standard_library/logging":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{},"/posts/docker-commands/":{}},"description":{}}],["логгер",{"_index":2798,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["логик",{"_index":7562,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["логин",{"_index":5312,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["логин/парол",{"_index":5310,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["логирован",{"_index":2796,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["логическ",{"_index":855,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["логичн",{"_index":8706,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["логотип",{"_index":7035,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["ложк",{"_index":10934,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ложн",{"_index":3628,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["локальн",{"_index":203,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/scope":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["лома",{"_index":1990,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["лондонск",{"_index":4190,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["лор",{"_index":4134,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["луковиц",{"_index":10957,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["луч",{"_index":9094,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["лучш",{"_index":805,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/p/publications":{}},"description":{}}],["льгот",{"_index":4726,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["люб",{"_index":778,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["любим",{"_index":7123,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["любл",{"_index":7023,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["люд",{"_index":37,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{}}}],["людьм",{"_index":9288,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["лямбд",{"_index":2168,"title":{"/tracks/python-101/enhance_python/lambda":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["м.е",{"_index":11772,"title":{},"content":{"/p/publications":{}},"description":{}}],["ма",{"_index":11407,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["маг",{"_index":10229,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["магазин",{"_index":7381,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["магистральн",{"_index":9161,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["мадияров",{"_index":4146,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["майкл",{"_index":6856,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["майкрософт",{"_index":9162,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["макаевн",{"_index":4148,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["макет",{"_index":1182,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["маккаб",{"_index":11728,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["макроэкономик",{"_index":4792,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["макроэкономическ",{"_index":4245,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["максимальн",{"_index":799,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}}}],["максимизац",{"_index":11561,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["максимум",{"_index":1329,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["мал",{"_index":9256,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["маленьк",{"_index":5496,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day11":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["мамочк",{"_index":11709,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["ман",{"_index":4905,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["манер",{"_index":6518,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["манипулирова",{"_index":6888,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["манипулирован",{"_index":4748,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["манипулиру",{"_index":7050,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["манипуляц",{"_index":4558,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["манифест",{"_index":1370,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["мантр",{"_index":7505,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["марафон",{"_index":10297,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["марж",{"_index":11543,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["маржинализм",{"_index":11541,"title":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}}}],["маржиналист",{"_index":11553,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["маржиналистск",{"_index":11562,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["маржинальн",{"_index":11622,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["маркер",{"_index":7384,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["маркетинг",{"_index":4871,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["маркетплейс",{"_index":9182,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["маркирова",{"_index":11203,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["маркировк",{"_index":4621,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["марксизм",{"_index":11606,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["март",{"_index":6422,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["маршрут",{"_index":1102,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day21":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{}}],["маршрутизатор",{"_index":7838,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["маршрутизац",{"_index":8146,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["маск",{"_index":9536,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["масс",{"_index":370,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/lists":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day85":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["массив",{"_index":2009,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/_index":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["массов",{"_index":7245,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["мастер",{"_index":7534,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["масштаб",{"_index":4136,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["масштабир",{"_index":6369,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["масштабирова",{"_index":6393,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["масштабирован",{"_index":1439,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["масштабируем",{"_index":3158,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["масштабирует",{"_index":8958,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["масштабн",{"_index":4142,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["мат",{"_index":11792,"title":{},"content":{"/p/publications":{}},"description":{}}],["математик",{"_index":10716,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["математическ",{"_index":2134,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day09":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["материа",{"_index":1635,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/_index":{}},"description":{}}],["материал",{"_index":8219,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["материальн",{"_index":10185,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["матриц",{"_index":3192,"title":{},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day27":{}},"description":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["машин",{"_index":1626,"title":{"/tracks/90daysofdevops/day59":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["машиностроен",{"_index":4832,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["машины/х",{"_index":9538,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["мб",{"_index":7054,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["мбрр",{"_index":4281,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мвф",{"_index":4165,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мгим",{"_index":4061,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ме­ж­ду­нар",{"_index":4660,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ме­р",{"_index":4583,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["мед",{"_index":768,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["медвеж",{"_index":10668,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["медиа",{"_index":6068,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["медиаконтент",{"_index":846,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["медиан",{"_index":6067,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["медиаопоток",{"_index":339,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["медиапоток",{"_index":284,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["медицин",{"_index":3983,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["медлен",{"_index":156,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["межбанковск",{"_index":4375,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["международн",{"_index":4082,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["международногодоговор",{"_index":4276,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["межсетев",{"_index":9559,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["мейнтейнер",{"_index":8715,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["мелк",{"_index":7855,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["мелоч",{"_index":8700,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["мен",{"_index":5706,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["менгер",{"_index":11569,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["менеджер",{"_index":1295,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["меньш",{"_index":562,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["меня",{"_index":777,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["мер",{"_index":3803,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/p/privacy_ru":{}},"description":{}}],["меркантелизм",{"_index":4941,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["меркантилизм",{"_index":4065,"title":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}}}],["меркантилист",{"_index":11591,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["мероприят",{"_index":4723,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["мес",{"_index":11720,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["мессенджер",{"_index":9597,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["мест",{"_index":1954,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["местн",{"_index":4543,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["местонахожден",{"_index":9852,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["местоположен",{"_index":6162,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["месяц",{"_index":4312,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["мет",{"_index":11374,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["метада",{"_index":1080,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day45":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["металл",{"_index":4825,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["металлургическ",{"_index":4853,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["метатег",{"_index":11388,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["метк",{"_index":6473,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day33":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{}},"description":{}}],["метод",{"_index":556,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["методик",{"_index":4235,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["методолог",{"_index":6742,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["методологическ",{"_index":11564,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["метр",{"_index":7215,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["метрик",{"_index":6956,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day04":{},"/posts/diploma/":{}},"description":{}}],["метрическ",{"_index":6967,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{}},"description":{}}],["механизм",{"_index":429,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["миграц",{"_index":4199,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day90":{}},"description":{}}],["миграция.(маньшин",{"_index":4196,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мигрирова",{"_index":8396,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["микроволновк",{"_index":5273,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["микросеврис",{"_index":10337,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["микросервис",{"_index":7187,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["микрофон",{"_index":590,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/posts/python-snippets/":{}},"description":{}}],["микрофреймворк",{"_index":3148,"title":{},"content":{"/tracks/python-101/frameworks/_index":{}},"description":{}}],["миллиард",{"_index":4481,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["миллион",{"_index":8774,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["миллисекунд",{"_index":6078,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["мин",{"_index":4043,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["минимальн",{"_index":713,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/_index":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day46":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["минимизац",{"_index":10162,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["минимизир",{"_index":7979,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["минимизирова",{"_index":7986,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["минимум",{"_index":340,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["министерств",{"_index":11695,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["минорн",{"_index":11119,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["минус",{"_index":6055,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day61":{}},"description":{}}],["минут",{"_index":1649,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["мир",{"_index":1198,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["мир!\"[0",{"_index":10730,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["миров",{"_index":4058,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["мировов",{"_index":4837,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["мирохозяйствен",{"_index":4949,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["миф",{"_index":6751,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day37":{},"/p/publications":{}},"description":{}}],["млн",{"_index":5248,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["млрд",{"_index":4503,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["мм",{"_index":2828,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["мнен",{"_index":10184,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["мног",{"_index":774,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["многоконтейнерн",{"_index":8577,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["многократн",{"_index":7985,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["многомерн",{"_index":2152,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["многомодельн",{"_index":6885,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["многопользовательск",{"_index":6882,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["многопоточн",{"_index":2610,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["многословн",{"_index":2127,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["многосторон",{"_index":4121,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["многострочн",{"_index":1998,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["многоузлов",{"_index":8297,"title":{"/tracks/90daysofdevops/day52":{}},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["многоуровнев",{"_index":2372,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["множеств",{"_index":1869,"title":{"/tracks/python-101/basis/sets":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["множествен",{"_index":2373,"title":{"/tracks/90daysofdevops/day61":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day61":{},"/posts/python-snippets/":{}},"description":{}}],["мо",{"_index":5304,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["мо­гут",{"_index":4684,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["мо­жет",{"_index":4607,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["мобильн",{"_index":759,"title":{"/tracks/90daysofdevops/day90":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day14":{},"/p/publications":{}},"description":{}}],["мог",{"_index":1601,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["могл",{"_index":423,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["модел",{"_index":3015,"title":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{}}}],["моделирова",{"_index":1679,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["моделирован",{"_index":6828,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day03":{},"/p/publications":{}},"description":{}}],["моделиру",{"_index":9551,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["модификатор",{"_index":2493,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["модифицирова",{"_index":2102,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["модул",{"_index":1301,"title":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day30":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/90daysofdevops/day30":{}}}],["модулирован",{"_index":1902,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["модульн",{"_index":1692,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/posts/python-snippets/":{}},"description":{}}],["мож",{"_index":600,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["мож­н",{"_index":4670,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["може",{"_index":9196,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["может",{"_index":1024,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["мок",{"_index":3216,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{}},"description":{}}],["молод",{"_index":11810,"title":{},"content":{"/p/publications":{}},"description":{}}],["молодеж",{"_index":11821,"title":{},"content":{"/p/publications":{}},"description":{}}],["молок",{"_index":3345,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["момент",{"_index":779,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["моментальн",{"_index":4380,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day87":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["монетаризм",{"_index":11609,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["моникер",{"_index":9171,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["мониториг",{"_index":10356,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["мониторинг",{"_index":4849,"title":{"/tracks/90daysofdevops/day77":{}},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["монкрет",{"_index":4907,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["монограф",{"_index":3960,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["монтир",{"_index":8187,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["монтирова",{"_index":8425,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["монтирован",{"_index":9794,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["мор",{"_index":8686,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["морск",{"_index":8684,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["мост",{"_index":8509,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["мостов",{"_index":8308,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["мотивац",{"_index":10180,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["мощн",{"_index":1620,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["мс",{"_index":1204,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["му­ни­ци­паль­ны­м",{"_index":4579,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["музык",{"_index":9812,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["музыкальн",{"_index":9813,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["мультимед",{"_index":341,"title":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["мультимедийн",{"_index":588,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["мультимодел",{"_index":6884,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["мультиоблачн",{"_index":9261,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["мультитенантн",{"_index":9319,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["мусор",{"_index":2040,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["мутабельн",{"_index":1872,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["мфв",{"_index":4262,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["мысл",{"_index":4007,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["мыш",{"_index":9377,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["мышечн",{"_index":10286,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["мышлен",{"_index":8669,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["мяс",{"_index":3346,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["н",{"_index":4036,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{}},"description":{}}],["на­зва­н",{"_index":4678,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["на­прав­ле­н",{"_index":4599,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["на­ря­д",{"_index":4637,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["на­ча­л",{"_index":4674,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["наберет",{"_index":10086,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["набира",{"_index":509,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["наблюда",{"_index":6499,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["наблюдаем",{"_index":7005,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наблюден",{"_index":4290,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["набор",{"_index":301,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["набра",{"_index":3663,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["наброса",{"_index":6870,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["навед",{"_index":9493,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["наведен",{"_index":7719,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["наверн",{"_index":7321,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["наверняк",{"_index":7327,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наверх",{"_index":9845,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["навест",{"_index":1263,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["навигац",{"_index":8763,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["навигирова",{"_index":5798,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{}},"description":{}}],["наводнен",{"_index":6438,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["навык",{"_index":7325,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["наглядн",{"_index":1779,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["нагрузк",{"_index":5323,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["нагрузки/прокс",{"_index":7708,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["нагрузок",{"_index":6816,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["над",{"_index":6427,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["надбавк",{"_index":4345,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["надежн",{"_index":1206,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["надзор",{"_index":4243,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["надмножеств",{"_index":10810,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["надпис",{"_index":1519,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["нажа",{"_index":1474,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{}},"description":{}}],["нажат",{"_index":1472,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day41":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["нажима",{"_index":951,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day17":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["нажм",{"_index":1007,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["нажмет",{"_index":6511,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["назва",{"_index":7163,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["назван",{"_index":1424,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{}}],["назнач",{"_index":744,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["назнача",{"_index":8447,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{}},"description":{}}],["назначен",{"_index":1672,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["назначьт",{"_index":10183,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["назов",{"_index":8960,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["называ",{"_index":15,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наибольш",{"_index":4002,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["наивн",{"_index":5640,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["наилучш",{"_index":1461,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наименьш",{"_index":5664,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{}}}],["найд",{"_index":143,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["найден",{"_index":6005,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/python-snippets/":{}},"description":{}}],["найдет",{"_index":6263,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["найт",{"_index":742,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["накладн",{"_index":6892,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["накладыва",{"_index":9342,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["накопител",{"_index":6740,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["накоплен",{"_index":4883,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["налага",{"_index":4564,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["налад",{"_index":10221,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["налев",{"_index":5757,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["налич",{"_index":1675,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/sets":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{}},"description":{}}],["наличие/отсутств",{"_index":5317,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["наличн",{"_index":4808,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["налог",{"_index":4561,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/репатриация":{}},"description":{}}],["налогов",{"_index":4458,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["намер",{"_index":10115,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["намерен",{"_index":1584,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["намн",{"_index":7045,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["нан",{"_index":9772,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["нанест",{"_index":6652,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["наоборот",{"_index":6216,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["напечата",{"_index":2641,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["написа",{"_index":1597,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["написан",{"_index":260,"title":{"/tracks/disser/articles-notes":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/disser/articles-notes":{}}}],["написать/подключ",{"_index":11296,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["напиш",{"_index":3705,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["напомина",{"_index":5765,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["напомн",{"_index":8190,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["направ",{"_index":5819,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["направл",{"_index":4536,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["направлен",{"_index":4120,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["направля",{"_index":8497,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["направьт",{"_index":10334,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["например",{"_index":221,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["напрот",{"_index":1804,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["напрям",{"_index":538,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["нареза",{"_index":1806,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["нарезк",{"_index":2008,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{}},"description":{}}],["нарисова",{"_index":9648,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["народ",{"_index":4943,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наруш",{"_index":8726,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["наруша",{"_index":8963,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["нарушен",{"_index":4552,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["наряд",{"_index":6768,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["населен",{"_index":4555,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наситуац",{"_index":4354,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["наскольк",{"_index":783,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day15":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["наслед",{"_index":2366,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{}},"description":{}}],["наследник",{"_index":2495,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["наследова",{"_index":3829,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["наследован",{"_index":2363,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/python-snippets/":{}},"description":{}}],["наследу",{"_index":3843,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["настанет",{"_index":6728,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["настольк",{"_index":782,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["настольн",{"_index":8400,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["настоя",{"_index":215,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day06":{},"/p/privacy_ru":{}},"description":{}}],["настоятельн",{"_index":9893,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["настраива",{"_index":914,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["настраиваем",{"_index":8495,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["настро",{"_index":718,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["настроек",{"_index":821,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["настроен",{"_index":3697,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["настройк",{"_index":355,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}}}],["настройки/переконфигурац",{"_index":8612,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["настройт",{"_index":1360,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["насчет",{"_index":7749,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["насчёт",{"_index":10790,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["натал",{"_index":4107,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["нативн",{"_index":6966,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["наткнул",{"_index":7697,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["натуральн",{"_index":6215,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["натыка",{"_index":7062,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["наук",{"_index":3878,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["науч",{"_index":924,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["научн",{"_index":1623,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/publications":{}},"description":{}}],["нафт",{"_index":4205,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["наход",{"_index":202,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["находя",{"_index":11914,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["нахож",{"_index":8033,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["нахожден",{"_index":5486,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/104/":{}}}],["нац",{"_index":4967,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нацел",{"_index":7624,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["национализац",{"_index":4544,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["национальн",{"_index":4084,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нача",{"_index":333,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["начал",{"_index":2467,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["начало(head",{"_index":5958,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["начальн",{"_index":2005,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["начат",{"_index":7439,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["начин",{"_index":2218,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day40":{},"/posts/python-snippets/":{}},"description":{}}],["начина",{"_index":1628,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["начн",{"_index":5562,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["начнет",{"_index":5386,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["начнут",{"_index":7862,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["наш",{"_index":374,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["нашел",{"_index":5766,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["нашл",{"_index":5668,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["нашёл",{"_index":11121,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["нащекин",{"_index":4932,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нб",{"_index":4615,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["не­та­мо­жен­н",{"_index":4581,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["не­та­риф­н",{"_index":4598,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["неавторизова",{"_index":6696,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["неактуальн",{"_index":8829,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["неандертальец",{"_index":10894,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["неболш",{"_index":10160,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["небольш",{"_index":1299,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["неваж",{"_index":11202,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["неважн",{"_index":8675,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["невероятн",{"_index":9757,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["невозмож",{"_index":200,"title":{},"content":{"/tracks/webrtc/turn-server":{}},"description":{}}],["невозможн",{"_index":1883,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{}},"description":{}}],["негативн",{"_index":7923,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["неглубок",{"_index":8905,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["недавн",{"_index":8750,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["недар",{"_index":11556,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["недвижим",{"_index":4468,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["недел",{"_index":7217,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{}},"description":{}}],["недокументирова",{"_index":7857,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["недолговечн",{"_index":8156,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["недопониман",{"_index":10163,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["недопустим",{"_index":10975,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["недостатк",{"_index":2022,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day37":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["недостаток",{"_index":5003,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["недостаточн",{"_index":4732,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["недостижим",{"_index":6821,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["недостоверн",{"_index":11909,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["недоступ",{"_index":6757,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["недоступн",{"_index":1748,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["недосяга",{"_index":10116,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["независим",{"_index":3764,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["незакон",{"_index":4785,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["незафиксирова",{"_index":8930,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["нездоров",{"_index":8437,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["неизвестн",{"_index":5770,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["неизмен",{"_index":1807,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["неизменя",{"_index":1805,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day56":{},"/posts/python-snippets/":{}},"description":{}}],["неизменяем",{"_index":3382,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["неинициализирова",{"_index":10744,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["неиспользова",{"_index":10067,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["неиспользуем",{"_index":2042,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["неисправн",{"_index":7157,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["некотор",{"_index":758,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["некотоыр",{"_index":9779,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["нелокальн",{"_index":1746,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["немедлен",{"_index":1977,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["ненагружен",{"_index":11300,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["ненужн",{"_index":7930,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["ненулев",{"_index":6161,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["необход",{"_index":193,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["необходим",{"_index":246,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["необязательн",{"_index":6843,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/posts/python-snippets/":{}},"description":{}}],["неоговорен",{"_index":11883,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["неоднократн",{"_index":7552,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["неоднородн",{"_index":2021,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["неожида",{"_index":7154,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["неоклассик",{"_index":11610,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неоклассическ",{"_index":11542,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неопределен",{"_index":4514,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["неотрицательн",{"_index":5753,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["неотслежива",{"_index":8819,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["неотслечен",{"_index":8898,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["неотсортирова",{"_index":5907,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["неоьбходим",{"_index":11422,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["непиков",{"_index":10353,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["неплох",{"_index":10064,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["неполадк",{"_index":9348,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["неполадок",{"_index":7171,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day05/":{},"/p/privacy_ru":{}},"description":{}}],["непомечен",{"_index":11649,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["непосильн",{"_index":904,"title":{},"content":{"/tracks/webrtc/_index":{}},"description":{}}],["непосредствен",{"_index":1720,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["неправильн",{"_index":6724,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day04":{},"/posts/markdown-syntax/":{}},"description":{}}],["неправомерн",{"_index":11894,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["непредвиден",{"_index":4350,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["непремен",{"_index":7030,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["непреодолим",{"_index":8264,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["непрерыв",{"_index":7493,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["непрерывн",{"_index":6908,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["непривычн",{"_index":11425,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["непригодн",{"_index":8241,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["неприемлем",{"_index":5346,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["неприкреплен",{"_index":7901,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["неприменим",{"_index":7904,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["непрост",{"_index":9481,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["неравенств",{"_index":10728,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["неравновес",{"_index":4438,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["неравновесн",{"_index":11589,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неравномерн",{"_index":4473,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["неразглашен",{"_index":11875,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["неразруша",{"_index":8828,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["неразрывн",{"_index":11587,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["неразумн",{"_index":4960,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["нераспространен",{"_index":11885,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["нереалистичн",{"_index":6705,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["нереляцион",{"_index":6817,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["нес",{"_index":10328,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["несет",{"_index":6752,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["нескольк",{"_index":27,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["несложн",{"_index":9716,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["несмотр",{"_index":551,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["несоглас",{"_index":11872,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["несогласован",{"_index":8168,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["несомнен",{"_index":6965,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["несоответств",{"_index":4746,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["нест",{"_index":9347,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["нестабильн",{"_index":4441,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["нестандартн",{"_index":9911,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["неструктурирова",{"_index":6839,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["несут",{"_index":9225,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["несуществ",{"_index":10792,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["несуществен",{"_index":4836,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["несчастн",{"_index":6655,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["нет",{"_index":3777,"title":{},"content":{"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["нетарифн",{"_index":4116,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["нетерпел",{"_index":9141,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["неторгуем",{"_index":5005,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["неубыван",{"_index":5817,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["неудач",{"_index":6699,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["неуклон",{"_index":8558,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["неупорядочен",{"_index":1873,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/posts/markdown-syntax/":{}},"description":{}}],["неуправля",{"_index":9219,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["неустановлен",{"_index":8915,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["нефинансов",{"_index":4220,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["нефт",{"_index":4508,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["нефтегазов",{"_index":4495,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["нехватк",{"_index":4251,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["нецелев",{"_index":11911,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["неч",{"_index":8971,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["неча",{"_index":11799,"title":{},"content":{"/p/publications":{}},"description":{}}],["нечетн",{"_index":5683,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["нечт",{"_index":3433,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["нешн",{"_index":4793,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["неявн",{"_index":1707,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["нигд",{"_index":8626,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["нидерланд",{"_index":4492,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["нижеприведен",{"_index":8411,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["нижн",{"_index":3427,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["нижнийрегистрс_подчёркиван",{"_index":10742,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["низк",{"_index":4324,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ник",{"_index":5774,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["никак",{"_index":940,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["николаевн",{"_index":4135,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["никт",{"_index":6767,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["ним",{"_index":592,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["нисходя",{"_index":10664,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["нич",{"_index":8692,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["ничт",{"_index":3798,"title":{},"content":{"/tracks/python-101/basis/conditionals":{}},"description":{}}],["нов",{"_index":68,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["новатор",{"_index":8646,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["новичк",{"_index":3881,"title":{},"content":{"/tracks/python-101/basis/_index":{}},"description":{}}],["новичок",{"_index":6850,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["ново",{"_index":11827,"title":{},"content":{"/p/publications":{}},"description":{}}],["новост",{"_index":9573,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["нод",{"_index":6212,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["нол",{"_index":3759,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{}}}],["номер",{"_index":1441,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day01":{},"/posts/interactivebrokers-deposit/":{},"/p/publications":{}},"description":{}}],["нор",{"_index":9529,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["нор­ма­тив­н",{"_index":4652,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["норм",{"_index":4729,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day06":{},"/p/privacy_ru":{}},"description":{}}],["нормальн",{"_index":3626,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["нормативн",{"_index":3956,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["носител",{"_index":6748,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["нотац",{"_index":1927,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["ноутбук",{"_index":7989,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["ноч",{"_index":7464,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["ночн",{"_index":7462,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["ноябр",{"_index":4320,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["нрав",{"_index":7941,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["нравл",{"_index":8933,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["нуж",{"_index":1288,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["нужд",{"_index":9266,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["нужда",{"_index":1106,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["нужн",{"_index":3495,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{}}],["нул",{"_index":3515,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day29":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["нулев",{"_index":1828,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day89":{}},"description":{}}],["нумерова",{"_index":11201,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["нян",{"_index":11702,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["нём",{"_index":10820,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["об",{"_index":4757,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day19/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["обе",{"_index":380,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/markdown-syntax/":{}},"description":{}}],["обезличиван",{"_index":11867,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["обернут",{"_index":3753,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["обертк",{"_index":2019,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["обертыван",{"_index":2176,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day60":{}},"description":{}}],["обеспеч",{"_index":411,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обеспечен",{"_index":1205,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["обеспечив",{"_index":4975,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day53":{}},"description":{}}],["обеспечива",{"_index":1143,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обеспечьт",{"_index":9568,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["обесцениван",{"_index":7742,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["обзор",{"_index":1478,"title":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{}},"content":{"/tracks/python-101/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{}}}],["облада",{"_index":851,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/types":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/posts/python-snippets/":{}},"description":{}}],["облак",{"_index":6361,"title":{"/tracks/90daysofdevops/day28":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{"/tracks/90daysofdevops/day28":{}}}],["облако\\01виртуальн",{"_index":8987,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["област",{"_index":1018,"title":{"/tracks/python-101/basis/scope":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["областн",{"_index":11808,"title":{},"content":{"/p/publications":{}},"description":{}}],["облачн",{"_index":226,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["облегч",{"_index":9644,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["облегча",{"_index":3152,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["облегчен",{"_index":6879,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["облигац",{"_index":4180,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["обм",{"_index":1037,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обмен",{"_index":4300,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["обменива",{"_index":929,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["обменник",{"_index":9198,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["обменя",{"_index":524,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["обнаруж",{"_index":154,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["обнаружен",{"_index":529,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["обнаружива",{"_index":8436,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["обнов",{"_index":823,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["обновл",{"_index":5919,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["обновлен",{"_index":1470,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["обновля",{"_index":3915,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["обо",{"_index":1067,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day01":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["обознач",{"_index":3517,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/conditionals":{},"/posts/markdown-syntax/":{}},"description":{}}],["обознача",{"_index":2080,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day39":{},"/posts/markdown-syntax/":{}},"description":{}}],["обозначен",{"_index":3535,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["обойд",{"_index":5719,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{}},"description":{}}],["обойдет",{"_index":4957,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["обойт",{"_index":5722,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["оболочк",{"_index":1034,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["оболочки/bash",{"_index":10281,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["оборачив",{"_index":3251,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["оборачива",{"_index":10982,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["оборот",{"_index":11600,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["оборудован",{"_index":765,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["обоснова",{"_index":4260,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["обрабатыва",{"_index":2985,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day10":{},"/p/privacy_ru":{}},"description":{}}],["обработа",{"_index":3752,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["обработк",{"_index":781,"title":{"/tracks/python-101/basis/exception_handling":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["обработчик",{"_index":1090,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["образ",{"_index":675,"title":{"/tracks/90daysofdevops/day44":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["образец",{"_index":8581,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["образова",{"_index":4279,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["образован",{"_index":3990,"title":{"/homepage/education":{}},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["образовательн",{"_index":9484,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/p/publications":{}},"description":{}}],["образц",{"_index":308,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["обрат",{"_index":376,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["обратн",{"_index":2870,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["обраща",{"_index":2264,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{}},"description":{}}],["обращен",{"_index":625,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day55":{},"/p/privacy_ru":{}},"description":{}}],["обслужива",{"_index":8446,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["обслуживан",{"_index":1279,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["обстоятельств",{"_index":9579,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["обсуд",{"_index":6717,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["обсужда",{"_index":6434,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["обсужден",{"_index":6517,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["обусловл",{"_index":4838,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["обусловлива",{"_index":4812,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["обуча",{"_index":4881,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["обучен",{"_index":1627,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["обход",{"_index":1856,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["обширн",{"_index":9500,"title":{},"content":{"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["общ",{"_index":383,"title":{"/tracks/90daysofdevops/day01":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day01":{}}}],["обща",{"_index":8110,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["общедоступ",{"_index":8729,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["общедоступн",{"_index":127,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["общемиров",{"_index":4183,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["общен",{"_index":8653,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["общепринят",{"_index":2465,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["обществ",{"_index":4848,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["объ",{"_index":4019,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["объ­ё­м",{"_index":4595,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["объедин",{"_index":2324,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["объединен",{"_index":2145,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{}},"description":{}}],["объединя",{"_index":539,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["объект",{"_index":240,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["объекта/экземпляр",{"_index":1957,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["объективн",{"_index":4813,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["объектн",{"_index":1644,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{}},"description":{}}],["объем",{"_index":2024,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["объяв",{"_index":5484,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["объявл",{"_index":2464,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["объявлен",{"_index":1821,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["объявля",{"_index":5671,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["объясн",{"_index":2012,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["объяснен",{"_index":1071,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["объясня",{"_index":1056,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["объём",{"_index":6023,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["обычн",{"_index":205,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["обычнойставк",{"_index":4346,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["обяза",{"_index":11901,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["обязан",{"_index":8434,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["обязательн",{"_index":1291,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["обязательств",{"_index":4126,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["обёртк",{"_index":9898,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["овладет",{"_index":1640,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["ог­ра­ни­че­н",{"_index":4645,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оглянут",{"_index":8195,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["оговорен",{"_index":11614,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["огранич",{"_index":2210,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["ограничен",{"_index":708,"title":{"/tracks/webrtc/media-capture-and-constraints":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{},"/p/privacy_ru":{}},"description":{}}],["ограничив",{"_index":4747,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ограничива",{"_index":2609,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["ограничительн",{"_index":4717,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["огромн",{"_index":1700,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["одинак",{"_index":8676,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["одинаков",{"_index":2057,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/репатриация":{}},"description":{}}],["одинарн",{"_index":3398,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["одиночн",{"_index":469,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{}},"description":{}}],["одн",{"_index":32,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["одновремен",{"_index":1440,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day04":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["однозначн",{"_index":1743,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["одноимен",{"_index":7212,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/posts/python-snippets/":{}},"description":{}}],["однократн",{"_index":6025,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["одномерн",{"_index":2153,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{}}],["однорангов",{"_index":382,"title":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["однородн",{"_index":2017,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["односвязн",{"_index":5681,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["однослойн",{"_index":10763,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["однострочн",{"_index":3350,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/posts/python-snippets/":{}},"description":{}}],["одобр",{"_index":8737,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["одобря",{"_index":629,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["ожид",{"_index":9142,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["ожида",{"_index":94,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day02":{},"/posts/nextjs-to-github-pages-ations/":{},"/p/publications":{}},"description":{}}],["ожидаем",{"_index":9093,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["ожидан",{"_index":2712,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["ознаком",{"_index":1775,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{},"/p/privacy_ru":{}},"description":{}}],["ознакомлен",{"_index":6984,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["ознакомьт",{"_index":7141,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["означа",{"_index":518,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["ок",{"_index":1072,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["окажет",{"_index":5964,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["оказа",{"_index":4959,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["оказан",{"_index":4258,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оказыва",{"_index":4315,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day06":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["окн",{"_index":278,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["окон",{"_index":9264,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["окончан",{"_index":181,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["окончательн",{"_index":8621,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["округля",{"_index":10718,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["окружа",{"_index":4618,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["окружен",{"_index":2258,"title":{"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}}}],["олин",{"_index":4077,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["онлайн",{"_index":228,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day24":{}},"description":{"/tracks/90daysofdevops/day40":{}}}],["оон",{"_index":4519,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["ооп",{"_index":2347,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["оп",{"_index":1303,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["опасн",{"_index":8650,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["оперативн",{"_index":8182,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{}},"description":{}}],["оператор",{"_index":1643,"title":{"/tracks/python-101/basis/operators":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["операц",{"_index":1829,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["операцион",{"_index":2662,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/docker-commands/":{}},"description":{}}],["опережа",{"_index":8709,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["опечата",{"_index":8766,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["опечатк",{"_index":7244,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["опечаток",{"_index":8764,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["опира",{"_index":4532,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["описа",{"_index":2001,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{}},"description":{}}],["описан",{"_index":485,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["описыва",{"_index":645,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["оплат",{"_index":4361,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/posts/interactivebrokers-deposit/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/репатриация":{}},"description":{}}],["оплачива",{"_index":5383,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["оповещен",{"_index":6970,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["оппонент",{"_index":4981,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["оправда",{"_index":10179,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["опреацион",{"_index":9574,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["определ",{"_index":817,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["определен",{"_index":462,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{}}}],["определя",{"_index":470,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["определён",{"_index":4990,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/markdown-syntax/":{}},"description":{}}],["опробова",{"_index":8493,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["опрос",{"_index":9315,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["опрятн",{"_index":7720,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["оптимальн",{"_index":786,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["оптимизац",{"_index":3359,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["оптимизир",{"_index":11588,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["оптимизирова",{"_index":5893,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["опубликова",{"_index":7988,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day41":{},"/p/publications":{}},"description":{}}],["опуска",{"_index":8466,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["опустеет",{"_index":5460,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["опущ",{"_index":8456,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{}},"description":{}}],["опц",{"_index":4415,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["опцион",{"_index":4377,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["опциональн",{"_index":11635,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["опыт",{"_index":4805,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day01":{},"/p/репатриация":{}},"description":{}}],["опытн",{"_index":3882,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["ор­га­на­м",{"_index":4580,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ор­га­ни­за­ц",{"_index":4682,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["орга",{"_index":4445,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/p/privacy_ru":{}},"description":{}}],["орган",{"_index":4718,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["организ",{"_index":6835,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/p/privacy_ru":{}},"description":{}}],["организац",{"_index":4118,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/p/репатриация":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["организацион",{"_index":9309,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["организм",{"_index":6925,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["организова",{"_index":6887,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["организовыва",{"_index":10096,"title":{},"content":{"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["организуем",{"_index":9820,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["ордын",{"_index":4931,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["оригина",{"_index":6731,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["оригинал",{"_index":6093,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["оригинальн",{"_index":2221,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["ориентац",{"_index":4773,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ориентирова",{"_index":1645,"title":{"/tracks/90daysofdevops/day88":{}},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["ориентирован",{"_index":10189,"title":{"/tracks/90daysofdevops/day03":{}},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{}},"description":{"/tracks/90daysofdevops/day03":{}}}],["оркестратор",{"_index":8223,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["оркестрац",{"_index":9268,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["оркестрир",{"_index":9572,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["оркестрова",{"_index":9509,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["оркестровк",{"_index":7881,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["ос",{"_index":2647,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["ос­но­в",{"_index":4686,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["осваива",{"_index":10114,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["осведомлен",{"_index":8167,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["освет",{"_index":7573,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["освеща",{"_index":10161,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["освещен",{"_index":6715,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["осво",{"_index":1193,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["освобод",{"_index":7222,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["оскар",{"_index":10940,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ослабля",{"_index":4319,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["осмел",{"_index":9193,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["осмыслен",{"_index":6872,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["осн",{"_index":3877,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["основ",{"_index":1208,"title":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day49":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["основа",{"_index":2932,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["основан",{"_index":11852,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["основн",{"_index":938,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/posts/docker-commands/":{}}}],["основополага",{"_index":10226,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["основыв",{"_index":6475,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["особ",{"_index":4230,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["особен",{"_index":4088,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["осозна",{"_index":10348,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["оста",{"_index":439,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["остав",{"_index":5482,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["остава",{"_index":3625,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["оставл",{"_index":9499,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["оставля",{"_index":5385,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["оставьт",{"_index":8924,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["остальн",{"_index":1983,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["остальын",{"_index":9879,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["останавлива",{"_index":11629,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["останет",{"_index":8672,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["останов",{"_index":1517,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["остановк",{"_index":8583,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["останут",{"_index":7856,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["остатк",{"_index":6217,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["остаток",{"_index":3589,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["осторожн",{"_index":8114,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["осуществ",{"_index":11908,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["осуществля",{"_index":709,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["отброс",{"_index":8818,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["отбросьт",{"_index":8922,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["отвернут",{"_index":10232,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["ответ",{"_index":91,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["ответствен",{"_index":1943,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day08/":{},"/p/privacy_ru":{}},"description":{}}],["отвеча",{"_index":54,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/frameworks/django":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["отвод",{"_index":4912,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["отговор",{"_index":10105,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["отгорож",{"_index":9339,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["отд",{"_index":11712,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["отда",{"_index":460,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["отдел",{"_index":7609,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["отделен",{"_index":8578,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["отдельн",{"_index":342,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["отдохн",{"_index":6420,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["отеч",{"_index":4601,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["отечествен",{"_index":4534,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["отз",{"_index":4030,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["отзыв",{"_index":8209,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["откаж",{"_index":8535,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["отказ",{"_index":6838,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отказа",{"_index":9364,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["отказоустойчив",{"_index":6759,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["откат",{"_index":5585,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["откатыва",{"_index":10130,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["отклик",{"_index":10357,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["отклон",{"_index":631,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["отключ",{"_index":299,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отключа",{"_index":276,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{}},"description":{}}],["отключен",{"_index":9897,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["откр",{"_index":612,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{},"/p/репатриация":{}},"description":{}}],["откро",{"_index":7591,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["откроет",{"_index":6781,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["откройт",{"_index":1012,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["открыва",{"_index":604,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["открыт",{"_index":224,"title":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["откуд",{"_index":7038,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["отладк",{"_index":1463,"title":{"/tracks/python-101/enhance_python/debugging":{}},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day07":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["отладчик",{"_index":3301,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["отлажен",{"_index":1174,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["отлажива",{"_index":8491,"title":{},"content":{"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["отлич",{"_index":1254,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day07":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["отлича",{"_index":526,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["отличительн",{"_index":10008,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["отличн",{"_index":3799,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["отложен",{"_index":11391,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["отм",{"_index":8790,"title":{"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{"/tracks/90daysofdevops/day39":{}}}],["отмен",{"_index":8812,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["отменя",{"_index":8917,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["отмет",{"_index":3187,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["отмеч",{"_index":7598,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["отмеча",{"_index":7301,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["относ",{"_index":1087,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["относительн",{"_index":1905,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["относя",{"_index":7210,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/p/privacy_ru":{}},"description":{}}],["отношен",{"_index":2570,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["отображ",{"_index":2825,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day74":{}},"description":{}}],["отобража",{"_index":955,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["отображен",{"_index":771,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day14":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["отобраз",{"_index":3316,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отождествля",{"_index":11598,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["отозва",{"_index":11896,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["отправ",{"_index":568,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["отправител",{"_index":1285,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["отправк",{"_index":435,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["отправл",{"_index":480,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["отправлен",{"_index":892,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day89":{}},"description":{}}],["отправля",{"_index":487,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["отправн",{"_index":8594,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["отправьт",{"_index":923,"title":{"/tracks/webrtc/practice/practice-take-photo":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["отработа",{"_index":11092,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["отраж",{"_index":654,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["отража",{"_index":4846,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["отрасл",{"_index":4453,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["отраслев",{"_index":8647,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["отредактир",{"_index":9520,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["отредактирова",{"_index":6737,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["отрезк",{"_index":6241,"title":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/posts/trading-indicators/sma":{}},"description":{"/tracks/algorithms-101/data-structures/segment-tree":{}}}],["отрезкe",{"_index":6304,"title":{},"content":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["отрезков",{"_index":6251,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["отрезок",{"_index":6249,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/trading-indicators/sma":{}},"description":{}}],["отрис",{"_index":11278,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрисовк",{"_index":11267,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрисовыва",{"_index":11289,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрисоыва",{"_index":11276,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["отрицан",{"_index":10722,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["отрицательн",{"_index":2345,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/python-snippets/":{}},"description":{}}],["отрыв",{"_index":4922,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["отслед",{"_index":584,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["отслежив",{"_index":365,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["отслежива",{"_index":602,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["отслеживан",{"_index":670,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/standard_library/logging":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["отслеживател",{"_index":676,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["отсортир",{"_index":5975,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["отсортирова",{"_index":5816,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/4/":{}}}],["отста",{"_index":8941,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["отступ",{"_index":10812,"title":{},"content":{"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["отсутств",{"_index":2270,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["отсчет",{"_index":8641,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["отток",{"_index":4343,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["оттуд",{"_index":9501,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["отфильтрова",{"_index":2124,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["отформатирова",{"_index":2803,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["отчеств",{"_index":11880,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["отчет",{"_index":641,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["отчетн",{"_index":7880,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["офи­ци­аль­н",{"_index":4651,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["офис",{"_index":6760,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["официальн",{"_index":1729,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["оформ",{"_index":11205,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["оформлен",{"_index":3931,"title":{"/posts/markdown-syntax/":{}},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/markdown-syntax/":{}},"description":{"/posts/markdown-syntax/":{}}}],["оформля",{"_index":3966,"title":{},"content":{"/tracks/disser/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["охват",{"_index":6416,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["охватыва",{"_index":858,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["охра",{"_index":4617,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оцен",{"_index":4389,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["оцен­к",{"_index":4697,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["оценива",{"_index":4807,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day30":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["оценк",{"_index":4372,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["очевид",{"_index":7228,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["очевидн",{"_index":1526,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["очеред",{"_index":1767,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day49":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["очист",{"_index":6448,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{}},"description":{}}],["очистк",{"_index":4786,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["очища",{"_index":2050,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["ошиба",{"_index":9895,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["ошибк",{"_index":1237,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ошибок",{"_index":1226,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["оьбраз",{"_index":8588,"title":{"/tracks/90daysofdevops/day45":{}},"content":{},"description":{}}],["оэср/organis",{"_index":4527,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["п",{"_index":10731,"title":{},"content":{"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["паден",{"_index":4507,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["пазл",{"_index":7148,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["пайк",{"_index":11189,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["пайплайн",{"_index":7338,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пакет",{"_index":1296,"title":{"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{}},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{}}],["пакетн",{"_index":8938,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["пакетов/модул",{"_index":2051,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["палиндр",{"_index":6094,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["палиндром",{"_index":6091,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["памя",{"_index":2033,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["памят",{"_index":1677,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["панел",{"_index":1504,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["паник",{"_index":4455,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["папк",{"_index":931,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["папка1",{"_index":10092,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["папка2",{"_index":10093,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["папка3",{"_index":10094,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["папок",{"_index":7648,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["пар",{"_index":1598,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["параграф",{"_index":11155,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["парадигм",{"_index":8439,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["параллелизм",{"_index":9338,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["параллельн",{"_index":2620,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["параметр",{"_index":468,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["парижск",{"_index":4191,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["паритет",{"_index":4151,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["парол",{"_index":5313,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["парс",{"_index":2952,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["парсер",{"_index":2972,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["парсинг",{"_index":11293,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["парт",{"_index":5471,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["партнер",{"_index":4875,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["партнерств",{"_index":4880,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["паспорт",{"_index":11825,"title":{},"content":{"/p/publications":{}},"description":{}}],["паст",{"_index":1062,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["патент",{"_index":4762,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["пауз",{"_index":763,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["перв",{"_index":96,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["первичн",{"_index":6510,"title":{},"content":{"/tracks/90daysofdevops/day89":{}},"description":{}}],["первоисточник",{"_index":4004,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["первоначальн",{"_index":8150,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["первопричин",{"_index":6954,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["первостепен",{"_index":6944,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["первых(в",{"_index":5499,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["переадресац",{"_index":9185,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["перебазирова",{"_index":8832,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["перебер",{"_index":5526,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["перебра",{"_index":3805,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["перевед",{"_index":7039,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["перевернут",{"_index":5445,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["перевест",{"_index":10,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["перевод",{"_index":2869,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["перевож",{"_index":10088,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["перевозк",{"_index":8685,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["переворачив",{"_index":6092,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["переворачива",{"_index":3647,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["переворачиван",{"_index":6168,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["переговор",{"_index":4122,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["перегружен",{"_index":7735,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["перегрузк",{"_index":9621,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["переда",{"_index":89,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["передав",{"_index":1149,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/algorithms-101/leetcode/medium/1448/":{}},"description":{}}],["передава",{"_index":335,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["передад",{"_index":7300,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["передаст",{"_index":9647,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["передач",{"_index":414,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["передов",{"_index":10193,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["переж",{"_index":4355,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["перезагруж",{"_index":7434,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["перезагружа",{"_index":11421,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перезагруз",{"_index":9532,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перезагрузк",{"_index":1469,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перезаписа",{"_index":8928,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["перезаписыва",{"_index":5858,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["перезапуск",{"_index":7455,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["перезапуска",{"_index":1458,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["перезапуст",{"_index":1001,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["переименова",{"_index":8560,"title":{"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["переименован",{"_index":8882,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["переименование/перемещен",{"_index":8893,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["переименовыва",{"_index":8894,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["переименовыван",{"_index":11372,"title":{},"content":{},"description":{"/posts/howto-rename-files-in-python/":{}}}],["переиспользован",{"_index":3105,"title":{},"content":{"/tracks/python-101/frameworks/django":{}},"description":{}}],["перейд",{"_index":6506,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["перейдет",{"_index":5487,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["перейдут",{"_index":9654,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["перейт",{"_index":1651,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["переключ",{"_index":148,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["переключа",{"_index":5329,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day26":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["перемен",{"_index":1747,"title":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day11":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{"/tracks/90daysofdevops/day11":{}}}],["перемест",{"_index":6160,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["перемеша",{"_index":5631,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["перемешива",{"_index":5638,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["перемешиван",{"_index":5627,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/384/":{}}}],["перемеща",{"_index":5542,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["перемещен",{"_index":4568,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["перемножа",{"_index":5840,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["перемотк",{"_index":8932,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["перенаправ",{"_index":2690,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day54":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["перенаправлен",{"_index":9660,"title":{},"content":{"/tracks/90daysofdevops/day21":{},"/posts/howto-redirect-to-url/":{},"/posts/docker-commands/":{}},"description":{}}],["перенаправля",{"_index":2695,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["перенастро",{"_index":825,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["перенес",{"_index":5391,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["перенест",{"_index":7002,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["перенос",{"_index":1020,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/posts/markdown-syntax/":{}},"description":{}}],["переносим",{"_index":2234,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["переопредел",{"_index":2077,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["переопределен",{"_index":1773,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["переопределя",{"_index":3830,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day47":{},"/posts/python-snippets/":{}},"description":{}}],["переписа",{"_index":5857,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["переписыва",{"_index":8833,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["переписыван",{"_index":8837,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["перепланирован",{"_index":8463,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["переплет",{"_index":7560,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["переполнен",{"_index":7188,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["переполня",{"_index":1270,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["перепрыгива",{"_index":5967,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["перераспределен",{"_index":9620,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["пересборк",{"_index":8602,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["пересека",{"_index":7943,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/posts/trading-indicators/sma":{}},"description":{}}],["пересечен",{"_index":3553,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/posts/python-snippets/":{}},"description":{}}],["перескакива",{"_index":5959,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["пересматрива",{"_index":5990,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["пересмотрет",{"_index":6429,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["переста",{"_index":177,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["перестав",{"_index":5682,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["переставл",{"_index":5709,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["переставля",{"_index":5491,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["перестанет",{"_index":186,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["перестановк",{"_index":5705,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["перестановок",{"_index":6173,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["перестраив",{"_index":8431,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["перестраива",{"_index":8600,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["перестройк",{"_index":4323,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["пересыла",{"_index":9659,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["переустанов",{"_index":157,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["перехват",{"_index":9709,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["переход",{"_index":7,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["перечен",{"_index":3950,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["перечисл",{"_index":2438,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["перечислен",{"_index":2660,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["перечисля",{"_index":1236,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["перешел",{"_index":8850,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["перешл",{"_index":3344,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["периметр",{"_index":2557,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["период",{"_index":182,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["персистентн",{"_index":7433,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["персон",{"_index":5771,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{}},"description":{}}],["персона",{"_index":6945,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["персональн",{"_index":11847,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["перспектив",{"_index":4111,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["песочниц",{"_index":9512,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["печ",{"_index":4042,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["печа",{"_index":5268,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["печат",{"_index":2626,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["печата",{"_index":2640,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["печатн",{"_index":4052,"title":{"/p/publications":{}},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/p/publications":{}},"description":{"/p/publications":{}}}],["пи",{"_index":4462,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["пиcа",{"_index":11017,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["пиков",{"_index":10352,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пинг",{"_index":1171,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["пингова",{"_index":9616,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["пингу",{"_index":8516,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["пиринг",{"_index":9088,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["пирингов",{"_index":9160,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["пис",{"_index":2717,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["писа",{"_index":3665,"title":{},"content":{"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["писанин",{"_index":6421,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["письм",{"_index":2722,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["питан",{"_index":4625,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["питон",{"_index":9474,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["пиш",{"_index":5267,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["пишет",{"_index":3714,"title":{},"content":{"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пишут",{"_index":8131,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["пишущ",{"_index":8166,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["пк",{"_index":9910,"title":{},"content":{"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["плава",{"_index":1835,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["плагин",{"_index":7037,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["план",{"_index":5,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{},"/posts/integrate-hugo-react/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["планир",{"_index":9,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["планирован",{"_index":6790,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["планировщик",{"_index":8435,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["планиру",{"_index":7421,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["пластыр",{"_index":7559,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["плат",{"_index":4870,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["платеж",{"_index":4252,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["платежн",{"_index":4231,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["платн",{"_index":7498,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["платформ",{"_index":3159,"title":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{}},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/p/publications":{}},"description":{}}],["платформен",{"_index":6841,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["плачут",{"_index":8788,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["плеер",{"_index":9814,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["плейбук",{"_index":7592,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["плейлист",{"_index":7604,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["плеч",{"_index":7323,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["плоскост",{"_index":7577,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["плох",{"_index":6703,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["площад",{"_index":2556,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["площадк",{"_index":11842,"title":{},"content":{"/p/publications":{}},"description":{}}],["плюс",{"_index":7823,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["по",{"_index":9346,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["по­мо­щ",{"_index":4669,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["по­ня­т",{"_index":4655,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["по­ня­ти­",{"_index":4638,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["по­шлин",{"_index":4667,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["побед",{"_index":5483,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["победител",{"_index":5500,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["побежда",{"_index":5502,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["побитов",{"_index":2188,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{}},"description":{}}],["поведен",{"_index":160,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["повезт",{"_index":8689,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["повер",{"_index":8196,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["поверх",{"_index":6963,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["поверхн",{"_index":6765,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["повлия",{"_index":1913,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["повод",{"_index":9201,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["повседневн",{"_index":3492,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["повсюд",{"_index":10296,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["повтор",{"_index":5984,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["повторен",{"_index":3412,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["повторител",{"_index":9635,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["повторн",{"_index":1693,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["повторя",{"_index":3617,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["повторяем",{"_index":10190,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["повыс",{"_index":7052,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["повыша",{"_index":6922,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["повышен",{"_index":4447,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["поговор",{"_index":6741,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/posts/python-snippets/":{}},"description":{}}],["пограничн",{"_index":4727,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["погружа",{"_index":8586,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["погружен",{"_index":6894,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["погруз",{"_index":6418,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["пода",{"_index":5444,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["подач",{"_index":8781,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["подбира",{"_index":3955,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["подбор/выбор",{"_index":3936,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["подвед",{"_index":10155,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["подведен",{"_index":10363,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["подверга",{"_index":7530,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["подвергнет",{"_index":6726,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["подвергнут",{"_index":6764,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["подверж",{"_index":11620,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["подвержден",{"_index":11240,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["подвержен",{"_index":1906,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["подводн",{"_index":8533,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["подготов",{"_index":8109,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["подготовк",{"_index":4010,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/disser/_index":{},"/apps/cloud-exam-quizz/":{}}}],["подготовлен",{"_index":4046,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["подготовьт",{"_index":8153,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["подгруж",{"_index":11138,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["подгружа",{"_index":11340,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["подгрузк",{"_index":11248,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["подда",{"_index":6819,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["поддельн",{"_index":283,"title":{},"content":{"/tracks/webrtc/testing":{}},"description":{}}],["поддерев",{"_index":5582,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["поддержан",{"_index":4919,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["поддержив",{"_index":4970,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["поддержива",{"_index":67,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["поддержк",{"_index":4314,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["подел",{"_index":1450,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["подкаст",{"_index":7200,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["подкаталог",{"_index":2583,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["подкласс",{"_index":2574,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["подклчю",{"_index":11246,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["подключ",{"_index":334,"title":{"/posts/integrate-hugo-react/":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["подключа",{"_index":336,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["подключаться/отключа",{"_index":776,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["подключен",{"_index":247,"title":{"/tracks/90daysofdevops/day13":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/90daysofdevops/day13":{},"/posts/integrate-hugo-react/":{}}}],["подкоманд",{"_index":8504,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["подкортеж",{"_index":3379,"title":{},"content":{"/tracks/python-101/basis/tuples":{}},"description":{}}],["подлеж",{"_index":11884,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["подлежа",{"_index":11862,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["подлежат",{"_index":5318,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["подлин",{"_index":9139,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["подмножеств",{"_index":3631,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/posts/python-snippets/":{}},"description":{}}],["подним",{"_index":8210,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["поднима",{"_index":8465,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["поднимут",{"_index":6980,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["подня",{"_index":6911,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["поднят",{"_index":8455,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["подобн",{"_index":1229,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["подожд",{"_index":10231,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["подожда",{"_index":6979,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day73":{}},"description":{}}],["подорва",{"_index":4357,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["подорож",{"_index":11729,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["подп",{"_index":8607,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["подпапк",{"_index":7722,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["подписа",{"_index":4024,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["подписан",{"_index":4769,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["подписк",{"_index":9154,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["подписок",{"_index":9337,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["подпоследовательн",{"_index":5718,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["подправ",{"_index":5293,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["подпрограмм",{"_index":2928,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["подпут",{"_index":5559,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{}},"description":{}}],["подработк",{"_index":11730,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["подраздел",{"_index":6941,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["подразделен",{"_index":9617,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["подразумева",{"_index":1500,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["подробн",{"_index":70,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["подсветк",{"_index":11199,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["подсет",{"_index":5355,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["подсист",{"_index":7201,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["подсистем",{"_index":7254,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["подсказк",{"_index":5457,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["подсоедин",{"_index":775,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["подсоединен",{"_index":772,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["подставл",{"_index":3536,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["подстановк",{"_index":3396,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["подстрок",{"_index":3510,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["подсчет",{"_index":3386,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["подсчита",{"_index":5563,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["подсчитыв",{"_index":6038,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["подсчитыва",{"_index":5759,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["подтверд",{"_index":6398,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["подтвержд",{"_index":7424,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["подтвержда",{"_index":8527,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["подтвержден",{"_index":4736,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day14":{}},"description":{"/posts/diploma/":{}}}],["подтип",{"_index":1841,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["подума",{"_index":1988,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["подход",{"_index":1308,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["подходя",{"_index":5561,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["подчеркива",{"_index":1682,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["подчеркиван",{"_index":1940,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/posts/markdown-syntax/":{}},"description":{}}],["подчеркнет",{"_index":10323,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["подчеркнул",{"_index":7006,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["подчеркнут",{"_index":1510,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["подчинен",{"_index":7496,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["подчёркиван",{"_index":10869,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["пож",{"_index":9842,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["пожалова",{"_index":9650,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["пожар",{"_index":6437,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day63":{}},"description":{}}],["пожела",{"_index":8544,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["позвол",{"_index":560,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["позвольт",{"_index":7970,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["позволя",{"_index":110,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["поздн",{"_index":1120,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["позитивн",{"_index":4804,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["позиц",{"_index":3518,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day01":{},"/posts/trading-indicators/sma":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["позицион",{"_index":3298,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["познаком",{"_index":3348,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day33":{},"/posts/python-snippets/":{}},"description":{}}],["познакомьт",{"_index":7858,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["поигра",{"_index":7140,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["поинтер",{"_index":5962,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["поиск",{"_index":1089,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/tuples":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["поиска",{"_index":9702,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["поисков",{"_index":3893,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["поисковик",{"_index":3894,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["пойд",{"_index":9312,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["пойдет",{"_index":3354,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пойм",{"_index":6723,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["поймет",{"_index":8982,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["пойт",{"_index":6651,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["пок",{"_index":8929,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["покаж",{"_index":908,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["покажет",{"_index":6640,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["показа",{"_index":1516,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["показател",{"_index":3887,"title":{},"content":{"/tracks/disser/israel-notes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day31":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["показыва",{"_index":433,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["покет",{"_index":11299,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["покида",{"_index":9157,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["покинут",{"_index":9605,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["покопа",{"_index":9665,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["покр",{"_index":9091,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["покрыт",{"_index":8027,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/p/репатриация":{},"/p/publications":{}},"description":{}}],["покупа",{"_index":4465,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day03":{},"/posts/trading-indicators/sma":{}},"description":{}}],["покупател",{"_index":4414,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупательн",{"_index":4152,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупк",{"_index":4379,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day28":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["покупке/продаж",{"_index":4409,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупки/продаж",{"_index":4406,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["покупок",{"_index":6831,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["пол",{"_index":5294,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day15":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["полаг",{"_index":10129,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["полага",{"_index":8356,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["полев",{"_index":6958,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["полез",{"_index":2668,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["полезн",{"_index":263,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["полиморфизм",{"_index":3876,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["политик",{"_index":4067,"title":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/privacy_ru":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["политическ",{"_index":4367,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/p/privacy_ru":{}},"description":{}}],["полн",{"_index":540,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["полност",{"_index":1689,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["полнотекстов",{"_index":6881,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{}},"description":{}}],["полноцен",{"_index":3149,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["половин",{"_index":4903,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["полож",{"_index":8875,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/posts/python-snippets/":{}},"description":{}}],["положен",{"_index":4738,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/p/privacy_ru":{}},"description":{}}],["положительн",{"_index":3769,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["поломк",{"_index":1991,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["получ",{"_index":490,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["получа",{"_index":488,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/p/privacy_ru":{}},"description":{}}],["получат",{"_index":7644,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["получател",{"_index":1286,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["получен",{"_index":337,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["получш",{"_index":1313,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["польз",{"_index":7231,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/docker-commands/":{}}}],["пользвоател",{"_index":11431,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["пользова",{"_index":8694,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["пользован",{"_index":8593,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["пользовател",{"_index":628,"title":{"/tracks/python-101/basis/inputs":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{},"/p/privacy_ru":{}},"description":{}}],["пользовательск",{"_index":647,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["пользователя(логин",{"_index":5307,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["поменя",{"_index":1456,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/posts/python-snippets/":{}},"description":{}}],["помест",{"_index":1932,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{}},"description":{}}],["помет",{"_index":7626,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["помеч",{"_index":7627,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["помеча",{"_index":7662,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["помечен",{"_index":11028,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["помеша",{"_index":10192,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["помещ",{"_index":7525,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["помеща",{"_index":3755,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["помещен",{"_index":6811,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["помим",{"_index":769,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["помн",{"_index":7238,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{}},"description":{}}],["помог",{"_index":7483,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["помога",{"_index":1678,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/p/репатриация":{}},"description":{}}],["помогл",{"_index":7440,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["помогут",{"_index":8357,"title":{},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["поможет",{"_index":1654,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["помоч",{"_index":1630,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["помощ",{"_index":593,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cheat-sheet-command-tar/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}}}],["помощник",{"_index":6931,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["понадоб",{"_index":1480,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["понедельник",{"_index":10282,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["понесет",{"_index":7343,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["понижен",{"_index":4435,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["поним",{"_index":10329,"title":{},"content":{"/tracks/90daysofdevops/day08/":{}},"description":{}}],["понима",{"_index":4816,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["пониман",{"_index":1040,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["поня",{"_index":1704,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["понят",{"_index":2125,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/p/privacy_ru":{}},"description":{}}],["понятн",{"_index":1636,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/p/publications":{}},"description":{}}],["поощрен",{"_index":4918,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["поощря",{"_index":8648,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["попада",{"_index":6082,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["попадет",{"_index":8849,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["попаст",{"_index":7152,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["пополнен",{"_index":11227,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["поприветств",{"_index":3671,"title":{},"content":{"/tracks/python-101/basis/inputs":{}},"description":{}}],["попроб",{"_index":1228,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["попробова",{"_index":7973,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["попробу",{"_index":3587,"title":{},"content":{"/tracks/python-101/basis/scope":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["попробует",{"_index":1784,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["попрос",{"_index":3494,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/p/репатриация":{}},"description":{}}],["попроща",{"_index":9859,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["популяр",{"_index":3982,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["популярн",{"_index":3189,"title":{"/posts/docker-commands/":{}},"content":{"/tracks/python-101/external_packages/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["попыта",{"_index":3585,"title":{},"content":{"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["попытк",{"_index":184,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["попыток",{"_index":6658,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["поработа",{"_index":7422,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["порад",{"_index":11006,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["порекоменд",{"_index":8259,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["порогов",{"_index":4240,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["порт",{"_index":238,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["порта",{"_index":9189,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["портал",{"_index":9191,"title":{},"content":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["портативн",{"_index":8417,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["портфельн",{"_index":4464,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["порядк",{"_index":2643,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["порядок",{"_index":2645,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["посад",{"_index":6128,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["посвят",{"_index":8554,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["посвящ",{"_index":3349,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["посвящен",{"_index":3963,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["посекундн",{"_index":9265,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["посет",{"_index":1522,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["посетител",{"_index":7166,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["посеща",{"_index":1459,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day79":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["посещаем",{"_index":8773,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["поскольк",{"_index":197,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["послден",{"_index":8806,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["послед",{"_index":4417,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["последн",{"_index":1055,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["последнг",{"_index":6250,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["последовател",{"_index":4980,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["последовательн",{"_index":1791,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["последств",{"_index":4127,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["посмотр",{"_index":1017,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{}},"description":{}}],["посмотрет",{"_index":1197,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["пособ",{"_index":10208,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["посовет",{"_index":8728,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["посоветова",{"_index":8107,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["посредник",{"_index":9296,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["посредническ",{"_index":11602,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["посредств",{"_index":7477,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/p/privacy_ru":{}},"description":{}}],["пост",{"_index":6430,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["постав",{"_index":5295,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["поставл",{"_index":8642,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["поставлен",{"_index":9220,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["поставля",{"_index":3198,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["поставок",{"_index":11615,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["поставщик",{"_index":7544,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["поставьт",{"_index":1512,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["постановк",{"_index":7975,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["постара",{"_index":1634,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["постепен",{"_index":4482,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["постоя",{"_index":4802,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["постоянств",{"_index":8178,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["пострада",{"_index":7225,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["постро",{"_index":2245,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["построен",{"_index":4164,"title":{"/tracks/90daysofdevops/day73":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day24":{},"/posts/docker-commands/":{}},"description":{}}],["построител",{"_index":2166,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["построчн",{"_index":1712,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["постсоветск",{"_index":4204,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["поступа",{"_index":7033,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["поступлен",{"_index":4254,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["посчита",{"_index":5525,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{}},"description":{}}],["посыла",{"_index":11523,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["потенциа",{"_index":4255,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day61":{}},"description":{}}],["потенциальн",{"_index":827,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/trading-indicators/sma":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["потер",{"_index":1593,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["потерп",{"_index":8180,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["потеря",{"_index":6693,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["поток",{"_index":332,"title":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/standard_library/threading":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["потоков",{"_index":1031,"title":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["потомк",{"_index":2461,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["потомок",{"_index":2572,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["потрат",{"_index":6516,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["потреб",{"_index":72,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["потребител",{"_index":4574,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["потребительск",{"_index":4840,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["потреблен",{"_index":2023,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["потребля",{"_index":2020,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["потребн",{"_index":6353,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day20":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["потребова",{"_index":990,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["потренир",{"_index":9774,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["потряса",{"_index":8415,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["похож",{"_index":1585,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["почерпнул",{"_index":10209,"title":{},"content":{"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["почита",{"_index":9234,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["почт",{"_index":2721,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["почтов",{"_index":9592,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["пошагов",{"_index":5299,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{}}}],["пошел",{"_index":6584,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["пошлин",{"_index":4535,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["пошут",{"_index":8093,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["поэлементн",{"_index":5673,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["поэт",{"_index":351,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/inputs":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["поэтапн",{"_index":8599,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["появ",{"_index":1028,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["появлен",{"_index":6682,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["появля",{"_index":632,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["пояснен",{"_index":11204,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["пра­во­в",{"_index":4653,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["прав",{"_index":2364,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["правд",{"_index":8968,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["правил",{"_index":2466,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day33":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["правильн",{"_index":229,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day08/":{},"/posts/markdown-syntax/":{}},"description":{}}],["правительств",{"_index":4440,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["правительствен",{"_index":4444,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["правк",{"_index":5292,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["правов",{"_index":3957,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["правонарушен",{"_index":11857,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["прайс",{"_index":5242,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["практик",{"_index":1076,"title":{"/tracks/webrtc/practice/_index":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["практическ",{"_index":1674,"title":{"/tracks/90daysofdevops/day34":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day34":{}}}],["практичн",{"_index":1039,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["пре­пят­ст­в",{"_index":4647,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["превосходя",{"_index":7578,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["превра",{"_index":6172,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["преврат",{"_index":5704,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["превраща",{"_index":4730,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/python-snippets/":{}},"description":{}}],["превращен",{"_index":3262,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{}},"description":{}}],["превыша",{"_index":4253,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["превышен",{"_index":4885,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["преград",{"_index":4619,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["предварительн",{"_index":5935,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["предел",{"_index":1740,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["предельн",{"_index":11545,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["предзаполнен",{"_index":10780,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["предк",{"_index":5869,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/236/":{}}}],["предлага",{"_index":2225,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["предлож",{"_index":1422,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["предложат",{"_index":1239,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["предложен",{"_index":3891,"title":{},"content":{"/tracks/disser/articles-notes":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["предмет",{"_index":4955,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/p/privacy_ru":{}},"description":{}}],["предназнач",{"_index":1535,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["предназначен",{"_index":2037,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day22":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["предостав",{"_index":406,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["предоставл",{"_index":3067,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["предоставлен",{"_index":545,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/p/privacy_ru":{}},"description":{}}],["предоставля",{"_index":542,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["предосторожн",{"_index":11906,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["предотврат",{"_index":7556,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["предотвращен",{"_index":4759,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day81":{}},"description":{}}],["предписыва",{"_index":6702,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["предполага",{"_index":7532,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["предполож",{"_index":1989,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["предпоследн",{"_index":5839,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["предпочита",{"_index":3698,"title":{},"content":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["предпочтен",{"_index":303,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["предпочтительн",{"_index":1294,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["предпринимательств",{"_index":11769,"title":{},"content":{"/p/publications":{}},"description":{}}],["предприня",{"_index":6419,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["предпринят",{"_index":7260,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["предприят",{"_index":4463,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day02":{},"/p/publications":{}},"description":{}}],["предсказа",{"_index":4450,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["предсказуем",{"_index":4511,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["представ",{"_index":6230,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["представител",{"_index":4892,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["представл",{"_index":128,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{}},"description":{}}],["представлен",{"_index":1952,"title":{"/tracks/90daysofdevops/day01":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{}},"description":{"/tracks/90daysofdevops/day01":{}}}],["представля",{"_index":212,"title":{"/tracks/90daysofdevops/day45":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/posts/markdown-syntax/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["представьт",{"_index":1081,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["предсто",{"_index":8148,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["предстоя",{"_index":9192,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["предупред",{"_index":7220,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["предупрежда",{"_index":7912,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["предупрежден",{"_index":8820,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["предусматрива",{"_index":4550,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["предусмотр",{"_index":11368,"title":{},"content":{"/posts/howto-rename-files-in-python/":{},"/p/privacy_ru":{}},"description":{}}],["предустановк",{"_index":5341,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["предустановлен",{"_index":11401,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["предшеств",{"_index":5961,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{}}],["предшественник",{"_index":11411,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["предыдущ",{"_index":159,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["прежд",{"_index":867,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["прежн",{"_index":7466,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["презентац",{"_index":8701,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["презентацион",{"_index":9633,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["преимуществ",{"_index":1669,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["преимуществен",{"_index":4505,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["прекрасн",{"_index":10224,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["прекрат",{"_index":7469,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/p/privacy_ru":{}},"description":{}}],["прелест",{"_index":2100,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["премиальн",{"_index":8961,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["премиум",{"_index":8959,"title":{},"content":{"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["пренебреч",{"_index":1823,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["преоблада",{"_index":4898,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["преобраз",{"_index":643,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/posts/markdown-syntax/":{}},"description":{}}],["преобразова",{"_index":608,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{}},"description":{}}],["преобразован",{"_index":1708,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/inputs":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day81":{}},"description":{"/tracks/algorithms-101/leetcode/medium/251/":{}}}],["преобразовыва",{"_index":3675,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["преобразу",{"_index":3249,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["преодолен",{"_index":4349,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["преодолет",{"_index":8194,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["препятств",{"_index":4770,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["прерыван",{"_index":826,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["преуспева",{"_index":10122,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["префикс",{"_index":1052,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["префиксн",{"_index":5580,"title":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{"/tracks/algorithms-101/data-structures/prefix-sum":{}}}],["при",{"_index":438,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["при­ме­нять­",{"_index":4685,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["при­ни­мае­м",{"_index":4577,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["приб",{"_index":4425,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["прибав",{"_index":6200,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["приборн",{"_index":6451,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["прибыл",{"_index":4428,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["приватн",{"_index":1937,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["привед",{"_index":306,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["приведен",{"_index":1224,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["приведет",{"_index":1705,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["приведёт",{"_index":6022,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/python-snippets/":{}},"description":{}}],["привел",{"_index":1994,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["приверженц",{"_index":4928,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["привест",{"_index":784,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["привет",{"_index":3402,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["приветств",{"_index":7453,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{}},"description":{}}],["приветствова",{"_index":1616,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["приветству",{"_index":10065,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["привилег",{"_index":8542,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["привлека",{"_index":1699,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["привлекательн",{"_index":4500,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["привлеч",{"_index":4436,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["привлечен",{"_index":4143,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["привод",{"_index":165,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["привыкнет",{"_index":10191,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["привяза",{"_index":6891,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["привязк",{"_index":8507,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["привязыва",{"_index":8449,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["приглашен",{"_index":3669,"title":{},"content":{"/tracks/python-101/basis/inputs":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["пригод",{"_index":10220,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["приготовлен",{"_index":5275,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["придан",{"_index":9666,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["придержива",{"_index":7418,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["придет",{"_index":42,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["придума",{"_index":434,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["придумыва",{"_index":10871,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["придёт",{"_index":8780,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["приз",{"_index":8733,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["призва",{"_index":1629,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["признава",{"_index":4914,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["признак",{"_index":8907,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["признател",{"_index":6433,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["признательн",{"_index":7701,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["прийт",{"_index":10222,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["прикладн",{"_index":8295,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["прилага",{"_index":4963,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["прилагательн",{"_index":6734,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["приложен",{"_index":75,"title":{"/tracks/webrtc/testing":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["примен",{"_index":1886,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["применен",{"_index":1622,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day21":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/90daysofdevops/day28":{}}}],["применим",{"_index":1533,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["применя",{"_index":3253,"title":{},"content":{"/tracks/python-101/enhance_python/decorators":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/p/privacy_ru":{}},"description":{}}],["пример",{"_index":234,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{}}],["примерн",{"_index":1330,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/p/репатриация":{}},"description":{}}],["примечан",{"_index":1770,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{}},"description":{}}],["примитив",{"_index":10721,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["примитивн",{"_index":10715,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["примонтирова",{"_index":9802,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["примут",{"_index":8787,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["прин",{"_index":7538,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["принадлеж",{"_index":5480,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["принадлежа",{"_index":4331,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["принадлежат",{"_index":9336,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["принесет",{"_index":10233,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["принест",{"_index":8548,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["принесёт",{"_index":4988,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["принима",{"_index":478,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["принос",{"_index":4965,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["принудительн",{"_index":1468,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["принужден",{"_index":7046,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["принцип",{"_index":1734,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["приня",{"_index":7221,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["принят",{"_index":4125,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["приобрест",{"_index":8157,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["приобрета",{"_index":4867,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["приобретен",{"_index":11409,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["приоритет",{"_index":1586,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["приоритизир",{"_index":9555,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["приостанавлива",{"_index":2882,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/inputs":{}},"description":{}}],["приостановк",{"_index":2893,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["приращен",{"_index":10123,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["природ",{"_index":4942,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["природн",{"_index":4796,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["прирост",{"_index":6198,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["приростн",{"_index":11550,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["присваива",{"_index":10056,"title":{},"content":{"/tracks/90daysofdevops/day12":{}},"description":{}}],["присваиван",{"_index":2182,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/basis/operators":{},"/posts/python-snippets/":{}},"description":{}}],["присвоен",{"_index":1882,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/classes":{}},"description":{}}],["присмотр",{"_index":7186,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["присоедин",{"_index":1425,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["присоединен",{"_index":8340,"title":{},"content":{"/tracks/90daysofdevops/day52":{}},"description":{}}],["присоединя",{"_index":10099,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["пристальн",{"_index":7208,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["приступ",{"_index":6522,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["приступа",{"_index":6371,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["присутств",{"_index":2276,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["присущ",{"_index":1929,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["приток",{"_index":4457,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["притяжен",{"_index":8711,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["приумножен",{"_index":4923,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["приход",{"_index":4474,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["причин",{"_index":3811,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["пришл",{"_index":7548,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["приятн",{"_index":8677,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{}},"description":{}}],["про­ис­хо­дя­щ",{"_index":4613,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["про­ис­хо­ж­де­н",{"_index":4606,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["про­ти­во­пос­тав­ле­н",{"_index":4672,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["про­це­ду­р",{"_index":4696,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["проанализирова",{"_index":7130,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["пробел",{"_index":2327,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day32":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["пробл",{"_index":208,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["проблем",{"_index":1435,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["проблемн",{"_index":1909,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["пробн",{"_index":174,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["пробова",{"_index":8410,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["проброс",{"_index":6712,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["провайдер",{"_index":6444,"title":{"/tracks/90daysofdevops/day60":{}},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["провал",{"_index":9656,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["провед",{"_index":2492,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["проведен",{"_index":2614,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["провел",{"_index":6743,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["провер",{"_index":640,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/articles-notes":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["проверен",{"_index":8590,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["проверк",{"_index":1255,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["проверьт",{"_index":1432,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day88":{}},"description":{}}],["проверя",{"_index":716,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["проверяем",{"_index":7247,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["провест",{"_index":1065,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["провиз",{"_index":8152,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["провизор",{"_index":8028,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["провод",{"_index":2070,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прогнозирован",{"_index":4374,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["прогон",{"_index":7303,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["программ",{"_index":1652,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day12":{}}}],["программир",{"_index":10214,"title":{},"content":{"/tracks/90daysofdevops/day02":{}},"description":{}}],["программирова",{"_index":1637,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["программирован",{"_index":1619,"title":{"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/90daysofdevops/day07":{}}}],["программист",{"_index":2038,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["программн",{"_index":1987,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["прогресс",{"_index":6500,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["прогрессивн",{"_index":4915,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["прода",{"_index":4629,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["продава",{"_index":4910,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["продаж",{"_index":4330,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/trading-indicators/sma":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["продажн",{"_index":11544,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["продакшен",{"_index":10316,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["продакшн",{"_index":7549,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["продвига",{"_index":7533,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["продвижен",{"_index":5960,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["продвинул",{"_index":7513,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["продвинут",{"_index":534,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["продела",{"_index":6502,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["проделыва",{"_index":5708,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["продемонстрирова",{"_index":9663,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["продовольств",{"_index":4101,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["продолж",{"_index":1073,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["продолжа",{"_index":3619,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{},"/posts/trading-indicators/sma":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["продолжен",{"_index":7147,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["продолижт",{"_index":11420,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["продукт",{"_index":45,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["продукц",{"_index":4753,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["проект",{"_index":222,"title":{"/tracks/90daysofdevops/day50":{},"/posts/integrate-hugo-react/":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/integrate-hugo-react/":{}}}],["проекта/таск",{"_index":8859,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["проектн",{"_index":1730,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["проеха",{"_index":6199,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["прозрачн",{"_index":10168,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["проигрыва",{"_index":754,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["проигрышн",{"_index":4935,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["произвед",{"_index":5873,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{}},"description":{}}],["произведен",{"_index":5830,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["произвест",{"_index":11378,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["производ",{"_index":2007,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["производител",{"_index":4542,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["производительн",{"_index":1587,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["производн",{"_index":2368,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["производств",{"_index":4475,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["производствен",{"_index":1311,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["произвольн",{"_index":401,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day41":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["произойдет",{"_index":1252,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["произойт",{"_index":7057,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["произошедш",{"_index":11912,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["произошл",{"_index":6709,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["проиндексир",{"_index":9855,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["проиндексирова",{"_index":6953,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["проиниализирова",{"_index":8848,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["проинспектирова",{"_index":8625,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["происхо",{"_index":8888,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["происход",{"_index":859,"title":{},"content":{"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["происходя",{"_index":7271,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["происхожден",{"_index":8631,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["пройд",{"_index":5373,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["пройдет",{"_index":7546,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["пройт",{"_index":1650,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["прокладыва",{"_index":9571,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["прокомичен",{"_index":8803,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["прокомментир",{"_index":10001,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["прокомментирова",{"_index":7278,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["прокрут",{"_index":6467,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["прокручив",{"_index":8718,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["прокс",{"_index":7625,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["пролож",{"_index":9570,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["промежутк",{"_index":7488,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["промежуток",{"_index":2172,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["промежуточн",{"_index":1721,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/posts/diploma/":{}},"description":{}}],["промис",{"_index":607,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["промышлен",{"_index":4098,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["проникнут",{"_index":7554,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["пронумерова",{"_index":5932,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["пропадут",{"_index":8596,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["прописыва",{"_index":3890,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["прополощ",{"_index":7551,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["пропуск",{"_index":5872,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["пропуск/игнорирован",{"_index":8896,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["пропуска",{"_index":1982,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["пропуст",{"_index":1070,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/basis/loops":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["проработа",{"_index":7419,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прос",{"_index":3763,"title":{},"content":{"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day12":{}},"description":{}}],["прослушива",{"_index":9710,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["прослушиван",{"_index":868,"title":{},"content":{"/tracks/webrtc/data-channels":{}},"description":{}}],["прослушивател",{"_index":364,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{}},"description":{}}],["просматрива",{"_index":585,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["просмотр",{"_index":1246,"title":{"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/posts/google-sheets-2-json/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/90daysofdevops/day39":{}}}],["просмотрел",{"_index":8714,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["просмотрет",{"_index":601,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["просмотров",{"_index":4048,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["прост",{"_index":139,"title":{"/posts/trading-indicators/sma":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["просто",{"_index":8461,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["простот",{"_index":1903,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["пространств",{"_index":1742,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{}},"description":{}}],["пространствен",{"_index":6826,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["просьб",{"_index":4256,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["протекционизм",{"_index":4110,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["протекционистск",{"_index":4565,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["протестир",{"_index":1540,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{}},"description":{}}],["протестирова",{"_index":43,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["противн",{"_index":2575,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["противодейств",{"_index":4636,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["противоположн",{"_index":2237,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["протокол",{"_index":213,"title":{"/tracks/90daysofdevops/day23":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{}},"description":{"/tracks/90daysofdevops/day23":{}}}],["протоколирован",{"_index":1332,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["протяжен",{"_index":4484,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["проф",{"_index":3928,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day88":{},"/p/publications":{}},"description":{}}],["профессиональн",{"_index":3975,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["профессор",{"_index":11788,"title":{},"content":{"/p/publications":{}},"description":{}}],["профил",{"_index":3913,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day40":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["профилирова",{"_index":3355,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["профилирован",{"_index":3347,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{}},"description":{}}],["проход",{"_index":1103,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["прохожден",{"_index":3620,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/_index":{}},"description":{}}],["процедур",{"_index":4560,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["процедурн",{"_index":7877,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["процент",{"_index":4328,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["процентил",{"_index":9246,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["процентн",{"_index":4176,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["процесс",{"_index":1088,"title":{"/tracks/90daysofdevops/day41":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/diploma/":{}},"description":{"/posts/docker-commands/":{}}}],["процессор",{"_index":2611,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["проч",{"_index":4791,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["прочита",{"_index":1600,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["прочт",{"_index":8936,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["прошедш",{"_index":2874,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["прошел",{"_index":7491,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["прошл",{"_index":4449,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прощ",{"_index":3516,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["прояв",{"_index":6793,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["проявля",{"_index":4342,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["проясня",{"_index":10364,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["прыга",{"_index":8975,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["прыгнут",{"_index":8983,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["прыжк",{"_index":8979,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["пря­м",{"_index":4589,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["прям",{"_index":198,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["прямая(end",{"_index":9636,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["прямоугольник",{"_index":2551,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["псевдоним",{"_index":9670,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["псевдотермина",{"_index":11643,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["психолог",{"_index":3989,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["пу­т",{"_index":4662,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["публик",{"_index":8633,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["публикаиц",{"_index":11539,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["публикац",{"_index":3923,"title":{"/posts/nextjs-to-github-pages-ations/":{},"/p/publications":{}},"content":{"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day02":{},"/p/publications":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["публикацион",{"_index":3912,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["публикация/развертыван",{"_index":10347,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["публику",{"_index":11538,"title":{},"content":{"/posts/google-sheets-2-json/":{}},"description":{}}],["публицистическ",{"_index":4050,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["публичн",{"_index":2470,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day01":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["пуга",{"_index":8063,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["пугающ",{"_index":8724,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["пузыр",{"_index":9552,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["пул",{"_index":9239,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["пуленепробиваем",{"_index":10914,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["пульт",{"_index":8923,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["пункт",{"_index":916,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day25":{},"/posts/markdown-syntax/":{}},"description":{}}],["пуст",{"_index":1890,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["пут",{"_index":1066,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["пута",{"_index":8138,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{}},"description":{}}],["путаниц",{"_index":1915,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["путешеств",{"_index":6195,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["путешествова",{"_index":8976,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["путём",{"_index":11878,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["пыт",{"_index":8453,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["пыта",{"_index":803,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/scope":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["пьес",{"_index":7608,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["пят",{"_index":7219,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/posts/markdown-syntax/":{}},"description":{}}],["пятн",{"_index":8808,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["пётр",{"_index":10891,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["р",{"_index":3968,"title":{},"content":{"/tracks/disser/_index":{},"/p/publications":{}},"description":{}}],["р.м",{"_index":11742,"title":{},"content":{"/p/publications":{}},"description":{}}],["р1",{"_index":9398,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["раcпозна",{"_index":3942,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["работ",{"_index":191,"title":{"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day27":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/p/репатриация":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day27":{},"/posts/cheat-sheet-command-tar/":{}}}],["работа",{"_index":136,"title":{"/tracks/90daysofdevops/day09":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{}},"description":{"/tracks/90daysofdevops/day09":{}}}],["работоспособн",{"_index":6943,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["рабоч",{"_index":991,"title":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/90daysofdevops/day20":{}}}],["рав",{"_index":3242,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day55":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["равенств",{"_index":1831,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["равн",{"_index":3214,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["равновес",{"_index":4851,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["равновесн",{"_index":11585,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["рад",{"_index":1615,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["радостн",{"_index":8111,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["раз",{"_index":3339,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day62":{},"/posts/markdown-syntax/":{}},"description":{}}],["раз­ли­че­н",{"_index":4664,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["разархивир",{"_index":1494,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["разб",{"_index":8227,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["разбер",{"_index":5366,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["разбива",{"_index":8030,"title":{},"content":{"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["разбиен",{"_index":2322,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["разбир",{"_index":10234,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["разбира",{"_index":7819,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["разбор",{"_index":5450,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{}}}],["разв",{"_index":4983,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["разверн",{"_index":5321,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["развернет",{"_index":6978,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["развернул",{"_index":6445,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["развернут",{"_index":5641,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["развертыва",{"_index":5324,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["развертыван",{"_index":1702,"title":{"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["развертывания/доставк",{"_index":7250,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["разветв",{"_index":8760,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["разветвлен",{"_index":8767,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["развива",{"_index":4184,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day49":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["развит",{"_index":1539,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day41":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["разворачива",{"_index":5382,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["разворачиван",{"_index":5648,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day52":{}},"description":{}}],["разворот",{"_index":6171,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["разглашен",{"_index":11897,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["разговарива",{"_index":10280,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["разговор",{"_index":10203,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["разгрузк",{"_index":9186,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["раздел",{"_index":907,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{}}],["разделен",{"_index":1867,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["разделения/разбиения/распределен",{"_index":9247,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["разделител",{"_index":2323,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["разделительн",{"_index":11195,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["разделя",{"_index":3362,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["раздраж",{"_index":10351,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["разл",{"_index":4614,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["различ",{"_index":1033,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["различа",{"_index":8762,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["различен",{"_index":9642,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["различн",{"_index":397,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/integrate-hugo-react/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/howto-rename-files-in-python/":{}}}],["размер",{"_index":1180,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["размест",{"_index":7276,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["разметк",{"_index":1177,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day07":{},"/posts/markdown-syntax/":{}},"description":{}}],["размещ",{"_index":8627,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["размеща",{"_index":8441,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["размещен",{"_index":4721,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["размонтирова",{"_index":9835,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["разн",{"_index":459,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["разниц",{"_index":1802,"title":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["разновидн",{"_index":8395,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["разнообраз",{"_index":8496,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["разност",{"_index":3555,"title":{},"content":{"/tracks/python-101/basis/sets":{},"/posts/python-snippets/":{}},"description":{}}],["разобра",{"_index":7942,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["разов",{"_index":9841,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["разр",{"_index":7503,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["разрабатыва",{"_index":116,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["разработа",{"_index":1101,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/p/privacy_ru":{}},"description":{}}],["разработк",{"_index":267,"title":{"/tracks/python-101/basis/ide":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/publications":{}},"description":{"/posts/docker-commands/":{}}}],["разработчик",{"_index":1690,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["разреш",{"_index":1008,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["разреша",{"_index":630,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["разрешен",{"_index":627,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["разрешён",{"_index":11877,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["разрознен",{"_index":9653,"title":{},"content":{"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["разруша",{"_index":8406,"title":{},"content":{"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["разрушен",{"_index":10237,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["разрушительн",{"_index":9892,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["разрыв",{"_index":3407,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["разумеет",{"_index":6995,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["разумн",{"_index":121,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["рам­к",{"_index":4688,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["рамк",{"_index":46,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["ран",{"_index":109,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/docker-commands/":{}},"description":{}}],["ранжир",{"_index":8448,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["раскомментирова",{"_index":9725,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["раскрут",{"_index":8139,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["раскручива",{"_index":8608,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["раскрыв",{"_index":8432,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["раскрыва",{"_index":7169,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["раскрыт",{"_index":8235,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["распакова",{"_index":3185,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["распаковк",{"_index":2236,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["распаковыва",{"_index":8616,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/python-snippets/":{}},"description":{}}],["распечата",{"_index":5297,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["распечатк",{"_index":9850,"title":{},"content":{"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["распечатыва",{"_index":5298,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["расписан",{"_index":6509,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["расплывчат",{"_index":710,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["располага",{"_index":3801,"title":{},"content":{"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["располож",{"_index":1179,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day45":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/docker-commands/":{}},"description":{}}],["расположен",{"_index":3948,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["распредел",{"_index":4472,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["распределен",{"_index":4303,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["распределя",{"_index":2648,"title":{},"content":{"/tracks/python-101/standard_library/threading":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["распростран",{"_index":3976,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["распространен",{"_index":2698,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/p/privacy_ru":{}},"description":{}}],["распространя",{"_index":5345,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["расскаж",{"_index":7307,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["расскажут",{"_index":8226,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["рассказа",{"_index":3508,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["рассказыв",{"_index":9483,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["рассказыва",{"_index":6713,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["рассматрив",{"_index":2072,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["рассматрива",{"_index":482,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/trading-indicators/sma":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["рассмотр",{"_index":2067,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["рассмотрел",{"_index":6356,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["рассмотрен",{"_index":4921,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["рассмотрет",{"_index":6428,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/posts/trading-indicators/sma":{}},"description":{}}],["рассмотрт",{"_index":9727,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["расстоян",{"_index":6017,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["рассужден",{"_index":10101,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["рассчет",{"_index":11717,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["рассчита",{"_index":4993,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["рассчитыв",{"_index":7846,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["рассчитыва",{"_index":1272,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["рассыла",{"_index":7191,"title":{},"content":{"/tracks/90daysofdevops/day78":{}},"description":{}}],["раст",{"_index":4860,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["растен",{"_index":4627,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["растет",{"_index":4483,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["растров",{"_index":6825,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["растут",{"_index":6360,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["растущ",{"_index":6354,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["расход",{"_index":5006,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["расчет",{"_index":2982,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day12":{},"/posts/economics/diff-forward-contracts-futures":{},"/posts/diploma/":{},"/p/репатриация":{}},"description":{}}],["расшир",{"_index":3884,"title":{},"content":{"/tracks/python-101/basis/_index":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["расширен",{"_index":1917,"title":{"/tracks/python-101/enhance_python/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["расширя",{"_index":3831,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["расширяем",{"_index":3106,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["расшифровыва",{"_index":1726,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["расщирен",{"_index":11356,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["раунд",{"_index":5478,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["рахниц",{"_index":8793,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["рационализац",{"_index":6932,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["рациональн",{"_index":11560,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ре",{"_index":4022,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ре­гу­ли­ро­ва­н",{"_index":4584,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ре­жи­м",{"_index":4612,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["реагир",{"_index":5290,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["реализ",{"_index":597,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day49":{},"/posts/python-snippets/":{}},"description":{}}],["реализац",{"_index":11,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/posts/hugo-add-image-zoomin/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["реализова",{"_index":458,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["реализовыва",{"_index":8201,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["реализу",{"_index":8444,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["реальн",{"_index":1049,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["реальност",{"_index":11807,"title":{},"content":{"/p/publications":{}},"description":{}}],["ребасинг",{"_index":8835,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["революц",{"_index":11563,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["регион",{"_index":4241,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{}},"description":{}}],["региональн",{"_index":4200,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/p/publications":{}},"description":{}}],["регистр",{"_index":3428,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day15":{},"/posts/python-snippets/":{}},"description":{}}],["регистрац",{"_index":8294,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day40":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["регистрацион",{"_index":8280,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["регистрир",{"_index":8293,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["регистрирова",{"_index":780,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["регистриру",{"_index":363,"title":{},"content":{"/tracks/webrtc/remote-streams":{}},"description":{}}],["регламент",{"_index":11851,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["регулир",{"_index":4572,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["регулирован",{"_index":4114,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["регулярн",{"_index":7487,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["редактир",{"_index":11082,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["редактирова",{"_index":8783,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["редактирован",{"_index":3092,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["редактор",{"_index":1483,"title":{"/tracks/90daysofdevops/day17":{}},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["редакц",{"_index":11917,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["редирект",{"_index":11373,"title":{"/posts/howto-redirect-to-url/":{}},"content":{},"description":{"/posts/howto-redirect-to-url/":{}}}],["редк",{"_index":8753,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day15":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["редназначен",{"_index":3933,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["реестр",{"_index":8543,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["реж",{"_index":3734,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["режим",{"_index":297,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day17":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["резерв",{"_index":4334,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["резервн",{"_index":1107,"title":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{}},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["резонир",{"_index":10103,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["результат",{"_index":1661,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["результир",{"_index":6180,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["резюм",{"_index":11731,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["рейк",{"_index":10733,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["рейтинг",{"_index":4218,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["реквизит",{"_index":11234,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["рекламир",{"_index":8429,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["рекоменд",{"_index":1884,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["рекомендательн",{"_index":6875,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["рекомендац",{"_index":4244,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day30":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["рекомендова",{"_index":8611,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/posts/markdown-syntax/":{}},"description":{}}],["рекоменду",{"_index":715,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{}},"description":{}}],["рекомендуем",{"_index":9297,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/markdown-syntax/":{}},"description":{}}],["реконструкц",{"_index":4280,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["реконфигурац",{"_index":8154,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["рекурс",{"_index":5557,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["рекурсивн",{"_index":2191,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["релевантн",{"_index":2267,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["религиозн",{"_index":11890,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["релиз",{"_index":6775,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["рельн",{"_index":10355,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["реляцион",{"_index":6849,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["рендер",{"_index":11343,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["реп",{"_index":7197,"title":{},"content":{"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["репатриант",{"_index":11693,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["репатриац",{"_index":11687,"title":{"/p/репатриация":{}},"content":{"/p/репатриация":{}},"description":{"/p/репатриация":{}}}],["реплик",{"_index":6387,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["репликац",{"_index":6443,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["реплицир",{"_index":6756,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["реплицирова",{"_index":6446,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["репозитор",{"_index":3174,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day40":{}}}],["ресторан",{"_index":4426,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["ресурс",{"_index":918,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["ретранслятор",{"_index":1316,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"description":{}}],["ретрансляц",{"_index":194,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["реузльтат",{"_index":6315,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["реферат",{"_index":4017,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["реферирован",{"_index":4051,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["реформ",{"_index":11829,"title":{},"content":{"/p/publications":{}},"description":{}}],["реценз",{"_index":8719,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["рецензент",{"_index":8952,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["рецензирова",{"_index":8953,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["рецепт",{"_index":7871,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["реч",{"_index":3353,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["реш",{"_index":207,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["реша",{"_index":911,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day24":{},"/posts/markdown-syntax/":{}},"description":{}}],["решен",{"_index":535,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day05/":{}},"description":{"/tracks/algorithms-101/codeforces/_index":{}}}],["решительн",{"_index":9889,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["решётк",{"_index":10714,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["рзличн",{"_index":8897,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["рзультат",{"_index":10002,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["рикард",{"_index":4073,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ринц",{"_index":11832,"title":{},"content":{"/p/publications":{}},"description":{}}],["риск",{"_index":4157,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["рисунк",{"_index":7865,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["ричард",{"_index":11596,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["роб",{"_index":11188,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["робототехник",{"_index":8452,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["ровн",{"_index":5593,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["рогат",{"_index":8145,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["род",{"_index":6704,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day07":{},"/p/privacy_ru":{}},"description":{}}],["родител",{"_index":2573,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{},"/p/репатриация":{}},"description":{}}],["родительск",{"_index":2370,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["родн",{"_index":7937,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["розничн",{"_index":10124,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["рок",{"_index":7863,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["рол",{"_index":410,"title":{"/tracks/90daysofdevops/day67":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["рома",{"_index":4197,"title":{"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["росс",{"_index":4087,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/publications":{}},"description":{}}],["российск",{"_index":4767,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["рост",{"_index":4247,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day29":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["роут",{"_index":3060,"title":{},"content":{"/tracks/python-101/frameworks/flask":{}},"description":{}}],["рубеж",{"_index":4966,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["рудн",{"_index":3929,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["рук",{"_index":6664,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["руководител",{"_index":4031,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["руководств",{"_index":2949,"title":{"/posts/markdown-syntax/":{}},"content":{"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/django":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/markdown-syntax/":{}}}],["руководя",{"_index":1733,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["руск",{"_index":4040,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["русск",{"_index":4018,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["ручн",{"_index":6695,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day21":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["рф",{"_index":4129,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["рынк",{"_index":4155,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/p/publications":{}},"description":{}}],["рынок",{"_index":4145,"title":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["рыночн",{"_index":4630,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["рэйк",{"_index":10737,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ряд",{"_index":527,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["сwebrtc",{"_index":1058,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["са­мо­г",{"_index":4673,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["са­ни­тар­н",{"_index":4706,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сад",{"_index":9611,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{"/tracks/90daysofdevops/day23":{}},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["садик",{"_index":11704,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["сажа",{"_index":6122,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["сайт",{"_index":1269,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/articles-notes":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{}}}],["сальд",{"_index":4925,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сам",{"_index":785,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/p/репатриация":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1372/":{}}}],["самар",{"_index":11812,"title":{},"content":{"/p/publications":{}},"description":{}}],["самарск",{"_index":11797,"title":{},"content":{"/p/publications":{}},"description":{}}],["самовлюблен",{"_index":3832,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["самовосстановлен",{"_index":8427,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["самодостаточн",{"_index":8549,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["самоитерируем",{"_index":2301,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["самообслуживан",{"_index":9569,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["самоописан",{"_index":3834,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["самостоятельн",{"_index":220,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["самуэльсон",{"_index":5007,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["санитарн",{"_index":4623,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["санкц",{"_index":4242,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сантис",{"_index":4895,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сахар",{"_index":2123,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сбалансирова",{"_index":8424,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["сбива",{"_index":1588,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["сбилд",{"_index":10342,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["сбо",{"_index":1108,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["сбор",{"_index":546,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/p/privacy_ru":{}},"description":{}}],["сборк",{"_index":2039,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["сборник",{"_index":3899,"title":{},"content":{"/tracks/disser/articles-notes":{},"/posts/docker-commands/":{},"/p/publications":{}},"description":{"/p/publications":{}}}],["сборок",{"_index":7351,"title":{},"content":{"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{}},"description":{}}],["сборщик",{"_index":7018,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["сбрасыва",{"_index":5604,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["сброс",{"_index":6012,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["сбросьт",{"_index":8927,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["сбыт",{"_index":4553,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сведен",{"_index":7842,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["свеж",{"_index":8634,"title":{},"content":{"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["свер",{"_index":5372,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["сверх",{"_index":5820,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/240/":{}},"description":{}}],["сверхс",{"_index":10936,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["сверхчеловек",{"_index":10909,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["сверя",{"_index":10308,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["свест",{"_index":10344,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["свет",{"_index":7239,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["свидетельств",{"_index":4861,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["свидетельствова",{"_index":10663,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["свитчер",{"_index":5328,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["сво",{"_index":44,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/privacy_ru":{}},"description":{}}],["свобод",{"_index":4789,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["свободн",{"_index":4109,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["свод",{"_index":8671,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["своевремен",{"_index":6928,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["свойст",{"_index":2411,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["свойств",{"_index":241,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["свойств/метод",{"_index":2489,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["своп",{"_index":4416,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["сворачиван",{"_index":11424,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["своём",{"_index":8716,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["свяж",{"_index":9566,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["свяжет",{"_index":8727,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["связ",{"_index":396,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["связа",{"_index":375,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["связк",{"_index":10670,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["связн",{"_index":5685,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{}}}],["связыва",{"_index":1953,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["связыван",{"_index":1698,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day24":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["связын",{"_index":4054,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["связь(ссылк",{"_index":2184,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сгенерирова",{"_index":4011,"title":{},"content":{"/tracks/disser/utils/text_2_short":{},"/posts/docker-commands/":{}},"description":{}}],["сглаживан",{"_index":2155,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сгруппирова",{"_index":1825,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["сдач",{"_index":11931,"title":{},"content":{},"description":{"/apps/cloud-exam-quizz/":{}}}],["сдают",{"_index":4035,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["сдвиг",{"_index":3594,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["сдвига",{"_index":5541,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["сдвинув",{"_index":1518,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["сдвиньт",{"_index":5978,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["сдела",{"_index":126,"title":{"/tracks/webrtc/practice/practice-take-photo":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-create-deepclone-js/":{}}}],["сделк",{"_index":4434,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day32":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сдр",{"_index":4168,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["сеанс",{"_index":486,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["сеансов",{"_index":9632,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["северн",{"_index":4486,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сегмент",{"_index":9646,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["сегментац",{"_index":9619,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["сегментирова",{"_index":9618,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["сегодняшн",{"_index":10061,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["секрет",{"_index":6647,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["секретн",{"_index":8771,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["сектор",{"_index":4294,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["секунд",{"_index":2872,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["секц",{"_index":2910,"title":{},"content":{"/tracks/python-101/standard_library/configparser":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["сельск",{"_index":4859,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сем",{"_index":4952,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day56":{}},"description":{}}],["семейств",{"_index":11408,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["сенат",{"_index":5470,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["сенатор",{"_index":5474,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["сентябр",{"_index":134,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["сер",{"_index":6916,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["сервер",{"_index":190,"title":{"/tracks/webrtc/turn-server":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day18":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day18":{}}}],["серверн",{"_index":8592,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["сервис",{"_index":227,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day06":{},"/p/privacy_ru":{}},"description":{}}],["сервисн",{"_index":9564,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["серебр",{"_index":4901,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["середин",{"_index":4889,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сериализац",{"_index":2226,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["сериализова",{"_index":2230,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["серр",{"_index":4906,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сертификат",{"_index":8188,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/posts/markdown-syntax/":{}},"description":{}}],["серьезн",{"_index":6725,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["сесс",{"_index":3172,"title":{},"content":{"/tracks/python-101/external_packages/requests":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["сет",{"_index":204,"title":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}}}],["сетев",{"_index":214,"title":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{}},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{}},"description":{"/tracks/90daysofdevops/day33":{}}}],["сетк",{"_index":9273,"title":{},"content":{"/tracks/90daysofdevops/day31":{}},"description":{}}],["сеттер",{"_index":2528,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["сжат",{"_index":2233,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day25":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["сжима",{"_index":6774,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["сигна",{"_index":10666,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["сигнал",{"_index":10669,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["сигнализац",{"_index":1454,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["сигналинг",{"_index":415,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{}},"description":{}}],["сил",{"_index":4798,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["сильн",{"_index":1532,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["символ",{"_index":1881,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/387/":{}}}],["симкарт",{"_index":11718,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["симметрическ",{"_index":3557,"title":{},"content":{"/tracks/python-101/basis/sets":{}},"description":{}}],["симметричн",{"_index":10809,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["син",{"_index":9492,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["синтаксис",{"_index":1583,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/dict":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day33":{},"/posts/markdown-syntax/":{}},"description":{}}],["синтаксическ",{"_index":66,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/_index":{}},"description":{}}],["синхрон",{"_index":9209,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["синхронизац",{"_index":3945,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["синхронизирова",{"_index":1771,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сионистск",{"_index":11692,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["сист",{"_index":3154,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{}}],["систем",{"_index":1930,"title":{"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day16":{}}}],["систем)/(open",{"_index":9628,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["систематизац",{"_index":3934,"title":{},"content":{"/tracks/disser/_index":{},"/p/privacy_ru":{}},"description":{}}],["систематическ",{"_index":3954,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["системн",{"_index":1443,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["системыводоснабжен",{"_index":4289,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["сит",{"_index":10997,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["ситуац",{"_index":2170,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["скаж",{"_index":8949,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["скажет",{"_index":5780,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["сказа",{"_index":8296,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["сканер",{"_index":7920,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["сканир",{"_index":7925,"title":{},"content":{"/tracks/90daysofdevops/day62":{}},"description":{}}],["сканирован",{"_index":7917,"title":{},"content":{"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["скаруфф",{"_index":4896,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["скача",{"_index":1293,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day01":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["скачива",{"_index":5311,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day32":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["скачиван",{"_index":5387,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["скачок",{"_index":9900,"title":{},"content":{"/tracks/90daysofdevops/day14":{}},"description":{}}],["сквозн",{"_index":9291,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["скелет",{"_index":1527,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["складыва",{"_index":5600,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-snippets/":{}},"description":{}}],["склон",{"_index":8667,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["склонност",{"_index":7981,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["склоня",{"_index":9317,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["скобк",{"_index":1796,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["скобок",{"_index":3361,"title":{},"content":{"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-snippets/":{}},"description":{}}],["скользя",{"_index":4714,"title":{"/posts/trading-indicators/sma":{}},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["скомпилир",{"_index":10087,"title":{},"content":{"/tracks/90daysofdevops/day10":{}},"description":{}}],["скомпилирова",{"_index":2275,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["скомпилиру",{"_index":10341,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["скомпрометирова",{"_index":9622,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["сконфигурирова",{"_index":8244,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["сконцентрирова",{"_index":8134,"title":{},"content":{"/tracks/90daysofdevops/day57":{}},"description":{}}],["скопир",{"_index":6479,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["скопирова",{"_index":2181,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["скопиру",{"_index":7417,"title":{},"content":{"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day68":{}},"description":{}}],["скор",{"_index":638,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["скорост",{"_index":3065,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["скот",{"_index":8140,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["скриншот",{"_index":6482,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["скрипт",{"_index":595,"title":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/google-sheets-2-json/":{}},"description":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day19/":{},"/posts/hugo-add-image-zoomin/":{}}}],["скрипт/обработчик",{"_index":11297,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["скрыв",{"_index":2530,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["скрыва",{"_index":2106,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["скрыт",{"_index":7596,"title":{},"content":{"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["слаб",{"_index":1709,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["слев",{"_index":1541,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["слегк",{"_index":6714,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["след",{"_index":26,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{}}],["следова",{"_index":7478,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["следован",{"_index":1738,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["следовательн",{"_index":1684,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["следствен",{"_index":11577,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["следу",{"_index":1230,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["следует",{"_index":7352,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["слеж",{"_index":7655,"title":{},"content":{"/tracks/90daysofdevops/day68":{}},"description":{}}],["слива",{"_index":7508,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["слит",{"_index":8721,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["слиян",{"_index":8732,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["сло",{"_index":6832,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day22":{},"/posts/python-snippets/":{}},"description":{}}],["слов",{"_index":1283,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["словар",{"_index":1864,"title":{"/tracks/python-101/basis/dict":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/python-snippets/":{}},"description":{}}],["словарн",{"_index":2128,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["словарь(dict",{"_index":5890,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["слож",{"_index":3641,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["сложен",{"_index":2842,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{}},"description":{}}],["сложн",{"_index":637,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сложност",{"_index":4123,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["слома",{"_index":8722,"title":{},"content":{"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["слот",{"_index":9144,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["служ",{"_index":4964,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["служат",{"_index":4000,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day44":{}},"description":{}}],["служб",{"_index":427,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day85":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["случ",{"_index":5596,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["случа",{"_index":49,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/google-sheets-2-json/":{},"/p/privacy_ru":{}},"description":{}}],["случайн",{"_index":1010,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day51":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["слыш",{"_index":6720,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["слыша",{"_index":6750,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["см",{"_index":569,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day39":{},"/posts/python-snippets/":{}},"description":{}}],["смартфон",{"_index":591,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["смел",{"_index":3491,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["смен",{"_index":2778,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day15":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["смерт",{"_index":8457,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["смест",{"_index":11576,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["смещен",{"_index":4828,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["смит",{"_index":4070,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["смог",{"_index":6415,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day28":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["смогл",{"_index":6810,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["смогут",{"_index":522,"title":{},"content":{"/tracks/webrtc/peer-connections":{}},"description":{}}],["смож",{"_index":6362,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["сможет",{"_index":1297,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/classes":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["смонтирова",{"_index":6812,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["смотр",{"_index":1314,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day10":{},"/posts/docker-commands/":{}},"description":{}}],["смс",{"_index":11239,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["смут",{"_index":9200,"title":{},"content":{"/tracks/90daysofdevops/day33":{}},"description":{}}],["смущ",{"_index":9531,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["смыс­л",{"_index":4644,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["смысл",{"_index":353,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["снабд",{"_index":2064,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["снапшот",{"_index":6698,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["снг",{"_index":4498,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сниж",{"_index":7984,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["снижа",{"_index":1685,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["снижен",{"_index":4421,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сниз",{"_index":2082,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["снима",{"_index":8815,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["снимк",{"_index":1477,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["снимок",{"_index":927,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["сниппет",{"_index":10673,"title":{"/posts/python-snippets/":{}},"content":{},"description":{"/posts/python-snippets/":{}}}],["снял",{"_index":9358,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["снят",{"_index":937,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["со­гла­ше­н",{"_index":4690,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["соавтор",{"_index":8761,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["собер",{"_index":8552,"title":{},"content":{"/tracks/90daysofdevops/day46":{}},"description":{}}],["собеседован",{"_index":9771,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["собир",{"_index":6234,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{}},"description":{}}],["собира",{"_index":1002,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["соблюда",{"_index":11026,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["соблюдабщ",{"_index":8853,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["соблюден",{"_index":4752,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["собра",{"_index":520,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["собран",{"_index":11818,"title":{},"content":{"/p/publications":{}},"description":{}}],["собсвтен",{"_index":11048,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["собствен",{"_index":1482,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/_index":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["событ",{"_index":366,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day31":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["событий/секунду/ядр",{"_index":7056,"title":{},"content":{"/tracks/90daysofdevops/day81":{}},"description":{}}],["соверш",{"_index":8725,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["соверша",{"_index":6194,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day33":{},"/p/privacy_ru":{}},"description":{}}],["совершен",{"_index":6440,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["совет",{"_index":1191,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/docker-commands/":{}},"description":{}}],["советова",{"_index":7810,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["совмест",{"_index":3939,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["совместим",{"_index":1150,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["совместн",{"_index":1025,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["совокупн",{"_index":4559,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/privacy_ru":{}},"description":{}}],["совпа",{"_index":6137,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["совпада",{"_index":379,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day37":{},"/posts/python-snippets/":{}},"description":{}}],["совпаден",{"_index":9770,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["современ",{"_index":3062,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/p/publications":{}},"description":{}}],["соглас",{"_index":7811,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day23":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["согласн",{"_index":1854,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["согласова",{"_index":6478,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["согласован",{"_index":4768,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["согласовыва",{"_index":8440,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["соглаша",{"_index":11612,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["соглашен",{"_index":2334,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day29":{},"/posts/python-snippets/":{}},"description":{}}],["содейств",{"_index":4270,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["содействияоздоровлен",{"_index":4278,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["содействова",{"_index":4916,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["содерж",{"_index":369,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day09":{},"/posts/python-snippets/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["содержа",{"_index":473,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day09":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["содержан",{"_index":3598,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day01":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["содержат",{"_index":1497,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day16":{},"/posts/python-snippets/":{}},"description":{}}],["содержательн",{"_index":8717,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["содержим",{"_index":832,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/basis/file_io":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["соедин",{"_index":405,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["соединен",{"_index":305,"title":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["соединя",{"_index":5692,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["сожалел",{"_index":6730,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["сожален",{"_index":9518,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["соз­да­н",{"_index":4600,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["созда",{"_index":479,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["создав",{"_index":8834,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["создава",{"_index":1656,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["создад",{"_index":1300,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["создадут",{"_index":8276,"title":{},"content":{"/tracks/90daysofdevops/day53":{}},"description":{}}],["создан",{"_index":176,"title":{"/tracks/90daysofdevops/day59":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["создания/редактирован",{"_index":3073,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["создаст",{"_index":1009,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["создаёт",{"_index":11123,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["созерцан",{"_index":3833,"title":{},"content":{"/tracks/python-101/basis/classes":{}},"description":{}}],["сок",{"_index":10989,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["сокет",{"_index":199,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/frameworks/_index":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["сократ",{"_index":559,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{}},"description":{}}],["сокращен",{"_index":4274,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{},"/posts/markdown-syntax/":{}},"description":{}}],["сокровищ",{"_index":11599,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["солнечн",{"_index":4842,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["солт",{"_index":10995,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["сообщ",{"_index":7216,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day09":{},"/p/privacy_ru":{}},"description":{}}],["сообща",{"_index":1371,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["сообщен",{"_index":437,"title":{"/tracks/webrtc/practice/practice-setup-signaling-service":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["сообществ",{"_index":1701,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["соответсвен",{"_index":5495,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["соответств",{"_index":18,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/p/privacy_ru":{}},"description":{}}],["соответствен",{"_index":47,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["соответствова",{"_index":6999,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["соотношен",{"_index":4991,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["соперничеств",{"_index":4803,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сопостав",{"_index":7162,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["сопоставл",{"_index":2048,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сопоставлен",{"_index":8522,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["сопоставля",{"_index":2049,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day47":{}},"description":{}}],["сопровожда",{"_index":8559,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["сопровожден",{"_index":1687,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["сопрограмм",{"_index":2935,"title":{},"content":{"/tracks/python-101/standard_library/asyncio":{}},"description":{}}],["сортир",{"_index":3645,"title":{},"content":{"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["сортирова",{"_index":6823,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["сортировк",{"_index":3250,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{}}],["сортировочн",{"_index":9608,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["сортиру",{"_index":5909,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{}}],["сосед",{"_index":6125,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["соседн",{"_index":6123,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["сосредоточ",{"_index":1904,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сосредоточива",{"_index":10228,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["сосредоточьт",{"_index":3493,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["соста",{"_index":4140,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/p/privacy_ru":{}},"description":{}}],["состав",{"_index":4501,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["составлен",{"_index":4233,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["составля",{"_index":1202,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/markdown-syntax/":{}},"description":{}}],["составн",{"_index":6818,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["составьт",{"_index":9553,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["состо",{"_index":172,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["состоя",{"_index":3380,"title":{},"content":{"/tracks/python-101/basis/tuples":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["состоян",{"_index":548,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сотн",{"_index":8069,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{}},"description":{}}],["сотрудник",{"_index":11861,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["сотруднича",{"_index":4790,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["сотрудничеств",{"_index":4461,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["сотрудничества",{"_index":4268,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["соучредител",{"_index":6855,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["сохнут",{"_index":11689,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["сохран",{"_index":4545,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["сохранен",{"_index":3327,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["сохраня",{"_index":2052,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["социальн",{"_index":3978,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["сочета",{"_index":9212,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["сочетан",{"_index":1695,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["союз",{"_index":4202,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["спектр",{"_index":3151,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/p/репатриация":{}},"description":{}}],["спекулятивн",{"_index":11624,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["сперв",{"_index":11570,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["спец",{"_index":4689,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["специализац",{"_index":4547,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["специализир",{"_index":6920,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["специализирова",{"_index":4972,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day65":{}},"description":{}}],["специалист",{"_index":4032,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["специальн",{"_index":844,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["специфик",{"_index":7736,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["спецификатор",{"_index":2458,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["спецификац",{"_index":394,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day55":{},"/posts/markdown-syntax/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["специфич",{"_index":7476,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["специфическ",{"_index":2652,"title":{},"content":{"/tracks/python-101/standard_library/sys":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["специфичн",{"_index":712,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["спечен",{"_index":4758,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["списк",{"_index":1,"title":{"/tracks/python-101/basis/lists":{}},"content":{"/tracks/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/posts/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["список",{"_index":635,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["списочн",{"_index":10857,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["спо­со­б",{"_index":4668,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["спо­соб­н",{"_index":4588,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["спойлер",{"_index":9858,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["спонсируем",{"_index":7575,"title":{},"content":{"/tracks/90daysofdevops/day69":{}},"description":{}}],["спор",{"_index":4635,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["спорт",{"_index":7752,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["способ",{"_index":206,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-redirect-to-url/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/posts/howto-rename-files-in-python/":{}}}],["способн",{"_index":766,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["способо",{"_index":11247,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["способств",{"_index":1691,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["способствова",{"_index":4573,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["спот",{"_index":4378,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["справ",{"_index":2211,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["справедлив",{"_index":8508,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{}},"description":{}}],["справк",{"_index":1499,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["справля",{"_index":6358,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["справочн",{"_index":2262,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["спрашива",{"_index":3507,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/p/репатриация":{}},"description":{}}],["спринт",{"_index":10182,"title":{},"content":{"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["спрос",{"_index":4364,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day08/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["спрята",{"_index":7704,"title":{},"content":{"/tracks/90daysofdevops/day67":{}},"description":{}}],["спуст",{"_index":6233,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["срабатыван",{"_index":7272,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["сработа",{"_index":1241,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["сравн",{"_index":5493,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["сравнен",{"_index":1857,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/operators":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/872/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}}}],["сравнив",{"_index":6026,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["сравнива",{"_index":3213,"title":{},"content":{"/tracks/python-101/enhance_python/testing":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["сравнительн",{"_index":4074,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сраз",{"_index":7051,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day38":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/p/репатриация":{}},"description":{}}],["сред",{"_index":3696,"title":{"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{}},"content":{"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day20":{}}}],["средн",{"_index":3343,"title":{"/tracks/algorithms-101/leetcode/medium/_index":{},"/posts/trading-indicators/sma":{}},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day06":{},"/posts/trading-indicators/sma":{},"/p/репатриация":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{}}}],["средств",{"_index":770,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/privacy_ru":{}},"description":{}}],["срез",{"_index":2003,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{}}],["сркипт",{"_index":11281,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["срок",{"_index":8129,"title":{},"content":{"/tracks/90daysofdevops/day57":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["срф",{"_index":4344,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ссыла",{"_index":1768,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-create-deepclone-js/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["ссылк",{"_index":636,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/google-sheets-2-json/":{},"/posts/docker-commands/":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["ссылок",{"_index":1175,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["стабильн",{"_index":133,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["став",{"_index":762,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day48":{},"/posts/markdown-syntax/":{}},"description":{}}],["ставк",{"_index":4177,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ставок",{"_index":4298,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ставьт",{"_index":11200,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["стад",{"_index":7529,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["стал",{"_index":155,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["сталкива",{"_index":4775,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["стандарт",{"_index":19,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["стандартизац",{"_index":11618,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стандартизирова",{"_index":11626,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стандартизова",{"_index":11616,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стандартн",{"_index":1863,"title":{"/tracks/python-101/standard_library/_index":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["станет",{"_index":3627,"title":{},"content":{"/tracks/python-101/basis/loops":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["станов",{"_index":517,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{}},"description":{}}],["становлен",{"_index":11768,"title":{},"content":{"/p/publications":{}},"description":{}}],["станут",{"_index":9655,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["станц",{"_index":7451,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["стар",{"_index":7465,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["стара",{"_index":7043,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["старт",{"_index":9502,"title":{},"content":{"/tracks/90daysofdevops/day25":{},"/posts/docker-commands/":{}},"description":{}}],["стат",{"_index":903,"title":{"/tracks/disser/articles-notes":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/posts/markdown-syntax/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/p/publications":{}},"description":{"/tracks/disser/articles-notes":{},"/tracks/90daysofdevops/_index":{},"/posts/hugo-add-image-zoomin/":{}}}],["статик",{"_index":8225,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["статистик",{"_index":1462,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/disser/israel-notes":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day82":{}},"description":{}}],["статистическ",{"_index":8274,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/p/publications":{}},"description":{}}],["статическ",{"_index":1280,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["статичн",{"_index":11573,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["статус",{"_index":603,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/python-101/standard_library/sys":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["стаффорд",{"_index":4893,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["стволов",{"_index":11805,"title":{},"content":{"/p/publications":{}},"description":{}}],["стек",{"_index":3304,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["стен",{"_index":6014,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day72":{}},"description":{}}],["стенк",{"_index":6018,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["стенок",{"_index":6019,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["степен",{"_index":3591,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стерлинг",{"_index":4395,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["стесня",{"_index":1657,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["стил",{"_index":1735,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["стилиз",{"_index":11060,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["стимулирова",{"_index":11578,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["стимулирован",{"_index":4749,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["стиран",{"_index":11402,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["стихийн",{"_index":4351,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["сто",{"_index":1599,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/p/репатриация":{}},"description":{}}],["стоимост",{"_index":4363,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day04":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["стоимостн",{"_index":4092,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["стойк",{"_index":6051,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["стол",{"_index":7806,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["столбец",{"_index":5887,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["столбц",{"_index":5797,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["столкнет",{"_index":6893,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["столкновен",{"_index":1928,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["столкнул",{"_index":9527,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["столкнут",{"_index":1436,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["стольк",{"_index":1192,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["сторон",{"_index":381,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-redirect-to-url/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["стоя",{"_index":5693,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["стр",{"_index":4020,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}],["стра­н",{"_index":4698,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["страда",{"_index":7246,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["стран",{"_index":1466,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["страниц",{"_index":1019,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/p/publications":{}},"description":{"/apps/npm/hugo-lunr-ml/":{}}}],["стратег",{"_index":4418,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["страшн",{"_index":8639,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["стрелк",{"_index":9775,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["стрелок",{"_index":6169,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["стрем",{"_index":2266,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["стремительн",{"_index":6359,"title":{},"content":{"/tracks/90daysofdevops/day90":{}},"description":{}}],["стремл",{"_index":10156,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["стремлен",{"_index":4811,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["стрим",{"_index":1448,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{}},"description":{}}],["стро",{"_index":1993,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["строг",{"_index":1460,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["строительн",{"_index":7460,"title":{},"content":{"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["строительств",{"_index":4287,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["стройк",{"_index":1014,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["строк",{"_index":102,"title":{"/tracks/python-101/basis/strings":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["строки/списки/словари/кортеж",{"_index":10738,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["строков",{"_index":1290,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["строку(",{"_index":5599,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["строчн",{"_index":9205,"title":{},"content":{"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["струк­ту­р",{"_index":4596,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["структур",{"_index":1694,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["структурирова",{"_index":1925,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{}},"description":{}}],["структурн",{"_index":4097,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["стручк",{"_index":6370,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["стручок",{"_index":7025,"title":{},"content":{"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["студент",{"_index":4876,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["студенческ",{"_index":11809,"title":{},"content":{"/p/publications":{}},"description":{}}],["стык",{"_index":10166,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["стэнд",{"_index":4309,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["стянул",{"_index":8640,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["субсид",{"_index":4539,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["субсидир",{"_index":4329,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["субсидирован",{"_index":4556,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["субъект",{"_index":11549,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["субъективизм",{"_index":11546,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["субъективн",{"_index":11557,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["суд",{"_index":8687,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["судебн",{"_index":4733,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["судебно",{"_index":11828,"title":{},"content":{"/p/publications":{}},"description":{}}],["судостроен",{"_index":4917,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["сужа",{"_index":6020,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["сумм",{"_index":2974,"title":{"/tracks/algorithms-101/data-structures/prefix-sum":{}},"content":{"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{}}}],["суммир",{"_index":5531,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{}}}],["суммирован",{"_index":6274,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["супер",{"_index":7308,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["супергер",{"_index":10926,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["суперкласс",{"_index":2371,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["суперпользовател",{"_index":9804,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["суперпр",{"_index":8092,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["сут",{"_index":2079,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["суток",{"_index":7536,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["суффиксн",{"_index":5832,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["суханов",{"_index":11789,"title":{},"content":{"/p/publications":{}},"description":{}}],["существ",{"_index":216,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["существен",{"_index":4318,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["существительн",{"_index":6733,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["существова",{"_index":8184,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["существован",{"_index":8662,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["сущност",{"_index":3810,"title":{},"content":{"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["сфер",{"_index":4269,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day01":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["сформулирован",{"_index":4976,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["схем",{"_index":6592,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["сходн",{"_index":4710,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["сходств",{"_index":7143,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["схож",{"_index":6878,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["сцен",{"_index":7347,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["сценар",{"_index":1688,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["счастлив",{"_index":7860,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["счел",{"_index":10324,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["счет",{"_index":1777,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/interactivebrokers-deposit/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["счетчик",{"_index":5523,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/integrate-hugo-react/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/933/":{}}}],["счислен",{"_index":3539,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["счит",{"_index":5540,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["счита",{"_index":1955,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["считыва",{"_index":2984,"title":{},"content":{"/tracks/python-101/standard_library/_index":{}},"description":{}}],["сша",{"_index":4085,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["съемн",{"_index":9790,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["сыгра",{"_index":4829,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["сыр",{"_index":4099,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["сырьев",{"_index":11613,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["сэконом",{"_index":2126,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["сюд",{"_index":7646,"title":{},"content":{"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["т.д",{"_index":1984,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["т.е",{"_index":1876,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day31":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["т.к",{"_index":773,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["т.п",{"_index":8136,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["тano",{"_index":8946,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["та­мо­жен­н",{"_index":4665,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­мо­жен­но­м",{"_index":4675,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­ри­ф",{"_index":4676,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­риф­н",{"_index":4582,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["та­риф­но­г",{"_index":4666,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["таблиц",{"_index":1880,"title":{"/posts/google-sheets-2-json/":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/posts/markdown-syntax/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["табуляц",{"_index":9674,"title":{},"content":{"/tracks/90daysofdevops/day20":{},"/posts/python-snippets/":{}},"description":{}}],["тайн",{"_index":11904,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["тайник",{"_index":7124,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["так",{"_index":1138,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["так­ж",{"_index":4609,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["такжезайм",{"_index":4332,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["таков",{"_index":3315,"title":{},"content":{"/tracks/python-101/enhance_python/debugging":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["такт",{"_index":7721,"title":{},"content":{"/tracks/90daysofdevops/day66":{}},"description":{}}],["таможен",{"_index":4112,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["танцует",{"_index":8980,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["тариф",{"_index":4551,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/репатриация":{}},"description":{}}],["тарифн",{"_index":4113,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тверд",{"_index":7547,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["твит",{"_index":9915,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["твитн",{"_index":9914,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{}}],["твиттер",{"_index":9316,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["творен",{"_index":9340,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["творц",{"_index":11568,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["творческ",{"_index":6794,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["тд",{"_index":9792,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["тег",{"_index":5309,"title":{"/tracks/90daysofdevops/day68":{}},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/docker-commands/":{}},"description":{}}],["тег/ключ/id",{"_index":11294,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["тезис",{"_index":4359,"title":{},"content":{"/p/publications":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["тек­сти­л",{"_index":4703,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["текст",{"_index":1181,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["текстильн",{"_index":4834,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["текстов",{"_index":934,"title":{"/tracks/90daysofdevops/day17":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/90daysofdevops/day17":{}}}],["текучест",{"_index":10181,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["текущ",{"_index":14,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["тел",{"_index":1980,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/p/репатриация":{}},"description":{}}],["телекоммуникац",{"_index":4493,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["телекоммуникацион",{"_index":9357,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["телефон",{"_index":9612,"title":{},"content":{"/tracks/90daysofdevops/day23":{},"/p/privacy_ru":{}},"description":{}}],["тем",{"_index":1646,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{}},"description":{}}],["темн",{"_index":6504,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["темп",{"_index":4810,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["темплейт",{"_index":9785,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["тенденц",{"_index":4154,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day70":{},"/posts/trading-indicators/sma":{}},"description":{}}],["теор",{"_index":4064,"title":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["теорем",{"_index":4075,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["теоретическ",{"_index":4369,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["тер",{"_index":8977,"title":{},"content":{"/tracks/90daysofdevops/day35":{}},"description":{}}],["термин",{"_index":541,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["термина",{"_index":1374,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["терминал",{"_index":3179,"title":{},"content":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["терминатор",{"_index":9672,"title":{},"content":{"/tracks/90daysofdevops/day20":{}},"description":{}}],["терминолог",{"_index":6313,"title":{},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["тернарн",{"_index":3601,"title":{},"content":{"/tracks/python-101/basis/operators":{},"/posts/python-snippets/":{}},"description":{}}],["терпен",{"_index":6930,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["терраформ",{"_index":8102,"title":{},"content":{"/tracks/90daysofdevops/day58":{}},"description":{}}],["терраформен",{"_index":7976,"title":{},"content":{"/tracks/90daysofdevops/day61":{}},"description":{}}],["территор",{"_index":9367,"title":{},"content":{"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["террористическ",{"_index":4443,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["теря",{"_index":8839,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["тесн",{"_index":9580,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["тест",{"_index":262,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["тестир",{"_index":7270,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["тестирова",{"_index":122,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["тестирован",{"_index":259,"title":{"/tracks/webrtc/testing":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day62":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["тестиру",{"_index":7542,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["тестов",{"_index":1530,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day03":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["тех­нич",{"_index":4704,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тех­но­ло­ги­",{"_index":4702,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["техник",{"_index":2207,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/_index":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["техническ",{"_index":1934,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day04":{},"/p/privacy_ru":{}},"description":{}}],["технолог",{"_index":902,"title":{},"content":{"/tracks/webrtc/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["технологическ",{"_index":3999,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["течен",{"_index":25,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["тик",{"_index":10933,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["тип",{"_index":655,"title":{"/tracks/python-101/basis/types":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["типизац",{"_index":1697,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{}},"description":{}}],["типизирова",{"_index":1703,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["типичн",{"_index":751,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["типолог",{"_index":4238,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["ткущ",{"_index":11389,"title":{},"content":{"/posts/howto-redirect-to-url/":{}},"description":{}}],["тнк",{"_index":4216,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["то",{"_index":1038,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/posts/python-snippets/":{}},"description":{}}],["то­ва­р",{"_index":4594,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["товар",{"_index":4081,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day42":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["товарн",{"_index":4093,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["товаропроизводител",{"_index":4566,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["ток",{"_index":6457,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["токен",{"_index":9998,"title":{},"content":{"/tracks/90daysofdevops/day13":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["толк",{"_index":1589,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["толка",{"_index":7827,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["толчок",{"_index":8469,"title":{},"content":{"/tracks/90daysofdevops/day48":{}},"description":{}}],["том",{"_index":8169,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/posts/docker-commands/":{}},"description":{}}],["томас",{"_index":11593,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["тон",{"_index":9838,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["тонк",{"_index":2018,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["топ",{"_index":1663,"title":{"/tracks/python-101/top-questions/":{}},"content":{"/posts/docker-commands/":{}},"description":{"/tracks/python-101/_index":{}}}],["топлив",{"_index":4100,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["тополог",{"_index":9086,"title":{},"content":{"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["топологическ",{"_index":5936,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/210/":{}},"description":{}}],["тор­го­в",{"_index":4681,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тор­го­во­г",{"_index":4611,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["тор­гов­л",{"_index":4586,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["торг",{"_index":4385,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["торгов",{"_index":4105,"title":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["торгова",{"_index":4973,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["торговл",{"_index":4068,"title":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["торгуем",{"_index":4080,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["точек",{"_index":1861,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["точечн",{"_index":1926,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["точк",{"_index":53,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/imports":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["точн",{"_index":714,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{}}],["точност",{"_index":6942,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["традицион",{"_index":10194,"title":{},"content":{"/tracks/90daysofdevops/day03":{}},"description":{}}],["трактова",{"_index":4913,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["транзакц",{"_index":6863,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["транзакцион",{"_index":6874,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["транзитивн",{"_index":9087,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["транков",{"_index":9415,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["транскодирован",{"_index":9236,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["транслирова",{"_index":1275,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["транслитерир",{"_index":4009,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["транснационализац",{"_index":4217,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["транспиляц",{"_index":10343,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["транспорт",{"_index":9641,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["транспортир",{"_index":9658,"title":{},"content":{"/tracks/90daysofdevops/day21":{}},"description":{}}],["транспортировк",{"_index":8597,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["транспортн",{"_index":4496,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["трансфер",{"_index":4866,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["трансферт",{"_index":4104,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["трансформац",{"_index":4228,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/p/publications":{}},"description":{}}],["трассировк",{"_index":7007,"title":{},"content":{"/tracks/90daysofdevops/day83":{}},"description":{}}],["трат",{"_index":8758,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["трафик",{"_index":195,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["треб",{"_index":1284,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/ide":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{}},"description":{}}],["требова",{"_index":8302,"title":{},"content":{"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["требован",{"_index":611,"title":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/basis/install":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/privacy_ru":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["требуем",{"_index":5669,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["трейдер",{"_index":10667,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["трем",{"_index":1045,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["тренд",{"_index":10662,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["трет",{"_index":1431,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["треугольник",{"_index":3706,"title":{},"content":{"/tracks/python-101/basis/ide":{}},"description":{}}],["трех",{"_index":3397,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["трехэтапн",{"_index":8614,"title":{},"content":{"/tracks/90daysofdevops/day45":{}},"description":{}}],["тривиальн",{"_index":10882,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["триггер",{"_index":7416,"title":{},"content":{"/tracks/90daysofdevops/day73":{}},"description":{}}],["трижд",{"_index":9207,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["триллион",{"_index":4390,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["тринадцат",{"_index":3521,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["тройк",{"_index":5660,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["тройн",{"_index":3399,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["труд",{"_index":4806,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["трудн",{"_index":7058,"title":{},"content":{"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["трудновыявля",{"_index":9545,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["трудност",{"_index":4336,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["трудов",{"_index":4195,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/p/privacy_ru":{}},"description":{}}],["трудоемк",{"_index":9554,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["трёх",{"_index":8841,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["туннел",{"_index":8204,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["туп",{"_index":9498,"title":{},"content":{"/tracks/90daysofdevops/day26":{}},"description":{}}],["туризм",{"_index":4862,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["турист",{"_index":7861,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["туториа",{"_index":6349,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{"/tracks/90daysofdevops/day29":{}}}],["ты",{"_index":5905,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/215/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/215/":{}}}],["тысяч",{"_index":6996,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["тьюториа",{"_index":9741,"title":{},"content":{"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["тьюториал",{"_index":10241,"title":{},"content":{"/tracks/90daysofdevops/_index":{}},"description":{}}],["тяжел",{"_index":6047,"title":{"/tracks/algorithms-101/leetcode/hard/_index":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["у",{"_index":7885,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["уб",{"_index":11653,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["убед",{"_index":64,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["убежда",{"_index":7537,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["убежден",{"_index":11891,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["убер",{"_index":180,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["убережет",{"_index":7853,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["убива",{"_index":11631,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["убира",{"_index":8403,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["убра",{"_index":8901,"title":{},"content":{"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["убытк",{"_index":4419,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["ув",{"_index":1935,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["уведом",{"_index":8786,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["уведомлен",{"_index":7820,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/posts/nextjs-to-github-pages-ations/":{},"/p/репатриация":{}},"description":{}}],["увелич",{"_index":4437,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["увеличен",{"_index":3621,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/python-101/basis/loops":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["увеличив",{"_index":6203,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["увеличива",{"_index":1780,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day46":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["увеличьт",{"_index":5522,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["увер",{"_index":1653,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/basis/functions":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["уверен",{"_index":1655,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["увид",{"_index":1331,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["увидел",{"_index":7172,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["увидет",{"_index":1021,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["увиж",{"_index":8736,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["угл",{"_index":6994,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day53":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["углов",{"_index":11193,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["углуб",{"_index":7524,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["углублен",{"_index":4799,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["углубля",{"_index":5892,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["угодн",{"_index":7125,"title":{},"content":{"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["угол",{"_index":8756,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["уголовн",{"_index":11856,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["угроз",{"_index":4239,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{}},"description":{}}],["уда",{"_index":7489,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{}},"description":{}}],["удал",{"_index":183,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/strings":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/237/":{}}}],["удален",{"_index":331,"title":{"/tracks/webrtc/remote-streams":{},"/tracks/90daysofdevops/day39":{}},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/sets":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day07":{},"/posts/howto-rename-files-in-python/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/90daysofdevops/day39":{}}}],["удаля",{"_index":2765,"title":{},"content":{"/tracks/python-101/standard_library/os":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/lists":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/docker-commands/":{}},"description":{}}],["удач",{"_index":1662,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["удел",{"_index":6951,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day62":{}},"description":{}}],["уделя",{"_index":6927,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day02":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["удержа",{"_index":6054,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{"/tracks/algorithms-101/leetcode/hard/42/":{}}}],["удержив",{"_index":1471,"title":{},"content":{"/tracks/webrtc/practice/practice-peer-signaling-combine":{}},"description":{}}],["удержива",{"_index":6052,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["удив",{"_index":3393,"title":{},"content":{"/tracks/python-101/basis/strings":{}},"description":{}}],["удивительн",{"_index":10312,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["удоб",{"_index":8906,"title":{},"content":{"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{}},"description":{}}],["удобн",{"_index":2699,"title":{},"content":{"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/ide":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["удобочита",{"_index":2881,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["удобочитаем",{"_index":1683,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day09":{}},"description":{}}],["удобств",{"_index":1907,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day50":{}},"description":{}}],["удовлетвор",{"_index":7288,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["удовлетворен",{"_index":9546,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["удовлетворя",{"_index":5670,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day70":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["удовольств",{"_index":7426,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["удостовер",{"_index":9711,"title":{},"content":{"/tracks/90daysofdevops/day18":{}},"description":{}}],["удостоверен",{"_index":9290,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["узел",{"_index":413,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/data-channels":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{}},"description":{"/tracks/algorithms-101/leetcode/medium/237/":{}}}],["узк",{"_index":3357,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["узл",{"_index":196,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day22":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/872/":{}}}],["узлов",{"_index":7768,"title":{},"content":{"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day34":{}},"description":{}}],["узна",{"_index":926,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-overview":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["узнава",{"_index":1136,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["уйдет",{"_index":8137,"title":{},"content":{"/tracks/90daysofdevops/day56":{}},"description":{}}],["уйт",{"_index":1188,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{}},"description":{}}],["укаж",{"_index":7950,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day25":{},"/posts/python-snippets/":{},"/posts/howto-redirect-to-url/":{}},"description":{}}],["укажет",{"_index":8510,"title":{},"content":{"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["указа",{"_index":300,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/functions":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{}}],["указан",{"_index":3099,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/basis/functions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/posts/markdown-syntax/":{}},"description":{}}],["указател",{"_index":5537,"title":{"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day12":{}}}],["указателей(pointer",{"_index":5974,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1679/":{}},"description":{}}],["указыв",{"_index":2739,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{}},"description":{}}],["указыва",{"_index":852,"title":{},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/imports":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day12":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{}}],["указыван",{"_index":10878,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["украша",{"_index":11147,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["укреплен",{"_index":4259,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["укреплениемеждународн",{"_index":4267,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["улаж",{"_index":7249,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["улиц",{"_index":9606,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["улов",{"_index":7144,"title":{},"content":{"/tracks/90daysofdevops/day80":{}},"description":{}}],["улучш",{"_index":4872,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["улучша",{"_index":9548,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["улучшен",{"_index":1594,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["ум",{"_index":10074,"title":{},"content":{"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["уменьш",{"_index":6041,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["уменьша",{"_index":1910,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["уменьшен",{"_index":4248,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["умерен",{"_index":7876,"title":{},"content":{"/tracks/90daysofdevops/day63":{}},"description":{}}],["уместн",{"_index":10325,"title":{},"content":{"/tracks/90daysofdevops/day19/":{}},"description":{}}],["умира",{"_index":8460,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["умножа",{"_index":3328,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["умножен",{"_index":3340,"title":{},"content":{"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["умолчан",{"_index":113,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["умрет",{"_index":6738,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["унаследова",{"_index":2497,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/posts/python-snippets/":{}},"description":{}}],["универсальн",{"_index":9547,"title":{},"content":{"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["университет",{"_index":11798,"title":{},"content":{"/p/publications":{}},"description":{}}],["уникальн",{"_index":2045,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/classes":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day13":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/387/":{}}}],["унифицирова",{"_index":4,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["уничтож",{"_index":8103,"title":{},"content":{"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["уничтожа",{"_index":5459,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["уничтожен",{"_index":11869,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["упакова",{"_index":8243,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["упаковк",{"_index":4620,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["упаковщик",{"_index":7845,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["упаковыва",{"_index":8656,"title":{},"content":{"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["упер",{"_index":7427,"title":{},"content":{"/tracks/90daysofdevops/day72":{}},"description":{}}],["уполномоч",{"_index":8903,"title":{},"content":{"/tracks/90daysofdevops/day37":{}},"description":{}}],["уполномочен",{"_index":11860,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["упомина",{"_index":6436,"title":{},"content":{"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["упоминан",{"_index":8144,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["упомян",{"_index":10121,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["упомянул",{"_index":7230,"title":{},"content":{"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["упомянут",{"_index":6761,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["упор",{"_index":3064,"title":{},"content":{"/tracks/python-101/frameworks/fastapi":{}},"description":{}}],["упорн",{"_index":7242,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["упорядоч",{"_index":9565,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["упорядочен",{"_index":1590,"title":{},"content":{"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/basis/types":{},"/tracks/90daysofdevops/day84":{},"/posts/markdown-syntax/":{}},"description":{}}],["управлен",{"_index":917,"title":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day16":{}}}],["управленческ",{"_index":10175,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["управля",{"_index":464,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/posts/python-snippets/":{}},"description":{}}],["упражнен",{"_index":140,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["упрежда",{"_index":9541,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["упрост",{"_index":266,"title":{},"content":{"/tracks/webrtc/testing":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["упроща",{"_index":1307,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["упрощен",{"_index":3748,"title":{},"content":{"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["упрямств",{"_index":6758,"title":{},"content":{"/tracks/90daysofdevops/day86":{}},"description":{}}],["урегулирова",{"_index":8951,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["урегулирован",{"_index":4187,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["уровен",{"_index":2820,"title":{},"content":{"/tracks/python-101/standard_library/logging":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day02":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["уровн",{"_index":1363,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/90daysofdevops/day22":{}}}],["урок",{"_index":8158,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day06":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["урон",{"_index":6654,"title":{},"content":{"/tracks/90daysofdevops/day88":{}},"description":{}}],["ус­ло­в",{"_index":4604,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["усво",{"_index":10236,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["усил",{"_index":4827,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["усилен",{"_index":4404,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["ускор",{"_index":2979,"title":{},"content":{"/tracks/python-101/standard_library/_index":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day10":{}},"description":{}}],["ускорен",{"_index":4246,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/454/":{}},"description":{}}],["услов",{"_index":525,"title":{"/tracks/python-101/basis/conditionals":{},"/tracks/90daysofdevops/day26":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day19/":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{"/tracks/90daysofdevops/day26":{}}}],["условн",{"_index":2142,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["усложн",{"_index":7209,"title":{},"content":{"/tracks/90daysofdevops/day77":{}},"description":{}}],["услуг",{"_index":4103,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["услыш",{"_index":7266,"title":{},"content":{"/tracks/90daysofdevops/day76":{}},"description":{}}],["услыша",{"_index":8143,"title":{},"content":{"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["усмотрен",{"_index":8580,"title":{},"content":{"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/p/privacy_ru":{}},"description":{}}],["усовершенствован",{"_index":11413,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["успех",{"_index":1148,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["успешн",{"_index":1242,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/docker-commands/":{}},"description":{}}],["устанавлива",{"_index":471,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/p/privacy_ru":{}},"description":{}}],["установ",{"_index":111,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/ide":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["установк",{"_index":164,"title":{"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/basis/install":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day36":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/install":{},"/tracks/python-101/basis/ide":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day08/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/90daysofdevops/day36":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}}}],["установл",{"_index":432,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/standard_library/logging":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["установлен",{"_index":419,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/_index":{},"/tracks/python-101/basis/install":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day16":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/privacy_ru":{}},"description":{}}],["установок",{"_index":9780,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["установочн",{"_index":3662,"title":{},"content":{"/tracks/python-101/basis/install":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["установщик",{"_index":8248,"title":{},"content":{"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day08/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["устаревш",{"_index":95,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["устновк",{"_index":11430,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["устойчив",{"_index":4273,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["устраива",{"_index":6993,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["устран",{"_index":7319,"title":{},"content":{"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{}},"description":{}}],["устранен",{"_index":7183,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["устраня",{"_index":7502,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["устро",{"_index":8197,"title":{},"content":{"/tracks/90daysofdevops/day55":{}},"description":{}}],["устройств",{"_index":587,"title":{"/tracks/webrtc/media-devices":{}},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/disser/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["утвердительн",{"_index":10098,"title":{},"content":{"/tracks/90daysofdevops/day07":{}},"description":{}}],["утвержда",{"_index":7543,"title":{},"content":{"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day42":{}},"description":{}}],["утвержден",{"_index":1715,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["утил",{"_index":2953,"title":{},"content":{"/tracks/python-101/standard_library/argparse":{}},"description":{}}],["утилизац",{"_index":2041,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["утилит",{"_index":2263,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{}},"description":{}}],["уточ­ня­ет­",{"_index":4683,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["уточн",{"_index":8636,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["уточнен",{"_index":11866,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["уточня",{"_index":7024,"title":{},"content":{"/tracks/90daysofdevops/day82":{}},"description":{}}],["утр",{"_index":10283,"title":{},"content":{"/tracks/90daysofdevops/day19/":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["утрат",{"_index":4340,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day62":{},"/p/privacy_ru":{}},"description":{}}],["уход",{"_index":6231,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/104/":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["ухудш",{"_index":3693,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["уч",{"_index":6426,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["участ",{"_index":4128,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["участв",{"_index":4774,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["участвова",{"_index":8751,"title":{},"content":{"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["участк",{"_index":2000,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["участник",{"_index":4365,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["участниц",{"_index":4208,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["участок",{"_index":6124,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["учебн",{"_index":3959,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["учебник",{"_index":7751,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["учебу/практик",{"_index":11658,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["учен",{"_index":4897,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/pyscript-python-embedded-in-html/":{},"/p/publications":{}},"description":{}}],["учест",{"_index":6080,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/933/":{}},"description":{}}],["учет",{"_index":5891,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day55":{}},"description":{}}],["учетн",{"_index":5300,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day19/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["учител",{"_index":11703,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["учитыв",{"_index":5956,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day31":{}},"description":{"/tracks/algorithms-101/leetcode/medium/210/":{}}}],["учитыва",{"_index":4371,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["учл",{"_index":9287,"title":{},"content":{"/tracks/90daysofdevops/day30":{}},"description":{}}],["учрежд",{"_index":4275,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["учрежден",{"_index":4301,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/p/publications":{}},"description":{}}],["учт",{"_index":8678,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["ущерб",{"_index":6653,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day85":{}},"description":{}}],["ф",{"_index":6852,"title":{},"content":{"/tracks/90daysofdevops/day85":{}},"description":{}}],["фаворит",{"_index":9578,"title":{},"content":{"/tracks/90daysofdevops/day24":{}},"description":{}}],["фаз",{"_index":7884,"title":{},"content":{"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["файл",{"_index":289,"title":{"/tracks/python-101/basis/file_io":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/webrtc/testing":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/ide":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/90daysofdevops/day38":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}}}],["файлов",{"_index":1931,"title":{"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{}},"description":{"/tracks/90daysofdevops/day16":{}}}],["файлы/папк",{"_index":8792,"title":{},"content":{"/tracks/90daysofdevops/day39":{}},"description":{}}],["файт",{"_index":11269,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["факт",{"_index":4809,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["фактическ",{"_index":1289,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["фактор",{"_index":528,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day03":{},"/p/publications":{}},"description":{}}],["фамил",{"_index":11879,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["фантастическ",{"_index":7828,"title":{},"content":{"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day11":{}},"description":{}}],["фатальн",{"_index":6701,"title":{},"content":{"/tracks/90daysofdevops/day87":{}},"description":{}}],["федеральн",{"_index":11817,"title":{},"content":{"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["федерац",{"_index":9294,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/p/publications":{},"/p/privacy_ru":{}},"description":{}}],["федякин",{"_index":4133,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["фенвик",{"_index":6310,"title":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"content":{"/tracks/algorithms-101/data-structures/fenwick-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{"/tracks/algorithms-101/data-structures/fenwick-tree":{}}}],["фз",{"_index":11859,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["фи­то­са­ни­тар­н",{"_index":4707,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фибоначч",{"_index":2246,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["фигурн",{"_index":2129,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/posts/python-snippets/":{}},"description":{}}],["физ",{"_index":11791,"title":{},"content":{"/p/publications":{}},"description":{}}],["физиократ",{"_index":11604,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["физическ",{"_index":3984,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/p/privacy_ru":{}},"description":{}}],["фиксац",{"_index":7468,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{}},"description":{}}],["фиксир",{"_index":7467,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{}},"description":{}}],["фиксирова",{"_index":4410,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day23":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["фиксиру",{"_index":5758,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["филиал",{"_index":10125,"title":{},"content":{"/tracks/90daysofdevops/day06":{}},"description":{}}],["фильтр",{"_index":1256,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["фильтрац",{"_index":2143,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day21":{},"/posts/python-snippets/":{}},"description":{}}],["финальн",{"_index":1498,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{}},"description":{}}],["финансирован",{"_index":4225,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["финансов",{"_index":4219,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day03":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/publications":{}},"description":{}}],["фирм",{"_index":4402,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["фискальн",{"_index":4567,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фитосанитарн",{"_index":4624,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фишер",{"_index":5628,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/384/":{}},"description":{}}],["флаг",{"_index":100,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["флажок",{"_index":1513,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["флешк",{"_index":9791,"title":{},"content":{"/tracks/90daysofdevops/day16":{}},"description":{}}],["фокус",{"_index":9255,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["фокусир",{"_index":6938,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["фон",{"_index":8698,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day20":{}},"description":{}}],["фонд",{"_index":4382,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["фондов",{"_index":4387,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["фонов",{"_index":8464,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/posts/docker-commands/":{}},"description":{}}],["фор­ми­рова­н",{"_index":4658,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["форвард",{"_index":4431,"title":{"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/economics/diff-forward-contracts-futures":{}}}],["форвардн",{"_index":4407,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["форк",{"_index":6955,"title":{},"content":{"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{}},"description":{}}],["форкн",{"_index":8735,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["форкнут",{"_index":8703,"title":{},"content":{"/tracks/90daysofdevops/day41":{}},"description":{}}],["форм",{"_index":55,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day09":{},"/posts/interactivebrokers-deposit/":{},"/p/репатриация":{}},"description":{}}],["формальн",{"_index":4728,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["формат",{"_index":2,"title":{"/tracks/webrtc/unified-plan-transition-guide":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["форматирова",{"_index":2880,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day12":{},"/posts/python-snippets/":{}},"description":{}}],["форматирован",{"_index":2832,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{}},"description":{}}],["форматировщик",{"_index":2801,"title":{},"content":{"/tracks/python-101/standard_library/logging":{}},"description":{}}],["формир",{"_index":6133,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/fenwick-tree":{}},"description":{}}],["формирова",{"_index":10158,"title":{},"content":{"/tracks/90daysofdevops/day04":{}},"description":{}}],["формирован",{"_index":4159,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["формул",{"_index":4818,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["форум",{"_index":4756,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["фот",{"_index":922,"title":{"/tracks/webrtc/practice/practice-take-photo":{},"/photos/_index":{}},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-overview":{}},"description":{}}],["фотограф",{"_index":936,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["фотосъемк",{"_index":1027,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{}},"description":{}}],["фрагмент",{"_index":232,"title":{},"content":{"/tracks/webrtc/turn-server":{},"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["фраз",{"_index":6753,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day18":{},"/posts/markdown-syntax/":{}},"description":{}}],["франк",{"_index":4397,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["франц",{"_index":4489,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["франчайзинг",{"_index":4878,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["франшизинг",{"_index":4877,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["фреймворк",{"_index":544,"title":{"/tracks/python-101/frameworks/_index":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/fastapi":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/external_packages/_index":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day04":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["фронт",{"_index":6687,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["фронтенд",{"_index":6367,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day49":{}},"description":{}}],["фрукт",{"_index":8666,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["фсфр",{"_index":11846,"title":{},"content":{"/p/privacy_ru":{}},"description":{}}],["фундамент",{"_index":8606,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["фундаментальн",{"_index":8468,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day02":{}},"description":{}}],["функц",{"_index":34,"title":{"/tracks/python-101/basis/functions":{}},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/testing":{},"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/standard_library/_index":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/external_packages/requests":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/237/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-redirect-to-url/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["функциона",{"_index":11295,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["функциональн",{"_index":1528,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/hugo-add-image-zoomin/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["функционир",{"_index":1739,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["функционирова",{"_index":8160,"title":{},"content":{"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["функционирован",{"_index":11567,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["фунт",{"_index":4394,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["фут",{"_index":8034,"title":{},"content":{"/tracks/90daysofdevops/day59":{}},"description":{}}],["фьючерс",{"_index":4376,"title":{"/posts/economics/diff-forward-contracts-futures":{}},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{"/posts/economics/diff-forward-contracts-futures":{}}}],["фьючерсн",{"_index":11619,"title":{},"content":{"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["х",{"_index":4699,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/p/publications":{}},"description":{}}],["хаб",{"_index":8635,"title":{},"content":{"/tracks/90daysofdevops/day44":{}},"description":{}}],["хайф",{"_index":11684,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["хакер",{"_index":8532,"title":{},"content":{"/tracks/90daysofdevops/day47":{}},"description":{}}],["хакерск",{"_index":7317,"title":{},"content":{"/tracks/90daysofdevops/day75":{}},"description":{}}],["хаос",{"_index":1264,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-to-cam":{}},"description":{}}],["характер",{"_index":4186,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["характериз",{"_index":4795,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day22":{}},"description":{}}],["характеристик",{"_index":2387,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["характерн",{"_index":11580,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["хват",{"_index":6929,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["хвата",{"_index":7344,"title":{},"content":{"/tracks/90daysofdevops/day74":{}},"description":{}}],["хвостов",{"_index":5855,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/237/":{}},"description":{}}],["хедж",{"_index":4400,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["хеджирован",{"_index":4156,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["хекшер",{"_index":4076,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["хендбук",{"_index":1617,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["хеш",{"_index":5616,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{},"/posts/python-snippets/":{}},"description":{}}],["хлебн",{"_index":6401,"title":{},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day33":{}},"description":{}}],["ход",{"_index":1479,"title":{},"content":{"/tracks/webrtc/practice/practice-overview":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["хозяйств",{"_index":4794,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["хозяйствен",{"_index":4887,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["холст",{"_index":7258,"title":{},"content":{"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["хорош",{"_index":5982,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1448/":{}}}],["хост",{"_index":1292,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day13":{}},"description":{}}],["хостинг",{"_index":8743,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["хостингов",{"_index":7178,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["хостируем",{"_index":7180,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["хостов",{"_index":8655,"title":{},"content":{"/tracks/90daysofdevops/day43":{}},"description":{}}],["хот",{"_index":343,"title":{},"content":{"/tracks/webrtc/remote-streams":{},"/tracks/webrtc/data-channels":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/threading":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/external_packages/install_packages":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/conditionals":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["хотел",{"_index":3426,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day12":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["хоч",{"_index":3511,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["хочет",{"_index":1638,"title":{},"content":{"/tracks/python-101/_index":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["хран",{"_index":1792,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day03":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["хранен",{"_index":1858,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/dict":{},"/tracks/disser/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/210/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1372/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day03":{},"/posts/hugo-add-image-zoomin/":{},"/p/privacy_ru":{}},"description":{}}],["хранилищ",{"_index":6366,"title":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{}},"content":{"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day38":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day16":{}},"description":{"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day16":{}}}],["хранищил",{"_index":9096,"title":{},"content":{"/tracks/90daysofdevops/day34":{}},"description":{}}],["храня",{"_index":1794,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["хронологическ",{"_index":3961,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["худш",{"_index":6256,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["хуж",{"_index":7841,"title":{},"content":{"/tracks/90daysofdevops/day64":{}},"description":{}}],["хук",{"_index":11342,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["хулиганств",{"_index":11811,"title":{},"content":{"/p/publications":{}},"description":{}}],["хэш",{"_index":5521,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day30":{}},"description":{}}],["хэшируем",{"_index":1866,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["цвет",{"_index":6121,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day38":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["цветов",{"_index":8784,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["цветок",{"_index":6126,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["це­н",{"_index":4597,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["цел",{"_index":935,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{}}],["целев",{"_index":2185,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day04":{}},"description":{}}],["целик",{"_index":3802,"title":{},"content":{"/tracks/python-101/basis/comprehensions":{}},"description":{}}],["целостн",{"_index":9598,"title":{},"content":{"/tracks/90daysofdevops/day23":{}},"description":{}}],["целочислен",{"_index":1844,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/argparse":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/python-snippets/":{}},"description":{}}],["цен",{"_index":4079,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{}},"description":{}}],["ценност",{"_index":6718,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ценообразован",{"_index":8746,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["центр",{"_index":4295,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day18":{},"/posts/markdown-syntax/":{},"/p/репатриация":{}},"description":{}}],["централизова",{"_index":4398,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day27":{}},"description":{}}],["центральн",{"_index":4399,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day16":{}},"description":{}}],["цеп",{"_index":6915,"title":{},"content":{"/tracks/90daysofdevops/day84":{}},"description":{}}],["цепочк",{"_index":7481,"title":{},"content":{"/tracks/90daysofdevops/day71":{},"/posts/python-snippets/":{}},"description":{}}],["цикл",{"_index":1979,"title":{"/tracks/python-101/basis/loops":{}},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/asyncio":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/file_io":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{}},"description":{"/tracks/90daysofdevops/_index":{}}}],["цитат",{"_index":4001,"title":{},"content":{"/tracks/disser/_index":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day06":{},"/posts/markdown-syntax/":{}},"description":{}}],["цитир",{"_index":11175,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["цитирован",{"_index":3937,"title":{},"content":{"/tracks/disser/_index":{},"/posts/markdown-syntax/":{},"/p/publications":{}},"description":{}}],["цитируем",{"_index":4006,"title":{},"content":{"/tracks/disser/_index":{}},"description":{}}],["цифр",{"_index":3392,"title":{},"content":{"/tracks/python-101/basis/strings":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/90daysofdevops/day32":{},"/posts/markdown-syntax/":{}},"description":{}}],["цифров",{"_index":2597,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day45":{}},"description":{}}],["цнестабильн",{"_index":4513,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["цп",{"_index":9257,"title":{},"content":{"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["ч",{"_index":4691,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["час",{"_index":2873,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day01":{},"/posts/diploma/":{}},"description":{}}],["часов",{"_index":9758,"title":{},"content":{"/tracks/90daysofdevops/day17":{}},"description":{}}],["част",{"_index":393,"title":{"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{}},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/debugging":{},"/tracks/python-101/enhance_python/_index":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day05/":{},"/posts/nextjs-to-github-pages-ations/":{},"/posts/markdown-syntax/":{}},"description":{}}],["частичн",{"_index":1921,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["частн",{"_index":2035,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day03":{},"/p/репатриация":{},"/p/privacy_ru":{}},"description":{}}],["частност",{"_index":4285,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day03":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["частные_сетев",{"_index":7805,"title":{},"content":{"/tracks/90daysofdevops/day65":{}},"description":{}}],["частот",{"_index":5617,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/387/":{},"/tracks/90daysofdevops/day89":{}},"description":{}}],["чат",{"_index":1452,"title":{},"content":{"/tracks/webrtc/practice/practice-results":{},"/p/репатриация":{}},"description":{}}],["че",{"_index":5492,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["чек",{"_index":11722,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["чеклист",{"_index":11686,"title":{"/p/репатриация":{}},"content":{},"description":{}}],["челендж",{"_index":10069,"title":{},"content":{"/tracks/90daysofdevops/day11":{}},"description":{}}],["человек",{"_index":5781,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day19/":{},"/p/publications":{}},"description":{}}],["человекочита",{"_index":10090,"title":{},"content":{"/tracks/90daysofdevops/day09":{}},"description":{}}],["человеческ",{"_index":7982,"title":{},"content":{"/tracks/90daysofdevops/day61":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day16":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["чембольш",{"_index":4823,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["черед",{"_index":6179,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["чередова",{"_index":6181,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["черепах",{"_index":5738,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/287/":{}},"description":{}}],["черн",{"_index":11403,"title":{},"content":{"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["чертеж",{"_index":6526,"title":{},"content":{"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day54":{}},"description":{}}],["чест",{"_index":7164,"title":{},"content":{"/tracks/90daysofdevops/day79":{}},"description":{}}],["честн",{"_index":4755,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day25":{}},"description":{}}],["четверт",{"_index":3352,"title":{},"content":{"/tracks/python-101/enhance_python/_index":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["четк",{"_index":2071,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day07":{}},"description":{}}],["четн",{"_index":3248,"title":{},"content":{"/tracks/python-101/enhance_python/lambda":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/2130/":{},"/tracks/algorithms-101/leetcode/hard/4/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/328/":{}}}],["четырех",{"_index":4317,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day77":{},"/posts/python-snippets/":{}},"description":{}}],["четырёх",{"_index":5754,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["чисел",{"_index":1842,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1679/":{}}}],["числ",{"_index":793,"title":{"/tracks/python-101/basis/numbers":{}},"content":{"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/os":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/enhance_python/closure":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/scope":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/numbers":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/inputs":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/posts/python-snippets/":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["числа(complex",{"_index":1839,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["число[строк",{"_index":5594,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["числов",{"_index":1833,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/numbers":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day04":{},"/posts/python-snippets/":{}},"description":{}}],["чист",{"_index":1437,"title":{},"content":{"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day59":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["чит",{"_index":8598,"title":{},"content":{"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{}},"description":{}}],["чита",{"_index":2284,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day07":{},"/posts/python-snippets/":{},"/posts/google-sheets-2-json/":{}},"description":{}}],["читабельн",{"_index":8883,"title":{},"content":{"/tracks/90daysofdevops/day38":{}},"description":{}}],["читаем",{"_index":3694,"title":{},"content":{"/tracks/python-101/basis/imports":{}},"description":{}}],["чищ",{"_index":6706,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["член",{"_index":2369,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{}},"description":{}}],["чрезвычайн",{"_index":4335,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["чрезмерн",{"_index":8404,"title":{},"content":{"/tracks/90daysofdevops/day50":{}},"description":{}}],["чтен",{"_index":1648,"title":{"/tracks/90daysofdevops/day12":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/configparser":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day06":{},"/posts/python-snippets/":{}},"description":{}}],["чтопозвол",{"_index":11250,"title":{},"content":{"/posts/integrate-hugo-react/":{}},"description":{}}],["чувств",{"_index":8817,"title":{},"content":{"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day06":{}},"description":{}}],["чувствительн",{"_index":8059,"title":{},"content":{"/tracks/90daysofdevops/day59":{},"/posts/python-snippets/":{}},"description":{}}],["чуж",{"_index":4962,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day41":{}},"description":{}}],["чч:мм:сс",{"_index":2830,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{}},"description":{}}],["чья",{"_index":5501,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/649/":{}},"description":{}}],["чётных",{"_index":5686,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["шаблон",{"_index":3145,"title":{},"content":{"/tracks/python-101/frameworks/django":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day29":{},"/posts/interactivebrokers-deposit/":{},"/posts/integrate-hugo-react/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["шаг",{"_index":925,"title":{},"content":{"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-results":{},"/tracks/webrtc/practice/practice-peer-signaling-combine":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/loops":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/328/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day88":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day64":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day44":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["шанс",{"_index":9508,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["швейцарск",{"_index":4396,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["шек",{"_index":11719,"title":{},"content":{"/p/репатриация":{}},"description":{}}],["шест",{"_index":11148,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["шестнадцатеричн",{"_index":1846,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/strings":{},"/tracks/90daysofdevops/day39":{}},"description":{}}],["шир",{"_index":7484,"title":{},"content":{"/tracks/90daysofdevops/day71":{}},"description":{}}],["ширин",{"_index":720,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/python-101/top-questions/":{},"/tracks/algorithms-101/leetcode/hard/42/":{}},"description":{}}],["широк",{"_index":3150,"title":{},"content":{"/tracks/python-101/frameworks/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day01":{}},"description":{}}],["широт",{"_index":9324,"title":{},"content":{"/tracks/90daysofdevops/day29":{}},"description":{}}],["ширяев",{"_index":11773,"title":{},"content":{"/p/publications":{}},"description":{}}],["шифр",{"_index":4016,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["шифрова",{"_index":6772,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day69":{}},"description":{}}],["шифрован",{"_index":1608,"title":{},"content":{"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day32":{},"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["шкаф",{"_index":9343,"title":{},"content":{"/tracks/90daysofdevops/day28":{}},"description":{}}],["школ",{"_index":11558,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/репатриация":{}},"description":{}}],["шла",{"_index":8697,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["шли",{"_index":5684,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/328/":{}},"description":{}}],["шло",{"_index":4661,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["шлюз",{"_index":1104,"title":{},"content":{"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/_index":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day21":{}},"description":{}}],["шо",{"_index":9535,"title":{},"content":{"/tracks/90daysofdevops/day25":{}},"description":{}}],["шорткод",{"_index":11198,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["шотландск",{"_index":4945,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["шпаргалк",{"_index":8361,"title":{"/tracks/90daysofdevops/day37":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day37":{}},"description":{}}],["штурва",{"_index":8261,"title":{},"content":{"/tracks/90daysofdevops/day54":{}},"description":{}}],["шутк",{"_index":10999,"title":{},"content":{"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["щелка",{"_index":9840,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["щелкн",{"_index":8935,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day18":{}},"description":{}}],["щелкнул",{"_index":9376,"title":{},"content":{"/tracks/90daysofdevops/day27":{}},"description":{}}],["щелкнут",{"_index":9323,"title":{},"content":{"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day08/":{}},"description":{}}],["э",{"_index":6851,"title":{},"content":{"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day79":{}},"description":{}}],["эволюц",{"_index":4160,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эк",{"_index":4819,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эквивалент",{"_index":10746,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["эквивалентн",{"_index":9284,"title":{},"content":{"/tracks/90daysofdevops/day30":{},"/posts/python-snippets/":{}},"description":{}}],["экзам",{"_index":4033,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/p/privacy_ru":{}},"description":{"/apps/cloud-exam-quizz/":{}}}],["экзамен",{"_index":4057,"title":{},"content":{},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{}}}],["экземпляр",{"_index":1887,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/classes":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day31":{},"/posts/python-snippets/":{}},"description":{}}],["эконом",{"_index":2279,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day19/":{}},"description":{}}],["экономик",{"_index":3880,"title":{"/tracks/disser/canditate-minimum/_index":{}},"content":{"/tracks/python-101/basis/_index":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}}}],["экономист",{"_index":4946,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["экономическ",{"_index":4063,"title":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{}}],["экосист",{"_index":8418,"title":{},"content":{"/tracks/90daysofdevops/day49":{}},"description":{}}],["экосистем",{"_index":8674,"title":{},"content":{"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day07":{},"/p/publications":{}},"description":{}}],["экра",{"_index":757,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/_index":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/file_io":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day19/":{},"/posts/integrate-hugo-react/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["экран",{"_index":6784,"title":{},"content":{"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day13":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["экс­порт",{"_index":4593,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["экскурс",{"_index":8273,"title":{},"content":{"/tracks/90daysofdevops/day53":{},"/posts/ruGPT-3-notes":{}},"description":{}}],["экспанс",{"_index":4815,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эксперимент",{"_index":117,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{}},"description":{}}],["экспериментальн",{"_index":8940,"title":{},"content":{"/tracks/90daysofdevops/day36":{},"/posts/pyscript-python-embedded-in-html/":{}},"description":{}}],["экспериментирова",{"_index":8777,"title":{},"content":{"/tracks/90daysofdevops/day40":{}},"description":{}}],["эксперт",{"_index":10225,"title":{},"content":{"/tracks/90daysofdevops/day01":{}},"description":{}}],["эксплуатац",{"_index":6934,"title":{},"content":{"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day05/":{}},"description":{}}],["эксплуатирова",{"_index":10350,"title":{},"content":{"/tracks/90daysofdevops/day05/":{}},"description":{}}],["экспонент",{"_index":1850,"title":{},"content":{"/tracks/python-101/top-questions/":{}},"description":{}}],["экспоненциальн",{"_index":7558,"title":{},"content":{"/tracks/90daysofdevops/day70":{}},"description":{}}],["экспорт",{"_index":4439,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day78":{},"/posts/google-sheets-2-json/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/p/publications":{}},"description":{"/posts/google-sheets-2-json/":{}}}],["экспорт+импорт",{"_index":4822,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["экспортер",{"_index":4095,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/90daysofdevops/day78":{}},"description":{}}],["экспортир",{"_index":5001,"title":{},"content":{"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["экспортирова",{"_index":6694,"title":{},"content":{"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day31":{}},"description":{}}],["экспортируем",{"_index":4826,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["экспортн",{"_index":4711,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{}},"description":{}}],["экш",{"_index":11122,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["экшен",{"_index":11120,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["экшн",{"_index":11080,"title":{},"content":{"/posts/nextjs-to-github-pages-ations/":{}},"description":{}}],["эл",{"_index":8944,"title":{},"content":{"/tracks/90daysofdevops/day36":{}},"description":{}}],["эластичн",{"_index":9238,"title":{},"content":{"/tracks/90daysofdevops/day32":{}},"description":{}}],["электрон",{"_index":2716,"title":{},"content":{"/tracks/python-101/standard_library/smtplib":{},"/tracks/python-101/standard_library/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day23":{}},"description":{}}],["электроник",{"_index":4833,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["элемент",{"_index":745,"title":{},"content":{"/tracks/webrtc/media-devices":{},"/tracks/webrtc/practice/practice-take-photo":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-stream-to-cam":{},"/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/tornado":{},"/tracks/python-101/enhance_python/testing":{},"/tracks/python-101/enhance_python/decorators":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/tuples":{},"/tracks/python-101/basis/sets":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/loops":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/dict":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/341/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/287/":{},"/tracks/algorithms-101/leetcode/medium/251/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/2095/":{},"/tracks/algorithms-101/leetcode/medium/1679/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/42/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/algorithms-101/leetcode/easy/933/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day19/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["элемента(index=1",{"_index":5837,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["эмбарг",{"_index":4744,"title":{},"content":{"/tracks/disser/canditate-minimum/03-international-policy":{}},"description":{}}],["эмитент",{"_index":4179,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["эмулируем",{"_index":9374,"title":{},"content":{"/tracks/90daysofdevops/day27":{},"/tracks/90daysofdevops/day26":{}},"description":{}}],["энд",{"_index":7158,"title":{},"content":{"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day46":{}},"description":{}}],["энергетик",{"_index":4841,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["энергоносител",{"_index":4824,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["энергоресурс",{"_index":4844,"title":{},"content":{"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["эпох",{"_index":2875,"title":{},"content":{"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day28":{}},"description":{}}],["эталон",{"_index":9630,"title":{},"content":{"/tracks/90daysofdevops/day22":{}},"description":{}}],["этап",{"_index":31,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":{},"/tracks/webrtc/practice/practice-setup-signaling-service":{},"/tracks/webrtc/practice/practice-get-code":{},"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/1448/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/90daysofdevops/day89":{},"/tracks/90daysofdevops/day87":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day75":{},"/tracks/90daysofdevops/day74":{},"/tracks/90daysofdevops/day73":{},"/tracks/90daysofdevops/day72":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day36":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["эфемерн",{"_index":8454,"title":{},"content":{"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day32":{}},"description":{}}],["эфир",{"_index":761,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["эффект",{"_index":2164,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["эффектив",{"_index":6024,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["эффективн",{"_index":555,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/python-101/_index":{},"/tracks/python-101/basis/file_io":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/disser/canditate-minimum/01-economic-theory":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/300/":{},"/tracks/algorithms-101/leetcode/medium/240/":{},"/tracks/algorithms-101/leetcode/medium/215/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/4/":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day81":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day52":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day48":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/posts/python-snippets/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["эх",{"_index":9861,"title":{},"content":{"/tracks/90daysofdevops/day15":{}},"description":{}}],["эхоподавлен",{"_index":719,"title":{},"content":{"/tracks/webrtc/media-devices":{}},"description":{}}],["ю",{"_index":5376,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/90daysofdevops/day15":{}},"description":{}}],["юн",{"_index":1986,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/90daysofdevops/day70":{}},"description":{}}],["юнктад/unctad",{"_index":4520,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{}},"description":{}}],["юсмк",{"_index":4206,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["яблок",{"_index":8664,"title":{},"content":{"/tracks/90daysofdevops/day42":{}},"description":{}}],["явлен",{"_index":11547,"title":{},"content":{"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{}},"description":{}}],["явля",{"_index":422,"title":{},"content":{"/tracks/webrtc/peer-connections":{},"/tracks/webrtc/media-capture-and-constraints":{},"/tracks/webrtc/practice/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/standard_library/sys":{},"/tracks/python-101/standard_library/subprocess":{},"/tracks/python-101/standard_library/logging":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/enhance_python/lambda":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/operators":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{},"/tracks/python-101/basis/classes":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{},"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/disser/canditate-minimum/02-international-trade":{},"/tracks/algorithms-101/leetcode/medium/454/":{},"/tracks/algorithms-101/leetcode/medium/437/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/384/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/277/":{},"/tracks/algorithms-101/leetcode/medium/236/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/872/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/90daysofdevops/day90":{},"/tracks/90daysofdevops/day86":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day84":{},"/tracks/90daysofdevops/day83":{},"/tracks/90daysofdevops/day82":{},"/tracks/90daysofdevops/day80":{},"/tracks/90daysofdevops/day79":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day77":{},"/tracks/90daysofdevops/day76":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day70":{},"/tracks/90daysofdevops/day69":{},"/tracks/90daysofdevops/day68":{},"/tracks/90daysofdevops/day67":{},"/tracks/90daysofdevops/day66":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day60":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day56":{},"/tracks/90daysofdevops/day55":{},"/tracks/90daysofdevops/day54":{},"/tracks/90daysofdevops/day51":{},"/tracks/90daysofdevops/day50":{},"/tracks/90daysofdevops/day49":{},"/tracks/90daysofdevops/day47":{},"/tracks/90daysofdevops/day45":{},"/tracks/90daysofdevops/day43":{},"/tracks/90daysofdevops/day42":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day39":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day35":{},"/tracks/90daysofdevops/day34":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day32":{},"/tracks/90daysofdevops/day30":{},"/tracks/90daysofdevops/day29":{},"/tracks/90daysofdevops/day28":{},"/tracks/90daysofdevops/day26":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day23":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day21":{},"/tracks/90daysofdevops/day20":{},"/tracks/90daysofdevops/day17":{},"/tracks/90daysofdevops/day16":{},"/tracks/90daysofdevops/day15":{},"/tracks/90daysofdevops/day14":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day11":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day04":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/python-snippets/":{},"/posts/pyscript-python-embedded-in-html/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":{},"/posts/economics/diff-forward-contracts-futures":{},"/p/privacy_ru":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["явн",{"_index":1820,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/python-101/basis/imports":{},"/tracks/python-101/basis/functions":{},"/tracks/python-101/basis/exception_handling":{}},"description":{}}],["ядр",{"_index":2053,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/_index":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day53":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day16":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["язык",{"_index":1618,"title":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day07":{}},"content":{"/tracks/python-101/_index":{},"/tracks/python-101/top-questions/":{},"/tracks/python-101/frameworks/flask":{},"/tracks/python-101/frameworks/django":{},"/tracks/python-101/frameworks/_index":{},"/tracks/python-101/basis/types":{},"/tracks/python-101/basis/strings":{},"/tracks/python-101/basis/lists":{},"/tracks/python-101/basis/conditionals":{},"/tracks/python-101/basis/comprehensions":{},"/tracks/python-101/basis/_index":{},"/tracks/disser/_index":{},"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/90daysofdevops/day85":{},"/tracks/90daysofdevops/day78":{},"/tracks/90daysofdevops/day71":{},"/tracks/90daysofdevops/day65":{},"/tracks/90daysofdevops/day63":{},"/tracks/90daysofdevops/day62":{},"/tracks/90daysofdevops/day58":{},"/tracks/90daysofdevops/day57":{},"/tracks/90daysofdevops/day46":{},"/tracks/90daysofdevops/day41":{},"/tracks/90daysofdevops/day40":{},"/tracks/90daysofdevops/day33":{},"/tracks/90daysofdevops/day31":{},"/tracks/90daysofdevops/day25":{},"/tracks/90daysofdevops/day24":{},"/tracks/90daysofdevops/day22":{},"/tracks/90daysofdevops/day18":{},"/tracks/90daysofdevops/day13":{},"/tracks/90daysofdevops/day10":{},"/tracks/90daysofdevops/day09":{},"/tracks/90daysofdevops/day07":{},"/tracks/90daysofdevops/day06":{},"/tracks/90daysofdevops/day03":{},"/tracks/90daysofdevops/day02":{},"/tracks/90daysofdevops/day01":{},"/tracks/90daysofdevops/_index":{},"/tracks/90daysofdevops/day19/":{},"/tracks/90daysofdevops/day08/":{},"/tracks/90daysofdevops/day05/":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{"/tracks/disser/canditate-minimum/languages-requirements":{},"/tracks/90daysofdevops/day07":{}}}],["ямайск",{"_index":4167,"title":{},"content":{"/tracks/disser/canditate-minimum/_index":{}},"description":{}}],["январ",{"_index":152,"title":{},"content":{"/tracks/webrtc/unified-plan-transition-guide":{},"/tracks/python-101/standard_library/datetime_time":{},"/tracks/90daysofdevops/day90":{}},"description":{}}],["яндекс",{"_index":3897,"title":{},"content":{"/tracks/disser/articles-notes":{}},"description":{}}],["япон",{"_index":4471,"title":{},"content":{"/tracks/disser/canditate-minimum/04-international-capital-movement":{},"/tracks/disser/canditate-minimum/02-international-trade":{}},"description":{}}],["японск",{"_index":4391,"title":{},"content":{"/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":{}},"description":{}}],["ярк",{"_index":1719,"title":{},"content":{"/tracks/python-101/top-questions/":{},"/tracks/disser/canditate-minimum/03-international-policy":{},"/tracks/90daysofdevops/day86":{}},"description":{}}],["ярлык",{"_index":1503,"title":{},"content":{"/tracks/webrtc/practice/practice-get-code":{},"/tracks/90daysofdevops/day37":{},"/tracks/90daysofdevops/day17":{},"/posts/howto-install-ubuntu-desktop-on-arm/":{}},"description":{}}],["ясн",{"_index":1659,"title":{},"content":{"/tracks/python-101/_index":{}},"description":{}}],["ячейк",{"_index":5838,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/prefix-sum":{},"/posts/markdown-syntax/":{}},"description":{}}],["яызк",{"_index":4038,"title":{},"content":{"/tracks/disser/canditate-minimum/languages-requirements":{}},"description":{}}]],"pipeline":["stemmer-ru","stemmer"]},"en":{"version":"2.3.9","fields":["title","content","description"],"fieldVectors":[["title//tracks/_index",[0,6.005]],["content//tracks/_index",[1,1.643,2,4.916,3,3.984]],["description//tracks/_index",[]],["title//tracks/disser/utils/text_2_short",[4,2.795,5,2.486,6,3.685]],["content//tracks/disser/utils/text_2_short",[7,1.34]],["description//tracks/disser/utils/text_2_short",[4,2.978,5,2.649,6,3.926,8,1.75]],["title//tracks/aws-certified-developer-associate/questions",[9,2.749]],["content//tracks/aws-certified-developer-associate/questions",[1,0.629,3,1.233,4,0.549,7,1.392,8,0.322,9,0.403,10,0.782,11,0.852,12,0.561,13,1.562,14,0.618,15,1.196,16,0.889,17,0.403,18,0.95,19,0.82,20,1.93,21,3.167,22,4.001,23,1.945,24,3.354,25,1.714,26,2.107,27,2.555,28,1.004,29,1.296,30,0.597,31,2.329,32,2.213,33,0.506,34,0.698,35,1.386,36,0.95,37,1.926,38,2.2,39,1.425,40,1.878,41,1.248,42,1.472,43,1.386,44,2.152,45,2.851,46,1.737,47,3.498,48,2.386,49,2.683,50,0.95,51,0.716,52,0.95,53,1.988,54,1.125,55,0.549,56,1.948,57,2.193,58,3.114,59,2.398,60,0.873,61,1.233,62,1.705,63,2.851,64,0.931,65,1.071,66,1.105,67,0.787,68,1.862,69,2.031,70,0.579,71,0.825,72,0.833,73,0.95,74,0.753,75,1.062,76,0.376,77,0.95,78,0.95,79,0.635,80,4.227,81,1.026,82,2.231,83,0.807,84,1.162,85,0.983,86,1.605,87,0.516,88,1.522,89,2.44,90,2.412,91,0.497,92,1.485,93,1.377,94,2.323,95,0.983,96,1.256,97,1.562,98,1.234,99,0.95,100,3.114,101,0.588,102,0.95,103,0.95,104,3.925,105,0.95,106,1.162,107,0.95,108,1.969,109,0.698,110,1.485,111,0.881,112,0.829,113,2.544,114,1.064,115,0.448,116,3.442,117,3.724,118,2.748,119,0.753,120,1.41,121,0.397,122,1.977,123,2.864,124,3.447,125,2.085,126,0.675,127,1.516,128,1.972,129,0.926,130,3.26,131,0.602,132,1.862,133,1.4,134,0.516,135,1.522,136,0.95,137,0.741,138,0.753,139,1.705,140,2.239,141,1.989,142,2.769,143,3.126,144,1.13,145,2.839,146,2.059,147,3.032,148,0.787,149,0.926,150,1.737,151,1.737,152,0.95,153,1.191,154,1.334,155,0.881,156,2.839,157,1.441,158,0.787,159,1.277,160,0.456,161,1.212,162,0.881,163,1.781,164,0.95,165,1.372,166,1.055,167,1.902,168,0.909,169,2.192,170,1.171,171,0.855,172,2.192,173,1.276,174,1.18,175,2.226,176,1.162,177,0.787,178,1.509,179,2.632,180,1.835,181,0.635,182,0.976,183,0.497,184,1.878,185,0.893,186,0.847,187,0.833,188,1.217,189,1.304,190,0.881,191,0.654,192,0.635,193,0.881,194,1.055,195,2.043,196,1.323,197,3.589,198,2.588,199,2.673,200,0.881,201,2.697,202,2.588,203,1.191,204,2.109,205,0.698,206,2.358,207,0.335,208,1.485,209,2.269,210,1.257,211,2.002,212,1.196,213,1.552,214,0.716,215,1.417,216,1.33,217,2.152,218,2.429,219,2.137,220,1.055,221,1.128,222,2.916,223,0.926,224,2.31,225,1.562,226,0.614,227,3.05,228,2.693,229,0.794,230,0.723,231,1.018,232,0.699,233,1.835,234,1.714,235,2.461,236,2.069,237,1.881,238,0.983,239,1.012,240,2.611,241,2.402,242,1.624,243,0.602,244,1.075,245,1.105,246,1.171,247,0.75,248,0.602,249,2.069,250,1.377,251,1.984,252,2.656,253,2.107,254,0.723,255,0.537,256,1.394,257,2.739,258,1.763,259,2.202,260,0.618,261,2.401,262,3.051,263,0.471,264,2.311,265,0.787,266,0.787,267,1.44,268,2.043,269,1.472,270,0.698,271,1.276,272,3.392,273,0.675,274,0.654,275,0.635,276,1.405,277,0.635,278,1.255,279,1.081,280,2.226,281,0.448,282,0.602,283,2.211,284,0.549,285,1.026,286,1.057,287,0.448,288,0.753,289,0.549,290,0.635,291,1.792,292,1.562,293,2.166,294,0.549,295,1.671,296,1.055,297,1.055,298,1.101,299,1.44,300,1.61,301,0.829,302,3.755,303,3.077,304,0.675,305,1.13,306,0.48,307,0.926,308,2.824,309,1.133,310,1.45,311,0.516,312,2.109,313,1.234,314,1.233,315,2.087,316,2.633,317,2.259,318,2.401,319,1.763,320,1.233,321,0.654,322,0.675,323,1.377,324,2.425,325,2.588,326,1.44,327,0.759,328,0.847,329,1.196,330,0.48,331,0.881,332,1.196,333,0.698,334,1.049,335,3.874,336,0.881,337,0.698,338,3.755,339,1.196,340,0.909,341,0.569,342,0.829,343,3.598,344,1.705,345,0.392,346,1.234,347,1.631,348,1.44,349,1.377,350,1.234,351,2.118,352,1.026,353,1.315,354,1.516,355,0.963,356,0.909,357,1.516,358,1.93,359,1.737,360,2.227,361,2.135,362,0.635,363,0.527,364,0.753,365,0.794,366,2.087,367,1.61,368,1.075,369,1.144,370,0.787,371,2.107,372,2.27,373,2.847,374,3.206,375,0.963,376,0.829,377,0.787,378,0.448,379,0.881,380,2.107,381,0.65,382,0.555,383,1.472,384,1.233,385,1.004,386,0.787,387,1.91,388,3.374,389,1.984,390,1.466,391,3.575,392,2.588,393,1.386,394,0.361,395,1.026,396,1.405,397,0.561,398,1.049,399,1.612,400,1.58,401,1.171,402,1.61,403,0.95,404,0.463,405,0.95,406,1.004,407,1.157,408,1.984,409,1.828,410,1.417,411,0.95,412,1.51,413,0.471,414,1.202,415,1.653,416,1.276,417,1.055,418,0.95,419,1.075,420,2.277,421,1.516,422,1.989,423,1.752,424,1.377,425,1.174,426,0.881,427,0.537,428,0.95,429,0.427,430,1.61,431,3.105,432,0.829,433,0.343,434,0.862,435,1.234,436,0.698,437,0.753,438,1.055,439,1.878,440,0.787,441,0.669,442,1.881,443,0.881,444,1.004,445,0.319,446,3.529,447,0.983,448,0.698,449,0.95,450,1.685,451,0.881,452,0.488,453,1.485,454,2.454,455,1.648,456,0.787,457,0.881,458,0.669,459,0.909,460,0.506,461,1.775,462,0.524,463,0.723,464,2.77,465,2.152,466,2.461,467,0.787,468,0.881,469,1.055,470,1.055,471,1.276,472,1.653,473,0.428,474,0.527,475,0.753,476,1.049,477,0.537,478,1.279,479,0.698,480,2.357,481,2.4,482,1.562,483,0.95,484,1.447,485,0.881,486,0.561,487,0.415,488,3.024,489,0.675,490,0.95,491,0.881,492,0.95,493,0.787,494,2.588,495,0.262,496,1.13,497,0.95,498,1.234,499,0.95,500,0.588,501,0.561,502,1.377,503,0.787,504,0.753,505,1.377,506,0.95,507,0.95,508,1.367,509,0.488,510,2.596,511,0.441,512,0.48,513,2.597,514,3.757,515,0.829,516,0.723,517,1.989,518,1.61,519,1.44,520,1.28,521,0.698,522,1.737,523,1.61,524,0.862,525,0.829,526,0.723,527,2.572,528,0.605,529,2.087,530,0.463,531,0.753,532,1.644,533,1.619,534,1.184,535,1.33,536,0.723,537,0.471,538,1.653,539,1.705,540,0.787,541,1.026,542,1.737,543,0.95,544,1.516,545,0.723,546,1.737,547,1.737,548,2.4,549,0.95,550,0.95,551,0.95,552,0.881,553,0.787,554,0.675,555,0.95,556,0.753,557,0.456,558,0.829,559,0.95,560,0.95,561,1.516,562,3.455,563,0.421,564,0.723,565,0.366,566,0.527,567,1.562,568,0.95,569,2.259,570,0.698,571,0.95,572,0.95,573,1.737,574,1.737,575,0.787,576,0.95,577,2.666,578,0.527,579,0.829,580,0.463,581,0.95,582,0.95,583,0.434,584,1.323,585,0.829,586,1.61,587,0.95,588,0.698,589,0.95,590,2.094,591,0.09,592,1.516,593,0.753,594,0.881,595,0.787,596,2.514,597,1.004,598,0.561,599,4.13,600,0.618,601,1.064,602,4.364,603,2.225,604,2.094,605,0.926,606,0.95,607,0.549,608,0.787,609,2.094,610,3.217,611,1.497,612,1.234,613,1.423,614,0.753,615,0.881,616,0.829,617,1.737,618,0.95,619,0.829,620,0.95,621,1.323,622,0.602,623,1.44,624,1.763,625,0.319,626,0.376,627,0.881,628,0.654,629,1.93,630,0.787,631,0.497,632,0.527,633,0.588,634,1.516,635,0.618,636,0.723,637,0.926,638,1.055,639,1.055,640,0.983,641,0.409,642,1.115,643,1.026,644,1.705,645,0.95,646,0.95,647,1.377,648,0.881,649,0.618,650,0.829,651,0.881,652,1.417,653,0.574,654,0.787,655,0.381,656,0.574,657,0.829,658,0.753,659,0.675,660,1.377,661,0.95,662,1.737,663,1.516,664,1.737,665,1.989,666,1.162,667,0.787,668,0.753,669,0.881,670,0.654,671,0.463,672,0.881,673,0.549,674,1.61,675,0.95,676,0.95,677,0.95,678,0.881,679,0.602,680,0.95,681,0.95,682,0.95,683,0.95,684,0.963,685,1.737,686,0.95,687,1.61,688,1.61,689,0.95,690,1.049,691,1.61,692,0.881,693,0.787,694,1.358,695,0.95,696,0.652,697,0.881,698,1.581,699,0.926,700,0.753,701,2.956,702,0.516,703,3.203,704,1.055,705,1.055,706,0.881,707,0.588,708,1.055,709,0.787,710,0.95,711,0.723,712,0.95,713,0.723,714,1.049,715,0.95,716,0.787,717,0.95,718,0.95,719,0.471,720,0.488,721,0.654,722,0.881,723,0.95,724,0.95,725,1.055,726,1.055,727,0.759,728,0.983,729,0.675,730,0.829,731,0.787,732,0.527,733,0.698,734,0.654,735,0.881,736,0.549,737,0.506,738,1.323,739,2.259,740,0.983,741,0.95,742,0.698,743,1.377,744,0.95,745,0.723,746,0.549,747,0.787,748,0.675,749,1.004,750,0.527,751,1.055,752,0.753,753,1.737,754,0.895,755,0.497,756,1.162,757,1.737,758,0.654,759,0.602,760,1.055,761,2.225,762,0.561,763,1.377,764,0.829,765,0.753,766,0.698,767,1.196,768,1.055,769,1.055,770,1.522,771,1.93,772,1.644,773,1.196,774,0.723,775,2.459,776,1.234,777,0.415,778,0.675,779,0.602,780,0.654,781,0.618,782,0.95,783,1.336,784,0.829,785,0.588,786,0.881,787,0.95,788,1.234,789,1.516,790,0.95,791,0.588,792,0.753,793,2.094,794,0.753,795,1.256,796,0.602,797,0.527,798,0.95,799,0.95,800,0.723,801,1.055,802,0.654,803,2.966,804,0.877,805,1.055,806,0.881,807,0.829,808,3.838,809,0.847,810,0.787,811,0.136,812,1.055,813,1.055,814,0.588,815,1.323,816,0.654,817,0.471,818,1.055,819,0.787,820,0.463,821,0.881,822,0.698,823,0.506,824,0.787,825,0.881,826,0.618,827,0.723,828,0.95,829,0.53,830,1.44,831,0.537,832,0.963,833,1.055,834,1.055,835,1.055,836,1.055,837,1.055,838,1.055,839,1.234,840,1.055,841,0.95,842,1.516,843,0.881,844,2.094,845,0.95,846,0.753]],["description//tracks/aws-certified-developer-associate/questions",[9,1.87,15,3.035,21,1.654,32,1.052,847,3.653,848,3.653]],["title//tracks/aws-certified-developer-associate/_index",[21,1.112,32,0.707,591,0.077,847,2.456,849,4.586,850,2.963,851,2.963]],["content//tracks/aws-certified-developer-associate/_index",[0,4.132,1,1.162,7,0.767,8,0.97,9,2.85,11,0.705,14,4.631,15,5.968,16,0.524,17,3.02,21,3.219,22,2.29,23,2.158,24,2.901,27,1.562,28,1.65,29,1.947,31,2.691,32,2.349,35,1.146,37,1.417,39,2.554,47,1.919,48,1.256,54,0.439,57,1.63,58,3.311,60,0.543,62,1.112,65,0.885,66,0.913,72,2.629,75,0.712,83,3.119,84,1.911,85,1.616,90,1.045,94,1.23,95,1.616,100,2.693,101,2.757,104,3.395,106,2.981,108,1.579,113,1.583,115,1.348,116,2.554,117,2.471,121,2.59,123,3.695,124,1.911,127,1.115,135,1.811,143,3.274,145,4.154,146,2.64,157,1.314,165,0.895,169,1.74,172,1.74,173,3.274,178,1.376,179,2.174,182,1.162,188,2.181,199,3.069,203,1.417,206,2.29,207,1.006,223,1.712,225,2.901,226,0.596,227,1.348,228,2.629,236,1.523,239,1.162,240,1.63,242,1.195,245,1.425,246,1.393,251,4.76,253,2.029,256,0.935,259,4.012,260,2.901,261,2.757,262,1.552,270,2.098,276,2.229,278,1.616,280,2.356,283,1.086,294,2.575,302,2.981,303,2.007,305,1.859,307,0.892,308,1.947,309,1.348,311,1.552,312,2.422,324,3.332,334,1.726,341,0.935,346,2.029,351,0.872,358,1.859,362,1.911,369,1.314,370,2.368,373,2.112,375,3.038,381,0.537,382,0.913,384,1.468,386,3.695,387,1.651,388,3.533,389,2.981,391,2.522,397,1.687,401,1.393,404,1.393,414,0.994,416,3.274,425,2.658,431,1.695,434,1.417,444,2.575,458,1.717,461,2.29,463,3.395,464,2.901,466,2.826,471,2.098,473,1.286,475,2.264,478,1.871,480,1.947,484,1.393,487,1.947,488,2.029,495,0.787,503,4.543,504,4.345,510,3.666,538,3.774,544,2.492,563,1.267,575,2.368,583,1.306,591,0.075,598,1.687,599,3.166,604,2.492,619,2.492,622,2.826,637,2.376,641,2.36,644,2.029,649,1.859,653,1.726,657,3.889,658,2.264,679,4.512,728,2.522,745,2.175,747,2.368,772,3.038,773,1.967,777,1.248,795,2.332,847,5.566,848,4.543,849,9.451,850,6.715,851,9.346,852,2.648,853,2.368,854,1.417,855,2.029,856,2.264,857,3.173,858,4.951,859,2.029,860,1.23,861,0.653,862,2.981,863,1.911,864,1.811,865,1.616,866,3.173,867,4.951,868,2.098,869,3.893,870,2.458,871,2.856,872,1.687,873,1.977,874,3.173,875,2.492,876,3.173,877,3.173,878,3.173,879,2.648,880,3.173,881,3.173,882,4.132,883,2.981,884,2.098,885,2.029,886,2.648,887,1.178,888,2.376,889,1.811,890,1.65,891,2.098,892,2.856,893,2.856,894,1.767,895,2.856,896,2.856,897,4.543,898,5.081,899,2.981,900,3.173,901,2.901,902,3.889,903,3.274,904,3.395,905,3.173,906,2.856,907,2.175,908,3.173,909,3.173,910,4.782,911,3.695,912,2.981,913,3.695,914,3.274,915,4.026,916,3.173,917,3.173,918,5.133,919,2.648,920,4.026,921,3.173,922,2.856,923,3.889,924,1.178,925,1.911,926,1.616,927,2.856,928,2.175,929,0.646,930,4.951,931,2.575,932,2.368,933,6.192,934,1.162,935,3.173,936,3.173,937,2.264,938,2.368,939,2.492,940,2.098,941,2.856,942,1.072,943,2.175,944,3.173,945,3.173,946,3.695,947,2.856,948,1.442,949,4.951,950,1.523,951,2.368,952,4.132,953,3.695,954,3.173,955,3.173,956,3.173,957,1.859,958,2.098,959,3.173,960,3.173,961,2.029,962,3.533,963,3.173,964,4.132,965,2.693,966,4.951,967,3.173,968,2.856,969,2.856,970,2.648,971,2.856,972,4.951,973,1.726,974,4.345,975,3.311,976,2.901,977,2.175,978,2.368,979,2.856,980,4.951,981,1.767,982,2.492,983,1.967,984,2.029,985,3.173,986,1.767,987,3.173,988,2.492,989,1.726,990,0.46]],["description//tracks/aws-certified-developer-associate/_index",[14,2.674,15,2.83,21,1.542,32,0.981,66,1.314,538,2.83,847,3.406]],["title//tracks/aws-certified-developer-associate/xray/",[387,2.052,388,4.391]],["content//tracks/aws-certified-developer-associate/xray/",[1,1.07,3,2.593,7,0.578,8,1.14,9,1.426,11,0.829,12,1.984,16,0.861,17,1.426,19,1.586,21,2.53,22,3.115,23,1.679,27,2.525,31,2.53,32,2.134,35,1.348,39,1.386,40,2.743,43,2.432,44,3.736,47,2.61,48,0.947,49,1.037,51,1.218,53,1.366,54,0.517,56,1.426,57,1.229,60,0.959,62,0.838,64,1.36,65,1.002,70,0.811,75,1.681,76,2.399,82,2.08,89,1.997,114,2.238,116,1.386,122,1.561,125,1.85,128,1.998,129,2.691,132,1.612,134,1.826,137,0.538,142,1.823,145,2.078,147,1.612,153,2.504,156,1.919,169,2.821,171,0.968,172,2.963,174,1.218,175,2.772,178,2.5,179,1.639,183,3.172,188,2.374,189,1.826,204,1.826,207,1.183,208,2.078,209,3.232,210,1.058,215,1.984,216,1.862,218,1.513,221,2.305,223,1.049,224,2.597,226,0.449,229,1.536,233,2.078,239,1.315,245,1.074,247,1.049,251,3.376,259,3.233,260,3.285,262,1.826,269,3.344,272,2.03,278,1.987,279,1.513,281,1.586,285,2.981,286,0.915,289,1.595,293,4.304,302,4.508,312,2.743,337,2.467,338,2.247,340,1.758,351,1.025,354,2.931,361,2.205,366,2.03,379,6.247,381,1.14,387,3.552,388,7.575,404,1.639,414,1.756,425,1.33,431,1.277,433,2.434,439,1.826,441,1.294,447,2.855,455,1.074,458,1.294,477,2.855,478,2.013,482,2.186,484,2.462,486,1.984,487,2.205,488,2.386,494,5.88,496,4.386,512,2.548,520,1.791,524,2.504,534,1.54,535,1.862,569,5.133,583,1.536,584,2.559,591,0.206,628,2.313,637,3.593,643,1.984,644,2.386,647,2.663,655,2.898,656,2.03,671,0.895,684,1.862,690,2.03,699,1.791,701,2.559,707,2.078,737,1.791,739,2.559,742,2.467,743,4.001,744,3.359,745,2.559,746,1.941,747,2.785,748,3.585,749,3.503,754,1.013,783,2.273,789,2.931,793,8.271,795,4.334,796,4.581,797,1.862,809,3.287,817,2.504,841,3.359,842,6.303,861,0.768,865,3.429,869,2.386,870,1.074,942,1.894,943,5.995,991,4.452,992,1.639,993,3.732,994,3.585,995,3.732,996,2.313,997,2.313,998,7.464,999,1.826,1000,3.376,1001,3.732,1002,4.306,1003,1.826,1004,1.984,1005,1.901,1006,9.201,1007,5.047,1008,4.678,1009,7.506,1010,2.536,1011,2.386,1012,1.945,1013,5.025,1014,3.732,1015,1.612,1016,3.732,1017,1.862,1018,5.047,1019,3.732,1020,3.475,1021,3.114,1022,2.559,1023,4.678,1024,1.386,1025,5.606,1026,3.732,1027,3.732,1028,3.732,1029,3.359,1030,2.03,1031,3.359,1032,2.663,1033,3.503,1034,1.901,1035,5.606,1036,4.001,1037,2.13,1038,1.405,1039,1.758,1040,5.502,1041,2.663,1042,3.359,1043,2.663,1044,3.732,1045,3.732,1046,3.732,1047,3.359,1048,1.941,1049,1.586,1050,0.905,1051,3.732,1052,3.732,1053,3.732,1054,1.846,1055,1.696,1056,1.941,1057,3.732,1058,2.13,1059,3.732,1060,3.732,1061,3.732]],["description//tracks/aws-certified-developer-associate/xray/",[27,1.354,447,2.688,484,2.318,496,3.093,991,3.49]],["title//tracks/aws-certified-developer-associate/step-functions/",[48,1.561,65,1.1]],["content//tracks/aws-certified-developer-associate/step-functions/",[7,0.898,9,2.213,16,0.886,17,2.213,19,2.462,21,2.895,27,2.198,31,2.604,32,2.191,37,2.588,47,3.672,48,2.722,49,1.61,56,2.923,65,1.886,75,1.924,82,2.532,86,2.423,87,2.835,89,2.064,90,1.908,97,3.395,113,2.891,125,1.592,128,1.287,129,2.781,130,6.678,132,2.502,142,1.884,165,1.047,171,1.503,174,1.663,201,2.729,214,3.181,219,4.261,221,1.983,228,2.502,244,3.227,250,4.135,252,2.835,263,2.588,280,2.3,281,3.251,283,2.619,307,1.629,308,2.279,369,1.538,381,0.981,383,2.588,394,1.983,396,2.802,401,2.544,425,2.064,447,2.951,448,3.831,455,2.857,472,3.592,524,2.588,528,1.315,534,1.592,540,4.324,575,5.71,591,0.136,610,5.71,621,3.973,642,2.423,671,1.39,694,2.951,701,3.973,727,3.01,728,3.897,729,3.705,730,4.551,731,4.324,732,2.891,733,3.831,734,1.421,735,6.386,736,3.014,737,2.781,738,3.973,739,6.497,740,4.364,741,5.216,788,3.705,797,2.891,802,3.592,853,4.324,861,1.193,870,1.668,926,2.951,931,3.014,942,1.958,992,3.762,1017,3.819,1033,3.014,1048,3.014,1049,2.462,1054,2.52,1055,2.633,1056,3.014,1062,3.98,1063,4.135,1064,7.652,1065,2.835,1066,5.794,1067,5.794,1068,3.973,1069,5.794,1070,2.835,1071,4.135,1072,5.794,1073,5.794,1074,4.835,1075,4.135,1076,7.652,1077,4.551,1078,1.983,1079,5.216,1080,4.551,1081,3.308,1082,4.324,1083,5.794,1084,3.973,1085,5.216,1086,2.835,1087,3.014,1088,4.135,1089,2.781]],["description//tracks/aws-certified-developer-associate/step-functions/",[23,1.247,48,1.587,65,1.118]],["title//tracks/aws-certified-developer-associate/sqs/_index",[31,1.41,121,2.024,899,3.236]],["content//tracks/aws-certified-developer-associate/sqs/_index",[7,1.086,9,1.941,16,0.807,17,1.941,19,2.159,23,1.805,27,1.796,31,2.457,32,1.723,33,2.439,41,2.277,49,1.412,51,1.104,57,1.673,62,1.141,64,1.233,76,3.337,82,1.412,84,4.217,90,1.673,108,1.318,113,3.999,128,1.129,142,2.946,146,1.796,159,2.715,161,2.309,165,0.918,172,2.817,178,1.412,182,1.861,201,5.028,203,2.27,204,3.921,206,3.24,209,2.439,210,1.513,213,2.394,217,3.495,218,2.839,219,2.83,224,1.763,232,0.823,233,2.83,240,2.306,246,2.231,247,1.969,253,3.25,263,3.128,268,3.15,280,2.151,282,2.901,286,1.246,311,2.486,313,3.25,324,2.27,332,3.15,357,6.294,380,5.523,383,3.128,389,6.047,414,2.51,422,3.792,425,2.495,429,1.122,441,1.763,444,2.643,447,3.567,455,2.695,460,2.439,461,2.351,464,2.977,465,2.536,466,5.346,496,2.977,514,2.351,526,3.484,534,2.201,545,3.484,588,3.36,591,0.203,605,4.606,640,2.588,653,3.809,671,1.68,673,3.643,684,2.536,701,3.484,706,5.844,719,2.27,720,2.351,721,3.15,722,4.241,723,4.574,724,4.574,738,3.484,740,3.567,754,1.38,767,4.342,784,7.355,815,6.212,831,2.588,832,2.536,861,1.046,865,2.588,870,1.463,883,4.217,887,1.887,899,6.375,942,1.717,1020,3.15,1030,2.764,1038,3.412,1047,4.574,1054,2.306,1055,2.309,1056,2.643,1058,2.901,1068,4.802,1090,4.082,1091,3.207,1092,5.081,1093,5.844,1094,3.25,1095,3.36,1096,6.305,1097,5.081,1098,4.574,1099,6.445,1100,5.081,1101,3.792,1102,5.081,1103,4.241,1104,5.081,1105,3.792,1106,5.081,1107,4.574,1108,4.574,1109,3.626,1110,4.574,1111,7.355,1112,3.567,1113,4.802,1114,1.539,1115,4.968,1116,3.299,1117,5.081,1118,7.003,1119,2.901,1120,5.081,1121,5.081,1122,3.991,1123,3.991,1124,2.536,1125,5.081,1126,4.574,1127,5.081,1128,5.081,1129,5.081,1130,3.484,1131,3.626,1132,5.081,1133,5.081,1134,3.792,1135,3.36,1136,2.702,1137,3.626,1138,5.081,1139,4.574,1140,4.241,1141,4.241,1142,3.792]],["description//tracks/aws-certified-developer-associate/sqs/_index",[23,1.141,31,1.502,121,2.156,899,3.448]],["title//tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/",[16,0.307,23,0.711,182,1.306,389,2.148,414,1.117,466,2.037,1142,2.662]],["content//tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/",[1,1.667,4,1.401,7,1.441,10,2.984,16,0.824,23,2.022,27,2.135,28,2.262,30,0.833,31,2.115,32,1.837,33,1.293,35,0.973,40,1.318,42,1.203,51,0.585,54,0.373,56,1.661,57,1.432,60,1.178,63,4.149,64,1.522,65,0.977,68,1.164,71,2.13,76,0.96,80,1.622,82,1.519,84,2.618,86,2.286,89,0.96,90,2.066,94,3.002,96,1.269,108,1.128,111,2.248,115,1.848,118,1.293,121,2.593,125,1.724,127,1.922,128,0.598,132,1.164,133,1.848,137,0.418,140,3.401,142,1.414,146,1.888,149,1.293,153,2.442,156,3.098,159,1.685,160,2.973,163,1.015,165,0.487,169,2.722,170,2.401,172,1.528,174,0.585,179,1.183,180,1.5,182,2.297,183,1.269,187,3.179,201,4.949,204,3.789,209,1.293,210,0.821,211,1.396,216,1.344,217,3.131,223,1.764,225,4.313,226,0.324,231,2.959,232,0.704,240,2.066,242,2.363,245,0.775,247,0.757,256,2.17,262,1.318,263,1.203,276,0.987,278,0.715,280,1.468,283,2.148,284,2.844,286,0.661,298,1.538,303,2.984,306,3.345,307,1.222,308,2.896,318,2.421,320,3.85,328,1.183,347,2.323,351,0.74,362,1.622,363,2.17,369,1.954,381,0.456,382,1.574,387,1.45,389,5.959,390,1.029,398,1.465,399,1.318,410,1.432,414,3.082,427,1.372,429,0.432,431,0.922,445,2.338,455,2.46,459,2.575,460,1.293,461,2.011,466,5.417,473,1.092,475,1.923,478,1.371,487,1.06,495,0.668,514,1.246,526,1.847,527,3.412,533,2.196,534,1.502,537,1.203,556,1.923,563,1.076,565,0.934,579,2.116,591,0.206,628,1.67,631,1.269,637,2.624,640,4.535,641,2.853,642,2.879,643,1.432,668,1.923,688,2.248,690,4.212,696,1.469,698,2.087,702,1.318,706,2.248,719,1.203,727,2.708,729,1.723,732,3.435,734,0.661,736,1.401,740,2.215,749,3.264,754,1.181,770,1.538,774,2.981,777,1.06,783,1.092,797,1.344,804,2.851,809,1.183,811,0.707,820,1.183,825,2.248,826,1.578,860,1.044,883,6.186,888,3.011,889,1.538,899,6.377,915,2.875,924,2.993,929,0.549,934,3.314,948,4.171,962,1.923,973,1.465,986,3.045,1000,1.622,1003,3.368,1004,1.432,1010,1.637,1012,1.896,1017,1.344,1024,1,1038,1.637,1049,1.848,1050,1.055,1086,1.318,1093,2.248,1094,1.723,1095,2.875,1099,5.779,1114,0.592,1119,1.538,1130,1.847,1137,1.923,1142,4.682,1143,1.538,1144,5.329,1145,2.675,1146,3.218,1147,3.91,1148,3.543,1149,3.914,1150,3.496,1151,1.555,1152,2.116,1153,2.248,1154,2.248,1155,2.425,1156,3.914,1157,2.127,1158,2.543,1159,2.116,1160,1.318,1161,2.694,1162,2.694,1163,2.262,1164,2.127,1165,3.629,1166,1.976,1167,3.336,1168,2.487,1169,2.575,1170,2.784,1171,1.847,1172,2.116,1173,3.131,1174,1.781,1175,2.116,1176,6.627,1177,1.344,1178,1.79,1179,2.618,1180,2.248,1181,1.5,1182,2.781,1183,2.548,1184,1.538,1185,1.5,1186,2.875,1187,2.548,1188,1.923,1189,5.526,1190,1.06,1191,1.923,1192,1.67,1193,1.109,1194,1.401,1195,2.548,1196,1.923,1197,1.781,1198,2.116,1199,2.116,1200,2.248,1201,6.274,1202,2.17,1203,1.396,1204,2.618,1205,5.467,1206,2.694,1207,2.694,1208,2.694,1209,3.914,1210,2.694,1211,2.694,1212,2.694,1213,2.694,1214,2.425,1215,5.467,1216,2.696,1217,2.694,1218,2.694,1219,2.694,1220,2.694,1221,2.694,1222,3.196,1223,1.723,1224,2.694,1225,5.467,1226,2.248,1227,2.694,1228,1.847,1229,2.01,1230,1.203,1231,1.723,1232,2.425,1233,1.538,1234,2.694,1235,4.348,1236,1.622,1237,4.348,1238,1.078,1239,1.976,1240,4.348,1241,5.527,1242,2.425,1243,2.694,1244,1.847,1245,2.116,1246,2.248,1247,2.425,1248,3.103,1249,1.781,1250,2.425,1251,2.694,1252,2.248,1253,2.425,1254,1.622,1255,1.923,1256,2.694,1257,2.694,1258,1.344,1259,2.548,1260,2.696,1261,2.01]],["description//tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/",[16,0.393,23,0.91,182,1.672,389,2.749,414,1.43,466,2.606,1142,3.406]],["title//tracks/aws-certified-developer-associate/sns/_index",[31,1.41,121,2.024,461,2.486]],["content//tracks/aws-certified-developer-associate/sns/_index",[9,2.315,16,0.799,19,2.575,23,2.027,25,3.153,26,3.876,27,2.379,31,2.522,32,1.694,38,2.457,44,4.37,47,3.594,48,1.999,49,1.684,53,2.886,54,0.84,68,2.618,69,2.855,82,1.684,108,1.572,120,1.808,121,2.968,127,2.13,128,1.346,135,3.46,137,0.582,147,2.618,165,1.095,172,2.77,201,4.126,202,6.19,209,3.783,211,1.946,219,4.877,235,4.499,236,2.909,237,3.46,240,1.996,247,1.704,253,3.876,268,5.749,280,2.116,294,4.099,324,2.707,369,1.608,383,3.911,389,5.274,425,2.159,427,3.087,454,3.876,455,1.744,458,2.102,459,3.713,460,4.203,461,4.833,464,4.617,465,3.024,466,6.059,510,3.65,533,1.808,534,2.547,561,4.76,590,4.76,591,0.143,671,1.454,696,2.663,710,5.456,711,4.155,712,5.456,713,4.155,714,4.286,715,5.456,716,4.523,717,5.456,718,5.456,740,3.087,754,2.14,854,2.707,861,1.247,870,1.744,883,6.042,887,2.25,899,3.65,929,1.234,942,2.048,957,3.551,992,2.661,997,3.757,1003,2.965,1054,2.595,1055,2.754,1068,4.155,1070,2.965,1090,4.014,1093,5.058,1099,6.535,1140,5.058,1141,5.058,1262,6.061,1263,5.881,1264,7.881,1265,6.061,1266,6.061,1267,5.456,1268,6.061,1269,4.523,1270,6.061,1271,6.061,1272,6.061,1273,6.061,1274,6.061,1275,6.061,1276,6.061,1277,5.456,1278,3.46,1279,2.42,1280,4.76,1281,5.058,1282,6.061,1283,3.46,1284,4.523]],["description//tracks/aws-certified-developer-associate/sns/_index",[23,1.141,31,1.502,121,2.156,461,2.649]],["title//tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/",[23,0.776,32,0.837,47,1.51,455,1.121,461,1.802,466,2.223]],["content//tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/",[1,1.52,4,2.207,7,1.573,10,1.72,16,0.686,23,1.587,31,2.449,32,2.045,47,3.746,48,2.648,57,1.397,63,2.805,64,1.761,66,1.221,75,1.983,83,3.036,86,2.577,89,1.512,90,1.397,91,1.999,116,2.695,121,1.598,128,1.369,133,1.803,153,1.895,157,1.636,163,1.598,178,1.179,181,2.555,183,3.753,188,1.954,201,4.935,202,3.332,204,3.016,205,2.805,209,2.036,216,4.223,221,2.11,224,2.138,231,3.565,235,5.04,236,2.036,238,2.161,239,1.986,242,2.321,262,2.076,268,2.63,279,2.499,280,1.949,286,1.041,289,1.207,293,2.619,306,3.299,307,1.193,315,2.307,324,1.895,327,1.669,335,3.028,347,3.085,351,2.325,369,2.114,373,3.16,374,3.943,378,1.803,382,2.293,407,1.139,441,1.472,455,2.293,459,1.999,461,3.915,466,5.915,508,2.196,509,1.963,533,2.524,534,1.165,576,1.512,591,0.22,597,2.321,640,4.497,655,1.532,690,2.307,698,2.958,699,3.484,716,3.166,727,3.671,732,2.117,740,2.161,774,5.803,783,1.72,800,2.909,804,3.846,811,0.548,883,6.212,920,2.805,929,0.864,934,3.233,940,2.805,948,4.541,973,2.307,986,4.043,997,2.63,1003,2.076,1004,3.277,1012,2.518,1038,2.321,1049,3.385,1099,4.6,1144,5.521,1145,3.552,1146,1.694,1147,4.178,1148,3.706,1150,2.713,1163,2.207,1164,2.076,1166,1.928,1168,2.331,1179,2.555,1181,4.043,1185,4.043,1202,2.117,1238,1.529,1260,2.63,1277,3.819,1285,2.713,1286,2.076,1287,1.803,1288,2.805,1289,4.243,1290,4.243,1291,4.6,1292,3.028,1293,3.519,1294,2.805,1295,3.819,1296,2.63,1297,1.72,1298,5.549,1299,3.819,1300,6.164,1301,4.243,1302,4.243,1303,0.687,1304,3.819,1305,3.166,1306,4.243,1307,4.243,1308,7.948,1309,4.243,1310,4.243,1311,2.389,1312,4.243,1313,4.243,1314,4.243,1315,2.307,1316,1.832,1317,2.422,1318,2.422,1319,7.967,1320,3.166,1321,3.819,1322,7.173,1323,3.819,1324,1.669,1325,2.117]],["description//tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/",[23,0.975,32,1.052,47,1.898,455,1.409,461,2.265,466,2.795]],["title//tracks/aws-certified-developer-associate/s3/_index",[373,2.496]],["content//tracks/aws-certified-developer-associate/s3/_index",[1,1.092,4,1.501,8,1.404,9,1.755,11,0.641,15,1.789,16,0.835,17,1.102,19,1.226,21,2.408,22,2.648,23,1.9,25,1.501,27,1.674,28,3.395,29,1.135,31,1.87,32,1.831,34,1.908,35,2.067,38,1.863,40,3.714,41,1.861,43,1.659,44,3.973,47,2.762,48,1.655,49,1.814,51,1.549,53,1.682,54,0.904,55,1.501,56,2.493,57,1.885,62,1.032,64,1.388,68,1.984,69,2.164,74,2.059,75,1.032,76,1.028,79,1.738,80,1.738,81,1.534,82,2.559,83,1.207,85,2.916,86,1.921,89,1.637,90,0.95,91,1.36,95,4.209,96,3.357,98,1.846,100,1.57,106,1.738,108,1.485,109,1.908,117,1.44,120,0.861,121,1.087,125,1.262,127,1.014,128,1.768,135,1.647,137,0.684,140,3.129,146,1.468,147,1.246,156,1.96,157,0.766,163,1.087,165,1.18,169,2.668,172,2.294,174,0.627,175,0.915,176,1.738,178,1.814,179,2.514,180,1.607,182,1.057,184,1.412,186,1.267,189,2.801,195,2.848,196,1.979,197,1.908,198,2.267,206,1.335,209,1.385,210,1.232,211,2.556,217,4.447,218,2.646,222,1.47,223,0.811,224,1.986,227,3.226,228,1.984,232,0.468,234,1.501,237,1.647,240,3.194,241,4.112,242,2.458,246,1.267,247,2.238,256,2.237,259,2.472,263,2.052,268,4.706,269,1.289,276,2.096,278,1.219,280,1.752,281,1.226,284,3.395,286,0.708,289,0.821,293,2.432,303,1.17,310,1.57,311,1.412,322,1.846,328,2.018,329,1.789,334,3.113,341,0.851,346,4.557,347,1.952,351,2.563,360,2.164,370,5.318,372,3.174,373,3.66,374,4.507,375,3.257,387,1.533,389,1.738,395,1.534,397,1.534,398,2.499,399,1.412,404,2.514,407,1.233,419,1.607,420,2.557,422,2.154,423,1.534,425,1.028,427,1.47,429,0.917,431,3.231,434,2.915,439,1.412,441,1.001,448,1.908,450,1.028,452,1.335,454,1.846,455,0.831,459,1.36,461,1.335,472,1.789,478,1.152,479,1.908,480,3.568,489,2.938,495,0.716,502,3.279,505,2.059,508,1.028,512,1.312,514,3.019,520,1.385,521,3.038,532,1.44,533,1.947,534,0.793,541,1.534,554,1.846,567,1.691,591,0.228,596,1.534,598,1.534,599,4.557,602,5.426,607,1.501,609,3.609,616,3.609,621,3.15,626,1.028,643,3.043,644,1.846,655,3.686,668,2.059,669,3.834,670,1.789,671,1.373,672,2.408,673,1.501,674,3.834,675,2.598,676,2.598,677,2.598,678,2.408,679,1.647,680,2.598,681,2.598,682,2.598,683,2.598,684,2.293,685,4.136,686,2.598,687,3.834,688,3.834,689,2.598,690,1.57,691,2.408,692,2.408,693,2.154,694,1.47,695,5.153,696,0.975,697,2.408,698,3.967,699,3.967,720,1.335,728,3.324,734,0.708,745,3.15,754,1.248,755,1.36,763,5.085,765,2.059,766,1.908,774,1.979,775,3.429,778,1.846,779,1.647,780,1.789,781,1.691,782,2.598,783,1.17,784,2.267,785,1.607,786,2.408,787,2.598,788,1.846,791,3.969,796,2.623,797,2.293,809,1.267,817,1.289,822,3.785,823,2.205,827,1.979,830,2.154,865,2.34,870,0.831,889,1.647,890,1.501,931,1.501,934,1.057,950,1.385,957,2.692,976,1.691,981,1.607,992,1.267,999,1.412,1003,1.412,1015,1.984,1017,1.44,1023,2.408,1024,1.072,1033,1.501,1038,1.087,1040,3.925,1054,1.513,1070,1.412,1078,0.988,1086,2.248,1090,2.34,1101,2.154,1115,1.789,1136,1.534,1157,1.412,1158,1.17,1160,1.412,1184,1.647,1187,1.691,1222,3.866,1230,1.289,1316,1.984,1318,4.545,1326,1.979,1327,1.385,1328,2.34,1329,2.154,1330,4.136,1331,3.609,1332,1.789,1333,2.886,1334,2.886,1335,0.896,1336,2.886,1337,2.886,1338,2.408,1339,2.267,1340,2.598,1341,2.598,1342,2.267,1343,1.152,1344,2.059,1345,1.501,1346,1.691,1347,2.886,1348,2.886,1349,2.886,1350,2.267,1351,2.154,1352,2.408,1353,1.44,1354,1.691,1355,2.598,1356,2.886,1357,4.595,1358,1.789,1359,2.886,1360,1.289,1361,2.408,1362,1.607,1363,2.408,1364,2.598,1365,2.886,1366,2.059,1367,2.598,1368,2.408,1369,2.154,1370,2.886,1371,2.886,1372,3.834,1373,2.886,1374,1.979,1375,2.059,1376,2.886,1377,2.088,1378,3.834,1379,1.908,1380,3.429,1381,2.886,1382,2.886,1383,2.267,1384,2.598,1385,3.661,1386,4.595,1387,2.598,1388,3.038,1389,3.447,1390,4.136,1391,2.886,1392,1.289,1393,2.886,1394,2.598,1395,3.429,1396,1.607,1397,2.059,1398,1.789,1399,2.886,1400,2.886,1401,2.886,1402,2.886,1403,2.886,1404,3.834,1405,1.738,1406,2.408,1407,2.886,1408,6.897,1409,2.886,1410,3.834,1411,3.429,1412,2.886,1413,2.886,1414,2.886,1415,2.408,1416,2.408,1417,1.738,1418,2.886,1419,2.598,1420,1.979,1421,1.647,1422,1.57,1423,1.607,1424,1.647]],["description//tracks/aws-certified-developer-associate/s3/_index",[95,2.325,128,1.014,524,2.039,643,2.427,655,1.649,762,2.427,1425,3.406]],["title//tracks/aws-certified-developer-associate/s3/upload-file-to-s3/",[351,1.476,373,1.864,699,2.579]],["content//tracks/aws-certified-developer-associate/s3/upload-file-to-s3/",[1,1.544,7,0.979,10,2.56,17,2.412,23,1.612,25,3.285,35,2.923,38,2.56,42,3.615,56,2.412,64,1.532,65,1.447,82,1.755,91,2.975,95,3.216,127,2.22,133,2.683,172,2.845,210,1.192,215,3.357,221,2.162,229,2.6,231,3.412,239,2.21,278,1.676,351,2.996,353,3.566,355,5.276,361,3.513,363,3.151,364,6.373,369,1.676,373,3.267,374,4.207,385,2.378,414,1.978,431,2.162,445,1.907,455,1.818,458,2.19,461,3.744,474,3.151,533,2.809,565,2.19,641,2.448,699,5.168,720,2.921,734,1.549,750,3.151,783,2.56,797,3.151,928,5.549,934,2.312,948,3.678,950,4.521,1005,4.96,1089,3.031,1148,3.609,1163,3.285,1164,3.09,1169,2.975,1170,3.216,1181,3.517,1182,5.175,1194,3.285,1196,4.506,1216,3.915,1258,3.151,1279,2.521,1287,2.683,1421,3.605,1426,6.315,1427,7.285,1428,4.96,1429,5.27,1430,3.803,1431,5.775,1432,5.685,1433,5.775,1434,4.506,1435,4.506,1436,5.351,1437,4.33,1438,4.038]],["description//tracks/aws-certified-developer-associate/s3/upload-file-to-s3/",[23,1.141,351,1.573,373,1.986,699,2.748]],["title//tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/",[157,1.266,373,1.655,655,1.723,796,2.723]],["content//tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/",[1,1.064,3,2.581,7,0.865,10,3.639,23,1.918,32,1.199,35,2.015,41,1.814,51,1.951,60,1.277,64,2.177,65,0.997,82,2.777,83,3.913,89,3.334,114,2.228,118,2.678,140,4.387,146,1.431,157,1.98,160,3.223,161,2.535,172,3.156,221,2.555,231,3.212,232,1.209,239,2.374,256,1.644,289,1.587,298,3.185,305,3.269,308,2.195,351,2.05,361,2.935,364,6,369,1.98,373,3.34,374,3.333,381,0.944,387,2.489,414,1.747,431,3.073,445,2.253,455,1.606,478,1.399,486,2.966,534,2.745,565,1.935,591,0.131,612,3.568,641,2.162,643,2.966,655,3.772,699,4.856,727,3.307,734,1.368,759,3.185,796,6.118,804,3.821,811,1.087,887,2.072,928,5.117,929,1.712,934,2.043,948,3.391,962,3.981,973,3.034,1010,3.381,1015,3.631,1049,3.573,1089,2.678,1146,2.979,1147,4.228,1148,3.605,1150,3.568,1151,1.587,1163,3.882,1164,4.114,1170,3.801,1181,4.156,1195,3.269,1203,1.791,1258,2.784,1316,2.41,1325,2.784,1351,4.163,1372,6.227,1427,6.718,1429,4.656,1431,3.981,1433,3.981,1434,3.981,1436,3.689,1439,5.579,1440,2.371,1441,2.043,1442,5.579,1443,4.382,1444,5.579,1445,8.408,1446,4.656,1447,3.515,1448,3.034,1449,3.801,1450,5.023,1451,7.462,1452,7.462,1453,5.579,1454,3.269]],["description//tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/",[23,1.052,157,1.401,373,1.831,655,1.906,796,3.013]],["title//tracks/aws-certified-developer-associate/s3/grant-access-s3/",[240,1.412,328,1.883,373,1.487,655,1.549,1385,2.742]],["content//tracks/aws-certified-developer-associate/s3/grant-access-s3/",[1,0.916,3,3.115,7,0.745,10,3.417,16,0.67,23,1.952,25,2.499,30,1.486,32,1.672,33,2.305,42,2.145,51,1.044,57,2.561,62,1.512,63,4.453,64,1.634,66,1.383,83,2.009,86,2.009,95,2.446,114,1.918,120,1.433,127,1.689,128,1.727,133,2.862,146,1.232,157,2.064,163,1.809,172,2.367,174,1.464,179,2.109,188,1.523,196,3.294,205,3.176,217,5.009,222,2.446,228,2.075,240,3.504,241,3.173,242,1.809,247,2.711,256,1.416,276,1.759,278,1.275,280,1.289,289,1.916,306,3.061,307,1.35,308,1.889,309,2.041,328,4.483,351,2.438,352,2.554,361,1.889,362,2.893,364,3.428,365,1.977,369,1.275,373,3.481,374,4.641,375,3.881,376,3.773,378,2.041,394,1.644,397,2.554,398,2.612,399,2.35,404,2.109,406,2.499,407,1.289,414,1.504,419,2.675,431,1.644,441,2.336,445,1.45,450,1.711,452,2.222,458,1.666,461,3.115,478,1.205,480,1.889,487,1.889,512,2.183,514,2.222,533,1.433,583,1.977,591,0.236,613,2.075,625,1.45,641,3.014,655,3.625,670,4.821,690,4.23,693,3.585,699,3.733,702,2.35,719,2.145,729,3.072,733,3.176,750,2.397,759,5.253,783,1.947,804,3.534,811,1.005,814,2.675,861,0.989,873,1.918,924,2.501,934,3.087,940,3.176,948,3.061,950,2.305,968,4.324,974,3.428,984,3.072,1003,2.35,1005,2.446,1017,2.397,1038,2.536,1049,2.041,1080,3.773,1089,2.305,1130,4.618,1136,2.554,1146,1.918,1147,2.109,1148,3.537,1157,3.805,1159,3.773,1160,2.35,1163,2.499,1164,3.295,1167,4.719,1170,3.43,1173,4.43,1222,3.961,1258,3.361,1279,2.689,1286,2.35,1291,3.585,1296,2.978,1297,3.153,1323,4.324,1325,4.207,1329,3.585,1375,3.428,1385,5.391,1387,4.324,1389,2.893,1395,5.804,1396,2.675,1397,4.806,1438,4.307,1455,3.773,1456,2.612,1457,4.324,1458,4.009,1459,4.324,1460,4.803,1461,4.803,1462,1.644,1463,4.324,1464,2.675,1465,4.803,1466,3.176,1467,4.803,1468,4.803,1469,4.803,1470,4.803,1471,3.773,1472,4.803,1473,4.803,1474,4.803,1475,4.453,1476,3.845,1477,2.978,1478,4.009,1479,2.446,1480,4.009,1481,3.585,1482,2.397,1483,4.009,1484,7.777,1485,4.803,1486,4.324,1487,4.803,1488,4.324,1489,2.075,1490,2.612,1491,3.176,1492,4.803]],["description//tracks/aws-certified-developer-associate/s3/grant-access-s3/",[23,0.975,240,1.612,328,2.15,373,1.698,655,1.768,1385,3.131]],["title//tracks/aws-certified-developer-associate/s3/delete-from-s3/",[140,2.36,373,1.864,374,2.4]],["content//tracks/aws-certified-developer-associate/s3/delete-from-s3/",[1,1.278,10,3.72,16,0.723,23,1.828,31,1.757,32,2.069,35,2.418,41,2.177,82,1.861,114,3.353,140,4.755,163,2.522,174,1.455,201,3.154,231,3.506,247,1.883,280,1.798,306,3.043,308,2.634,347,3.899,363,3.342,373,3.6,374,4.886,382,1.927,384,3.098,394,2.292,445,2.022,452,3.098,478,1.679,533,2.87,597,2.522,655,3.314,719,2.991,720,3.098,727,2.634,734,1.642,750,3.342,811,0.865,814,4.677,1012,2.323,1024,2.486,1089,3.214,1145,3.276,1146,3.353,1147,4.03,1148,3.603,1150,5.371,1160,3.276,1164,3.276,1170,3.41,1190,2.634,1287,4.212,1325,4.191,1353,3.342,1360,2.991,1446,5.588,1454,4.921,1491,4.428,1493,6.696,1494,6.028,1495,6.696,1496,6.028,1497,5.259,1498,5.259]],["description//tracks/aws-certified-developer-associate/s3/delete-from-s3/",[23,1.141,140,2.514,373,1.986,374,2.557]],["title//tracks/aws-certified-developer-associate/s3/create-s3-bucket/",[7,0.833,373,1.864,374,2.4]],["content//tracks/aws-certified-developer-associate/s3/create-s3-bucket/",[1,1.116,7,1.542,10,3.49,16,0.663,22,2.706,23,1.823,28,3.043,30,1.81,31,2.021,32,2.043,51,1.871,62,1.729,64,1.419,65,1.046,81,3.11,94,2.268,115,2.486,118,3.696,120,1.745,124,3.523,127,2.707,137,0.74,142,2.504,146,1.501,153,2.613,157,2.285,160,2.527,165,1.057,204,2.862,210,1.104,231,2.235,234,3.043,240,2.536,247,1.645,263,2.613,278,1.553,280,2.067,306,2.659,307,1.645,308,3.029,328,3.382,347,3.887,353,2.336,363,2.919,365,2.408,369,1.553,373,3.502,374,4.858,375,2.919,378,3.272,381,0.99,382,1.684,384,2.706,398,3.182,399,2.862,414,1.832,429,1.379,461,2.706,478,1.467,495,1.451,528,1.328,532,2.919,533,3.119,591,0.181,593,5.495,605,2.808,611,4.157,642,2.446,666,4.637,869,3.741,929,1.753,931,3.043,934,3.152,948,3.912,1012,2.029,1017,2.919,1024,3.624,1038,2.203,1089,2.808,1094,3.741,1144,5.252,1145,2.862,1146,2.336,1147,3.382,1148,3.386,1157,2.862,1167,4.094,1170,2.98,1175,4.595,1193,2.408,1202,2.919,1216,3.627,1286,2.862,1342,4.595,1343,2.336,1344,5.495,1345,4.006,1436,3.868,1438,3.741,1448,3.182,1449,2.98,1499,4.366,1500,3.741,1501,5.267,1502,4.175,1503,5.85,1504,4.366,1505,4.595,1506,4.882,1507,4.175,1508,5.267,1509,6.761,1510,5.267,1511,5.267,1512,5.267,1513,4.595,1514,2.203,1515,3.11,1516,5.267,1517,2.98,1518,5.267]],["description//tracks/aws-certified-developer-associate/s3/create-s3-bucket/",[7,0.888,23,1.141,373,1.986,374,2.557]],["title//tracks/aws-certified-developer-associate/s3/create-folder-s3/",[7,0.665,355,2.14,373,1.487,374,1.915,750,2.14]],["content//tracks/aws-certified-developer-associate/s3/create-folder-s3/",[7,1.616,23,1.807,32,1.631,57,2.499,147,3.277,247,2.133,307,2.133,330,3.448,347,3.224,355,5.257,373,3.485,374,4.655,431,2.598,474,3.787,487,2.985,533,2.893,637,3.642,655,3.503,750,4.525,811,0.981,873,3.03,1089,3.642,1144,3.947,1147,3.332,1148,3.58,1150,4.853,1163,3.947,1164,3.713,1170,3.865,1172,5.96,1182,4.853,1184,4.332,1185,4.226,1354,4.446,1429,6.332,1509,5.96,1519,7.588,1520,5.203,1521,4.446,1522,5.415,1523,6.831]],["description//tracks/aws-certified-developer-associate/s3/create-folder-s3/",[7,0.759,23,0.975,355,2.443,373,1.698,374,2.187,750,2.443]],["title//tracks/aws-certified-developer-associate/route53/",[100,3.346,101,3.427]],["content//tracks/aws-certified-developer-associate/route53/",[7,1.159,13,2.617,16,0.852,17,1.707,23,0.89,27,1.146,31,2.141,32,1.989,35,2.311,41,1.453,48,1.133,51,0.971,56,3.433,57,3.387,60,1.279,64,1.552,68,1.929,69,3.014,81,2.375,82,2.4,85,3.807,87,2.186,88,4.658,100,5.856,101,5.366,114,3.588,118,2.144,121,2.409,125,1.227,127,2.249,128,0.992,142,2.08,144,2.617,156,2.19,157,1.698,169,1.57,172,2.627,175,2.029,178,1.241,184,3.13,188,1.417,191,2.77,196,3.063,206,2.067,211,2.885,215,3.401,217,4.879,223,1.799,227,1.898,231,1.707,240,2.107,242,2.409,269,2.857,278,1.186,280,2.191,284,3.328,285,2.375,286,1.096,289,1.271,292,2.617,293,3.176,295,2.48,307,1.256,308,2.94,320,3.457,328,3.583,329,5.059,334,4.697,338,6.226,342,5.025,366,2.43,369,1.186,372,3.125,374,1.995,385,2.815,391,3.258,397,4.592,398,4.438,399,3.993,429,1.198,432,3.509,444,2.324,487,2.516,527,2.43,533,2.823,534,1.227,535,2.229,539,4.091,541,2.375,558,3.509,578,2.229,591,0.23,605,3.071,611,3.396,612,2.857,613,2.763,614,3.188,632,3.193,642,2.675,659,4.091,666,6.118,667,5.577,671,1.072,679,5.8,684,2.229,702,2.186,734,1.096,754,2.029,766,4.942,783,3.03,795,2.105,817,1.995,839,2.857,861,0.92,870,1.286,901,2.617,942,1.509,973,2.43,992,1.962,1004,4.339,1054,2.107,1055,2.03,1056,2.324,1058,2.55,1070,2.186,1146,1.784,1278,2.55,1283,2.55,1335,1.247,1350,3.509,1360,1.995,1392,1.995,1394,4.022,1396,2.488,1421,5.129,1436,2.954,1447,2.105,1520,5.124,1524,4.23,1525,6.237,1526,3.509,1527,3.334,1528,2.229,1529,4.467,1530,4.467,1531,4.467,1532,4.467,1533,4.467,1534,4.467,1535,4.467,1536,4.467,1537,4.467,1538,4.467,1539,2.617,1540,2.954,1541,6.728,1542,3.728,1543,7.474,1544,3.728,1545,3.188,1546,6.398,1547,4.467,1548,6.728,1549,6.409,1550,4.467,1551,4.387,1552,7.474,1553,2.43,1554,4.467,1555,4.467,1556,4.022,1557,4.022,1558,6.163,1559,7.474,1560,6.398,1561,4.467,1562,4.467,1563,4.467,1564,2.617,1565,3.188]],["description//tracks/aws-certified-developer-associate/route53/",[23,0.68,27,0.875,30,1.055,82,0.948,100,2.848,101,1.9,120,1.018,329,2.115,427,1.738,707,1.9,1396,1.9]],["title//tracks/aws-certified-developer-associate/rds/",[261,4.007]],["content//tracks/aws-certified-developer-associate/rds/",[9,1.833,16,0.813,17,1.833,19,2.039,23,1.978,27,2.161,31,2.478,32,2.072,35,2.43,37,2.143,49,2.16,51,1.043,53,2.464,55,2.496,60,1.152,64,1.164,75,1.511,79,2.889,80,4.052,81,2.551,82,2.341,90,1.58,95,2.444,108,1.245,113,2.394,114,1.916,116,1.782,120,1.431,121,1.807,125,1.849,128,1.971,142,2.188,154,2.082,156,3.467,169,2.732,170,2.107,171,1.245,172,2.366,174,1.043,178,1.333,180,5.528,182,1.757,187,2.906,195,5.223,203,2.143,212,4.172,213,2.26,218,2.728,223,1.349,227,2.859,235,2.739,240,2.216,245,1.381,247,1.349,252,2.347,256,2.958,261,5.756,262,5.057,263,2.143,270,5.139,271,5.139,276,2.846,279,1.945,280,2.74,289,1.365,295,2.608,303,3.151,320,2.22,332,4.172,339,4.172,340,3.17,358,5.648,361,2.647,372,2.814,383,3.471,393,1.733,407,1.288,462,1.303,482,3.943,521,6.082,524,2.143,527,4.227,528,1.089,529,4.582,533,2.513,534,1.849,539,3.068,540,3.58,557,2.072,584,5.329,592,3.768,596,5.022,600,2.811,602,3.578,610,5.022,613,4.079,623,3.58,624,5.139,629,4.936,634,6.105,642,2.814,643,2.551,649,4.936,653,2.61,658,4.802,659,4.303,660,6.012,661,6.058,662,6.058,663,5.286,664,7.585,665,5.022,666,5.074,667,5.022,671,1.151,673,2.496,684,2.394,714,2.61,728,2.444,776,3.068,797,3.358,807,3.768,809,2.107,820,2.107,832,2.394,861,0.988,870,1.381,942,1.621,1038,1.807,1054,2.216,1062,2.496,1090,2.444,1122,3.768,1260,2.974,1297,1.945,1316,2.072,1346,2.811,1464,2.672,1497,3.768,1566,6.618,1567,4.614,1568,7.772,1569,5.616,1570,6.73,1571,4.798,1572,4.004,1573,4.798,1574,4.798,1575,4.798,1576,4.798,1577,4.798,1578,4.004,1579,3.768,1580,4.004,1581,3.29,1582,3.58,1583,3.29,1584,4.798,1585,2.974,1586,4.798,1587,4.004,1588,4.319,1589,4.798,1590,4.004,1591,4.319,1592,4.319,1593,2.889,1594,2.672,1595,4.798,1596,3.768,1597,3.29,1598,4.319]],["description//tracks/aws-certified-developer-associate/rds/",[17,1.536,51,0.874,110,2.239,171,1.043,223,1.131,262,1.967,383,1.796,649,2.356,1148,1.433]],["title//tracks/aws-certified-developer-associate/opensearch-service/_index",[31,1.614,897,4.592]],["content//tracks/aws-certified-developer-associate/opensearch-service/_index",[16,0.859,23,1.943,27,1.627,31,2.617,32,1.924,38,2.571,41,2.062,47,2.459,82,1.763,95,3.231,116,2.355,117,3.166,128,2.252,156,3.23,169,2.853,171,1.646,172,2.23,174,1.379,175,2.011,178,1.763,210,1.197,211,2.037,225,5.713,227,4.406,228,2.74,249,3.045,263,2.833,276,2.972,279,3.29,280,1.703,281,2.695,283,2.171,308,2.495,312,3.104,317,4.349,324,3.625,341,1.87,346,4.056,369,1.683,371,4.056,373,2.2,381,1.074,425,2.26,427,3.231,433,3.297,436,4.194,447,3.231,455,1.826,459,2.988,464,4.755,465,4.05,482,3.716,487,2.495,534,2.458,536,5.565,537,2.833,586,5.294,590,4.982,591,0.191,592,4.982,631,2.988,643,3.373,654,4.734,668,5.792,671,1.522,720,2.934,747,4.734,749,3.3,754,1.722,767,3.932,809,2.786,817,2.833,830,4.734,861,1.306,870,1.826,897,6.679,898,7.873,924,2.355,931,3.3,942,3.024,975,3.45,992,2.786,1003,3.104,1010,2.389,1012,3.46,1017,3.166,1022,4.349,1024,2.355,1030,3.45,1054,2.673,1070,3.104,1071,4.527,1080,4.982,1090,3.231,1108,5.71,1332,3.932,1346,3.716,1456,3.45,1585,5.031,1599,4.982,1600,6.773,1601,3.82,1602,4.982,1603,5.294,1604,6.343,1605,5.71,1606,5.71,1607,4.982,1608,4.527]],["description//tracks/aws-certified-developer-associate/opensearch-service/_index",[23,1.53]],["title//tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/",[32,0.922,172,1.507,227,1.822,283,1.468,1608,3.06]],["content//tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/",[3,2.694,4,1.757,5,0.919,7,1.496,8,1.032,10,2.883,13,1.164,16,0.74,17,1.683,21,1.489,22,0.919,23,1.851,25,1.033,28,2.292,29,0.781,31,2.288,32,1.781,33,0.954,39,3.391,41,1.098,42,0.887,47,3.572,48,2.316,51,0.957,53,1.613,54,0.985,56,1.683,57,1.711,58,2.396,60,0.578,62,1.308,64,1.862,65,1.132,66,1.496,68,0.858,70,0.432,71,1.045,72,1.459,75,1.422,76,1.203,82,0.552,85,2.244,86,0.831,89,1.203,90,1.112,94,0.77,95,1.72,108,1.845,110,1.881,114,1.759,116,2.936,117,2.907,118,3.04,125,1.428,127,0.698,128,1.705,129,4.34,132,0.858,133,3.151,137,0.712,142,2.636,146,1.733,147,2.516,153,1.968,156,1.156,157,0.896,160,0.858,161,0.903,163,1.272,165,1.145,169,0.698,171,1.143,172,1.827,174,1.129,179,0.872,183,3.183,188,0.63,201,1.591,204,0.972,209,2.115,210,1.646,211,1.084,214,0.738,216,0.991,217,2.907,218,0.805,221,0.68,223,1.781,224,0.689,227,4.362,228,4.228,231,3.648,232,0.714,235,1.928,237,2.515,238,2.244,239,1.219,240,2.781,245,1.823,246,0.872,247,1.461,252,0.972,255,2.647,256,0.586,262,1.653,264,2.034,272,4.918,276,1.237,278,1.793,279,1.369,280,1.395,283,1.156,286,0.828,287,1.872,291,1.081,293,2.208,303,1.786,306,3.37,307,1.638,308,2.044,309,0.844,312,1.653,320,1.562,324,3.837,326,1.483,327,2.044,328,2.282,329,1.232,332,1.232,334,2.396,340,0.936,341,1.299,347,2.871,361,1.329,363,2.593,365,1.814,366,1.081,369,2.374,372,0.831,374,2.321,378,1.435,381,0.746,382,1.496,385,0.748,387,1.127,390,1.985,393,1.877,394,0.68,397,1.796,398,3.168,399,3.099,400,1.39,406,1.757,407,0.533,412,1.733,413,0.887,414,0.622,416,2.233,423,1.796,429,0.541,431,0.68,433,2.411,441,0.689,445,1.569,447,1.012,450,1.203,452,0.919,455,0.572,459,2.076,461,1.562,465,3.946,473,0.805,476,1.837,478,1.589,480,0.781,484,1.483,485,1.658,486,2.342,495,0.838,509,2.038,512,0.903,514,0.919,526,1.362,527,1.081,533,2.122,534,2.172,535,0.991,541,1.056,567,2.581,591,0.175,600,1.164,605,1.621,611,0.903,613,0.858,631,0.936,637,2.115,641,1.708,642,3.211,643,1.056,655,1.877,659,2.16,668,2.41,669,2.819,670,1.232,671,0.81,679,4.904,698,2.115,702,0.972,707,1.881,714,2.827,727,2.658,732,3.701,733,1.314,734,0.828,739,1.362,748,3.323,754,0.917,770,1.134,775,2.521,783,1.369,794,2.41,795,0.936,804,3.685,809,2.282,811,0.437,814,1.106,816,1.232,817,1.509,819,1.483,827,1.362,829,0.546,831,1.012,832,2.199,864,1.928,870,0.572,897,6.987,898,5.935,924,1.254,926,1.012,931,1.757,934,3.093,937,1.418,948,3.489,957,1.979,962,1.418,965,3.445,970,1.658,973,1.081,977,1.362,984,1.27,986,2.894,996,1.232,1000,1.196,1002,2.818,1003,2.156,1004,1.056,1012,2.743,1020,5.478,1024,0.738,1038,1.659,1049,2.475,1090,1.012,1112,1.012,1116,1.591,1136,1.056,1137,4.822,1144,5.33,1145,3.48,1146,1.759,1147,4.141,1148,3.643,1150,1.27,1151,1.253,1155,1.789,1158,1.369,1163,3.03,1164,2.85,1167,3.592,1168,1.669,1173,1.686,1177,2.199,1178,0.818,1179,2.034,1180,1.658,1181,1.106,1182,1.27,1183,2.581,1184,1.134,1185,3.244,1186,2.233,1190,1.329,1191,1.418,1192,2.731,1193,0.818,1195,1.164,1202,2.593,1204,2.034,1216,1.232,1222,1.72,1223,1.27,1226,1.658,1229,1.483,1230,0.887,1242,1.789,1245,1.56,1258,1.686,1259,3.711,1279,0.793,1286,0.972,1287,0.844,1296,3.927,1297,0.805,1316,0.858,1317,1.134,1318,4.629,1324,0.781,1325,0.991,1329,1.483,1335,0.387,1346,1.164,1351,2.521,1360,0.887,1374,1.362,1385,1.27,1397,1.418,1434,2.41,1438,1.27,1440,0.844,1449,1.72,1455,1.56,1456,2.827,1457,1.789,1462,1.779,1466,1.314,1471,1.56,1475,1.314,1476,1.134,1498,4.082,1513,2.653,1517,1.012,1518,1.789,1524,1.314,1528,0.991,1545,1.418,1578,1.658,1600,2.819,1608,5.479,1609,1.362,1610,1.196,1611,1.987,1612,4.033,1613,1.987,1614,3.436,1615,3.041,1616,1.987,1617,1.789,1618,1.987,1619,1.987,1620,1.789,1621,1.987,1622,1.658,1623,1.987,1624,0.844,1625,1.789,1626,1.987,1627,1.789,1628,1.987,1629,4.406,1630,5.243,1631,1.987,1632,1.789,1633,1.987,1634,1.987,1635,1.27,1636,1.789,1637,1.987,1638,1.658,1639,1.314,1640,1.987,1641,1.987,1642,3.325,1643,1.987,1644,1.658,1645,2.233,1646,1.987,1647,1.56,1648,1.033,1649,1.987,1650,2.41,1651,1.658,1652,1.789,1653,1.418,1654,1.134,1655,1.362,1656,2.819,1657,2.316,1658,1.789,1659,1.658,1660,0.903,1661,1.987,1662,1.987,1663,1.27,1664,1.164,1665,1.957,1666,1.987,1667,1.658,1668,1.418,1669,1.56,1670,1.987,1671,1.987,1672,1.987,1673,1.591,1674,1.987,1675,1.72,1676,1.987,1677,1.987,1678,1.483,1679,1.987,1680,1.987,1681,1.987,1682,4.346,1683,1.987,1684,1.987,1685,1.987,1686,4.082,1687,2.819,1688,2.653,1689,1.987,1690,1.987,1691,1.056,1692,7.678,1693,1.987,1694,4.406,1695,0.748,1696,3.461,1697,1.196,1698,1.56,1699,1.418,1700,1.369,1701,1.362,1702,2.316,1703,1.987,1704,1.987,1705,1.987,1706,2.819,1707,1.987,1708,1.232,1709,1.483,1710,3.144,1711,1.27,1712,3.378,1713,1.789,1714,1.362,1715,1.418,1716,5.085,1717,1.987,1718,1.789,1719,1.987,1720,1.314,1721,1.362,1722,0.919,1723,1.789,1724,1.106]],["description//tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/",[7,0.245,8,0.482,23,0.314,31,0.414,32,0.595,47,0.612,48,0.4,114,1.105,125,0.433,156,0.54,169,0.555,172,0.973,227,1.888,228,1.597,262,0.772,284,0.821,324,0.705,447,0.804,465,0.788,633,0.879,720,0.73,897,1.178,1608,1.976,1687,1.317,1725,1.578,1726,1.421]],["title//tracks/aws-certified-developer-associate/lambda/",[47,2.789]],["content//tracks/aws-certified-developer-associate/lambda/",[3,1.158,4,1.302,7,1.352,10,1.015,12,1.331,14,1.467,16,0.855,17,0.956,21,2.648,22,4.523,23,1.987,24,4.591,26,2.62,27,2.312,28,1.302,29,0.985,30,0.775,31,2.242,32,2.227,37,2.684,38,1.661,39,0.93,40,2.544,43,0.904,44,2.595,45,2.709,47,4.14,48,2.655,49,1.841,51,0.89,53,1.5,54,0.986,55,1.302,57,2.182,58,1.362,59,0.93,60,0.701,61,1.895,62,1.349,63,1.655,64,1.457,65,1.074,66,1.179,68,1.081,70,0.544,71,0.775,75,1.958,76,2.141,79,1.508,80,1.508,82,2.319,83,1.047,84,1.508,85,1.275,88,1.429,89,2.676,90,2.343,93,1.787,95,2.087,96,1.179,101,1.394,106,2.467,109,1.655,113,2.595,116,3.012,117,4.048,118,2.884,120,0.747,121,2.263,123,1.868,125,2.228,128,1.801,132,1.769,135,2.339,137,0.577,138,1.787,142,2.548,145,1.394,147,1.081,149,1.202,157,1.595,163,0.943,165,0.452,172,0.88,174,1.703,175,1.299,178,1.841,179,2.283,185,1.158,187,2.595,188,2.381,192,2.467,197,3.973,199,3.725,201,3.692,204,2.94,206,1.895,209,2.884,210,1.134,211,1.929,213,2.449,216,4.048,217,3.307,218,2.686,219,2.281,221,0.857,222,4.131,223,1.863,224,2.718,225,2.4,226,0.723,227,3.191,228,3.992,229,1.686,230,1.717,231,2.869,232,0.842,233,2.281,234,1.302,235,4.287,236,3.415,237,3.43,238,4.352,239,1.22,240,2.473,241,1.93,242,1.543,243,1.429,244,2.281,245,0.721,246,1.099,247,1.689,248,1.429,249,1.966,250,1.787,251,1.508,252,2.004,253,3.842,254,1.717,255,1.275,256,1.771,257,4.729,258,3.973,259,1.769,260,1.467,261,1.394,262,2.004,263,1.118,264,1.508,265,1.868,266,1.868,267,3.057,268,3.223,269,1.118,270,1.655,271,1.655,272,1.362,273,1.601,274,2.54,275,1.508,276,2.2,277,1.508,278,1.087,279,2.108,280,2.24,281,1.064,282,1.429,283,1.78,284,1.302,285,1.331,286,1.005,287,1.064,288,1.787,289,1.479,290,1.508,291,2.228,292,2.4,293,3.023,294,2.131,295,0.97,303,2.108,305,2.4,306,1.862,313,1.601,316,1.394,317,1.717,319,4.704,320,2.405,324,2.684,334,3.87,335,1.787,341,0.738,347,1.064,350,1.601,351,0.688,353,1,356,3.122,358,1.467,369,1.38,373,2.084,374,1.118,381,0.694,385,0.943,387,0.835,389,1.508,397,2.178,404,2.283,407,0.672,414,1.283,419,1.394,420,1.118,421,3.218,425,0.892,426,2.089,428,2.254,431,0.857,439,1.225,441,1.804,451,2.089,452,2.779,453,1.394,454,1.601,455,1.497,456,1.868,457,2.089,458,0.868,459,1.179,460,1.202,461,2.405,462,0.68,463,1.717,464,1.467,465,2.998,466,3.43,467,1.868,468,2.089,473,1.015,478,1.304,480,3.082,495,1.29,502,1.787,508,1.46,509,1.158,510,1.508,512,1.138,514,1.158,526,1.717,527,1.362,529,1.362,533,1.792,534,1.65,535,1.249,554,1.601,569,1.717,570,1.655,580,1.099,591,0.191,613,2.246,623,1.868,640,2.087,648,2.089,649,1.467,650,1.966,651,2.089,652,2.178,653,1.362,654,1.868,655,2.393,656,1.362,657,1.966,665,1.868,684,1.249,690,2.828,698,1.202,699,1.202,702,2.544,720,1.895,727,1.611,738,1.717,750,1.249,755,1.179,772,1.249,773,1.552,775,3.88,779,1.429,791,3.69,795,1.93,800,4.878,804,1.862,809,1.799,811,0.53,820,1.099,829,0.688,845,2.254,846,1.787,861,0.515,864,2.339,870,0.721,887,0.93,894,1.394,912,1.508,920,4.704,928,1.717,981,2.896,1004,1.331,1010,0.943,1012,0.868,1015,1.769,1030,1.362,1033,2.705,1038,2.263,1039,2.83,1050,0.607,1054,1.979,1078,1.402,1114,0.55,1134,1.868,1145,1.225,1147,1.099,1148,0.892,1151,0.712,1157,3.481,1164,1.225,1186,1.655,1204,1.508,1214,5.409,1233,1.429,1238,0.621,1278,1.429,1279,1,1283,1.429,1288,1.655,1305,3.057,1316,1.081,1330,2.254,1332,1.552,1369,1.868,1377,1.862,1385,1.601,1423,1.394,1424,1.429,1430,1.508,1464,1.394,1500,2.62,1522,2.923,1558,1.787,1599,1.966,1638,2.089,1664,1.467,1691,1.331,1727,3.194,1728,1.966,1729,2.254,1730,2.254,1731,2.504,1732,2.4,1733,1.966,1734,3.688,1735,2.254,1736,1.787,1737,2.504,1738,2.504,1739,2.504,1740,2.504,1741,1.202,1742,1.717,1743,2.504,1744,1.787,1745,2.504,1746,2.089,1747,2.254,1748,2.504,1749,3.88,1750,1.966,1751,1.081,1752,2.504,1753,2.254,1754,4.084,1755,3.218,1756,1.868,1757,2.504,1758,2.089,1759,2.504,1760,2.504,1761,2.089,1762,2.504,1763,4.097,1764,2.504,1765,1.966,1766,4.097,1767,1.787,1768,2.254,1769,2.504,1770,2.504,1771,4.097,1772,2.504,1773,2.504,1774,2.504,1775,2.254,1776,2.339,1777,1.508,1778,2.254,1779,2.254,1780,3.419,1781,2.504,1782,1.868,1783,2.504,1784,2.504,1785,4.097,1786,4.097,1787,3.218,1788,1.966,1789,2.504,1790,2.504,1791,2.504,1792,2.504,1793,2.504,1794,2.504,1795,1.868,1796,3.688,1797,2.089,1798,0.93,1799,2.504,1800,4.097,1801,2.504,1802,2.504,1803,2.504,1804,2.504,1805,2.504,1806,2.504,1807,1.655,1808,2.504,1809,2.504,1810,2.504]],["description//tracks/aws-certified-developer-associate/lambda/",[32,1.135,47,2.046,65,1.285,870,1.519]],["title//tracks/aws-certified-developer-associate/kms/_index",[31,1.41,280,1.443,431,1.84]],["content//tracks/aws-certified-developer-associate/kms/_index",[3,1.391,5,1.391,7,1.421,8,2.041,9,1.149,16,0.886,17,1.814,19,1.278,21,1.987,23,0.599,27,1.218,29,3.04,31,2.614,32,2.262,37,2.627,39,1.117,40,1.471,49,1.319,53,1.738,54,0.815,55,1.564,56,1.149,57,2.394,60,0.515,62,1.066,66,0.866,68,2.54,69,1.417,72,2.05,76,1.071,82,1.319,89,3.212,90,1.937,92,1.675,95,1.532,96,1.417,108,0.78,114,1.201,119,2.146,120,0.897,127,1.057,128,2.254,132,1.299,133,1.278,137,0.289,140,1.321,142,0.978,145,1.675,146,2.214,154,1.819,157,1.773,159,2.28,165,0.544,171,1.526,174,1.032,175,1.505,178,1.856,188,0.954,195,2.943,210,1.261,215,2.524,217,2.369,218,1.924,223,0.846,226,0.362,232,0.487,240,2.394,241,2.236,242,1.133,247,0.846,249,1.443,256,2.385,261,1.675,262,1.471,272,3.199,275,1.811,276,1.738,278,0.798,280,2.778,281,1.278,285,1.599,287,2.017,289,0.855,291,1.636,293,2.017,295,1.84,303,1.924,306,1.367,307,0.846,310,1.636,311,1.471,322,3.036,328,1.321,341,0.886,346,1.923,350,3.036,353,1.201,358,1.762,371,3.036,372,1.258,373,1.647,378,1.278,381,0.804,385,1.133,393,1.086,397,1.599,407,0.807,413,2.12,416,1.989,425,1.071,431,3.754,455,1.366,458,1.043,459,1.417,474,1.501,480,1.183,484,2.583,500,1.675,502,2.146,514,4.302,516,4.033,520,2.279,533,0.897,534,1.835,541,1.599,569,2.062,591,0.247,596,5.062,597,2.215,598,2.524,599,6.813,600,1.762,601,2.348,602,5.529,603,6.752,604,5.711,605,2.279,606,2.707,607,1.564,608,2.244,609,6.355,610,3.543,611,2.673,612,1.923,613,2.54,614,5.515,615,2.51,616,2.362,617,4.274,618,2.707,619,3.729,620,2.707,621,2.062,622,1.717,623,3.543,624,3.139,625,0.908,626,1.071,627,2.51,628,1.864,629,4.26,630,2.244,631,2.236,632,1.501,633,1.675,634,2.362,635,1.762,636,2.062,637,1.443,644,1.923,655,2.412,658,2.146,660,2.146,671,0.721,673,4.02,684,1.501,694,1.532,698,1.443,716,2.244,720,2.196,736,1.564,754,0.817,762,1.599,763,2.146,764,7.478,770,1.717,791,1.675,796,1.717,809,2.085,817,1.343,823,1.443,861,0.977,865,1.532,870,1.366,918,2.244,920,1.989,929,0.612,942,1.016,992,1.321,1010,1.133,1013,3.543,1024,1.117,1033,1.564,1054,1.937,1055,1.367,1056,1.564,1058,1.717,1062,1.564,1070,1.471,1075,2.146,1112,1.532,1115,2.943,1119,1.717,1157,1.471,1171,4.033,1260,1.864,1283,1.717,1286,2.323,1293,1.717,1297,1.219,1305,3.543,1324,1.183,1335,0.586,1360,1.343,1363,6.068,1368,2.51,1380,2.244,1383,2.362,1388,1.989,1389,2.859,1422,2.582,1497,2.362,1504,2.244,1520,2.062,1553,1.636,1565,2.146,1587,2.51,1594,2.644,1610,1.811,1657,2.062,1660,1.367,1664,1.762,1744,2.146,1749,3.543,1750,2.362,1756,2.244,1777,2.859,1811,3.007,1812,3.007,1813,1.564,1814,3.007,1815,3.007,1816,4.747,1817,3.007,1818,3.007,1819,3.007,1820,4.274,1821,2.362,1822,6.68,1823,3.007,1824,5.882,1825,5.189,1826,3.962,1827,5.574,1828,3.007,1829,3.007,1830,3.007,1831,3.007,1832,1.501,1833,3.007,1834,3.007,1835,2.244,1836,8.386,1837,3.007,1838,1.443,1839,3.007,1840,3.007,1841,3.007,1842,3.007,1843,3.007,1844,3.007,1845,3.007,1846,3.007,1847,1.923,1848,6.68,1849,2.146,1850,2.707,1851,3.007,1852,3.007,1853,2.707,1854,2.707,1855,3.007,1856,3.007,1857,2.707,1858,3.007,1859,1.762,1860,3.007,1861,3.007,1862,3.007,1863,3.007,1864,3.007,1865,5.882,1866,3.007,1867,2.707,1868,3.007,1869,1.258,1870,2.51,1871,3.007,1872,3.007,1873,2.707]],["description//tracks/aws-certified-developer-associate/kms/_index",[7,0.503,16,0.28,23,0.647,31,0.852,128,0.721,222,1.654,241,1.53,244,1.809,280,0.872,431,1.726,602,1.727,1813,1.689]],["title//tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/",[16,0.335,373,1.351,599,2.491,602,2.071,655,1.407,763,2.779]],["content//tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/",[5,1.683,7,1.23,8,2.425,10,1.475,16,0.851,17,2.101,27,0.933,29,1.431,31,1.74,32,2.061,33,2.64,35,1.314,41,1.788,42,1.625,51,1.884,54,0.919,57,2.184,62,1.235,64,1.793,65,0.983,68,2.375,70,0.791,82,2.409,83,1.521,89,2.363,90,2.184,91,1.714,108,1.72,118,1.746,127,1.279,128,1.473,132,2.375,133,2.337,137,0.637,140,3.919,142,1.788,149,1.746,157,1.46,159,1.41,163,2.497,165,1.198,171,1.917,174,1.195,175,2.103,176,2.191,178,1.011,179,3.246,183,3.124,210,0.687,211,1.168,216,2.745,217,5.152,218,1.475,223,1.546,230,2.495,231,3.189,239,1.556,240,2.434,244,2.026,245,1.909,247,2.347,255,1.853,269,1.625,280,2.241,289,1.035,303,2.688,306,2.5,307,1.023,309,2.818,321,3.41,340,1.714,341,1.072,344,3.517,347,3.372,351,2.381,361,1.431,369,2.106,372,3.091,373,3.096,374,4.283,382,1.583,390,2.101,393,2.669,400,2.73,412,2.163,429,0.881,431,3.638,441,1.262,450,1.96,473,1.475,480,1.431,484,1.598,486,1.934,487,1.431,495,0.902,502,2.596,509,2.544,514,1.683,517,5.923,533,2.205,534,0.999,545,2.495,563,1.453,591,0.226,599,6.413,602,5.394,603,4.59,604,4.32,605,1.746,609,5.208,611,2.5,615,3.036,625,1.098,629,3.222,641,2.132,655,2.669,663,2.858,671,0.873,673,1.893,696,1.858,698,3.547,699,4.47,720,1.683,734,1.626,754,0.988,763,5.957,764,7.176,777,1.431,783,1.475,791,2.026,809,1.598,814,2.026,860,1.41,889,2.077,924,2.042,929,1.12,934,2.014,943,3.771,948,4.152,950,2.64,973,2.991,999,1.78,1010,2.497,1012,1.908,1024,2.462,1038,3.144,1078,1.245,1096,3.275,1112,1.853,1130,2.495,1136,2.924,1144,4.921,1145,2.691,1147,2.912,1148,3.649,1151,2.258,1157,4.084,1163,1.893,1167,2.924,1168,1.168,1170,1.853,1178,1.498,1183,2.132,1186,2.406,1194,1.893,1223,2.327,1258,1.816,1260,2.256,1279,2.196,1285,2.327,1286,3.244,1293,2.077,1296,4.111,1297,1.475,1325,1.816,1372,4.59,1385,4.727,1395,4.948,1396,3.063,1397,3.925,1422,3.606,1428,4.32,1431,4.732,1436,3.637,1447,1.714,1448,4.02,1462,1.245,1481,2.715,1482,1.816,1507,2.596,1509,4.32,1515,1.934,1614,2.406,1749,4.948,1849,3.925,1853,3.275,1854,3.275,1874,3.275,1875,2.596,1876,2.596,1877,3.638,1878,2.596,1879,3.638,1880,4.948,1881,3.036,1882,5.664,1883,3.638,1884,3.638,1885,3.036,1886,3.275,1887,1.37,1888,3.638,1889,3.638,1890,3.638,1891,3.638,1892,2.596,1893,3.638,1894,3.275,1895,3.275,1896,2.715,1897,4.951,1898,3.275,1899,2.715,1900,2.715,1901,3.275,1902,3.275,1903,5.5,1904,3.036,1905,5.534,1906,3.638,1907,2.191,1908,3.638,1909,3.275,1910,3.638,1911,4.951,1912,5.5,1913,3.638,1914,5.5,1915,5.5,1916,3.275,1917,3.036,1918,3.638,1919,3.638,1920,3.638,1921,3.638]],["description//tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/",[16,0.422,373,1.698,599,3.131,602,2.603,655,1.768,763,3.494]],["title//tracks/aws-certified-developer-associate/kinesis/_index",[464,4.216]],["content//tracks/aws-certified-developer-associate/kinesis/_index",[9,2.024,16,0.817,19,2.251,23,1.832,27,1.849,31,2.149,32,1.89,41,1.723,49,2.003,53,1.94,55,2.756,57,1.745,60,0.907,62,1.19,65,0.947,66,1.525,70,1.151,76,3.132,82,1.472,86,2.216,89,1.888,108,1.375,110,2.951,117,2.644,119,3.781,120,2.15,125,1.455,128,2.369,165,0.958,174,1.151,175,2.285,204,2.592,208,2.951,210,1.735,211,1.701,213,2.496,218,2.148,221,2.467,225,5.15,243,3.025,245,1.525,246,2.327,249,4.219,256,2.591,261,2.951,280,1.422,281,2.251,284,2.756,292,3.104,294,2.756,295,2.054,308,2.835,310,2.882,312,2.592,327,2.084,365,2.181,380,3.388,384,3.334,385,1.995,420,3.658,425,1.888,429,0.849,434,3.658,435,4.609,446,7.625,455,2.73,464,6.211,465,5.203,488,3.388,496,4.799,509,2.451,524,2.367,527,3.92,534,1.98,556,5.143,557,3.537,558,4.162,559,4.77,560,4.77,561,4.162,562,8.538,563,2.116,564,3.633,565,1.838,566,3.597,567,4.223,568,4.77,569,3.633,570,3.504,571,4.77,572,4.77,573,6.488,574,6.488,575,3.954,576,2.568,578,2.644,579,4.162,580,3.165,581,4.77,582,4.77,583,2.181,584,5.616,585,4.162,586,6.835,587,4.77,588,4.765,589,4.77,590,6.433,591,0.193,592,6.433,593,3.781,594,4.422,595,3.954,612,3.388,630,3.954,642,2.216,671,1.271,684,2.644,747,3.954,754,1.439,770,3.025,777,2.084,802,3.285,829,1.455,839,5.238,861,1.091,865,2.699,870,1.525,942,1.79,976,4.223,992,2.327,1022,3.633,1033,4.26,1036,3.781,1037,3.025,1054,2.373,1086,3.526,1089,3.459,1090,2.699,1416,6.014,1417,3.191,1424,3.025,1579,4.162,1582,3.954,1605,4.77,1606,4.77,1645,3.504,1724,2.951,1780,4.422,1838,2.543,1922,4.162,1923,5.299,1924,5.299,1925,3.388,1926,5.299,1927,2.054,1928,5.299,1929,5.299,1930,4.77,1931,4.77,1932,4.77,1933,4.422,1934,5.299,1935,4.77,1936,5.299]],["description//tracks/aws-certified-developer-associate/kinesis/_index",[128,0.893,210,0.759,244,2.239,249,1.93,455,1.157,465,2.007,496,2.356,557,1.737,976,2.356]],["title//tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/",[23,0.711,128,1.204,225,2.09,368,1.987,464,2.09,1607,2.802]],["content//tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/",[1,1.423,3,0.853,7,1.492,10,3.203,16,0.711,23,1.213,25,0.96,27,2.562,28,0.96,29,0.726,30,1.29,31,1.298,32,1.836,33,2.375,40,0.903,42,1.862,43,0.666,47,3.199,48,2.356,51,0.689,54,0.902,59,2.26,60,1.042,64,1.2,65,0.885,66,1.424,68,1.801,70,0.401,71,1.29,75,1.367,76,2.994,82,1.911,83,0.772,86,2.331,87,0.903,89,0.657,91,1.964,94,2.982,108,1.579,110,1.027,115,1.347,116,1.548,117,2.781,118,3.45,125,2.113,127,1.115,128,2.309,131,2.825,132,0.797,133,3.054,137,0.777,142,2.776,144,1.081,146,0.813,153,3.071,156,2.705,157,1.729,159,0.715,160,1.369,165,1.007,169,2.139,170,2.447,178,0.881,179,2.173,180,1.027,182,0.676,183,1.964,185,0.853,187,1.369,188,1.005,203,0.824,205,2.096,210,1.356,211,1.339,213,1.494,215,1.686,216,4.194,218,0.748,221,0.632,223,1.172,224,2.259,225,5.55,228,3.493,229,0.76,231,3.493,232,0.903,237,2.38,238,3.317,239,0.978,240,1.044,245,1.752,247,0.519,249,1.522,254,2.174,256,0.544,278,1.313,279,2.259,280,1.929,286,1.367,287,0.784,289,0.525,295,2.16,303,2.006,306,3.988,307,1.172,308,2.394,309,0.784,310,1.003,312,0.903,315,2.267,320,3.818,324,0.824,327,1.64,328,0.81,332,3.455,340,0.869,347,2.768,351,1.359,363,2.469,365,1.305,368,4.002,369,1.979,381,0.706,382,2.274,390,2.325,393,2.013,398,1.003,399,0.903,400,2.294,406,1.649,407,0.851,412,1.64,415,3.455,418,1.661,419,1.766,420,0.824,427,0.94,429,0.508,431,1.427,434,0.824,435,2.666,442,2.825,444,0.96,445,0.557,446,4.159,450,1.986,452,0.853,454,2.666,455,0.913,459,2.331,461,2.578,464,5.799,465,5.048,473,1.285,478,1.046,480,0.726,495,1.382,501,0.981,508,1.986,509,1.929,524,0.824,527,3.909,530,0.81,533,1.815,534,1.531,537,1.416,563,0.737,565,1.1,578,1.582,584,5.762,591,0.232,597,1.864,599,1.18,601,1.266,602,1.686,605,0.886,611,0.838,625,2.578,631,2.331,637,0.886,641,1.229,642,1.326,670,2.585,671,1,690,1.003,698,0.886,727,2.394,732,2.081,734,1.023,752,3.977,755,1.494,759,1.053,762,1.686,767,1.966,770,1.053,777,0.726,780,1.144,792,1.317,795,0.869,797,0.921,800,1.265,804,2.249,809,1.831,811,0.539,814,2.322,815,4.173,816,1.144,820,0.81,831,0.94,832,2.081,860,1.616,861,0.858,864,1.053,868,1.22,885,1.18,889,1.81,915,3.685,920,1.22,924,2.26,928,2.859,929,0.376,934,3.348,943,2.174,948,4.251,973,3.031,975,1.003,977,1.265,986,2.756,1003,3.516,1004,4.09,1010,1.194,1012,1.933,1017,2.469,1034,1.615,1038,1.194,1049,2.368,1078,0.632,1091,0.685,1113,1.265,1114,1.087,1116,1.494,1122,1.449,1124,1.582,1144,5.237,1145,2.727,1146,1.266,1147,3.275,1148,3.596,1150,2.028,1157,1.551,1158,0.748,1163,0.96,1164,1.551,1167,2.963,1168,1.789,1169,0.869,1173,2.469,1178,0.76,1179,2.98,1180,3.479,1181,2.756,1183,2.443,1184,1.053,1185,2.756,1186,3.272,1187,1.081,1188,1.317,1189,3.393,1190,1.64,1191,1.317,1192,1.144,1193,1.305,1194,0.96,1195,2.443,1196,1.317,1197,1.22,1198,1.449,1199,1.449,1200,1.54,1216,1.144,1226,2.646,1230,0.824,1233,1.053,1236,3.922,1238,0.786,1244,1.265,1259,1.081,1278,1.053,1286,2.421,1288,1.22,1291,4.541,1292,1.317,1294,1.22,1295,1.661,1296,3.773,1297,2.64,1299,1.661,1303,0.299,1304,1.661,1305,1.377,1311,1.918,1315,2.267,1316,2.137,1318,3.182,1322,3.753,1324,0.726,1360,0.824,1369,4.541,1392,1.416,1424,2.38,1433,2.263,1434,1.317,1449,3.1,1476,3.182,1497,1.449,1500,1.18,1502,1.317,1514,0.695,1517,0.94,1557,1.661,1579,1.449,1596,3.275,1603,1.54,1607,4.377,1642,1.053,1654,2.825,1668,2.263,1673,1.964,1675,1.615,1678,4.159,1682,4.861,1686,2.49,1697,1.111,1708,4.263,1715,1.317,1716,1.265,1734,2.854,1835,3.111,1849,1.317,1937,2.263,1938,2.174,1939,1.845,1940,2.174,1941,6.926,1942,6.514,1943,3.171,1944,3.171,1945,4.948,1946,1.449,1947,4.169,1948,2.096,1949,4.169,1950,1.081,1951,1.661,1952,1.18,1953,1.845,1954,1.845,1955,1.845,1956,1.845,1957,1.845,1958,1.845,1959,1.661,1960,0.685,1961,1.845,1962,1.845,1963,1.845,1964,1.845,1965,3.171,1966,1.845,1967,1.845,1968,1.845,1969,6.086,1970,3.171,1971,3.171,1972,1.845,1973,1.449,1974,1.54,1975,4.169,1976,1.661,1977,3.171,1978,1.661,1979,6.876,1980,2.646,1981,1.266,1982,1.845,1983,1.845,1984,1.845,1985,1.845,1986,1.845,1987,1.845,1988,4.169,1989,1.845,1990,1.845,1991,6.086,1992,4.948,1993,1.845,1994,4.169,1995,3.171,1996,4.455,1997,1.845,1998,1.54,1999,4.169,2000,2.975,2001,1.449,2002,1.54,2003,3.753,2004,1.22,2005,1.377,2006,1.845,2007,1.449,2008,1.845,2009,1.845,2010,3.171,2011,1.845,2012,4.948,2013,1.845,2014,4.948,2015,3.171,2016,4.169,2017,1.845,2018,1.845,2019,1.845,2020,1.317,2021,3.171,2022,4.169,2023,3.171,2024,1.858,2025,3.171,2026,1.845,2027,1.845,2028,1.845,2029,1.845,2030,1.845,2031,1.845,2032,1.845,2033,1.845,2034,1.845,2035,1.845,2036,1.845,2037,3.171,2038,1.845,2039,1.845,2040,1.845,2041,1.845,2042,1.845,2043,3.171,2044,3.171,2045,1.449,2046,1.845,2047,1.845,2048,1.845,2049,1.845,2050,1.18,2051,1.845,2052,1.845,2053,1.661]],["description//tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/",[23,0.91,128,1.443,225,2.674,368,2.542,464,2.674,1607,3.585]],["title//tracks/aws-certified-developer-associate/iam/",[179,3.16]],["content//tracks/aws-certified-developer-associate/iam/",[3,3.892,7,1.505,9,1.704,10,2.836,16,0.875,19,1.182,21,2.364,22,2.584,23,1.488,25,1.447,26,1.779,27,1.639,31,2.427,32,2.257,35,1.004,38,1.808,39,1.033,40,1.361,42,1.242,43,1.004,48,1.417,49,1.944,51,1.828,53,1.633,55,1.447,56,2.134,57,2.957,60,0.763,62,1.571,65,0.797,70,0.969,76,0.991,79,1.675,80,2.686,81,2.372,82,2.957,86,1.163,89,0.991,90,1.839,94,1.078,96,1.31,108,0.722,109,1.839,116,1.033,120,0.83,124,2.686,128,0.618,137,0.536,138,1.985,142,1.45,146,1.916,147,3.94,153,1.242,156,0.952,157,0.738,163,2.407,165,0.503,169,2.459,170,1.959,171,1.449,172,0.978,175,1.771,178,1.24,179,4.656,180,4.159,182,1.633,185,2.956,188,1.415,189,1.361,195,1.724,196,1.907,197,4.226,198,4.387,206,3.236,212,4.337,215,3.72,216,4.671,217,4.963,218,1.127,219,2.484,222,1.417,223,1.797,224,0.965,226,0.537,227,2.973,236,1.335,239,1.047,240,3.333,241,2.631,244,1.549,246,1.959,247,2.525,261,1.549,263,1.242,276,3.229,278,1.184,280,2.54,283,1.527,289,1.818,294,1.447,295,1.078,298,1.588,303,1.127,305,1.629,307,0.782,309,1.182,310,1.513,320,1.287,323,1.985,329,1.724,334,1.513,347,2.716,349,4.561,351,0.764,358,2.614,369,1.982,372,1.163,373,1.937,374,2.495,378,1.896,385,2.103,394,0.952,396,2.045,407,1.198,423,2.372,425,2.661,431,2.686,434,1.992,439,1.361,441,1.547,452,1.287,453,2.484,473,1.127,478,0.698,480,1.094,484,1.221,488,4.087,501,1.479,507,2.504,508,1.589,509,1.287,510,4.497,511,1.163,512,1.264,513,4.492,514,4.804,515,2.184,516,1.907,517,3.329,518,3.723,519,3.329,520,1.335,521,1.839,533,1.906,534,0.764,536,6.256,537,1.992,538,2.766,539,2.853,540,2.075,541,1.479,542,4.016,543,2.504,544,5.02,545,1.907,546,4.016,547,4.016,548,5.028,549,2.504,550,2.504,551,2.504,552,2.321,553,2.075,554,3.572,555,2.504,591,0.208,593,1.985,596,1.479,611,1.264,625,1.686,629,5.057,631,1.31,671,0.667,684,2.787,703,5.333,734,1.094,740,2.272,749,1.447,754,0.755,755,1.31,773,2.766,779,1.588,783,1.127,791,2.484,795,2.631,804,1.264,809,1.959,856,1.985,860,1.078,869,1.779,870,0.801,871,6.298,887,1.033,894,1.549,915,1.839,933,4.016,934,1.018,942,0.94,948,1.264,950,1.335,957,1.629,964,3.723,986,1.549,992,1.221,999,1.361,1003,1.361,1010,1.68,1038,1.047,1039,1.31,1070,2.183,1081,1.588,1136,1.479,1148,1.589,1149,2.504,1151,0.791,1157,4.987,1169,1.31,1170,1.417,1193,1.836,1195,1.629,1202,1.388,1203,0.893,1293,1.588,1318,1.588,1326,4.382,1332,4.864,1335,0.542,1358,3.463,1385,5.38,1389,1.675,1395,6.278,1396,1.549,1397,3.183,1405,1.675,1422,1.513,1423,1.549,1447,1.31,1456,1.513,1462,2.188,1609,1.907,1648,1.447,1654,2.547,1664,1.629,1668,1.985,1691,1.479,1695,1.047,1722,1.287,1724,1.549,1729,2.504,1730,2.504,1832,1.388,1838,1.335,1950,1.629,2054,2.504,2055,2.781,2056,2.781,2057,4.016,2058,2.781,2059,2.781,2060,2.504,2061,2.781,2062,5.585,2063,4.226,2064,2.781,2065,2.853,2066,2.504,2067,2.184,2068,2.781,2069,2.184,2070,2.504,2071,2.781,2072,2.781,2073,2.781,2074,2.781,2075,2.781,2076,2.141,2077,2.781,2078,2.781,2079,2.781,2080,5.02,2081,4.461,2082,2.781,2083,4.461,2084,4.461,2085,2.781,2086,2.504,2087,2.504,2088,2.781,2089,2.781,2090,2.781,2091,2.781,2092,8.981,2093,2.781,2094,8.155,2095,5.865,2096,1.479,2097,2.781,2098,6.391,2099,4.461,2100,2.781,2101,2.781,2102,2.781,2103,2.781,2104,4.461,2105,2.781,2106,2.781,2107,2.781,2108,2.781,2109,2.781,2110,2.781]],["description//tracks/aws-certified-developer-associate/iam/",[32,0.816,51,0.825,65,1.015,179,1.667,223,1.067,240,1.25,280,1.019,510,2.285,870,1.092]],["title//tracks/aws-certified-developer-associate/fis/",[503,4.01,504,3.835,915,3.553]],["content//tracks/aws-certified-developer-associate/fis/",[7,1.218,9,2.305,11,1.34,16,0.753,19,2.564,22,3.635,27,1.548,29,2.374,31,2.062,32,2.064,37,2.695,39,2.918,49,1.677,53,2.21,59,2.918,62,1.355,82,1.677,84,3.634,85,3.073,88,3.445,93,4.306,94,2.339,125,2.401,132,2.606,147,3.394,149,3.772,156,3.517,158,4.503,163,3.707,169,3.254,172,2.763,174,1.311,175,2.492,179,2.65,208,3.361,211,1.938,216,3.011,228,2.606,238,3.073,239,1.416,249,2.896,261,4.867,272,4.274,278,1.602,280,1.62,283,2.066,289,1.717,292,3.536,302,3.634,303,2.446,309,3.339,311,2.952,312,3.845,313,3.859,316,3.361,325,4.74,367,5.036,372,2.524,387,2.621,395,4.178,399,2.952,407,1.62,421,4.74,425,2.15,427,3.073,429,0.967,439,3.845,447,3.073,455,2.262,478,1.514,481,7.868,482,5.12,483,7.075,484,2.65,485,5.036,486,4.178,487,2.374,488,3.859,489,3.859,490,5.432,491,5.036,492,5.432,493,4.503,494,4.74,495,2.168,496,3.536,497,5.432,498,6.294,499,5.432,500,3.361,501,3.208,502,4.306,503,7.164,504,6.851,505,4.306,506,5.432,541,3.208,591,0.142,598,3.208,605,2.896,667,4.503,671,1.448,673,3.139,785,3.361,832,3.011,861,1.242,870,1.737,904,5.388,915,5.196,929,1.229,942,2.039,992,2.65,997,3.741,1010,2.96,1017,3.011,1033,3.139,1054,2.878,1063,4.306,1065,2.952,1070,2.952,1081,3.445,1090,3.073,1101,4.503,1134,4.503,1245,4.74,1267,5.432,1326,4.138,1360,2.695,1665,2.96,1827,5.036,1869,2.524,1973,6.864,2111,5.432,2112,6.035,2113,3.99,2114,6.035,2115,6.035,2116,5.036,2117,5.036,2118,5.432,2119,4.138]],["description//tracks/aws-certified-developer-associate/fis/",[32,0.864,175,1.275,241,1.894,439,1.967,498,2.572,503,3.001,504,2.87,915,2.659,1245,3.158]],["title//tracks/aws-certified-developer-associate/fargate/",[471,4.758]],["content//tracks/aws-certified-developer-associate/fargate/",[9,2.546,16,0.574,17,3.199,19,2.832,22,3.083,23,1.668,27,2.349,31,2.651,32,2.204,49,1.852,53,2.44,62,1.496,82,1.852,113,4.794,116,2.475,125,1.831,142,2.167,156,2.867,169,2.343,171,1.729,242,2.51,259,4.275,274,4.131,276,2.44,280,2.657,283,2.281,302,6.083,307,1.874,372,3.502,383,3.74,404,3.677,423,4.452,448,4.407,471,6.679,472,5.955,473,2.701,474,3.326,475,5.976,476,3.625,477,3.394,478,2.624,479,4.407,480,3.294,482,5.365,534,2.3,565,2.312,671,1.599,696,2.252,701,4.569,754,1.81,854,2.977,861,1.372,870,1.918,887,2.475,901,3.905,902,5.234,903,6.544,904,5.742,923,5.234,942,2.252,992,2.926,1054,2.758,1055,3.029,1056,3.467,1058,4.78,1070,3.261,1078,2.281,1126,5.999,1283,3.804,1567,4.569,1572,5.561,2120,5.561,2121,6.664,2122,5.561,2123,4.262,2124,5.234,2125,5.999,2126,5.999,2127,5.999,2128,5.999,2129,4.407,2130,4.973]],["description//tracks/aws-certified-developer-associate/fargate/",[113,3.122,404,2.747,478,1.569]],["title//tracks/aws-certified-developer-associate/eventbridge/",[463,4.934]],["content//tracks/aws-certified-developer-associate/eventbridge/",[4,2.679,9,1.967,16,0.857,17,3.083,19,2.188,23,2.006,26,3.293,27,2.335,31,2.574,32,2.021,37,4.2,41,1.674,47,2.74,48,2.309,49,1.431,53,3.181,62,1.156,65,0.921,68,2.224,75,1.156,80,3.101,82,1.431,84,3.101,87,2.52,89,3.243,90,2.328,110,2.868,113,4.027,114,2.056,115,2.188,125,1.415,128,1.792,146,2.228,157,2.142,165,0.931,169,1.81,172,1.81,174,1.536,178,1.431,179,2.261,188,2.241,201,4.537,204,2.52,206,2.382,209,4.369,210,1.334,214,1.912,216,2.57,219,2.868,226,0.62,228,4.547,234,2.679,251,3.101,252,2.52,253,3.293,254,3.531,258,4.673,269,2.3,278,1.367,279,2.088,281,2.188,283,3.116,293,2.188,305,3.017,307,1.448,312,3.458,320,4.35,324,3.879,327,3.174,351,1.415,389,4.86,395,4.291,414,1.613,425,1.835,427,2.623,441,1.786,443,4.298,451,4.298,452,2.382,453,2.868,454,3.293,455,2.034,456,3.843,457,4.298,458,1.786,459,2.426,460,2.472,461,2.382,462,1.398,463,6.904,464,3.017,465,2.57,466,5.599,467,3.843,468,4.298,472,4.382,487,2.026,488,3.293,508,2.518,524,2.3,534,1.942,535,2.57,588,3.405,591,0.166,601,2.056,635,3.017,636,3.531,642,2.154,656,2.801,671,1.235,696,1.74,699,2.472,736,2.679,738,4.846,745,3.531,754,1.398,779,2.94,802,3.193,854,4.301,861,1.06,865,3.6,870,1.482,883,3.101,899,3.101,929,1.049,942,1.74,957,3.017,964,4.298,971,7.819,992,2.261,1038,1.939,1054,2.328,1055,3.212,1056,2.679,1058,2.94,1068,4.846,1084,3.531,1088,3.675,1103,4.298,1105,5.274,1107,4.636,1110,8.194,1140,4.298,1141,7.248,1157,2.52,1160,2.52,1297,2.088,1422,2.801,1456,2.801,1551,3.531,1594,2.868,1614,3.405,2131,3.405,2132,7.819,2133,5.15,2134,5.15,2135,5.15,2136,5.15,2137,4.045,2138,5.15,2139,5.15,2140,3.405,2141,4.035,2142,5.15,2143,3.675,2144,4.636,2145,3.843,2146,3.843,2147,4.636,2148,5.15,2149,3.101,2150,5.15,2151,3.531,2152,5.15]],["description//tracks/aws-certified-developer-associate/eventbridge/",[23,0.68,27,0.875,32,0.733,172,1.199,228,1.474,283,1.168,383,1.524,463,2.339,508,1.216,854,1.524,1088,2.435,2132,3.071]],["title//tracks/aws-certified-developer-associate/elasticloadbalancing/_index",[259,2.321,308,2.114,391,2.737]],["content//tracks/aws-certified-developer-associate/elasticloadbalancing/_index",[5,1.162,7,0.808,9,0.96,16,0.82,17,0.96,19,1.068,21,0.849,23,1.705,24,3.054,27,2.58,29,0.988,30,1.271,31,1.87,32,1.939,35,0.907,37,2.328,40,2.01,41,0.817,42,1.122,44,3.313,45,2.717,47,2.02,48,1.527,49,1.845,51,0.893,53,2.61,54,0.569,55,1.307,56,2.723,57,1.353,58,1.367,59,0.933,62,0.923,76,1.464,79,1.513,82,1.448,85,4.848,86,1.718,87,3.248,88,2.345,89,0.895,90,0.827,100,4.417,108,1.352,109,1.661,116,2.236,122,1.051,125,0.69,127,0.883,128,1.583,135,1.434,138,1.793,139,1.607,140,2.289,142,2.159,147,2.251,149,2.502,156,3.349,163,0.946,165,0.454,169,3.213,171,1.562,174,0.546,175,2.385,182,1.504,184,2.55,186,1.103,197,1.661,204,1.229,206,1.901,209,1.972,210,0.775,211,2.132,213,2.836,215,1.336,218,3.049,223,0.706,226,0.495,227,1.068,234,2.711,239,1.223,241,2.836,242,2.5,244,1.399,246,1.103,247,1.155,249,1.206,252,1.229,257,1.793,258,3.446,259,3.608,262,1.229,272,3.876,276,1.909,279,2.113,280,1.103,289,1.889,291,1.367,292,1.472,293,2.558,295,2.334,302,2.474,308,4.184,310,2.235,311,1.229,315,1.367,316,1.399,320,1.901,321,1.558,322,1.607,324,1.122,327,0.988,328,1.103,329,1.558,334,1.367,336,2.097,338,5.982,341,0.741,345,0.933,360,1.184,365,1.691,366,1.367,368,1.399,369,1.09,372,2.518,378,1.068,381,0.696,383,4.083,385,1.963,387,1.37,391,5.407,392,6.562,393,0.907,394,0.86,395,4.86,396,0.92,397,2.184,398,4.653,399,3.973,401,2.644,402,3.429,403,2.262,404,1.804,405,2.262,406,1.307,407,1.103,408,4.529,409,5.381,410,3.201,411,2.262,423,2.184,425,1.464,427,1.28,429,0.835,441,0.872,443,2.097,447,3.831,448,2.717,452,2.411,455,0.723,465,1.254,471,1.661,476,4.091,477,1.28,478,1.51,487,1.616,504,1.793,524,1.122,534,1.958,541,2.184,580,2.915,591,0.259,595,3.066,600,1.472,605,1.972,607,2.137,612,1.607,613,1.775,614,1.793,622,1.434,626,0.895,631,1.184,633,1.399,642,2.98,653,1.367,659,4.246,660,5.086,671,1.25,678,2.097,679,1.434,684,1.254,690,1.367,691,2.097,696,0.849,698,1.206,701,1.723,714,2.235,720,1.901,728,1.28,734,0.616,754,0.682,755,1.184,765,1.793,766,3.981,783,1.019,791,1.399,794,1.793,804,1.142,815,1.723,817,1.122,854,1.122,861,0.517,865,3.067,870,0.723,903,5.37,904,4.552,918,1.875,919,2.097,934,0.92,938,5.318,942,0.849,965,1.367,975,1.367,976,1.472,992,2.289,1010,0.946,1017,1.254,1023,3.429,1033,2.711,1036,4.738,1037,1.434,1038,2.267,1039,1.184,1040,1.723,1042,3.699,1043,1.793,1049,1.068,1054,1.353,1068,1.723,1078,1.784,1086,3.68,1091,0.933,1098,2.262,1130,1.723,1158,1.019,1169,1.184,1171,1.723,1178,1.034,1184,1.434,1194,1.307,1230,1.122,1281,2.097,1293,1.434,1326,3.574,1327,1.972,1328,2.093,1335,0.49,1354,1.472,1360,1.122,1363,2.097,1384,2.262,1389,2.474,1405,1.513,1423,1.399,1466,3.981,1488,3.699,1489,1.085,1491,1.661,1520,1.723,1524,1.661,1526,1.973,1527,1.875,1551,2.817,1553,2.835,1594,1.399,1602,1.973,1642,1.434,1645,2.717,1655,1.723,1664,1.472,1665,1.547,1721,1.723,1754,5.215,1761,2.097,1787,3.227,1825,7.363,1867,2.262,1882,2.932,1925,1.607,1950,1.472,2065,1.607,2120,2.097,2146,1.875,2153,2.513,2154,2.513,2155,2.513,2156,6.639,2157,5.212,2158,7.847,2159,5.212,2160,4.35,2161,7.127,2162,5.212,2163,2.513,2164,2.513,2165,4.692,2166,2.513,2167,2.097,2168,2.513,2169,2.262,2170,2.513,2171,2.262,2172,2.513,2173,4.35,2174,2.513,2175,5.212,2176,2.513,2177,2.513,2178,2.513,2179,2.513,2180,2.513,2181,1.723,2182,2.262,2183,2.262,2184,1.723,2185,1.723,2186,1.973,2187,2.262,2188,0.895,2189,2.513,2190,2.513,2191,2.513,2192,2.262,2193,2.262,2194,2.513,2195,5.947,2196,2.513,2197,2.513,2198,2.513,2199,2.513,2200,2.513,2201,2.513,2202,2.513,2203,2.513,2204,2.097,2205,2.262,2206,1.661,2207,1.661,2208,3.699,2209,2.513]],["description//tracks/aws-certified-developer-associate/elasticloadbalancing/_index",[27,1.256,85,2.494,284,2.547,338,2.948,439,2.395,447,2.494]],["title//tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/",[7,0.739,308,1.876,391,2.43,409,3.271]],["content//tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/",[1,1.422,3,0.931,5,2.715,7,1.406,8,1.044,10,2.585,16,0.701,23,0.886,27,1.912,30,0.623,31,1.167,32,1.708,35,0.727,39,1.652,41,1.11,43,1.893,44,3.183,51,0.742,53,1.25,54,0.883,57,1.465,60,1.276,62,1.177,64,1.271,65,1.42,66,0.983,72,0.869,76,0.717,82,0.559,83,0.842,85,1.739,86,2.843,88,1.149,89,1.585,90,0.663,91,0.948,93,3.174,100,1.094,108,1.154,110,3.268,114,2.343,116,1.268,118,2.135,120,1.019,122,0.842,125,1.752,127,1.563,128,0.758,132,2.263,133,1.89,137,0.328,140,0.884,142,2.883,145,1.902,146,1.505,147,3.956,153,1.987,154,1.621,156,3.654,157,1.979,160,2.754,163,0.758,165,0.804,169,3.418,174,1.139,175,1.662,176,1.212,178,0.559,182,0.737,183,2.764,184,0.985,185,1.58,186,0.884,188,0.638,195,1.248,203,0.899,206,0.931,208,1.902,209,1.639,210,0.989,213,1.609,215,1.815,218,2.124,221,0.689,224,1.184,226,0.242,231,3.428,232,0.721,234,4.014,239,1.044,240,2.682,242,2.402,245,0.983,247,2.29,251,1.212,259,1.921,263,1.525,274,1.248,276,3.461,278,1.804,279,1.803,280,1.825,282,1.149,291,1.094,292,1.179,293,3.46,294,1.047,295,0.78,298,1.149,303,1.384,304,1.287,306,3.09,307,1.65,308,4.168,310,1.094,312,1.671,315,4.526,320,2.95,321,2.117,323,3.174,324,1.987,328,1.953,329,1.248,332,1.248,333,1.331,334,3.192,338,4.307,341,1.545,347,2.71,362,2.678,363,1.004,365,1.406,366,3.192,369,0.906,378,1.451,381,1.08,382,0.579,383,0.899,390,1.699,391,5.388,393,1.606,397,2.786,398,2.419,399,2.564,400,1.831,402,2.85,406,1.776,408,1.212,409,5.999,412,2.061,423,1.07,425,1.585,429,1.022,434,1.525,439,0.985,441,0.698,445,1.772,447,1.025,448,1.331,449,1.812,450,1.217,453,2.477,458,0.698,461,0.931,472,2.757,473,1.384,478,0.505,479,1.331,487,1.343,495,1.455,508,1.585,514,1.58,533,2.645,534,0.938,535,1.004,536,1.38,537,1.525,538,1.248,563,0.803,578,1.004,591,0.138,595,1.502,597,0.758,602,1.07,607,1.047,611,1.552,622,1.149,628,1.248,631,0.948,632,1.004,633,1.902,641,2.275,642,3.227,649,1.179,659,5.08,660,1.436,666,4.904,670,1.248,671,0.483,679,2.539,690,2.419,694,1.025,696,1.771,702,2.176,707,1.121,714,1.094,720,0.931,727,0.792,729,1.287,732,3.393,734,2.041,748,1.287,749,2.314,750,2.615,754,1.208,759,1.149,762,1.07,770,2.539,772,1.004,779,1.949,780,2.117,783,1.384,785,4.634,791,1.121,794,1.436,795,1.609,804,0.915,809,3.388,811,0.441,814,1.902,815,1.38,831,1.739,832,1.704,856,1.436,861,0.915,869,1.287,872,1.07,873,1.776,879,2.85,889,1.949,891,1.331,924,2.524,926,2.265,932,1.502,934,3.524,938,5.338,942,1.771,948,2.898,961,1.287,975,1.094,986,2.918,990,0.645,992,1.953,994,2.184,1004,1.07,1012,0.698,1020,1.248,1030,1.094,1036,1.436,1038,2.56,1041,2.437,1043,3.74,1049,1.89,1081,1.149,1086,0.985,1094,1.287,1095,1.331,1114,0.442,1116,1.609,1124,1.004,1144,4.014,1145,1.671,1146,1.363,1147,3.141,1148,3.547,1151,2.317,1158,0.816,1160,0.985,1163,1.047,1164,1.671,1166,1.552,1167,5.144,1168,1.683,1171,3.05,1173,3.851,1177,1.704,1179,3.156,1181,1.902,1185,3.552,1186,1.331,1187,2.001,1188,2.437,1190,2.061,1192,1.248,1193,0.828,1195,3.07,1216,1.248,1258,1.004,1259,2.606,1279,2.092,1284,1.502,1285,1.287,1286,2.871,1291,1.502,1297,0.816,1315,1.094,1316,0.869,1317,1.149,1324,0.792,1325,1.704,1328,1.025,1329,1.502,1338,1.679,1343,0.803,1354,1.179,1358,3.249,1360,0.899,1366,1.436,1380,3.319,1389,1.212,1392,0.899,1395,1.502,1408,1.679,1425,3.319,1433,3.174,1436,4.73,1447,0.948,1449,1.739,1475,1.331,1476,1.949,1482,1.704,1489,2.534,1491,2.258,1506,1.679,1517,2.265,1526,5.856,1528,1.704,1548,6.12,1551,4.024,1556,4.718,1558,5.32,1614,3.465,1648,1.776,1654,1.149,1659,1.679,1663,1.287,1665,1.675,1668,1.436,1673,1.609,1675,1.739,1699,2.437,1700,0.816,1708,2.117,1715,1.436,1722,0.931,1741,0.966,1776,1.949,1832,1.004,1838,0.966,1869,0.842,1875,2.437,1882,3.74,1897,1.812,1907,2.056,1917,2.85,1937,2.437,1950,2.001,1976,1.812,2020,1.436,2045,1.581,2054,1.812,2080,1.581,2096,2.365,2113,1.331,2118,1.812,2207,1.331,2210,1.812,2211,5.241,2212,1.679,2213,2.85,2214,2.184,2215,4.448,2216,3.074,2217,3.465,2218,4.448,2219,2.012,2220,1.812,2221,1.581,2222,1.679,2223,2.012,2224,2.012,2225,2.001,2226,2.85,2227,1.38,2228,2.012,2229,2.012,2230,1.581,2231,2.012,2232,1.679,2233,2.012,2234,1.815,2235,1.331,2236,1.815,2237,1.949,2238,3.415,2239,3.415,2240,4.448,2241,2.548,2242,1.436,2243,2.012,2244,1.812,2245,1.581,2246,5.868,2247,1.581,2248,3.415,2249,1.436,2250,2.012,2251,1.812,2252,2.844,2253,2.437,2254,2.012,2255,1.812,2256,1.331,2257,2.012,2258,1.581,2259,2.012,2260,2.012,2261,2.012,2262,1.436,2263,1.679,2264,1.812,2265,1.812,2266,1.581,2267,2.012,2268,1.581,2269,0.884,2270,1.679,2271,1.502,2272,2.682,2273,3.415]],["description//tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/",[7,0.759,32,1.052,308,1.926,391,2.494,409,3.357,925,2.948]],["title//tracks/aws-certified-developer-associate/elasticbeanstalk/",[259,2.657,260,3.605]],["content//tracks/aws-certified-developer-associate/elasticbeanstalk/",[4,1.257,7,1.451,9,0.923,10,0.979,16,0.837,17,0.923,19,1.027,21,0.816,22,1.118,23,1.779,25,1.257,27,2.699,29,0.95,31,2.101,32,2.122,38,0.979,40,2.482,43,0.873,44,1.206,45,2.631,47,0.936,48,1.009,49,1.634,51,1.836,54,0.703,55,1.257,56,0.923,57,2.715,58,1.314,59,1.477,60,0.681,62,1.661,64,0.586,66,0.695,68,1.718,70,0.865,72,2.191,75,1.798,76,0.861,79,1.455,82,1.106,85,2.583,86,1.664,89,1.418,90,1.67,94,0.936,95,2.026,100,2.759,101,1.346,104,2.728,108,0.627,109,1.598,114,1.589,116,3.765,120,1.187,121,1.498,122,1.01,124,3.541,125,2.031,127,2.716,128,0.884,129,1.16,133,1.027,139,1.545,142,3.178,145,2.216,146,2.422,147,2.54,149,1.16,153,1.777,156,3.233,157,1.346,159,1.966,160,1.043,163,1.498,165,0.437,168,1.874,169,2.6,170,1.061,171,0.627,172,1.399,174,0.525,175,1.262,178,1.41,179,2.227,182,1.457,185,1.841,188,0.766,192,1.455,201,1.138,208,1.346,209,1.16,210,1.11,211,0.776,216,3.856,217,2.531,224,0.838,226,0.291,227,4.175,228,1.718,231,2.825,232,0.645,233,1.346,236,1.91,239,0.567,240,1.31,241,2.389,242,2.449,245,1.145,246,1.061,251,1.455,252,1.182,256,2.668,259,4.437,260,5.958,263,1.079,269,1.079,272,3.536,276,0.885,278,0.641,279,2.384,280,1.579,281,1.027,283,2.013,286,1.895,289,1.132,293,1.691,294,1.257,300,2.016,303,4.054,306,2.955,307,1.426,308,2.909,312,2.482,315,2.164,321,1.498,324,3.682,328,1.747,330,1.098,334,2.759,338,3.054,341,0.712,343,5.837,344,2.544,345,0.897,346,3.76,347,1.691,348,1.803,349,1.724,350,1.545,351,2.712,352,1.285,353,1.589,354,1.898,355,1.206,356,1.138,357,1.898,358,1.416,359,3.582,360,3.484,361,2.909,362,1.455,363,1.206,364,1.724,365,2.088,366,3.536,367,2.016,368,1.346,369,1.346,370,1.803,371,3.244,372,3.833,373,3.097,374,2.265,375,3.245,376,1.898,377,1.803,378,1.027,381,0.859,383,2.265,384,1.118,385,0.91,391,3.312,394,0.827,396,1.457,397,1.285,399,1.182,404,1.061,419,1.346,423,3.457,425,0.861,431,0.827,434,1.079,435,3.244,441,1.38,447,1.231,452,1.118,453,1.346,455,1.46,456,1.803,458,1.759,459,1.138,465,2.935,467,5.519,474,1.206,476,3.804,477,1.231,478,0.606,480,3.844,484,1.061,488,1.545,501,1.285,505,4.992,508,1.807,512,1.098,514,1.118,520,1.16,523,3.32,529,1.314,533,1.187,534,1.093,557,1.718,565,2.04,567,2.331,570,1.598,588,1.598,591,0.174,598,1.285,600,1.416,613,2.191,624,1.598,637,1.16,640,1.231,642,1.01,644,3.244,647,1.724,659,1.545,666,1.455,671,0.954,674,4.233,684,1.206,694,1.231,696,1.344,699,3.121,702,1.182,714,1.314,720,1.841,727,1.565,729,1.545,737,1.16,738,1.657,745,1.657,746,1.257,754,1.597,756,3.541,759,2.896,767,1.498,783,2.056,797,1.206,804,1.808,806,2.016,810,4.388,817,1.777,822,1.598,827,1.657,832,1.986,854,3.576,863,1.455,887,2.183,922,2.175,924,0.897,925,1.455,928,1.657,929,0.81,931,1.257,934,0.885,943,1.657,948,1.808,950,3.709,965,1.314,970,2.016,982,1.898,992,1.061,1005,1.231,1015,1.043,1017,1.986,1020,2.467,1024,0.897,1030,1.314,1036,2.839,1038,1.498,1039,2.77,1048,1.257,1049,1.027,1054,0.796,1062,1.257,1071,1.724,1078,0.827,1081,1.379,1082,1.803,1084,2.728,1086,1.947,1087,1.257,1112,1.231,1119,1.379,1122,1.898,1134,1.803,1136,1.285,1148,2.317,1151,0.687,1157,1.947,1160,1.182,1170,1.231,1178,2.088,1194,1.257,1203,0.776,1222,2.583,1223,1.545,1238,0.599,1241,1.724,1246,2.016,1247,2.175,1250,2.175,1279,1.589,1283,4.57,1284,1.803,1297,0.979,1324,0.95,1325,1.206,1326,2.728,1327,1.16,1332,1.498,1354,1.416,1437,3.478,1438,3.244,1462,0.827,1464,1.346,1489,1.718,1500,2.544,1522,2.839,1526,1.898,1527,1.803,1528,1.206,1549,1.898,1553,2.164,1558,5.277,1609,1.657,1612,1.314,1645,1.598,1659,2.016,1698,1.898,1699,2.839,1726,2.175,1727,1.285,1732,2.972,1733,1.898,1736,2.839,1746,2.016,1776,2.271,1795,1.803,1952,1.545,2076,1.91,2096,1.285,2143,2.839,2151,1.657,2181,1.657,2258,1.898,2268,1.898,2274,2.016,2275,2.016,2276,2.175,2277,2.416,2278,1.724,2279,2.175,2280,3.979,2281,3.979,2282,1.118,2283,2.416,2284,2.416,2285,2.175,2286,2.416,2287,2.416,2288,2.416,2289,3.582,2290,1.898,2291,2.416,2292,1.657,2293,3.478,2294,1.346,2295,2.416,2296,2.416,2297,2.416,2298,2.416,2299,2.416,2300,2.175,2301,2.416,2302,2.416,2303,2.416,2304,2.416,2305,2.416,2306,2.416,2307,2.416,2308,2.416,2309,2.416,2310,2.416,2311,2.416,2312,2.416,2313,2.416,2314,2.175,2315,2.016,2316,2.016,2317,2.416,2318,2.416,2319,2.416,2320,2.416,2321,2.016,2322,2.416,2323,2.416,2324,2.416,2325,1.346,2326,3.582,2327,1.724,2328,2.416,2329,2.175,2330,2.416,2331,3.979,2332,2.175,2333,1.898,2334,3.582,2335,2.416,2336,2.416,2337,1.803,2338,2.416]],["description//tracks/aws-certified-developer-associate/elasticbeanstalk/",[32,1.345,259,2.702,260,3.666]],["title//tracks/aws-certified-developer-associate/elasticache/",[104,4.934]],["content//tracks/aws-certified-developer-associate/elasticache/",[7,1.215,9,1.566,16,0.847,19,1.741,21,1.385,23,1.663,26,2.621,27,2.237,31,1.075,32,1.987,34,3.974,35,1.48,38,1.661,39,1.522,43,1.48,47,2.329,48,1.524,49,1.67,51,0.891,53,2.606,54,0.568,55,2.132,56,1.566,57,1.35,58,2.229,60,0.701,62,2.076,82,1.978,83,1.714,85,2.087,86,1.714,88,3.431,90,1.979,91,2.831,92,5.717,94,1.588,104,6.808,116,3.239,121,2.263,125,1.651,128,2.332,132,1.77,142,2.836,144,2.401,147,1.77,157,1.088,165,0.741,169,1.441,171,1.063,175,2.256,178,2.178,182,2.201,188,1.299,195,4.412,206,1.896,210,1.575,214,2.232,223,1.152,225,2.401,226,0.493,232,0.664,233,2.282,239,0.962,240,2.748,241,1.931,242,3.285,246,1.8,249,1.967,256,2.78,259,1.77,261,3.963,262,4.41,264,4.285,271,3.974,272,5.13,274,2.541,276,2.201,278,2.08,280,2.341,283,2.057,286,1.474,289,1.166,293,2.554,303,2.885,308,2.364,310,2.229,313,2.621,315,2.229,316,3.963,321,2.541,322,2.621,323,4.289,324,1.83,325,3.219,326,4.485,327,1.612,328,1.8,329,3.726,330,3.234,331,3.42,332,2.541,333,2.71,334,3.269,335,4.289,336,3.42,337,2.71,338,2.468,339,2.541,340,1.931,341,1.771,342,3.219,343,5.015,344,3.843,345,1.522,346,2.621,347,1.741,348,3.058,349,2.925,350,2.621,351,1.126,352,2.179,353,1.636,354,3.219,355,2.045,356,1.931,357,3.219,358,2.401,368,4.857,372,2.976,382,1.18,383,3.178,384,1.896,391,2.087,401,1.8,415,2.541,420,3.178,425,1.46,434,1.83,437,2.925,446,3.058,452,1.896,465,3.551,473,1.661,482,2.401,493,3.058,500,3.347,516,4.121,521,3.974,527,3.269,534,1.651,554,2.621,576,1.46,591,0.256,597,1.543,602,2.179,619,3.219,649,2.401,655,2.171,660,4.289,667,4.485,671,2.092,690,2.229,709,3.058,714,3.269,732,2.045,761,3.42,790,3.689,795,1.931,811,0.53,822,2.71,824,3.058,829,1.126,854,1.83,861,1.237,870,1.18,906,8.491,942,1.385,1032,2.925,1054,1.979,1071,2.925,1086,2.005,1090,2.087,1103,3.42,1109,2.925,1158,2.436,1190,2.364,1248,2.925,1335,0.799,1367,3.689,1392,1.83,1405,2.468,1419,3.689,1520,2.81,1542,3.42,1567,2.81,1645,2.71,1650,2.925,1665,2.68,1714,2.81,1716,4.121,1722,1.896,1779,3.689,1787,3.219,1873,5.41,1878,2.925,1899,3.058,2065,2.621,2119,4.121,2146,3.058,2173,3.42,2204,5.015,2216,3.689,2339,9.013,2340,3.689,2341,3.689,2342,7.838,2343,6.01,2344,4.098,2345,4.098,2346,3.42,2347,3.42,2348,4.098,2349,4.098,2350,3.42,2351,4.098,2352,5.939,2353,3.42,2354,4.098,2355,4.098,2356,2.541,2357,3.219,2358,1.566,2359,3.689,2360,3.689,2361,8.722,2362,2.71,2363,3.689,2364,4.098,2365,7.116,2366,3.219,2367,4.098,2368,4.098,2369,4.098,2370,4.098]],["description//tracks/aws-certified-developer-associate/elasticache/",[23,1.374,104,4.728]],["title//tracks/aws-certified-developer-associate/eks/",[31,1.41,259,2.321,903,3.553]],["content//tracks/aws-certified-developer-associate/eks/",[16,0.8,17,3.353,23,1.851,27,2.251,31,2.526,32,1.886,35,2.198,53,2.229,60,1.353,82,1.691,100,3.31,101,3.39,116,3.259,125,2.411,130,3.892,135,3.475,156,2.084,178,1.691,184,2.978,214,2.26,239,1.428,240,2.004,242,2.292,259,3.79,276,2.229,278,2.097,280,2.494,281,2.586,283,2.705,284,4.565,294,3.166,302,4.759,303,2.467,324,2.719,333,4.025,352,4.202,378,2.586,381,1.03,383,2.719,392,4.781,396,2.229,404,2.673,425,2.169,440,4.542,441,2.111,452,2.816,472,3.773,477,4.47,478,2.581,482,5.142,520,2.921,545,4.173,553,4.542,591,0.256,635,3.566,636,4.173,642,3.305,671,1.46,707,3.39,719,3.53,791,3.39,797,3.038,861,1.253,865,3.1,870,1.752,903,6.99,904,6.017,926,4.025,942,2.057,951,4.542,957,3.566,992,3.47,1054,2.602,1055,2.766,1056,3.166,1058,3.475,1075,4.344,1081,3.475,1086,2.978,1283,5.495,1317,3.475,1388,4.025,1392,2.719,1524,6.365,1539,3.566,1567,4.173,1572,5.08,1669,4.781,2001,4.781,2122,5.08,2123,3.892,2124,4.781,2125,5.48,2126,5.48,2127,5.48,2128,5.48,2130,4.542,2195,5.08,2371,6.087,2372,6.087,2373,6.087,2374,6.087,2375,6.087,2376,5.48,2377,5.48,2378,5.08,2379,5.08,2380,5.48,2381,5.48,2382,4.781,2383,5.48]],["description//tracks/aws-certified-developer-associate/eks/",[23,1.141,31,1.502,259,2.473,903,3.786]],["title//tracks/aws-certified-developer-associate/ecs/",[31,1.41,259,2.321,478,1.348]],["content//tracks/aws-certified-developer-associate/ecs/",[7,0.962,9,1.637,13,3.638,16,0.821,17,2.789,19,1.821,23,1.93,27,2.053,31,2.648,32,1.964,35,1.548,49,1.191,51,0.931,53,1.569,54,1.011,56,2.789,60,1.25,62,0.962,64,1.04,65,1.431,75,0.962,82,1.191,97,2.511,100,3.971,101,2.387,113,2.139,116,3.29,120,1.278,125,2.434,128,1.379,137,0.701,141,3.198,143,2.834,147,2.682,156,3.316,169,3.114,175,2.315,178,1.191,179,1.882,184,3.572,186,2.727,195,2.657,206,1.983,210,0.809,211,2.344,214,1.591,216,2.139,229,1.764,239,1.006,240,1.411,241,2.019,247,1.205,259,3.826,263,1.914,272,3.971,273,2.741,276,1.569,278,1.938,280,2.281,281,1.821,284,3.798,286,1.051,294,2.229,298,2.447,299,4.633,300,5.182,301,3.366,302,5.908,303,1.737,304,2.741,305,2.511,306,1.948,307,1.205,308,2.872,309,1.821,310,2.331,311,2.097,312,2.097,313,4.669,314,2.872,315,2.331,316,5.089,317,5.489,318,4.934,319,4.105,320,2.872,324,1.914,333,2.834,352,3.301,361,1.686,371,2.741,378,1.821,381,1.051,383,3.261,391,3.162,392,4.877,396,3.593,404,1.882,425,1.527,429,0.687,437,4.431,440,3.198,441,1.487,450,2.601,452,1.983,471,4.828,473,1.737,476,3.377,477,3.719,478,2.652,482,2.511,493,3.198,505,3.058,520,2.057,524,1.914,534,2.199,535,2.139,553,3.198,591,0.257,635,2.511,636,2.939,642,3.053,647,3.058,651,3.576,652,4.256,659,2.741,671,1.028,684,2.139,701,5.826,702,2.097,707,2.387,714,3.377,719,2.773,735,3.576,754,2.174,762,2.279,783,1.737,791,2.387,797,2.139,800,2.939,844,3.366,861,0.882,865,2.183,870,1.234,901,2.511,902,3.366,903,6.188,904,5.826,926,2.183,938,3.198,942,1.448,951,3.198,957,2.511,961,2.741,992,1.882,997,2.657,1005,2.183,1010,1.614,1011,2.741,1033,2.229,1041,3.058,1043,4.431,1054,2.045,1055,1.948,1056,2.229,1058,2.447,1075,3.058,1081,2.447,1086,2.097,1090,2.183,1105,3.198,1157,2.097,1238,1.063,1278,2.447,1283,4.57,1286,2.097,1317,2.447,1332,3.849,1388,2.834,1392,1.914,1423,2.387,1456,2.331,1464,2.387,1524,5.618,1539,2.511,1567,2.939,1627,3.858,1648,2.229,1660,1.948,1669,3.366,1700,1.737,1727,2.279,1782,3.198,2065,2.741,2120,3.576,2122,3.576,2195,3.576,2256,2.834,2376,3.858,2377,3.858,2378,3.576,2379,3.576,2380,3.858,2381,3.858,2382,3.366,2383,3.858,2384,4.286,2385,4.286,2386,3.858,2387,4.286,2388,4.286,2389,5.182,2390,4.286,2391,3.576,2392,3.858,2393,4.286,2394,4.286,2395,4.286,2396,4.286,2397,4.286]],["description//tracks/aws-certified-developer-associate/ecs/",[125,1.345,276,1.793,284,2.547,478,1.228,707,2.726,1524,3.237]],["title//tracks/aws-certified-developer-associate/ecr/",[259,2.321,478,1.348,901,3.149]],["content//tracks/aws-certified-developer-associate/ecr/",[7,1.213,16,0.75,23,1.735,27,2.007,31,2.423,32,2.112,76,2.135,82,1.665,94,3.032,113,2.99,116,3.234,124,3.608,134,5.135,140,4.054,142,1.948,147,2.588,160,2.588,175,1.9,184,3.827,212,4.849,217,2.99,221,2.051,238,3.052,256,1.766,259,4.137,280,2.478,302,3.608,308,2.357,328,2.631,361,3.992,391,3.052,395,3.186,396,2.194,397,3.186,425,2.135,448,3.962,460,3.754,467,4.471,471,5.172,477,5.003,478,2.616,495,1.486,533,2.598,534,2.149,580,2.631,591,0.246,602,3.186,611,4.612,640,3.052,641,2.322,648,5,653,3.259,656,3.259,671,1.437,707,3.337,754,1.627,765,4.276,806,5,809,2.631,811,0.774,861,1.233,870,1.725,901,5.945,902,7.97,903,3.962,904,4.108,942,2.024,948,2.723,992,2.631,1017,2.99,1054,2.576,1055,2.723,1056,3.117,1058,3.42,1090,3.052,1112,3.052,1183,3.51,1193,2.467,1358,4.849,1398,3.714,1425,4.471,1597,4.108,2063,6.333,2123,3.832,2124,4.706,2398,4.108,2399,5.394,2400,7.042,2401,5.394,2402,5.992,2403,5.992,2404,5.394,2405,5.992,2406,5.394,2407,5.992,2408,6.589,2409,5,2410,5.992,2411,5.992,2412,8.709,2413,5.363,2414,5.992,2415,5.992,2416,4.276,2417,5.992,2418,5.394]],["description//tracks/aws-certified-developer-associate/ecr/",[125,1.345,276,1.793,284,2.547,478,1.228,707,2.726,1524,3.237]],["title//tracks/aws-certified-developer-associate/ec2/",[169,2.529]],["content//tracks/aws-certified-developer-associate/ec2/",[7,1.26,8,2.274,9,1.054,10,1.797,11,0.985,16,0.772,17,2.122,19,1.172,21,0.932,23,2.022,27,1.909,29,1.085,31,1.163,32,1.927,37,1.98,43,0.997,44,2.212,45,1.825,48,0.7,49,1.936,51,1.207,53,1.623,54,0.965,55,1.435,56,1.054,57,2.295,59,1.025,60,0.759,62,1.565,64,1.348,66,1.276,68,3.01,69,1.3,70,0.6,74,1.969,75,0.62,79,1.662,80,2.669,82,2.068,85,3.24,87,2.718,88,3.172,89,0.983,90,2.45,94,1.07,95,4.898,96,1.3,108,0.716,109,1.825,114,2.54,116,1.025,120,1.322,122,2.66,125,1.748,127,0.97,128,1.413,135,2.53,137,0.426,138,1.969,140,1.947,142,2.069,144,1.617,146,1.137,147,1.914,149,3.754,154,0.854,156,3.636,157,0.732,163,1.669,165,0.499,167,3.965,168,2.088,169,3.612,170,2.44,171,1.808,172,3.027,173,2.931,174,0.963,175,2.73,176,1.662,177,2.059,178,1.544,179,1.212,180,4.795,181,1.662,182,1.01,183,2.088,184,3.113,185,2.57,186,1.212,187,2.4,188,0.875,189,1.35,190,2.303,191,1.711,192,1.662,193,2.303,203,1.232,205,1.825,208,2.469,210,1.049,211,2.237,212,1.711,213,2.617,218,2.252,221,0.945,223,0.776,224,1.538,232,0.447,234,1.435,236,1.324,239,1.04,240,0.909,241,1.3,242,2.092,246,1.212,247,1.562,252,1.35,255,1.405,256,2.593,259,2.4,261,3.881,262,4.385,270,1.825,271,4.92,272,1.501,275,1.662,276,2.33,278,0.732,279,1.119,280,1.998,286,0.677,293,1.172,294,1.435,295,1.07,303,2.252,306,2.891,307,0.776,308,1.085,313,2.835,315,1.501,316,3.094,317,4.362,318,2.469,319,1.825,320,3.881,324,1.232,328,1.947,330,1.254,333,1.825,335,1.969,338,3.346,339,4.32,346,6.241,350,1.765,351,1.526,355,1.377,356,1.3,358,4.083,361,2.927,369,1.474,370,2.059,371,6.098,372,1.154,375,3.175,380,1.765,391,1.405,399,2.169,401,2.44,404,3.268,407,0.741,422,5.553,423,4.908,425,0.983,427,2.83,429,0.442,431,2.872,435,3.553,444,1.435,448,4.92,453,3.094,454,4.068,455,0.794,462,0.749,473,1.119,476,4.422,493,4.747,494,2.167,495,1.099,513,1.405,524,1.98,527,3.022,529,3.022,533,1.322,534,2.594,536,1.892,539,1.765,554,1.765,580,1.212,591,0.203,596,3.956,605,1.324,611,1.254,613,2.748,624,4.207,628,2.748,634,4.997,642,1.154,650,2.167,653,1.501,684,2.773,696,0.932,709,3.308,729,1.765,734,1.087,755,1.3,767,2.748,776,1.765,783,1.119,785,1.537,794,3.163,795,2.617,796,1.575,797,2.773,798,2.484,799,2.484,804,2.014,814,1.537,817,1.232,822,1.825,852,2.303,861,1.144,864,1.575,870,0.794,887,1.646,891,2.931,948,1.254,950,3.053,975,1.501,986,1.537,1005,2.258,1008,2.303,1013,2.059,1015,1.914,1030,1.501,1033,1.435,1037,3.172,1038,1.039,1039,1.3,1043,3.163,1054,2.45,1070,2.718,1074,2.303,1075,3.163,1090,1.405,1091,2.904,1115,1.711,1147,1.212,1148,2.483,1157,1.35,1160,1.35,1166,2.014,1177,1.377,1178,1.136,1184,1.575,1185,1.537,1197,3.674,1204,1.662,1223,1.765,1230,1.232,1236,1.662,1239,1.254,1283,1.575,1286,2.169,1297,1.119,1316,1.192,1331,2.167,1332,4.613,1335,0.538,1353,1.377,1358,1.711,1360,2.481,1392,1.232,1405,1.662,1416,5.815,1425,3.308,1447,1.3,1466,1.825,1565,5.31,1566,4.997,1596,2.167,1597,1.892,1598,2.484,1617,3.991,1650,1.969,1691,1.467,1722,1.276,1728,2.167,1754,2.167,1776,1.575,1780,2.303,1782,3.308,1933,2.303,2050,2.835,2063,1.825,2070,2.484,2076,2.128,2095,2.167,2160,2.303,2169,2.484,2207,1.825,2214,1.765,2292,1.892,2341,2.484,2352,5.309,2389,2.303,2391,2.303,2408,1.969,2419,1.467,2420,2.759,2421,4.433,2422,2.167,2423,2.759,2424,2.759,2425,2.484,2426,4.433,2427,2.167,2428,7.751,2429,2.759,2430,2.759,2431,1.765,2432,2.759,2433,4.433,2434,5.556,2435,2.759,2436,2.303,2437,2.759,2438,1.711,2439,2.484,2440,2.759,2441,2.759,2442,2.53,2443,3.163,2444,2.597,2445,4.637,2446,3.991,2447,2.484,2448,2.759,2449,3.308,2450,3.991,2451,3.991,2452,3.674,2453,2.303,2454,5.556,2455,2.759,2456,6.362,2457,9.445,2458,6.362,2459,6.362,2460,2.484,2461,6.362,2462,2.484,2463,2.484,2464,2.484,2465,5.556,2466,1.435,2467,1.969,2468,2.484,2469,2.484,2470,2.759,2471,2.759,2472,2.759,2473,0.64,2474,2.484,2475,2.759,2476,4.433,2477,5.556,2478,1.765,2479,2.759]],["description//tracks/aws-certified-developer-associate/ec2/",[23,1.052,65,1.285,169,1.855,870,1.519]],["title//tracks/aws-certified-developer-associate/dynamodb/_index",[117,3.591]],["content//tracks/aws-certified-developer-associate/dynamodb/_index",[7,1.416,9,1.293,13,1.983,14,1.983,16,0.84,17,1.988,19,1.438,21,2.597,22,4.364,23,2.01,24,3.716,27,2.238,29,1.331,31,2.129,32,1.998,37,2.325,38,3.115,40,2.546,43,1.222,44,1.689,47,2.458,48,1.32,49,0.94,53,3.404,54,0.721,56,1.293,57,1.714,60,1.315,62,0.76,64,1.262,67,2.525,76,1.206,81,2.767,82,2.255,83,1.415,86,2.176,88,1.932,90,1.714,91,2.452,92,1.885,96,4.667,106,2.038,108,1.35,117,5.142,118,4.889,120,1.892,127,1.83,128,2.184,132,2.248,135,3.62,137,0.779,142,1.1,157,0.898,171,0.878,172,2.503,174,0.735,175,1.65,178,1.446,183,1.594,184,1.656,188,1.65,201,1.594,204,3.103,206,1.565,210,1.344,211,2.467,218,2.571,228,2.739,229,1.393,231,1.293,232,1.027,236,1.624,237,1.932,240,1.114,241,1.594,242,1.274,246,1.486,247,1.783,248,1.932,249,3.044,250,2.415,251,2.038,252,1.656,253,4.553,254,2.32,255,2.651,256,2.638,257,5.484,258,4.193,259,2.739,260,1.983,261,1.885,262,4.269,263,1.511,264,2.038,265,2.525,266,2.525,267,3.884,268,3.227,269,1.511,270,4.193,271,2.238,272,1.841,273,2.164,274,2.098,275,3.134,276,1.239,277,2.038,278,1.889,279,2.11,280,0.908,281,1.438,282,1.932,283,1.158,284,2.707,285,2.767,286,0.83,287,2.212,288,2.415,289,0.963,290,2.038,291,2.831,292,1.983,293,2.212,294,1.76,295,1.312,307,2.281,309,1.438,317,2.32,319,2.238,340,1.594,344,3.328,368,1.885,369,0.898,372,2.176,378,2.212,380,3.328,381,1.301,383,2.325,384,1.565,385,1.274,407,1.397,414,1.06,415,6.183,420,3.624,422,2.525,423,3.785,425,1.854,429,0.542,431,3.539,432,4.088,433,2.062,434,3.997,435,4.055,436,3.441,441,1.174,442,4.98,446,2.525,447,2.651,452,2.408,455,0.974,458,1.174,465,2.597,478,0.849,487,1.331,518,2.824,521,2.238,527,4.18,528,0.768,529,1.841,534,1.43,541,1.799,557,1.462,564,2.32,580,1.486,584,3.569,591,0.251,598,2.767,602,1.799,611,1.538,612,2.164,628,2.098,629,1.983,649,1.983,653,2.831,663,2.658,671,0.812,684,1.689,696,1.143,698,2.498,714,1.841,728,2.651,737,2.498,749,2.707,754,1.413,761,5.292,762,1.799,764,2.658,776,3.328,780,2.098,791,1.885,811,0.437,823,1.624,839,2.164,864,1.932,865,1.724,870,0.974,926,1.724,942,1.759,957,1.983,982,2.658,1004,2.767,1005,1.724,1010,2.388,1024,1.933,1033,2.707,1038,1.274,1039,1.594,1054,1.714,1077,2.658,1089,1.624,1101,2.525,1130,2.32,1148,1.206,1204,5.254,1241,3.714,1258,1.689,1279,1.351,1326,2.32,1360,1.511,1411,6.511,1449,1.724,1462,1.158,1464,2.898,1481,2.525,1517,1.724,1520,5.564,1521,1.983,1566,2.658,1567,2.32,1569,2.824,1591,3.047,1594,1.885,1601,2.038,1722,1.565,1724,1.885,1747,3.047,1782,4.732,1820,3.047,1850,5.709,1899,3.884,1925,2.164,1927,1.312,2003,3.047,2095,4.088,2119,2.32,2173,2.824,2193,3.047,2220,5.709,2244,3.047,2269,1.486,2272,2.658,2290,2.658,2358,3.229,2409,5.292,2439,3.047,2466,1.76,2480,3.384,2481,2.525,2482,3.384,2483,2.658,2484,3.384,2485,3.384,2486,1.511,2487,5.205,2488,3.384,2489,6.342,2490,5.205,2491,3.047,2492,3.384,2493,3.047,2494,3.384,2495,2.525,2496,3.047,2497,3.384,2498,3.047,2499,5.205,2500,5.205,2501,3.384,2502,3.384,2503,5.205,2504,3.384]],["description//tracks/aws-certified-developer-associate/dynamodb/_index",[7,0.818,23,1.052,117,3.587,118,2.533]],["title//tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/",[117,3.071,1089,2.953]],["content//tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/",[1,1.391,3,2.206,5,1.399,7,1.591,10,3.287,16,0.577,21,1.611,22,1.399,23,1.453,27,1.223,28,1.573,30,0.936,31,0.794,32,1.025,33,2.289,35,1.722,41,0.983,43,1.092,44,1.509,51,1.879,53,1.108,54,1.073,60,1.01,64,2.19,65,0.853,68,1.306,76,2.103,81,4.597,83,1.994,86,2.469,89,2.103,108,2.01,117,4.706,118,5.132,120,0.902,125,1.31,127,1.676,128,1.059,131,2.722,133,2.026,137,0.807,140,3.69,142,0.983,146,2.08,148,2.257,153,2.637,157,1.567,159,1.848,160,2.06,165,1.465,168,2.781,172,1.063,174,0.657,178,1.325,185,1.399,191,2.956,201,1.425,210,1.114,223,0.85,230,2.074,231,3.88,232,0.49,238,1.541,239,1.572,240,0.996,245,2.099,247,0.85,256,0.892,262,1.48,278,1.778,280,0.812,285,1.608,286,1.448,306,3.685,307,0.85,308,2.636,309,2.026,323,2.158,330,1.375,341,0.892,347,2.026,362,1.821,369,2.349,382,2.099,384,1.399,390,2.56,393,2.132,400,1.963,412,1.876,415,5.597,420,2.993,423,4.8,431,3.413,432,7.487,433,3.275,434,2.993,435,6.376,436,5.122,441,1.049,442,5.798,445,2.023,450,1.699,452,1.399,461,2.206,473,1.226,484,1.328,495,1.183,508,1.078,520,1.452,521,2,527,4.91,528,0.687,533,2.918,534,2.432,541,1.608,563,1.208,569,2.074,570,2,576,1.078,584,3.27,591,0.191,631,2.781,633,1.684,641,2.597,655,1.092,656,2.594,657,2.376,698,3.216,719,1.351,727,2.322,737,1.452,740,1.541,750,1.509,754,0.821,759,1.727,776,3.775,777,1.19,781,1.772,783,1.933,804,4.103,811,0.763,814,2.656,831,1.541,869,1.934,870,0.871,887,1.123,888,2.289,926,1.541,934,3.242,940,2,948,1.375,986,4.516,991,2,1003,1.48,1005,4.404,1012,1.049,1038,1.139,1049,2.509,1112,3.007,1116,2.247,1124,1.509,1144,5.51,1145,1.48,1146,1.208,1147,4.477,1148,3.707,1150,4.285,1151,1.357,1163,4.03,1164,4.231,1166,1.375,1168,1.895,1178,1.245,1183,3.459,1185,3.288,1204,5.207,1258,2.946,1259,1.772,1292,2.158,1296,4.803,1297,1.226,1308,2.723,1315,1.645,1325,2.38,1366,2.158,1464,3.288,1475,3.153,1476,1.727,1480,2.524,1482,1.509,1489,1.306,1520,3.27,1553,1.645,1567,2.074,1642,2.722,1673,2.781,1675,1.541,1697,2.872,1727,1.608,1869,1.265,1875,2.158,1916,2.723,2053,2.723,2069,2.376,2144,2.723,2182,2.723,2217,2,2234,1.608,2236,1.608,2350,3.98,2358,3.303,2409,2.524,2505,4.769,2506,5.315,2507,3.025,2508,4.769,2509,3.98,2510,2.376,2511,3.025,2512,4.769,2513,3.025,2514,4.293,2515,2.524,2516,3.025,2517,8.403,2518,2.723,2519,3.025,2520,2.723,2521,2.723,2522,3.025,2523,3.025,2524,2.723,2525,2.376]],["description//tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/",[7,0.818,23,1.052,117,3.587,118,2.533]],["title//tracks/aws-certified-developer-associate/cognito/",[199,4.461]],["content//tracks/aws-certified-developer-associate/cognito/",[7,1.226,9,1.893,16,0.773,17,1.893,19,2.106,21,2.326,22,4.495,23,2.029,24,2.904,26,4.402,27,2.303,31,1.806,32,1.998,38,2.009,39,1.84,47,3.065,48,2.357,49,1.913,51,1.077,53,1.815,55,2.578,57,1.632,60,0.848,63,3.277,66,1.426,70,1.077,72,2.14,82,2.912,89,2.452,90,2.267,116,1.84,117,2.473,121,1.866,130,3.169,137,0.476,142,1.611,163,2.592,165,0.896,174,2.019,178,2.582,179,3.023,180,4.759,188,1.571,189,3.368,195,3.072,196,3.398,197,6.302,198,5.406,199,6.313,200,4.136,201,3.726,202,6.711,203,2.214,204,2.425,205,3.277,206,2.293,207,1.571,208,2.76,209,3.796,210,1.299,211,1.591,212,4.903,213,2.335,214,1.84,215,3.66,216,4.264,217,3.435,218,2.79,219,2.76,221,1.697,222,5.337,223,2.613,224,3.223,225,4.033,226,0.829,227,2.106,228,3.69,229,2.04,230,3.398,231,1.893,232,0.803,233,2.76,234,2.578,235,5.125,236,4.101,237,2.829,238,2.524,239,1.615,240,3.25,241,3.726,242,3.381,243,3.929,244,3.833,245,1.426,274,3.072,276,3.288,280,2.294,289,1.958,320,2.293,341,1.461,358,2.904,369,1.315,373,1.719,383,2.214,385,1.866,425,1.766,431,2.356,455,1.426,500,2.76,510,5.596,533,1.478,534,1.891,540,3.698,541,3.66,544,6.212,545,3.398,554,5.057,591,0.162,635,2.904,636,3.398,671,1.189,690,2.695,749,2.578,754,1.346,773,4.267,809,3.752,811,0.89,854,2.214,861,1.02,870,1.426,931,2.578,942,1.675,957,2.904,997,3.072,1054,2.267,1055,2.252,1056,4.445,1058,2.829,1070,2.425,1105,3.698,1178,2.04,1260,3.072,1269,3.698,1283,2.829,1594,3.833,1654,3.929,1776,2.829,1787,3.893,1826,4.136,1857,4.462,1930,4.462,2316,4.136,2526,7.909,2527,4.956,2528,4.956,2529,4.462,2530,4.956,2531,4.956,2532,4.956,2533,4.956,2534,4.956,2535,4.462,2536,4.956]],["description//tracks/aws-certified-developer-associate/cognito/",[23,1.374,199,4.275]],["title//tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar",[21,1.449,27,1.1,32,0.922,116,1.592,914,2.835]],["content//tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar",[1,1.132,3,3.833,4,0.917,5,0.815,7,1.134,8,0.931,10,2.967,11,0.391,16,0.737,21,2.38,23,0.607,25,0.917,27,2.436,29,0.693,30,0.943,31,1.557,32,2.19,37,0.787,39,1.781,40,0.862,41,0.991,42,1.361,43,1.454,44,2.01,47,1.181,48,0.773,51,1.043,54,0.822,57,2.216,58,1.658,59,2.363,60,1.089,62,1.077,64,1.439,65,1.203,66,0.507,68,1.316,71,0.545,72,0.761,75,1.992,76,1.086,81,1.62,82,2.303,83,0.737,86,2.006,90,1.785,91,2.26,92,1.697,94,2.101,108,1.539,110,2.672,113,0.88,114,1.608,115,0.749,116,3.707,118,1.463,120,0.526,122,1.275,125,2.01,127,1.071,132,1.739,133,1.295,134,4.465,137,0.521,139,1.127,140,2.605,142,1.309,143,3.923,145,1.697,146,1.231,147,2.341,149,0.846,153,2.842,156,3.068,157,2.459,159,0.683,160,1.739,163,1.148,165,1.072,168,4.825,169,2.913,170,1.768,171,0.457,174,0.875,175,1.277,178,0.847,179,1.338,180,4.328,182,0.645,183,0.83,184,0.862,185,2.944,188,2.234,189,2.347,192,4.052,201,1.897,203,1.799,204,0.862,208,1.697,210,1.201,211,0.979,212,3.678,216,3.515,218,0.714,219,2.243,221,1.043,222,2.444,223,1.668,224,0.611,227,1.711,228,2.906,231,2.691,232,0.494,233,1.697,237,1.006,238,0.898,239,1.653,240,2.216,242,1.148,245,1.56,247,1.349,259,0.761,260,1.033,263,0.787,273,1.127,276,0.645,280,1.708,281,1.711,286,0.432,295,1.86,298,1.006,301,1.384,303,2.579,306,3.326,307,1.892,308,1.199,312,1.491,315,0.959,320,3.683,327,0.693,328,2.794,332,1.89,334,2.609,341,0.519,347,2.303,351,2.314,356,0.83,360,0.83,362,1.061,363,2.705,365,1.658,366,0.959,368,0.981,369,1.869,372,3.25,373,1.057,381,0.918,382,1.159,383,0.787,384,0.815,390,2.071,393,1.733,398,0.959,399,2.347,400,1.658,412,1.584,413,1.361,431,1.043,444,1.585,445,1.216,450,1.086,459,1.436,460,1.463,473,1.236,474,0.88,475,1.258,478,0.764,480,1.584,486,1.62,488,4.97,489,1.127,495,1.471,498,1.127,509,1.41,512,1.385,515,1.384,528,0.4,533,2.586,534,0.484,537,0.787,539,1.127,563,1.916,565,1.397,576,0.628,591,0.213,600,1.033,610,1.315,611,0.801,613,0.761,629,2.359,641,1.561,642,2.267,649,2.359,658,1.258,659,1.127,666,2.889,670,1.093,671,0.731,673,0.917,699,0.846,702,1.97,714,0.959,719,0.787,727,1.887,728,0.898,732,2.01,733,3.923,734,0.988,736,0.917,737,2.601,743,1.258,746,0.917,750,0.88,754,0.479,758,2.497,759,1.74,765,1.258,767,1.093,770,1.006,774,1.208,777,0.693,783,0.714,785,0.981,789,2.394,794,2.175,795,1.436,796,1.006,797,2.01,804,2.463,809,3.093,810,3.005,811,0.91,814,2.672,816,1.093,820,0.774,829,1.106,831,0.898,854,3.146,855,1.127,856,1.258,859,1.127,860,2.3,861,0.363,862,1.061,864,1.74,868,1.165,872,1.62,873,2.164,887,0.654,889,3.094,912,3.573,914,6.28,920,1.165,924,2.807,929,0.359,932,1.315,934,3.282,940,2.663,948,4.032,950,1.463,951,1.315,952,1.471,984,1.127,986,0.981,990,0.255,992,0.774,1000,1.061,1004,2.141,1005,2.051,1012,1.397,1017,2.394,1020,1.093,1024,1.132,1038,2.041,1039,1.436,1049,2.704,1055,0.801,1062,0.917,1063,5.546,1078,0.603,1079,3.625,1088,1.258,1090,0.898,1111,1.384,1116,0.83,1119,1.74,1124,1.521,1139,2.744,1144,5.206,1145,2.652,1146,1.608,1147,3.806,1148,3.584,1150,1.127,1151,1.146,1152,3.163,1157,1.97,1158,0.714,1160,0.862,1163,2.095,1164,0.862,1166,0.801,1167,4.019,1168,1.905,1169,0.83,1170,2.76,1173,2.961,1177,3.772,1178,2.442,1179,2.889,1181,0.981,1182,1.127,1183,1.033,1184,1.006,1185,2.243,1186,2.663,1187,1.033,1188,1.258,1189,3.716,1190,0.693,1191,1.258,1192,1.093,1193,0.726,1194,0.917,1195,2.811,1196,2.175,1197,3.172,1198,1.384,1199,1.384,1200,1.471,1222,2.444,1229,1.315,1230,1.361,1236,1.061,1239,0.801,1244,1.208,1246,1.471,1258,2.01,1259,1.786,1260,1.093,1261,1.315,1279,2.164,1285,1.127,1297,1.236,1315,1.658,1317,1.74,1327,0.846,1328,1.552,1335,0.594,1343,0.704,1379,1.165,1398,1.093,1405,1.061,1417,1.061,1421,1.74,1424,1.006,1436,1.165,1438,1.127,1462,1.379,1464,1.697,1471,1.384,1475,2.015,1476,1.74,1477,1.093,1479,0.898,1482,1.521,1489,0.761,1491,2.663,1500,1.949,1507,1.258,1513,5.533,1514,0.664,1515,0.937,1517,1.552,1558,3.868,1597,2.09,1603,1.471,1612,1.658,1614,2.663,1622,1.471,1635,1.127,1636,1.587,1658,1.587,1665,1.517,1673,1.436,1675,1.552,1682,1.315,1696,1.384,1699,2.175,1701,1.208,1709,1.315,1711,1.127,1715,2.874,1716,3.29,1724,0.981,1727,1.62,1732,3.175,1869,1.275,1876,1.258,1878,1.258,1880,4.427,1904,1.471,1907,2.425,1937,1.258,1950,1.033,1959,1.587,2069,3.768,2080,5.533,2096,1.62,2113,3.172,2116,1.471,2123,1.949,2146,1.315,2213,2.544,2234,1.62,2236,0.937,2237,1.006,2242,1.258,2294,0.981,2333,2.394,2362,1.165,2398,1.208,2416,1.258,2422,1.384,2438,5.556,2449,1.315,2452,2.015,2453,1.471,2464,1.587,2466,3.086,2509,1.471,2537,1.587,2538,1.762,2539,1.384,2540,1.762,2541,1.762,2542,1.165,2543,3.048,2544,1.762,2545,1.762,2546,3.048,2547,1.762,2548,1.471,2549,1.762,2550,1.587,2551,3.424,2552,1.762,2553,4.242,2554,1.762,2555,2.744,2556,2.744,2557,3.807,2558,2.874,2559,2.544,2560,1.384,2561,1.762,2562,1.762,2563,1.762,2564,1.587,2565,1.762,2566,2.744,2567,1.587,2568,1.471,2569,3.625,2570,4.027,2571,1.315,2572,1.587,2573,1.471,2574,1.658,2575,0.917,2576,1.033,2577,1.762,2578,1.061,2579,3.048,2580,1.471,2581,3.58,2582,4.234,2583,1.762,2584,1.762,2585,1.762,2586,4.027,2587,3.048,2588,1.762,2589,1.061,2590,3.048,2591,3.048,2592,1.762,2593,3.048,2594,4.027,2595,1.061,2596,1.061,2597,3.048,2598,1.165,2599,3.361,2600,1.165,2601,1.762,2602,1.587,2603,1.762,2604,1.127,2605,1.762,2606,1.762,2607,1.762,2608,0.704,2609,1.315,2610,2.744,2611,1.762,2612,1.762,2613,1.587,2614,1.762,2615,5.42,2616,1.762,2617,5.933,2618,6.363,2619,1.762,2620,1.762,2621,1.762,2622,3.048,2623,1.762,2624,1.762,2625,1.762,2626,1.093,2627,1.762]],["description//tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar",[21,1.784,27,1.354,32,1.135,116,1.96,914,3.49]],["title//tracks/aws-certified-developer-associate/codestar/_index",[914,4.758]],["content//tracks/aws-certified-developer-associate/codestar/_index",[7,1.088,16,0.605,21,3.395,23,1.399,27,2.405,28,3.651,32,2.283,37,3.135,57,2.312,60,1.201,75,1.942,82,2.404,116,3.481,125,1.928,156,2.403,167,5.009,168,4.416,169,2.467,175,2.226,178,1.951,188,2.226,208,3.909,218,3.8,243,4.937,244,3.909,280,2.516,283,2.961,284,3.651,312,3.434,315,3.818,353,2.803,381,1.188,383,3.135,385,2.643,413,3.135,423,3.732,425,2.501,453,4.817,455,2.02,524,3.135,541,3.732,578,3.503,591,0.165,656,4.704,861,1.445,870,2.02,914,6.979,929,1.429,940,4.641,942,2.372,1039,3.307,1054,2.848,1055,3.931,1058,4.007,1062,3.651,1068,4.813,1070,3.434,1148,2.501,1326,4.813,1609,4.813,1645,4.641,1648,3.651,1716,5.93,2556,6.319,2628,6.319,2629,7.02,2630,4.007,2631,6.319,2632,5.858,2633,7.02,2634,5.238,2635,7.02,2636,7.02,2637,6.319]],["description//tracks/aws-certified-developer-associate/codestar/_index",[21,1.445,23,0.852,27,1.097,32,0.919,116,1.588,243,2.441,283,1.464,914,2.827]],["title//tracks/aws-certified-developer-associate/codepipeline/",[173,4.758]],["content//tracks/aws-certified-developer-associate/codepipeline/",[7,0.931,9,2.295,16,0.517,17,2.295,19,2.553,23,1.842,27,1.541,31,2.056,32,2.061,35,2.17,37,3.895,39,3.238,43,2.17,45,3.973,48,1.524,49,1.67,54,1.086,60,1.341,66,2.256,69,2.831,71,1.859,75,1.349,82,2.178,84,3.618,89,2.141,90,1.979,114,2.399,116,3.238,122,3.277,125,2.396,130,3.843,135,3.43,142,1.954,156,2.986,157,2.315,163,3.824,165,1.086,167,6.596,168,3.692,169,3.066,170,3.83,171,2.263,172,3.066,173,6.621,174,1.306,175,1.905,176,3.618,177,4.484,178,1.67,179,2.639,180,3.346,181,3.618,182,2.2,183,2.831,184,2.94,185,2.78,186,2.639,187,2.595,188,1.905,189,2.94,190,5.014,191,3.725,192,6.355,193,5.014,210,1.134,211,1.929,223,1.689,244,3.346,256,1.771,280,1.613,283,3.164,286,1.474,289,1.709,308,2.363,341,1.771,351,1.651,372,2.513,373,2.084,381,1.327,455,2.256,472,3.725,478,1.507,487,2.363,500,3.346,600,3.52,621,4.12,635,3.52,636,4.12,656,3.268,696,2.03,707,3.346,750,2.999,772,3.911,855,3.843,861,1.237,870,1.729,887,2.231,929,1.223,942,2.03,992,2.639,997,3.725,1010,2.951,1011,3.843,1054,2.581,1055,2.731,1056,3.126,1058,3.43,1062,4.077,1063,7.015,1070,2.94,1090,3.06,1101,4.484,1151,1.709,1594,3.346,1601,3.618,1609,4.12,1869,2.513,2315,5.014,2398,6.573,2553,5.566,2630,3.43,2631,5.409,2632,5.014,2634,4.484,2638,4.719,2639,6.009,2640,5.409,2641,6.009,2642,6.009,2643,6.009,2644,5.409,2645,1.67]],["description//tracks/aws-certified-developer-associate/codepipeline/",[23,0.801,84,2.421,173,2.659,286,0.986,707,2.239,1062,2.092,1063,2.87,1601,2.421,1869,1.682]],["title//tracks/aws-certified-developer-associate/codeguru/_index",[913,5.37]],["content//tracks/aws-certified-developer-associate/codeguru/_index",[8,2.083,21,2.869,23,2.024,27,1.748,31,1.788,41,2.216,75,2.388,82,1.894,115,3.931,134,3.334,157,1.809,174,1.481,175,2.693,178,2.36,208,4.729,232,1.104,235,3.89,248,4.848,276,3.11,293,4.115,310,3.707,312,3.334,358,3.993,425,2.428,439,4.526,453,5.8,484,2.993,534,1.872,591,0.16,637,4.076,749,3.545,797,3.401,810,6.337,861,1.403,869,4.358,870,1.962,913,7.89,926,3.471,934,2.496,942,2.303,990,0.988,992,2.993,999,3.334,1037,3.89,1041,4.863,1054,2.796,1062,3.545,1582,6.903,1648,3.545,1650,4.863,1686,5.353,1775,6.135,1869,2.85,2067,5.353,2111,6.135,2289,6.135,2404,6.135,2413,6.64,2438,4.225,2495,6.903,2646,6.815,2647,9.684,2648,6.815,2649,6.815,2650,6.815,2651,6.815,2652,6.815,2653,6.337,2654,4.863,2655,7.087,2656,6.815,2657,6.815,2658,5.353]],["description//tracks/aws-certified-developer-associate/codeguru/_index",[27,1.031,75,0.903,175,1.275,310,2.187,401,1.766,453,2.239,1062,2.092,1648,2.092,2130,3.001]],["title//tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/",[23,0.854,75,0.963,453,2.388,913,3.2,1062,2.231]],["content//tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/",[3,2.212,7,1.424,10,3.41,11,1.062,23,1.766,29,1.881,32,1.028,35,1.727,43,1.727,51,1.039,54,1.075,60,1.328,61,2.212,62,1.074,65,0.855,66,1.376,68,2.065,75,2.063,108,2.013,110,2.663,115,2.032,120,1.426,125,1.313,134,4.79,137,0.745,145,5.117,146,1.722,149,3.222,153,2.998,156,1.637,157,2.059,165,1.402,169,2.36,174,1.459,175,1.516,178,1.329,183,2.253,188,1.516,189,2.34,203,2.136,210,0.902,221,1.637,224,1.659,231,2.565,232,0.775,235,5.387,239,1.575,242,2.922,245,2.233,248,4.802,269,2.136,278,1.269,279,2.721,286,1.173,293,4.364,347,2.853,351,2.689,362,2.879,365,1.968,381,0.809,382,1.376,385,1.801,390,2.964,393,1.727,398,2.601,399,2.34,413,2.136,453,5.364,455,1.932,460,4.038,473,1.938,496,2.802,509,3.106,511,2,512,2.173,534,1.313,556,6.003,561,3.756,570,5.859,591,0.113,613,2.899,629,3.933,641,2.602,642,2,698,2.295,732,2.386,758,2.964,776,3.058,777,1.881,804,3.526,809,2.948,814,3.739,832,3.872,854,3.465,855,3.058,861,0.984,887,2.493,912,5.533,913,7.896,924,2.493,929,0.974,934,3.364,948,3.823,1020,2.964,1039,2.253,1049,2.853,1062,2.487,1078,1.637,1119,2.73,1123,3.756,1144,5.374,1146,1.909,1147,2.948,1148,3.534,1151,1.36,1163,3.492,1167,3.569,1168,2.156,1173,2.386,1178,1.968,1179,4.672,1182,3.058,1183,2.802,1187,2.802,1190,1.881,1193,1.968,1229,3.568,1239,2.173,1258,3.35,1259,2.802,1287,2.032,1293,2.73,1317,2.73,1320,3.568,1327,2.295,1491,3.162,1540,3.162,1583,3.279,1650,3.412,1663,3.058,1678,3.568,1687,3.99,1716,4.603,1720,3.162,1721,3.279,1724,2.663,1902,6.044,1917,3.99,1937,3.412,2217,3.162,2413,7.041,2438,5.494,2452,3.162,2509,3.99,2542,3.162,2551,6.003,2553,2.879,2557,4.779,2653,3.568,2654,3.412,2659,6.044,2660,5.13,2661,4.782,2662,4.782,2663,4.782,2664,2.253,2665,4.782,2666,4.782,2667,4.782,2668,4.305,2669,8.413,2670,4.782,2671,4.782,2672,4.305,2673,5.602,2674,4.782,2675,4.782,2676,4.782]],["description//tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/",[]],["title//tracks/aws-certified-developer-associate/codedeploy/",[143,4.758]],["content//tracks/aws-certified-developer-associate/codedeploy/",[9,2.226,16,0.817,19,2.476,21,1.969,23,1.82,27,1.494,31,2.491,32,2.215,37,2.602,47,3.778,48,2.179,49,2.134,51,1.985,55,3.031,60,1.314,62,1.308,68,2.516,75,1.308,82,1.619,89,3.254,113,2.907,114,2.326,116,4.032,124,3.508,125,1.6,137,0.56,139,5.494,140,4.429,141,6.411,142,3.169,143,6.812,144,3.413,145,5.428,146,2.204,147,4.484,148,4.348,149,2.796,150,6.914,151,6.914,153,3.837,154,1.802,155,4.862,156,3.249,157,1.546,158,4.348,159,2.258,160,2.516,161,2.648,162,4.862,163,2.892,164,5.245,165,1.053,169,2.7,173,3.852,238,2.967,269,2.602,280,2.062,286,1.429,289,1.657,302,5.5,303,2.362,320,2.695,338,5.173,351,2.607,353,2.326,372,2.436,396,2.812,404,3.372,425,2.076,441,2.021,471,3.852,480,3.021,534,2.11,539,4.911,591,0.181,637,2.796,656,3.169,671,1.398,754,2.085,821,4.862,844,4.576,861,1.199,870,1.677,942,1.969,951,4.348,1003,2.85,1010,2.194,1054,2.529,1062,3.031,1090,2.967,1202,3.832,1283,4.384,1297,3.113,1539,5.033,1869,2.436,2398,3.995,2677,5.245,2678,5.826,2679,7.68,2680,8.591]],["description//tracks/aws-certified-developer-associate/codedeploy/",[23,0.852,27,1.097,75,0.96,116,1.588,143,2.827,607,2.224,1062,2.224,1932,3.849]],["title//tracks/aws-certified-developer-associate/codecommit/_index",[912,4.333]],["content//tracks/aws-certified-developer-associate/codecommit/_index",[17,3.07,31,2.461,32,1.728,37,3.59,82,2.761,134,3.932,167,5.735,218,3.258,241,3.786,245,2.313,256,2.369,280,2.157,425,2.863,480,3.161,541,4.273,591,0.189,637,3.857,853,5.997,861,1.654,870,2.313,911,5.997,912,5.982,931,4.18,942,2.715,1033,4.18,1054,3.089,1089,3.857,1263,5.997,1522,5.735,2557,4.879,2634,5.997]],["description//tracks/aws-certified-developer-associate/codecommit/_index",[23,1.374,912,4.152]],["title//tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/",[912,3.705,1089,2.953]],["content//tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/",[1,1.646,4,2.319,5,3.453,7,1.515,8,1.362,16,0.702,31,1.959,32,1.93,41,1.449,44,3.188,54,1.195,60,0.763,64,1.549,65,1.543,70,0.969,71,1.379,82,2.074,86,1.864,91,2.1,94,3.584,108,2.239,114,2.55,122,1.864,133,1.894,134,5.274,137,0.614,142,1.449,146,1.144,153,1.991,156,3.297,157,1.183,165,1.473,169,3.033,170,2.805,174,0.969,179,3.278,180,5.442,183,3.517,184,4.524,189,2.181,192,2.684,201,2.1,212,3.96,218,1.807,219,3.557,221,2.555,224,2.216,231,2.852,239,1.752,240,2.842,242,1.679,245,2.149,247,1.253,256,1.314,276,1.632,280,2.316,306,3.705,320,4.278,327,1.754,339,2.764,347,3.667,351,2.745,363,2.225,369,2.383,382,2.149,390,2.44,393,1.61,399,3.125,429,0.714,455,1.283,460,3.913,478,1.118,533,2.432,534,1.225,563,2.55,591,0.105,642,1.864,698,2.14,727,1.754,758,5.567,783,2.589,804,2.026,820,1.958,823,2.14,912,5.696,924,3.204,934,2.339,948,4.377,950,3.913,986,3.557,997,3.96,1005,4.71,1012,2.589,1038,1.679,1049,2.714,1081,2.545,1144,5.444,1145,3.652,1147,4.343,1148,3.664,1163,2.319,1166,2.026,1167,2.37,1168,2.051,1169,2.1,1173,3.725,1179,3.847,1181,2.483,1185,4.157,1189,5.917,1195,3.743,1197,4.224,1222,3.802,1230,1.991,1236,2.684,1239,2.026,1279,3.445,1286,2.181,1287,2.714,1293,3.647,1321,4.013,1332,2.764,1449,2.271,1475,2.948,1476,2.545,1500,2.851,1507,3.181,1597,4.38,1696,3.501,1875,3.181,1880,3.327,1907,2.684,2020,5.327,2242,3.181,2438,5.733,2442,5.126,2452,4.224,2557,5.145,2566,5.751,2599,5.331,2681,4.458,2682,4.458,2683,4.458,2684,4.458,2685,4.458,2686,8.629]],["description//tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/",[912,3.767,925,3.767,1089,3.003]],["title//tracks/aws-certified-developer-associate/codebuild/",[911,5.37]],["content//tracks/aws-certified-developer-associate/codebuild/",[7,1.207,8,1.818,9,2.273,16,0.823,19,2.528,21,2.631,22,3.602,23,1.729,24,3.486,27,2.451,31,2.507,32,2.266,37,2.657,39,3.419,42,2.657,47,2.306,48,2.201,49,1.653,59,3.419,62,1.336,65,1.064,66,1.712,75,2.243,82,1.653,85,3.03,94,2.306,110,3.313,111,4.965,112,4.673,113,4.769,114,2.375,115,2.528,116,3.805,117,2.969,118,2.855,119,4.246,120,1.775,121,2.24,122,2.488,123,6.871,124,3.583,125,2.529,126,3.805,127,2.091,128,1.321,129,2.855,130,3.805,131,3.396,132,2.569,133,2.528,134,4.247,135,3.396,136,5.356,137,0.571,143,5.739,167,4.246,173,5.148,179,2.613,206,2.752,210,1.123,211,1.91,224,2.064,227,3.688,242,2.24,276,2.178,279,3.156,280,2.09,283,3.469,289,1.692,293,2.528,334,3.236,347,2.528,351,1.634,369,1.579,404,2.613,436,5.148,477,3.03,496,3.486,553,4.44,591,0.14,599,3.805,602,3.163,613,2.569,637,2.855,644,3.805,647,4.246,671,1.427,729,3.805,829,1.634,844,4.673,861,1.225,869,3.805,870,1.712,889,3.396,911,7.647,912,4.689,914,3.934,940,3.934,942,2.01,948,2.704,1005,3.966,1010,2.24,1054,2.564,1055,2.704,1062,3.095,1063,5.556,1070,2.911,1090,3.966,1119,3.396,1157,2.911,1170,3.03,1194,4.05,1714,5.339,1869,2.488,1895,5.356,2221,4.673,2398,5.339,2438,3.688,2654,4.246,2687,5.949,2688,7.786,2689,4.673,2690,7.786,2691,3.934,2692,5.949,2693,5.949]],["description//tracks/aws-certified-developer-associate/codebuild/",[16,0.309,23,0.716,39,1.334,75,0.807,210,0.678,283,1.865,383,1.605,911,2.681,1070,1.758,1869,1.503]],["title//tracks/aws-certified-developer-associate/codeartifact/",[910,5.652]],["content//tracks/aws-certified-developer-associate/codeartifact/",[1,1.288,16,0.873,21,3.357,23,1.345,31,2.215,32,1.98,37,3.015,43,2.438,75,1.516,82,1.876,95,4.299,128,1.499,130,4.316,134,4.13,137,0.648,142,2.195,174,2.002,182,2.472,188,2.14,256,2.715,276,3.091,280,2.266,281,3.914,283,2.311,293,3.587,328,2.964,347,2.868,356,4.68,425,2.405,429,1.082,455,2.43,477,3.438,495,1.674,508,2.405,512,3.067,520,4.421,534,1.854,536,4.628,591,0.159,611,3.836,613,2.915,637,4.051,640,4.691,656,5.512,671,1.619,679,3.853,702,3.302,762,3.589,766,4.463,817,3.77,861,1.389,870,1.943,910,7.96,931,3.511,942,2.281,992,2.964,1054,2.78,1055,3.067,1058,3.853,1070,3.302,1071,4.817,1090,3.438,1283,3.853,1422,3.671,1609,4.628,1710,4.817,1826,5.633,1849,4.817,2398,6.315,2399,6.076,2400,6.076,2401,6.076,2535,6.076,2574,3.671,2630,3.853,2694,8.441,2695,6.75,2696,6.076,2697,5.633,2698,6.75,2699,6.076,2700,5.301,2701,6.75,2702,4.817,2703,6.75,2704,6.75,2705,6.75,2706,6.75,2707,6.75]],["description//tracks/aws-certified-developer-associate/codeartifact/",[23,1.374,910,5.416]],["title//tracks/aws-certified-developer-associate/cloudwatch/_index",[324,3.214]],["content//tracks/aws-certified-developer-associate/cloudwatch/_index",[9,1.708,14,2.62,16,0.861,19,1.9,21,3.199,22,3.459,23,1.972,27,2.374,31,2.267,32,1.99,47,3.484,48,2.401,49,2.078,51,2.011,53,1.638,55,2.326,56,2.446,57,1.473,60,0.765,62,1.679,64,1.085,75,1.438,79,2.693,82,1.243,87,2.188,89,3.078,90,2.108,94,1.733,108,1.16,116,1.661,121,1.684,122,3.414,124,3.855,125,2.054,128,1.813,137,0.43,142,2.432,146,1.147,153,2.86,156,3.241,157,1.187,165,1.157,169,3.328,170,1.964,171,1.661,172,2.629,175,2.371,178,1.243,179,1.964,185,2.069,187,2.765,188,1.418,209,2.146,215,2.378,216,2.232,217,2.232,218,2.595,223,1.257,224,2.221,226,0.9,227,4.432,228,4.162,231,1.708,234,2.326,237,2.553,239,1.502,240,1.473,244,2.491,245,1.287,246,2.811,247,1.257,252,2.188,256,1.887,275,3.855,278,1.187,280,1.719,284,3.33,289,1.272,303,1.813,307,1.257,312,4.632,313,2.86,315,5.383,316,3.565,318,4.165,323,3.191,324,4.659,347,3.178,350,4.094,351,1.228,369,1.187,372,3.127,373,1.551,387,3.158,388,6.756,395,2.378,408,2.693,413,1.997,420,2.86,424,3.191,425,1.593,427,3.261,463,4.39,476,2.432,479,4.233,495,1.109,514,2.962,517,3.337,529,4.44,534,1.759,539,2.86,541,4.341,557,2.765,569,5.598,580,2.811,591,0.252,622,2.553,642,1.87,643,3.404,644,5.221,645,4.026,646,4.026,647,5.337,653,2.432,671,1.536,673,2.326,684,2.232,696,2.163,702,2.188,707,2.491,740,3.261,745,3.066,754,1.214,756,2.693,795,2.107,807,3.513,820,1.964,839,2.86,842,5.874,843,3.732,861,0.92,865,4.158,870,1.287,884,2.957,942,1.511,943,3.066,975,2.432,992,1.964,1002,2.86,1007,4.026,1033,2.326,1054,2.108,1078,1.531,1089,2.146,1109,3.191,1113,4.39,1124,2.232,1157,2.188,1204,2.693,1284,5.581,1293,2.553,1360,4.305,1385,2.86,1422,2.432,1697,2.693,1767,3.191,2001,3.513,2050,2.86,2167,3.732,2251,5.764,2442,2.553,2609,3.337,2628,4.026,2708,4.472,2709,5.343,2710,4.472,2711,4.472,2712,4.472,2713,3.337,2714,4.472,2715,4.472,2716,4.472]],["description//tracks/aws-certified-developer-associate/cloudwatch/_index",[23,1.374,324,3.08]],["title//tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/",[324,2.748,1089,2.953]],["content//tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/",[1,0.754,3,1.828,5,0.795,7,1.334,10,2.696,11,0.663,12,2.101,16,0.645,17,1.802,23,1.063,25,0.894,27,1.014,29,1.855,30,0.532,31,1.401,32,1.798,33,1.432,35,1.928,39,1.108,40,1.46,41,0.97,42,2.107,44,0.858,48,0.436,51,1.365,54,0.921,60,0.914,62,1.681,64,1.144,65,0.533,66,1.684,67,1.283,68,1.707,70,1.16,72,0.743,75,0.887,82,1.311,87,0.841,88,0.981,89,2.238,91,2.222,95,2.719,108,1.63,110,2.201,120,0.513,121,1.488,122,2.232,125,1.296,127,1.049,128,1.791,131,1.703,132,3.885,133,1.268,137,0.696,139,2.527,142,2.265,144,1.748,145,0.957,146,2.025,153,3.602,154,0.923,156,3.49,157,2.141,159,1.156,160,0.743,161,0.781,163,3.149,165,1.135,169,3.216,171,0.774,172,1.389,174,0.859,175,1.253,176,1.035,178,0.478,179,2.569,180,0.957,181,1.796,182,1.447,183,2.514,185,0.795,186,1.31,187,1.288,188,1.253,196,1.179,201,1.405,203,1.765,204,2.612,206,0.795,209,2.264,210,1.625,211,1.269,214,0.638,216,2.354,217,0.858,218,2.696,219,4.289,221,0.589,223,1.326,224,0.596,226,0.207,227,1.268,228,0.743,231,3.591,232,0.483,235,3.34,237,1.703,238,1.519,239,0.7,240,0.982,241,0.81,243,1.703,245,1.684,246,0.755,247,0.483,252,0.841,259,0.743,276,0.63,278,1.667,280,1.433,282,0.981,285,2.508,286,0.422,287,1.679,289,0.489,290,1.035,291,0.935,299,1.283,303,1.602,306,2.426,307,1.645,308,1.173,309,0.731,312,4.674,313,4.632,315,5.644,318,3.498,321,1.066,322,1.099,324,4.223,327,2.1,330,0.781,332,1.066,337,2.613,339,1.066,340,0.81,344,2.527,346,4.252,347,2.669,348,1.283,349,1.227,361,1.554,365,3.082,369,1.417,371,4.252,376,2.343,377,2.226,378,1.268,380,1.099,381,0.799,382,0.859,383,0.768,384,0.795,385,1.123,390,1.802,391,1.519,393,1.427,394,1.353,396,0.63,399,1.933,400,1.627,406,1.552,410,1.586,412,1.173,414,1.477,416,1.137,420,1.332,423,0.914,425,0.613,427,0.876,429,0.276,431,1.615,434,1.765,441,1.035,444,1.552,445,1.611,450,1.408,452,0.795,458,2.179,459,0.81,461,3.076,466,4.135,473,1.209,474,1.972,476,3.417,478,0.431,479,1.137,480,0.676,484,1.31,487,1.554,495,1.324,508,0.613,510,1.035,511,1.248,512,0.781,514,2.182,516,1.179,520,2.562,526,3.234,532,1.489,533,2.233,534,0.819,537,0.768,554,1.099,557,1.288,578,0.858,580,2.759,583,1.228,591,0.203,595,1.283,598,1.586,605,2.562,607,0.894,611,0.781,612,1.099,613,0.743,621,3.66,622,0.981,628,1.066,631,1.405,632,0.858,633,1.661,640,0.876,641,2.985,642,1.248,643,1.586,649,2.315,652,0.914,671,0.716,684,0.858,696,1.008,702,0.841,709,1.283,714,0.935,720,0.795,721,1.066,722,1.435,727,1.173,732,3.318,734,1.541,737,3.871,740,1.519,748,5.158,754,1.281,759,2.693,770,2.256,777,1.855,778,1.908,781,1.748,783,1.912,784,1.35,786,1.435,792,2.129,795,3.132,804,2.855,809,0.755,810,1.283,811,0.511,814,2.627,820,1.31,829,0.472,831,1.519,832,4.103,860,0.666,864,0.981,868,1.137,869,1.099,873,2.508,879,4.454,883,3.783,887,1.467,889,0.981,923,1.35,924,1.467,926,0.876,929,1.418,934,2.82,937,1.227,941,1.548,942,1.803,948,3.961,950,0.825,973,0.935,977,1.179,981,0.957,990,0.249,1004,0.914,1010,2.01,1011,1.908,1012,1.636,1015,1.288,1024,0.638,1033,0.894,1038,2.203,1039,1.862,1049,2.825,1055,0.781,1089,0.825,1091,1.108,1099,2.226,1114,0.378,1116,0.81,1119,0.981,1124,0.858,1136,0.914,1137,2.82,1144,5.339,1145,1.46,1147,1.735,1148,3.564,1151,1.787,1157,1.46,1160,1.46,1163,2.776,1165,1.435,1167,4.197,1168,1.269,1169,2.222,1170,0.876,1171,1.179,1173,2.664,1174,1.137,1178,1.942,1179,4.004,1181,1.661,1182,1.908,1185,0.957,1186,1.137,1187,1.007,1190,1.173,1193,0.708,1194,2.454,1195,1.007,1198,1.35,1199,1.35,1202,0.858,1222,3.199,1229,1.283,1236,1.035,1248,1.227,1258,1.489,1259,2.764,1260,1.066,1261,1.283,1279,1.883,1284,7.788,1286,0.841,1291,1.283,1298,1.548,1315,0.935,1318,1.703,1324,0.676,1325,3.477,1332,1.849,1343,0.686,1346,1.007,1350,2.343,1383,1.35,1392,0.768,1406,1.435,1422,0.935,1423,0.957,1428,3.705,1431,2.82,1436,1.137,1440,1.679,1443,1.35,1446,1.435,1447,0.81,1455,1.35,1456,0.935,1462,0.589,1466,2.613,1471,1.35,1475,2.613,1476,1.703,1477,1.066,1482,0.858,1502,2.129,1514,1.488,1517,1.519,1523,1.548,1540,1.137,1545,1.227,1553,0.935,1608,1.227,1614,3.529,1622,1.435,1657,2.709,1668,1.227,1669,1.35,1673,1.405,1675,2.013,1688,1.35,1695,1.123,1697,2.841,1701,2.045,1702,1.179,1709,2.226,1715,2.129,1716,2.045,1723,2.686,1741,0.825,1758,3.298,1765,1.35,1767,4.971,1776,0.981,1838,0.825,1874,4.247,1880,1.283,1881,1.435,1882,1.227,1885,1.435,1898,1.548,1907,2.841,1922,1.35,1948,2.613,2007,2.343,2045,1.35,2096,1.586,2117,3.937,2207,1.973,2221,1.35,2234,0.914,2236,0.914,2242,1.227,2245,3.705,2252,1.099,2262,1.227,2269,0.755,2270,2.49,2292,1.179,2293,3.66,2329,1.548,2333,1.35,2334,3.557,2362,1.137,2392,4.805,2416,1.227,2418,1.548,2431,1.099,2442,2.256,2443,1.227,2444,1.007,2466,1.552,2483,1.35,2525,1.35,2548,1.435,2555,1.548,2600,1.973,2609,2.949,2613,1.548,2709,1.435,2717,1.283,2718,1.548,2719,1.719,2720,1.435,2721,7.847,2722,1.435,2723,1.719,2724,1.719,2725,1.703,2726,1.719,2727,2.686,2728,1.719,2729,2.343,2730,1.719,2731,5.851,2732,1.719,2733,1.719,2734,1.719,2735,1.719,2736,1.137,2737,1.719,2738,2.983,2739,1.548,2740,1.435,2741,1.719,2742,2.49,2743,0.914,2744,1.227,2745,1.719,2746,1.548,2747,1.719,2748,2.983,2749,1.719,2750,1.719,2751,1.719,2752,1.719,2753,1.179,2754,5.267,2755,1.548,2756,1.719,2757,1.719,2758,1.719,2759,1.548,2760,1.719,2761,2.983,2762,2.983,2763,2.49,2764,1.719,2765,1.719,2766,1.719,2767,3.952,2768,3.952,2769,2.983,2770,2.983,2771,1.719,2772,1.719,2773,1.719,2774,1.719,2775,1.719,2776,1.719,2777,1.719,2778,2.983,2779,3.557,2780,2.983,2781,1.719,2782,1.719,2783,1.719,2784,1.719,2785,1.719,2786,1.35,2787,1.719,2788,1.719,2789,1.719,2790,1.719,2791,1.283,2792,1.719,2793,1.35,2794,1.719,2795,1.719,2796,1.719,2797,1.719,2798,1.719,2799,1.719,2800,1.719,2801,3.557,2802,1.719,2803,1.719,2804,1.719,2805,1.719,2806,1.435,2807,1.719,2808,1.435,2809,1.719,2810,1.719,2811,2.686,2812,1.719,2813,1.548,2814,1.35,2815,1.719,2816,1.719,2817,1.719,2818,1.719,2819,2.983,2820,1.719,2821,1.719,2822,1.719,2823,1.435,2824,1.719,2825,1.719,2826,1.719,2827,1.719,2828,1.719,2829,1.435,2830,1.435]],["description//tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/",[324,3.08,1089,3.309]],["title//tracks/aws-certified-developer-associate/cloudfront/_index",[106,4.333]],["content//tracks/aws-certified-developer-associate/cloudfront/_index",[7,1.399,9,1.73,16,0.863,19,1.925,21,2.545,22,4.636,23,1.954,24,4.413,25,3.361,27,2.48,29,1.782,30,1.401,31,2.155,32,2.173,40,3.161,44,2.261,47,2.919,48,1.639,49,1.796,53,1.659,54,0.627,55,2.356,58,2.464,60,0.775,61,2.095,62,1.017,80,3.891,81,4.004,82,2.64,83,4.191,84,4.945,85,3.836,86,2.702,87,3.161,88,3.688,89,2.683,90,2.48,91,2.134,92,4.573,93,3.233,94,1.756,95,2.307,96,2.134,97,2.654,98,2.897,99,4.078,100,2.464,101,2.523,102,4.078,103,4.078,104,3.106,105,4.078,106,5.595,107,4.078,117,4.333,118,3.615,120,1.351,125,1.244,127,1.592,128,2.245,132,1.956,137,0.435,142,2.101,144,2.654,156,2.212,169,2.271,174,0.984,182,2.366,183,2.134,184,3.161,188,2.049,201,2.134,204,3.685,210,1.219,211,1.454,218,2.619,229,1.865,231,1.73,232,1.047,236,2.174,237,2.586,240,2.128,242,3.27,246,1.989,247,2.118,248,2.586,249,3.101,250,3.233,251,2.728,252,2.216,253,5.251,254,3.106,255,2.307,256,2.42,257,6.196,258,4.98,259,1.956,260,2.654,261,2.523,262,2.216,263,2.023,264,2.728,265,3.38,266,3.38,267,4.822,268,4.669,269,3.878,270,2.995,271,2.995,272,2.464,273,2.897,274,2.808,275,2.728,276,2.366,277,2.728,278,1.202,279,2.619,280,1.216,281,2.745,282,2.586,283,1.551,284,2.356,285,2.408,286,1.111,287,1.925,288,3.233,289,1.289,290,2.728,291,2.464,292,2.654,293,3.489,294,2.356,295,2.504,317,3.106,327,2.541,329,2.808,351,1.244,360,3.044,361,1.782,366,2.464,372,3.15,373,2.613,374,2.886,385,1.706,398,2.464,425,1.614,429,0.726,435,2.897,447,4.732,454,4.132,458,1.571,465,2.261,489,2.897,495,1.123,500,2.523,520,2.174,533,1.351,534,1.244,557,1.956,580,1.989,591,0.248,602,2.408,611,3.423,630,3.38,632,2.261,655,1.636,666,2.728,671,1.087,697,3.78,699,2.174,728,3.836,766,5.741,827,4.43,853,3.38,861,0.932,870,1.304,918,4.822,919,3.78,938,3.38,942,1.531,976,2.654,997,2.808,1054,2.128,1068,3.106,1070,3.161,1116,2.134,1158,1.836,1254,3.891,1278,2.586,1281,5.392,1360,2.023,1377,2.059,1380,3.38,1420,5.164,1421,4.3,1565,3.233,1931,4.078,2140,2.995,2208,4.078,2270,3.78,2353,3.78,2506,4.078,2831,7.393,2832,4.53,2833,4.53,2834,4.078,2835,4.53,2836,6.461,2837,6.461,2838,4.53,2839,4.53,2840,3.558]],["description//tracks/aws-certified-developer-associate/cloudfront/_index",[83,1.788,87,2.092,88,2.441,276,1.566,454,2.734,580,1.878,766,2.827,2140,2.827]],["title//tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/",[106,2.582,142,1.394,360,2.02,373,1.487,728,2.184]],["content//tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/",[1,1.24,2,1.635,3,1.325,7,1.444,8,1.396,10,3.605,11,0.636,13,1.678,16,0.56,21,0.968,23,1.99,30,1.413,31,1.198,32,1.706,33,2.192,39,1.064,42,2.544,43,1.035,51,1.543,53,1.049,54,0.789,57,0.943,64,1.108,65,0.512,66,0.824,72,1.237,83,1.198,86,1.91,89,2.029,90,0.943,91,1.349,106,5.534,108,1.185,110,1.595,114,1.824,116,2.413,127,1.605,128,1.014,133,2.42,134,1.401,137,0.624,142,1.852,146,1.667,153,1.279,156,0.981,157,1.725,159,2.208,160,1.237,163,1.079,165,1.029,169,1.007,171,0.743,172,1.605,174,1.238,175,0.908,178,0.796,183,3.062,184,4.157,185,1.325,188,0.908,210,0.862,217,4.517,218,3.444,221,0.981,223,0.805,224,0.994,227,1.941,231,2.89,232,0.464,234,1.49,239,0.672,240,2.929,242,2.448,245,1.315,247,1.601,263,1.279,268,4.029,269,3.681,276,1.049,278,2.008,280,1.226,282,1.635,286,0.703,293,1.941,298,1.635,303,1.161,305,1.678,306,3.227,307,1.827,308,3.561,318,2.544,322,1.832,326,2.137,328,3.118,330,1.302,338,1.725,341,1.346,347,2.762,351,2.68,353,1.144,355,4.113,360,4.264,362,1.725,365,1.88,366,2.484,369,1.725,372,2.382,373,3.465,374,4.776,375,2.279,381,0.485,382,1.639,390,1.745,393,1.65,398,1.558,399,2.787,400,1.88,406,1.49,407,0.769,412,1.797,425,1.021,427,1.459,429,1.138,433,0.931,445,1.962,447,4.743,450,1.627,452,1.325,459,2.152,461,3.284,473,1.161,478,1.146,480,2.241,495,1.413,509,1.325,513,3.31,528,0.65,532,1.429,533,2.7,534,0.787,591,0.194,593,2.044,602,2.428,605,1.375,608,2.137,611,2.076,625,0.865,629,2.676,641,2.519,642,1.198,643,1.523,655,3.319,666,1.725,670,1.776,679,3.71,699,4.345,702,1.401,720,1.325,727,3.123,728,5.135,732,2.279,734,1.397,746,1.49,750,2.279,759,4.053,766,1.894,783,1.161,804,3.608,809,2.006,831,2.326,832,1.429,855,1.832,860,1.11,861,0.59,862,1.725,870,0.824,873,1.824,924,1.696,926,2.901,928,1.964,929,1.54,934,3.41,940,4.695,942,1.925,948,3.227,950,3.408,973,1.558,975,2.484,1003,1.401,1005,1.459,1010,1.72,1012,1.584,1017,2.843,1024,2.809,1038,2.99,1049,2.42,1070,2.235,1081,1.635,1082,5.298,1116,1.349,1119,1.635,1124,1.429,1136,1.523,1144,5.337,1145,3.18,1146,1.824,1147,3.731,1148,3.592,1151,2.02,1157,2.787,1158,1.161,1160,1.401,1163,4.419,1164,3.884,1167,4.382,1168,0.92,1170,2.901,1171,1.964,1173,3.962,1181,1.595,1182,2.921,1183,2.676,1193,1.179,1194,1.49,1195,2.676,1202,1.429,1216,1.776,1258,1.429,1279,2.274,1280,2.25,1286,2.235,1296,1.776,1297,1.161,1325,2.279,1329,2.137,1342,2.25,1343,1.144,1344,3.259,1345,2.376,1360,1.279,1390,2.579,1396,1.595,1397,2.044,1430,1.725,1432,5.128,1434,2.044,1435,2.044,1437,1.964,1438,1.832,1447,1.349,1448,3.535,1449,3.31,1454,1.678,1462,0.981,1466,1.894,1475,1.894,1476,3.252,1479,1.459,1480,2.39,1481,2.137,1482,2.279,1483,2.39,1500,2.921,1501,2.579,1504,2.137,1505,2.25,1506,2.39,1507,2.044,1508,2.579,1509,5.576,1510,2.579,1511,2.579,1512,2.579,1513,2.25,1515,1.523,1516,2.579,1587,2.39,1593,1.725,1614,1.894,1632,2.579,1673,1.349,1675,1.459,1718,2.579,1722,1.325,1755,5.105,1778,2.579,1838,1.375,1869,1.198,1885,2.39,1907,3.43,1909,2.579,1938,1.964,1950,1.678,2217,3.766,2234,1.523,2236,1.523,2237,1.635,2252,1.832,2357,2.25,2575,1.49,2576,1.678,2578,1.725,2589,1.725,2595,1.725,2596,1.725,2630,1.635,2660,1.894,2697,2.39,2808,2.39,2841,2.864,2842,2.864,2843,2.864,2844,4.567,2845,4.251,2846,2.864,2847,2.864,2848,2.864,2849,2.864,2850,2.864,2851,2.864,2852,2.864,2853,2.864,2854,2.864,2855,2.864]],["description//tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/",[106,3.179,142,1.716,360,2.487,373,1.831,728,2.688]],["title//tracks/aws-certified-developer-associate/cloudformation/_index",[58,3.914]],["content//tracks/aws-certified-developer-associate/cloudformation/_index",[1,0.615,3,1.491,5,1.491,7,1.497,9,1.231,11,0.716,16,0.852,17,2.65,19,1.37,21,2.078,23,1.382,27,1.578,29,1.268,31,2.253,32,1.938,35,1.81,37,1.44,39,1.197,41,1.63,42,1.44,47,2.384,48,1.76,49,0.896,51,1.337,53,1.836,54,0.694,56,2.35,57,3.346,58,5.608,59,3.803,60,1.053,61,2.845,62,1.126,63,4.587,64,1.492,65,1.1,66,0.928,67,2.406,68,1.392,69,1.519,70,0.701,71,1.551,72,2.996,73,2.902,74,2.3,75,1.688,76,1.149,77,2.902,78,2.902,82,2.73,83,2.096,84,1.941,89,1.149,90,1.062,91,2.361,94,2.384,96,1.519,112,3.937,116,3.275,119,3.577,120,1.495,122,2.096,123,2.406,125,2.359,126,5.765,128,2.145,132,2.165,135,1.84,140,2.701,142,2.792,149,1.547,153,1.44,155,4.183,156,3.506,157,2.112,159,2.384,169,3.478,171,0.836,175,2.2,178,0.896,182,1.18,187,1.392,188,1.022,189,2.453,195,1.998,203,2.747,206,2.319,210,0.608,211,2.555,214,1.197,218,2.493,232,0.522,233,1.795,239,0.756,240,1.062,242,1.888,246,1.416,247,1.951,259,2.996,260,2.937,278,0.856,280,1.862,281,1.37,283,1.104,285,1.714,286,2.252,289,0.917,290,1.941,299,2.406,302,1.941,303,2.493,307,0.906,308,1.972,309,2.613,318,1.795,327,1.268,328,1.416,332,1.998,334,2.726,351,2.186,353,1.287,356,2.897,366,1.753,369,1.33,372,1.348,373,1.118,381,0.849,383,1.44,385,2.613,391,2.553,397,1.714,404,1.416,407,0.865,423,3.996,425,2.191,429,0.517,431,1.104,436,2.132,455,0.928,459,1.519,462,0.875,472,3.813,476,4.087,477,1.642,478,1.257,480,1.268,482,1.889,484,1.416,487,1.268,495,1.243,500,3.425,505,2.3,508,1.149,509,1.491,512,1.465,514,3.209,520,1.547,524,1.44,529,3.345,534,2.064,535,3.069,557,1.392,570,2.132,588,3.314,591,0.25,597,1.214,611,3.774,613,1.392,622,1.84,624,3.314,632,2.502,633,1.795,641,1.249,650,2.532,668,2.3,671,0.773,684,1.609,720,3.209,737,4.407,746,1.677,750,1.609,754,1.884,783,2.493,796,3.511,802,3.108,804,3.153,821,4.183,829,0.886,854,2.747,861,0.664,865,3.133,870,0.928,887,1.197,889,1.84,929,1.021,934,1.18,942,1.089,948,2.278,992,1.416,997,1.998,1003,3.009,1010,2.996,1011,2.061,1024,1.197,1031,4.513,1054,1.651,1056,1.677,1062,2.607,1084,2.21,1087,1.677,1088,2.3,1119,3.511,1144,2.607,1151,1.426,1169,1.519,1170,2.553,1184,1.84,1188,2.3,1189,3.437,1190,1.268,1202,2.502,1222,1.642,1230,1.44,1238,0.8,1278,2.862,1279,1.287,1297,1.307,1315,3.345,1316,2.165,1327,2.406,1421,2.862,1440,2.13,1448,1.753,1464,1.795,1489,1.392,1505,2.532,1558,2.3,1565,3.577,1600,2.69,1609,2.21,1612,5.447,1654,1.84,1664,1.889,1714,2.21,1732,1.889,1733,2.532,1755,2.532,1838,2.406,1869,1.348,1907,1.941,1948,2.132,2141,1.84,2181,3.437,2258,2.532,2274,2.69,2275,2.69,2285,2.902,2325,1.795,2357,2.532,2386,2.902,2443,2.3,2445,2.69,2446,2.902,2478,2.061,2600,3.314,2637,2.902,2645,0.896,2654,2.3,2677,2.902,2845,2.406,2856,5.013,2857,3.224,2858,3.224,2859,3.224,2860,6.938,2861,2.69,2862,3.224,2863,4.185,2864,2.69,2865,3.224,2866,3.224,2867,2.902,2868,3.224,2869,3.224,2870,3.224,2871,3.511,2872,3.224,2873,3.224,2874,5.013,2875,3.224,2876,3.224,2877,2.69,2878,3.224,2879,2.902,2880,3.224,2881,3.224,2882,3.224,2883,3.224,2884,2.902,2885,5.013,2886,2.902,2887,2.902,2888,3.206,2889,2.902,2890,6.246,2891,4.389,2892,2.902,2893,3.224,2894,2.69,2895,2.061,2896,2.69]],["description//tracks/aws-certified-developer-associate/cloudformation/_index",[17,1.87,75,1.099,223,1.376,423,2.603,472,3.035,2140,3.237]],["title//tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/",[23,0.711,32,0.767,58,1.94,126,2.281,156,1.221,169,1.254,829,0.98]],["content//tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/",[5,3.241,7,1.279,8,1.801,10,3.136,16,0.507,17,1.524,23,1.645,31,2.03,32,1.921,33,1.915,41,1.297,42,2.632,43,1.441,44,1.991,54,0.553,57,3.021,58,5.373,59,2.873,64,0.968,65,0.713,66,1.148,71,1.823,72,1.723,75,0.896,83,3.235,86,1.668,116,2.873,122,2.93,125,2.455,126,6.179,127,1.402,132,1.723,137,0.673,142,2.809,146,1.511,147,1.723,156,3.594,159,1.546,161,1.813,165,1.266,169,3.595,175,1.265,183,1.879,204,3.785,218,1.617,223,1.657,224,1.384,228,2.545,231,2.251,233,2.222,238,3.568,242,2.638,245,2.016,256,1.176,276,1.461,279,1.617,286,1.718,299,2.977,306,1.813,328,2.587,347,1.695,351,1.619,356,2.776,361,1.569,362,2.402,366,3.205,369,1.564,372,3.235,373,2.43,374,1.782,377,2.977,382,1.696,385,1.502,390,1.524,393,1.441,396,1.461,400,1.642,406,2.075,412,1.569,414,1.249,423,2.121,445,1.204,450,1.421,453,2.222,480,1.569,495,0.989,509,1.846,529,3.205,533,1.19,534,1.924,585,3.134,588,4.632,591,0.194,611,2.678,613,2.545,621,5.305,624,3.896,626,2.099,641,1.546,643,3.133,652,2.121,666,2.402,671,0.957,696,1.348,720,3.241,721,2.473,727,1.569,729,2.551,737,4.909,754,1.083,770,3.364,776,2.551,777,2.318,783,1.617,796,4.417,804,2.678,809,2.587,811,0.906,815,4.804,817,1.782,829,1.924,832,3.861,864,2.277,889,2.277,891,3.896,924,1.481,948,2.678,986,3.281,1002,2.551,1010,2.914,1012,2.044,1038,1.502,1039,1.879,1078,1.366,1144,5.138,1145,1.952,1147,1.752,1148,3.337,1151,1.993,1163,3.065,1164,2.883,1167,3.133,1169,2.776,1170,2.032,1173,1.991,1178,1.642,1185,2.222,1197,2.638,1216,2.473,1222,3.568,1230,2.632,1259,3.452,1315,4.208,1320,2.977,1428,3.134,1443,3.134,1448,3.81,1612,5.42,1614,4.632,1615,3.592,1673,1.879,1700,2.388,1735,5.304,1838,1.915,1869,1.668,1878,2.847,1901,3.592,1907,2.402,2160,4.917,2181,2.735,2210,5.304,2212,3.329,2264,3.592,2268,3.134,2442,2.277,2443,4.999,2444,2.337,2445,6.457,2447,3.592,2474,3.592,2578,3.548,2672,3.592,2739,3.592,2753,2.735,2829,3.329,2845,2.977,2886,6.965,2889,3.592,2890,9.103,2891,6.546,2892,5.304,2895,5.99,2897,3.99,2898,3.99,2899,3.99,2900,5.892,2901,7.006,2902,3.99,2903,3.99,2904,3.99,2905,3.99,2906,3.99,2907,9.527,2908,3.99,2909,3.99,2910,5.892,2911,3.99,2912,5.892,2913,3.99,2914,7.006,2915,3.99,2916,3.99,2917,5.892,2918,2.638,2919,5.892,2920,5.892,2921,5.892,2922,5.892,2923,5.892,2924,3.99,2925,3.99,2926,3.99,2927,3.99,2928,3.99,2929,3.99,2930,5.892,2931,5.892,2932,5.892,2933,5.892,2934,5.892,2935,3.99,2936,3.99,2937,3.99,2938,3.99,2939,3.99,2940,3.99,2941,3.99,2942,3.99,2943,3.99,2944,3.99,2945,3.99,2946,3.99]],["description//tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/",[23,0.91,32,0.981,58,2.483,126,2.919,156,1.563,169,1.605,829,1.254]],["title//tracks/aws-certified-developer-associate/api-gateway/",[22,2.846,24,3.605]],["content//tracks/aws-certified-developer-associate/api-gateway/",[1,0.951,7,1.463,9,1.223,12,1.702,16,0.838,19,1.36,21,3.146,22,4.99,23,2.07,24,5.861,25,1.665,26,2.047,27,2.551,28,2.594,29,2.409,30,1.542,31,2.476,32,2.191,33,1.537,34,2.117,35,1.156,36,2.882,37,4.019,38,2.802,39,1.189,40,4.484,41,1.041,42,1.43,43,1.156,44,4.49,45,5.477,46,4.489,47,3.738,48,2.101,49,2.205,50,2.882,51,1.8,52,2.882,53,2.242,54,0.691,55,1.665,56,1.223,57,1.054,59,2.274,60,0.853,61,2.306,62,1.375,63,2.117,64,0.777,72,1.383,75,1.12,76,1.141,79,1.928,80,4.162,82,2.622,83,1.339,85,2.539,88,2.846,89,1.141,90,2.467,91,1.508,92,3.41,97,1.876,100,2.712,106,1.928,108,1.589,109,2.117,113,1.598,116,2.567,117,3.959,118,3.318,120,0.955,125,0.879,128,1.903,132,2.153,137,0.308,138,2.285,142,2.862,145,1.783,146,0.821,147,2.985,152,2.882,154,0.99,156,1.707,157,1.323,163,1.206,169,1.753,174,0.696,175,1.015,178,2.302,179,3.035,184,2.439,186,1.406,187,2.985,188,1.942,192,5.159,197,2.117,199,3.796,201,1.508,204,2.996,208,1.783,210,1.414,211,1.601,214,1.189,216,2.488,217,2.488,218,2.802,222,3.521,223,1.943,224,1.729,226,0.6,227,2.119,229,1.318,231,1.223,232,0.808,236,1.537,237,1.828,238,1.631,239,1.758,240,2.276,242,2.306,246,2.189,247,1.943,248,1.828,249,2.939,250,2.285,251,3.688,252,2.996,253,4.42,254,2.195,255,1.631,256,2.442,257,6.114,258,4.57,259,1.383,260,1.876,261,1.783,262,1.566,263,1.43,264,1.928,265,2.389,266,2.389,267,3.721,268,5.136,269,1.43,270,2.117,271,2.117,272,1.741,273,2.047,274,1.985,275,1.928,276,2.242,277,1.928,278,1.323,279,2.021,280,1.856,281,1.36,282,1.828,283,2.096,284,1.665,285,1.702,286,0.785,287,1.36,288,2.285,289,1.418,290,1.928,291,4.659,292,1.876,293,3.74,294,1.665,295,1.241,303,1.298,307,1.402,308,1.961,312,1.566,315,2.712,319,2.117,320,1.481,324,2.227,325,2.515,326,2.389,330,1.455,334,1.741,341,0.944,347,2.119,351,0.879,353,2.76,372,1.339,373,2.124,374,2.735,378,2.602,379,2.672,380,3.916,381,0.844,382,1.435,383,2.227,384,1.481,385,1.878,386,2.389,387,1.663,388,3.558,389,1.928,391,2.539,395,2.651,397,2.651,401,1.406,420,1.43,421,5.429,425,1.141,429,0.799,439,1.566,442,1.828,458,1.111,476,1.741,484,1.406,510,3.002,512,1.455,522,4.489,523,4.161,524,1.43,525,2.515,526,2.195,527,2.712,528,1.132,529,2.712,530,1.406,531,2.285,532,1.598,533,1.487,534,1.37,535,3.449,537,1.43,539,2.047,557,1.383,598,1.702,600,1.876,607,1.665,611,1.455,612,2.047,613,1.383,623,2.389,640,1.631,643,1.702,644,2.047,649,1.876,671,0.768,684,1.598,690,1.741,698,2.939,709,2.389,728,3.119,736,1.665,740,1.631,752,2.285,762,1.702,765,2.285,775,2.389,791,4.172,793,2.515,795,1.508,811,0.414,815,2.195,817,1.43,830,2.389,854,2.227,861,0.659,870,0.922,924,1.189,929,0.652,942,1.082,973,1.741,991,2.117,1004,1.702,1010,1.206,1015,1.383,1017,2.488,1030,1.741,1033,1.665,1157,2.996,1204,1.928,1222,1.631,1244,2.195,1254,1.928,1332,1.985,1346,1.876,1351,3.721,1377,1.455,1404,2.672,1420,2.195,1525,2.672,1539,1.876,1596,2.515,1612,1.741,1635,4.42,1660,1.455,2095,2.515,2353,6.251,2378,2.672,2553,1.928,2598,2.117,2947,3.202,2948,3.202,2949,3.202,2950,3.202,2951,3.202,2952,3.202,2953,3.202,2954,3.202,2955,2.882,2956,2.882,2957,2.672,2958,3.202,2959,3.202,2960,3.202,2961,3.202,2962,3.202]],["description//tracks/aws-certified-developer-associate/api-gateway/",[7,0.663,22,2.867,23,0.852,24,2.505,276,1.566,383,1.91,607,2.224]],["title//tracks/archive/",[863,4.333]],["content//tracks/archive/",[236,4.091,591,0.228,863,5.133,2963,8.736,2964,7.622]],["description//tracks/archive/",[]],["title//tracks/algorithms-101/plan",[538,4.461]],["content//tracks/algorithms-101/plan",[1,1.613,3,1.74,8,1.15,11,1.253,12,2,14,2.204,19,1.598,30,1.164,49,1.045,51,0.817,54,0.781,55,1.957,60,0.965,70,1.47,75,1.519,79,2.265,80,2.265,98,2.406,101,2.095,108,0.976,118,4.208,137,0.542,147,1.625,158,2.807,165,1.019,170,1.652,186,1.652,207,1.193,226,0.905,229,1.549,232,1.545,239,0.883,245,1.623,277,3.396,281,4.052,282,2.147,286,0.923,361,1.48,381,0.637,382,1.623,390,1.437,393,2.037,400,1.549,412,1.48,425,1.34,429,0.904,433,1.223,434,1.68,439,1.84,450,1.34,455,1.083,478,0.943,495,1.399,496,2.204,528,2.193,532,2.814,538,2.332,565,1.956,566,3.376,578,1.877,583,2.322,591,0.263,596,2.999,671,0.902,767,2.332,831,2.872,859,3.607,860,1.458,862,2.265,872,2,883,4.074,888,1.805,923,2.955,965,3.067,983,2.332,990,1.167,999,1.84,1012,2.793,1024,1.397,1050,2.505,1078,1.288,1091,1.397,1112,1.916,1116,1.772,1124,2.814,1135,2.487,1146,2.252,1203,1.208,1228,6.011,1258,1.877,1278,4.826,1327,1.805,1343,1.502,1345,1.957,1462,2.573,1482,2.814,1490,3.68,1521,2.204,1581,2.579,1612,3.067,1642,2.147,1665,1.417,1673,2.657,1675,2.872,1700,1.525,1708,2.332,1711,2.406,1727,4.495,1751,3.786,1798,1.397,1887,2.548,1938,2.579,1998,4.707,2119,2.579,2234,2,2236,2,2237,3.22,2252,2.406,2269,1.652,2358,3.643,2486,3.596,2575,2.934,2576,3.304,2578,3.396,2589,2.265,2595,2.265,2596,3.396,2598,3.729,2610,3.386,2664,3.187,2736,6.917,2743,2.999,2861,3.139,2965,6.091,2966,1.437,2967,2.579,2968,1.88,2969,4.885,2970,3.519,2971,3.607,2972,2.955,2973,2.955,2974,3.139,2975,2.684,2976,2.807,2977,2.955,2978,3.762,2979,3.139,2980,3.139,2981,2.955,2982,1.957,2983,2.406,2984,2.759,2985,2.095,2986,1.625,2987,2.807,2988,2.609,2989,3.139,2990,2.684,2991,4.526,2992,2.807,2993,4.707,2994,3.762,2995,3.762,2996,2.332,2997,3.141,2998,4.209,2999,4.209,3000,4.209,3001,2.807,3002,4.97,3003,2.807,3004,2.684,3005,2.487,3006,2.579,3007,2.807,3008,2.955,3009,2.807,3010,0.943,3011,2.955,3012,1.877,3013,3.386,3014,3.762,3015,2.487,3016,2.955,3017,2.807,3018,2.955,3019,2.807,3020,2.579,3021,2.807,3022,2.579,3023,3.139,3024,2.955,3025,2.147,3026,3.386,3027,3.386,3028,0.396]],["description//tracks/algorithms-101/plan",[]],["title//tracks/algorithms-101/leetcode75",[1146,2.146,3022,3.685,3028,0.565]],["content//tracks/algorithms-101/leetcode75",[1,1.381,3,1.201,11,1.364,12,1.38,51,0.917,54,0.36,60,0.722,61,1.201,91,1.223,100,1.412,101,1.446,108,0.674,137,0.249,140,2.341,154,0.803,165,0.469,170,1.14,172,0.913,174,0.917,186,2.696,206,1.201,210,0.49,213,1.223,224,0.901,229,1.737,232,0.864,245,0.747,277,1.563,281,4.18,307,0.73,311,2.065,353,1.037,385,0.978,390,0.992,393,0.938,400,1.069,407,0.697,412,1.021,427,2.149,429,1.412,431,0.889,433,0.844,445,0.784,450,0.925,478,0.651,484,1.14,501,1.38,528,1.865,535,1.296,565,0.901,566,1.296,591,0.264,632,1.296,698,1.246,748,2.698,755,1.223,759,1.482,831,1.322,859,1.66,862,1.563,875,2.039,899,2.541,983,1.609,990,1.418,999,2.608,1012,2.343,1015,2.302,1024,1.567,1034,1.322,1050,1.489,1055,1.18,1091,2.687,1112,1.322,1113,1.78,1115,2.616,1116,1.223,1123,2.039,1124,1.296,1146,1.037,1158,1.052,1174,1.717,1203,1.712,1228,1.78,1241,1.853,1315,1.412,1324,1.021,1328,1.322,1335,0.506,1342,2.039,1345,1.35,1360,1.16,1377,1.18,1379,1.717,1441,0.951,1447,1.223,1449,1.322,1454,1.521,1462,2.611,1482,2.106,1499,1.937,1517,1.322,1521,2.472,1578,2.167,1579,2.039,1581,1.78,1612,2.295,1657,1.78,1665,2.008,1673,1.988,1675,1.322,1688,2.039,1698,2.039,1700,1.711,1708,2.616,1741,1.246,1751,1.121,1827,2.167,1938,1.78,2050,1.66,2185,2.893,2188,1.503,2213,2.167,2225,1.521,2234,1.38,2236,1.38,2237,1.482,2256,1.717,2269,1.853,2431,1.66,2436,2.167,2466,1.35,2469,2.337,2486,3.859,2493,2.337,2510,2.039,2575,1.35,2576,1.521,2578,1.563,2589,1.563,2595,1.563,2596,1.563,2598,1.717,2653,1.937,2664,4.151,2736,7.006,2743,2.243,2965,8.804,2966,2.765,2970,2.773,2972,2.039,2973,2.039,2975,1.853,2976,1.937,2977,2.039,2983,1.66,2984,1.27,2986,2.302,2987,1.937,2990,1.853,2991,1.563,2996,1.609,2998,1.937,2999,1.937,3000,1.937,3003,1.937,3004,1.853,3006,1.78,3007,1.937,3010,0.651,3011,3.314,3012,2.106,3015,1.717,3016,2.039,3018,2.039,3019,1.937,3021,1.937,3022,2.893,3023,2.167,3028,0.273,3029,4.22,3030,2.337,3031,2.337,3032,2.79,3033,1.937,3034,2.337,3035,2.039,3036,1.66,3037,2.167,3038,2.039,3039,2.167,3040,2.893,3041,2.167,3042,1.446,3043,2.167,3044,2.167,3045,1.937,3046,3.597,3047,2.167,3048,1.853,3049,2.167,3050,2.167,3051,2.596,3052,2.106,3053,2.167,3054,2.167,3055,2.167,3056,4.449,3057,2.167,3058,1.717,3059,2.167,3060,2.039,3061,2.167,3062,1.78,3063,2.167,3064,2.167,3065,2.337,3066,2.167,3067,2.337,3068,1.937,3069,2.337,3070,2.039,3071,2.039,3072,2.337,3073,2.039,3074,2.596,3075,2.596,3076,2.596,3077,2.596,3078,2.039,3079,1.937,3080,2.596,3081,2.596,3082,1.78,3083,2.596,3084,2.596,3085,3.011,3086,2.596,3087,2.596,3088,2.167,3089,2.596,3090,2.596,3091,2.596,3092,2.337,3093,2.596,3094,2.337,3095,3.799,3096,2.337,3097,2.596,3098,1.853,3099,2.596,3100,2.337,3101,2.596,3102,2.039,3103,2.596,3104,2.596,3105,2.039,3106,2.596,3107,2.039,3108,2.337,3109,2.596,3110,2.596,3111,2.167,3112,2.596,3113,2.337,3114,2.596,3115,2.596,3116,2.337,3117,1.717,3118,2.337,3119,2.596,3120,2.337,3121,2.337,3122,2.337,3123,2.596,3124,2.596,3125,2.596,3126,2.167,3127,2.337,3128,1.78,3129,1.609,3130,2.167,3131,2.596,3132,2.167,3133,2.596,3134,2.596,3135,2.337,3136,2.337,3137,2.596,3138,2.337,3139,2.596,3140,2.596,3141,2.167,3142,2.596,3143,2.596,3144,3.314,3145,2.596,3146,2.596,3147,2.337,3148,2.596,3149,2.596,3150,2.596,3151,2.596,3152,2.596,3153,2.596,3154,2.596,3155,2.039,3156,2.337,3157,1.563,3158,1.563,3159,2.337,3160,2.337,3161,2.596,3162,2.596,3163,1.66,3164,3.799,3165,2.596,3166,2.596,3167,2.596,3168,2.596,3169,2.167,3170,2.596,3171,2.596,3172,2.596,3173,2.596]],["description//tracks/algorithms-101/leetcode75",[]],["title//tracks/algorithms-101/algorithms",[1887,2.71]],["content//tracks/algorithms-101/algorithms",[1,1.558,7,0.478,8,1.958,9,0.682,11,1.907,16,0.729,29,2.664,30,2.095,35,1.114,41,0.581,42,0.798,43,0.645,48,1.625,49,0.496,51,0.884,54,1.338,57,0.588,59,1.511,60,1.159,62,0.914,64,1.843,65,0.727,66,0.514,70,2.046,71,1.691,72,0.771,76,2.413,87,2.369,108,1.551,114,2.558,120,1.444,121,0.673,127,0.628,128,1.423,131,1.76,133,1.31,137,0.99,139,1.142,146,0.791,154,1.498,159,0.692,160,1.332,161,2.2,165,1.654,170,2.625,171,0.463,174,1.052,175,0.566,182,1.49,186,3.909,187,1.332,188,0.566,207,2.409,210,0.582,211,1.919,221,1.393,223,1.144,224,2.553,226,0.915,229,3.768,230,1.225,231,1.85,232,1.323,239,1.833,269,2.163,278,1.285,283,1.393,285,2.574,286,0.438,289,0.508,298,1.02,307,0.867,309,1.31,311,1.509,327,1.213,330,0.812,340,1.453,341,2.169,353,0.713,361,0.703,369,0.474,381,1.146,382,1.573,393,1.114,394,2.738,395,3.768,404,0.784,409,1.225,410,2.163,412,0.703,413,0.798,414,1.274,425,0.636,429,1.499,433,1.323,441,0.62,442,1.76,444,0.929,445,1.65,455,1.394,458,2.074,462,1.315,487,0.703,495,1.885,500,0.995,509,2.528,511,2.025,512,0.812,513,2.072,531,1.275,532,2.03,533,0.533,557,1.757,563,1.231,565,2.074,566,2.983,567,1.047,576,0.636,578,1.539,580,2.625,583,0.735,591,0.257,597,1.161,601,2.704,626,1.725,631,0.842,635,1.047,642,2.025,671,1.537,696,1.847,719,0.798,727,0.703,733,2.039,734,0.998,748,3.096,754,0.485,756,2.916,759,1.02,772,4.341,777,2.15,781,1.047,785,0.995,788,1.142,793,1.403,795,2.574,811,1.093,817,1.817,826,1.807,829,0.491,831,0.91,855,1.142,860,0.692,861,1.791,873,0.713,875,6.416,887,1.798,888,1.48,889,2.764,890,0.929,899,2.916,929,1.694,965,0.972,975,0.972,981,0.995,983,2.522,989,2.633,990,1.261,999,0.874,1010,2.058,1012,2.349,1015,1.332,1018,4.359,1048,0.929,1049,1.31,1050,2.405,1065,0.874,1084,1.225,1086,0.874,1087,0.929,1089,0.857,1090,0.91,1091,1.511,1094,1.142,1114,2.011,1131,1.275,1135,1.181,1151,1.157,1168,2.275,1174,2.69,1178,0.735,1193,2.788,1203,2.623,1230,1.377,1248,1.275,1249,1.181,1278,1.02,1279,1.933,1285,1.142,1286,0.874,1287,2.057,1303,1.391,1316,1.332,1317,1.02,1318,1.76,1335,0.348,1345,0.929,1353,0.891,1362,2.696,1396,0.995,1422,2.213,1423,1.717,1437,1.225,1440,1.31,1441,2.695,1449,2.072,1454,3.968,1477,1.107,1482,0.891,1490,4.351,1528,2.416,1539,1.047,1564,3.754,1624,1.729,1635,1.142,1639,1.181,1665,1.532,1673,0.842,1678,2.301,1697,1.076,1700,0.724,1708,1.107,1711,3.823,1722,0.826,1727,2.574,1751,4.013,1756,1.333,1777,2.45,1798,2.379,1869,2.285,1887,2.941,1892,1.275,1899,1.333,1900,1.333,1927,1.195,1935,1.608,1937,1.275,1960,2.22,1981,1.231,2076,1.953,2096,2.163,2123,1.142,2131,2.69,2188,0.636,2217,5.676,2225,1.807,2235,1.181,2271,2.301,2282,1.426,2294,1.717,2325,0.995,2356,1.107,2358,3.467,2359,6.379,2473,0.944,2486,1.377,2515,1.491,2520,2.776,2551,1.275,2578,1.076,2608,0.713,2645,0.857,2660,1.181,2664,2.574,2713,3.036,2725,1.76,2727,1.608,2814,2.422,2918,1.181,2966,1.85,2968,1.131,2971,1.142,2983,3.495,2990,1.275,2991,5.011,2996,1.912,2997,0.995,3001,2.301,3004,1.275,3005,2.039,3010,1.499,3024,1.403,3028,0.509,3052,4.487,3058,1.181,3085,4.572,3095,3.663,3107,1.403,3121,3.663,3122,3.663,3128,2.114,3129,1.107,3144,1.403,3174,1.181,3175,1.047,3176,1.491,3177,1.786,3178,1.076,3179,4.069,3180,4.92,3181,1.275,3182,4.069,3183,1.491,3184,1.786,3185,1.786,3186,1.786,3187,1.539,3188,1.491,3189,1.608,3190,5.652,3191,2.422,3192,5.978,3193,5.978,3194,1.786,3195,1.786,3196,1.786,3197,4.842,3198,3.084,3199,5.67,3200,1.786,3201,1.786,3202,1.786,3203,1.786,3204,1.786,3205,1.786,3206,1.717,3207,1.786,3208,1.786,3209,1.275,3210,3.084,3211,3.084,3212,1.786,3213,1.786,3214,1.608,3215,1.608,3216,1.403,3217,1.786,3218,1.403,3219,2.776,3220,3.084,3221,3.084,3222,2.573,3223,1.786,3224,1.786,3225,1.786,3226,1.786,3227,1.786,3228,1.786,3229,3.084,3230,3.416,3231,1.857,3232,3.084,3233,1.786,3234,3.613,3235,1.786,3236,1.786,3237,2.573,3238,1.608,3239,1.717,3240,1.403,3241,1.491,3242,1.491,3243,1.275,3244,1.107,3245,1.403,3246,1.403,3247,3.084,3248,1.608,3249,2.776,3250,1.786,3251,1.608,3252,1.608,3253,1.608,3254,1.608,3255,1.786,3256,1.608,3257,1.786,3258,1.608,3259,1.786,3260,1.786,3261,1.786,3262,1.786,3263,1.786,3264,1.608,3265,1.786,3266,1.786,3267,1.786,3268,1.333,3269,1.786,3270,1.786,3271,1.786,3272,1.786,3273,1.786,3274,4.92,3275,1.786,3276,1.786,3277,1.333,3278,3.084,3279,1.786,3280,3.084,3281,1.786,3282,1.786,3283,3.084,3284,1.786,3285,1.786,3286,1.786,3287,1.786,3288,1.786,3289,1.786,3290,3.084,3291,1.786,3292,4.069,3293,4.359,3294,2.69,3295,3.395,3296,1.786,3297,1.225,3298,1.786,3299,1.786,3300,1.786,3301,4.833,3302,1.786,3303,1.275,3304,1.608,3305,3.084,3306,1.786,3307,1.786,3308,1.786,3309,1.786,3310,1.786,3311,1.786,3312,2.776,3313,1.608,3314,2.776,3315,3.084,3316,2.422,3317,1.333,3318,1.491,3319,1.608,3320,3.084,3321,3.084,3322,3.084,3323,3.084,3324,3.084,3325,1.608,3326,1.786,3327,3.084,3328,1.491,3329,5.465,3330,2.776,3331,1.608,3332,1.491,3333,2.573,3334,1.786,3335,1.333,3336,3.084,3337,3.084,3338,1.608,3339,1.333,3340,1.786,3341,1.786,3342,1.786,3343,1.786,3344,1.225,3345,1.786,3346,3.084,3347,4.989,3348,2.522,3349,3.084,3350,1.608,3351,0.891,3352,1.181,3353,1.786,3354,1.786,3355,1.786,3356,1.786,3357,1.786,3358,0.995,3359,3.663,3360,3.663,3361,1.491,3362,4.842,3363,1.608,3364,1.403,3365,1.786,3366,0.771,3367,1.333,3368,1.333,3369,2.422]],["description//tracks/algorithms-101/algorithms",[1887,2.356,3028,0.658,3370,5.632]],["title//tracks/algorithms-101/_index",[1887,2.317,3371,4.833]],["content//tracks/algorithms-101/_index",[0,4.313,1,1.66,9,3.089,12,4.299,14,4.152,16,0.445,39,1.919,54,1.205,59,1.919,60,0.885,62,1.161,66,2.04,70,1.981,75,1.161,108,1.341,125,1.42,128,1.796,137,0.836,146,1.326,157,1.881,158,6.492,207,3.252,210,1.72,223,1.453,226,0.974,243,2.951,245,2.504,278,1.881,291,3.854,303,2.095,304,3.305,311,3.956,345,1.919,351,1.42,356,2.435,382,2.327,390,1.975,393,1.867,394,1.769,395,4.299,396,2.961,410,2.748,412,2.033,414,1.619,425,2.525,431,1.769,434,3.885,439,3.956,441,1.793,444,2.689,450,2.881,486,2.748,495,1.282,534,1.42,538,3.204,558,6.351,575,3.857,576,2.881,583,3.329,591,0.237,597,1.946,601,2.064,622,2.951,655,2.559,673,3.686,736,3.686,753,4.653,767,4.393,772,4.698,777,2.787,780,3.204,811,0.668,831,2.632,832,3.536,848,6.492,859,5.563,883,4.267,886,4.313,887,1.919,888,2.481,891,3.418,893,7.279,924,1.919,925,4.267,952,5.913,990,1.546,999,3.467,1010,1.946,1032,3.688,1037,4.045,1039,2.435,1078,1.769,1116,2.435,1137,3.688,1146,3.473,1151,2.3,1183,3.028,1238,2.158,1288,3.418,1303,0.837,1311,2.003,1366,3.688,1396,2.878,1423,5.076,1458,4.313,1821,6.833,1881,7.856,1887,3.276,1938,3.544,1978,4.653,2149,4.267,2473,1.199,2478,5.171,2525,4.06,2574,3.854,2575,4.206,2634,3.857,2729,5.565,2736,3.418,2863,2.878,2966,1.975,2975,3.688,3022,3.544,3025,5.604,3026,6.379,3028,0.745,3098,3.688,3176,4.313,3230,2.963,3277,3.857,3317,3.857,3344,3.544,3351,3.536,3372,8.086,3373,4.653,3374,5.169,3375,5.169,3376,5.169,3377,7.086,3378,5.169,3379,2.872,3380,4.653,3381,4.313,3382,5.169,3383,5.169,3384,7.086,3385,5.169,3386,3.418,3387,8.086,3388,4.653,3389,5.169,3390,5.169,3391,1.919,3392,3.857,3393,5.169,3394,4.313,3395,5.169,3396,5.169,3397,5.169]],["description//tracks/algorithms-101/_index",[1887,2.356,3370,5.632,3371,4.914]],["title//tracks/algorithms-101/leetcode/_index",[3028,0.757]],["content//tracks/algorithms-101/leetcode/_index",[14,4.673,16,0.687,41,2.593,54,1.105,57,2.626,59,2.962,70,1.733,75,1.791,165,1.441,226,1.124,245,2.296,246,3.502,307,2.242,352,4.24,365,3.283,420,3.562,462,2.166,473,3.233,479,5.274,583,3.845,711,5.469,926,4.062,990,1.156,991,5.274,1113,5.469,1151,2.269,1238,1.978,1514,3.004,1887,3.004,2575,4.149,3028,1.041,3369,6.265,3386,5.274,3398,7.976,3399,7.18,3400,7.976,3401,7.976,3402,7.976]],["description//tracks/algorithms-101/leetcode/_index",[]],["title//tracks/algorithms-101/leetcode/medium/_index",[2736,4.758]],["content//tracks/algorithms-101/leetcode/medium/_index",[]],["description//tracks/algorithms-101/leetcode/medium/_index",[]],["title//tracks/algorithms-101/leetcode/medium/8",[400,1.964,528,1.083,2968,1.326,3403,4.294]],["content//tracks/algorithms-101/leetcode/medium/8",[429,1.259,528,1.784,591,0.26,601,4.194,811,1.196,990,1.139,1114,2.034,1311,3.045,2581,5.863,3028,0.826,3230,4.115,3404,7.073,3405,6.557,3406,7.857,3407,7.857,3408,7.857,3409,7.857,3410,8.213,3411,6.557,3412,7.857]],["description//tracks/algorithms-101/leetcode/medium/8",[400,2.173,528,1.198,2968,1.467,3028,0.555,3403,4.752]],["title//tracks/algorithms-101/leetcode/medium/78",[1135,4.068,3024,4.833]],["content//tracks/algorithms-101/leetcode/medium/78",[1,1.934,7,0.925,8,2.656,16,0.514,33,2.864,48,2.338,54,1.081,66,1.717,70,1.297,137,0.749,146,2.229,161,2.711,165,1.078,186,4.502,211,1.916,221,2.975,224,3.015,226,1.11,232,0.967,239,1.4,286,1.913,341,1.758,381,1.56,382,2.653,394,2.67,433,2.997,458,2.706,462,2.597,495,2.566,529,3.245,565,2.069,591,0.247,601,3.991,671,1.431,811,1.191,829,1.639,860,2.312,861,1.789,890,3.103,990,0.865,1012,2.069,1050,2.236,1114,1.311,1135,6.935,1151,2.219,1203,3.15,1230,2.665,1287,3.315,1303,1.408,1430,3.593,1440,3.315,1441,2.185,1490,5.336,1515,4.147,1624,2.535,1960,2.215,2024,3.496,2188,2.126,2294,4.84,2358,2.98,2473,1.81,2486,3.484,2645,1.658,2983,3.815,2991,5.234,3028,0.82,3085,4.258,3187,2.977,3206,3.323,3230,4.24,3313,5.371,3338,5.371,3348,3.699,3350,7.022,3351,4.337,3352,5.158,3368,4.452,3391,2.215,3413,5.966,3414,3.945,3415,5.966,3416,5.966,3417,5.966,3418,5.371,3419,5.966,3420,5.966,3421,4.979,3422,5.821,3423,7.801,3424,7.801]],["description//tracks/algorithms-101/leetcode/medium/78",[1135,4.137,3024,4.914,3028,0.658]],["title//tracks/algorithms-101/leetcode/medium/75",[1711,3.437,2358,2.053,3022,3.685]],["content//tracks/algorithms-101/leetcode/medium/75",[16,0.597,54,0.96,60,1.186,137,1.003,185,3.204,226,1.033,353,2.766,415,4.294,445,2.94,591,0.253,631,4.39,633,3.858,756,5.166,804,3.148,811,1.109,829,2.356,990,1.351,1050,2.26,1114,2.241,1143,3.954,1168,2.992,1239,4.426,1303,1.122,1362,4.777,1392,3.094,1437,4.75,1441,2.537,1540,4.58,1624,2.943,1751,3.705,1838,3.325,1887,2.609,2123,4.43,2188,2.468,2358,2.646,2473,1.608,2645,1.925,2713,5.169,3010,2.152,3028,0.728,3199,7.47,3206,3.858,3230,3.587,3351,3.457,3359,6.236,3360,6.236,3363,6.236,3367,5.169,3425,9.012,3426,5.441,3427,5.441,3428,6.927,3429,5.166,3430,5.068,3431,10.2,3432,7.723,3433,3.768,3434,8.579]],["description//tracks/algorithms-101/leetcode/medium/75",[1711,3.662,2358,2.187,3022,3.926,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/73",[51,1.037,2269,2.095,3002,3.154,3021,3.56]],["content//tracks/algorithms-101/leetcode/medium/73",[51,1.979,54,1.151,62,1.866,70,1.805,71,2.57,128,1.462,133,2.796,137,0.874,160,2.842,165,1.189,181,5.003,226,0.792,341,1.94,353,2.628,387,2.195,424,4.696,462,1.787,591,0.255,730,5.169,734,2.038,755,3.1,929,1.692,990,0.954,1032,4.696,1114,2.324,1203,2.113,1239,2.991,1303,1.066,1335,1.283,1361,5.492,1449,5.208,1517,3.352,1624,2.796,1797,8.533,1981,2.628,2269,3.648,2325,3.665,2473,1.527,2645,2.309,2968,1.829,3002,6.902,3010,1.651,3021,6.2,3028,0.874,3178,5.758,3187,4.146,3301,6.497,3316,7.909,3318,5.492,3319,5.924,3352,4.351,3364,5.169,3366,2.842,3435,6.581,3436,6.581,3437,6.581,3438,6.581,3439,6.581,3440,9.104,3441,8.308,3442,8.308,3443,8.308,3444,8.308,3445,6.581,3446,8.308,3447,7.98,3448,8.308,3449,8.308,3450,6.581]],["description//tracks/algorithms-101/leetcode/medium/73",[51,1.147,2269,2.318,3002,3.49,3021,3.939,3028,0.555]],["title//tracks/algorithms-101/leetcode/medium/7",[393,1.941,2968,1.493,2986,2.321]],["content//tracks/algorithms-101/leetcode/medium/7",[54,0.972,64,1.703,70,1.525,71,2.9,137,0.94,165,1.269,222,4.775,226,0.845,247,1.974,256,2.069,287,2.983,303,2.845,322,4.489,387,3.521,419,3.909,429,1.386,508,2.501,530,3.798,565,2.435,591,0.254,601,2.803,811,1.265,887,2.606,929,1.909,990,1.017,1114,2.06,1166,3.19,1303,1.137,1311,2.721,1335,1.369,1654,4.007,1813,3.651,1847,4.489,2473,1.629,2576,4.113,2645,2.605,2743,4.984,2968,2.605,2986,4.049,3015,5.719,3028,0.738,3155,5.513,3366,3.032,3391,3.633,3410,5.858,3411,5.858,3451,7.786,3452,6.319,3453,6.454,3454,7.786,3455,5.858,3456,4.813,3457,7.02,3458,7.02,3459,7.02,3460,7.02,3461,7.02,3462,8.809,3463,7.02]],["description//tracks/algorithms-101/leetcode/medium/7",[393,2.068,2968,1.591,2986,2.473,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/62",[186,2.36,1024,1.995,3019,4.01]],["content//tracks/algorithms-101/leetcode/medium/62",[8,1.876,39,2.28,49,1.706,54,1.221,66,1.767,69,2.892,71,2.459,120,1.832,137,1.012,154,2.459,165,1.684,186,3.49,210,1.159,226,0.957,232,0.995,314,2.84,387,2.048,393,2.218,394,2.102,429,0.984,445,3.038,458,2.13,462,1.667,591,0.258,671,1.473,730,4.823,811,1.205,829,1.687,859,3.926,929,1.618,990,0.89,1024,2.951,1034,3.127,1049,4.276,1114,1.936,1146,3.173,1164,4.312,1168,2.552,1192,5.984,1193,2.528,1239,4.758,1303,1.288,1335,1.197,1392,2.742,1421,3.505,1528,3.966,2188,2.188,2356,4.927,2473,1.844,2645,2.209,2968,1.706,3002,5.827,3010,2.607,3019,4.582,3028,0.927,3178,5.612,3187,4.651,3293,8.69,3358,3.419,3391,3.672,3447,8.399,3464,4.823,3465,6.14,3466,6.14,3467,5.527,3468,7.948,3469,7.155,3470,8.813,3471,8.813]],["description//tracks/algorithms-101/leetcode/medium/62",[186,2.514,1024,2.126,3019,4.273,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/56",[566,2.682,1708,3.332,3018,4.221]],["content//tracks/algorithms-101/leetcode/medium/56",[49,2.451,54,1.004,71,2.729,137,1.003,226,0.873,462,1.968,566,4.402,591,0.252,601,3.796,622,4.138,719,3.238,811,1.14,929,1.796,990,1.051,1050,2.14,1158,2.938,1303,1.174,1335,1.413,1708,6.616,2473,1.682,2645,2.642,3028,0.762,3169,8.257,3178,4.365,3209,7.236,3352,6.287,3472,7.249,3473,7.249,3474,7.249,3475,7.249,3476,7.249,3477,7.249,3478,7.249,3479,7.249,3480,7.249,3481,7.249,3482,7.249,3483,7.249,3484,6.526,3485,7.249,3486,7.249,3487,7.249,3488,7.249,3489,9.508,3490,7.249,3491,7.249,3492,7.249,3493,6.526,3494,7.249]],["description//tracks/algorithms-101/leetcode/medium/56",[566,2.857,1708,3.55,3018,4.497,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/55",[2119,3.685,3016,4.221,3017,4.01]],["content//tracks/algorithms-101/leetcode/medium/55",[49,2.251,54,1.122,65,1.598,70,1.374,71,2.506,137,0.973,165,1.464,174,1.374,226,1.076,381,1.371,408,4.878,433,3.295,462,2.2,591,0.256,626,3.471,733,4.182,811,1.326,826,3.705,829,1.737,860,3.464,887,3.008,929,1.649,990,0.917,1050,1.965,1091,3.318,1114,2.19,1151,1.799,1203,2.031,1239,4.605,1303,1.448,1335,1.233,1353,3.156,1440,2.687,1441,2.966,1528,4.46,1722,2.926,1798,3.008,1896,4.719,1922,4.967,2473,2.074,2478,4.044,2608,3.89,2645,2.251,2968,1.757,3010,2.032,3017,6.669,3028,0.665,3187,3.156,3206,4.977,3230,4.168,3294,4.182,3301,4.513,3348,5.022,3351,4.042,3366,2.731,3495,6.324,3496,6.324,3497,6.324,3498,4.513,3499,8.937,3500,5.022,3501,8.937,3502,6.324,3503,6.324,3504,4.967,3505,6.324,3506,8.937,3507,6.324,3508,6.324,3509,6.324,3510,6.324,3511,5.278,3512,8.101]],["description//tracks/algorithms-101/leetcode/medium/55",[2119,3.926,3016,4.497,3017,4.273,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/53",[101,2.993,1091,1.995,3012,2.682]],["content//tracks/algorithms-101/leetcode/medium/53",[11,1.644,49,2.057,54,1.025,71,2.968,108,1.92,137,0.98,165,1.338,226,0.891,390,3.413,462,2.01,591,0.254,811,1.24,929,1.954,990,1.073,1050,1.795,1303,1.199,1335,1.443,2473,1.718,2589,4.457,2645,2.666,2966,3.665,2968,2.057,3012,3.694,3028,0.778,3128,6.125,3178,4.457,3206,4.975,3230,4.265,3348,4.589,3351,3.694,3391,2.748,3504,7.016,3513,7.402,3514,6.663,3515,8.933,3516,8.933,3517,7.402,3518,7.402,3519,9.964,3520,9.964,3521,6.663,3522,7.402]],["description//tracks/algorithms-101/leetcode/medium/53",[101,3.189,1091,2.126,3012,2.857,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/50",[12,2.857,3009,4.01,3010,1.348]],["content//tracks/algorithms-101/leetcode/medium/50",[49,2.043,54,1.41,71,2.959,137,0.955,165,1.608,226,1.071,387,3.491,407,1.973,450,2.619,462,2.415,591,0.254,811,1.236,929,1.948,990,1.065,1303,1.441,1490,3.997,1648,3.823,1927,2.849,2356,4.557,2467,5.245,2473,2.064,2645,2.658,3009,5.485,3010,2.682,3028,0.773,3391,2.729,3523,7.35,3524,8.896,3525,7.35,3526,7.35,3527,7.35,3528,7.35,3529,7.35,3530,7.35,3531,7.35,3532,8.896,3533,6.348,3534,7.35]],["description//tracks/algorithms-101/leetcode/medium/50",[12,3.044,3009,4.273,3010,1.436,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/5",[245,1.373,2970,2.481,2984,2.334,2985,2.657]],["content//tracks/algorithms-101/leetcode/medium/5",[11,1.167,16,0.452,30,2.522,39,1.95,48,1.332,49,1.46,54,0.992,57,1.73,64,1.738,69,2.474,70,1.141,71,2.216,137,0.909,178,1.46,210,0.991,211,2.3,214,1.95,222,2.675,224,2.828,226,1.055,232,0.851,245,1.512,269,2.346,287,2.232,341,1.548,381,1.213,404,4.025,433,2.329,445,2.923,495,2.022,511,2.196,528,2.081,532,2.621,591,0.259,658,3.748,671,1.26,720,2.43,734,2.248,742,3.473,754,1.426,777,2.818,811,1.054,816,3.256,929,1.459,937,3.748,961,6.302,962,5.112,973,4.434,990,1.038,1015,2.268,1030,2.857,1085,7.34,1087,2.732,1114,1.924,1152,4.125,1166,2.387,1168,2.943,1223,4.581,1230,2.346,1303,1.321,1311,3.752,1335,1.397,1398,3.256,1462,1.798,1515,2.793,1695,1.978,1777,4.314,1798,1.95,1832,2.621,1869,2.196,1887,3.298,1907,3.163,1960,1.95,2141,2.998,2419,2.793,2473,1.663,2645,1.991,2964,4.125,2970,4.556,2984,4.285,2985,5.828,2986,2.268,3010,2.197,3028,0.753,3178,3.163,3317,3.92,3366,2.268,3379,2.904,3421,4.383,3535,5.252,3536,5.252,3537,5.252,3538,5.252,3539,5.252,3540,3.748,3541,3.601,3542,3.896,3543,2.998,3544,5.252,3545,7.164,3546,4.126,3547,5.252,3548,5.252,3549,7.884,3550,7.164,3551,7.164,3552,8.758,3553,5.252,3554,5.252,3555,8.153,3556,5.252,3557,4.728,3558,8.758,3559,5.252,3560,5.252,3561,9.46,3562,9.166,3563,8.758,3564,5.252,3565,5.252,3566,5.252,3567,5.252,3568,7.164,3569,5.252,3570,5.252,3571,5.252,3572,5.252,3573,5.252,3574,5.252,3575,5.252,3576,5.252,3577,5.252,3578,5.252,3579,5.252,3580,5.252,3581,5.252,3582,5.252]],["description//tracks/algorithms-101/leetcode/medium/5",[49,1.117,245,1.157,591,0.095,1238,0.997,2970,2.092,2984,1.967,2985,2.239,3028,0.423,3583,3.158]],["title//tracks/algorithms-101/leetcode/medium/49",[147,2.321,3007,4.01,3008,4.221]],["content//tracks/algorithms-101/leetcode/medium/49",[16,0.713,54,1.258,57,2.154,64,2.007,69,3.081,71,2.808,96,3.081,137,0.872,147,2.825,159,2.535,160,2.825,165,1.496,226,0.996,232,1.06,269,2.921,307,1.839,381,1.401,414,2.048,429,1.326,462,1.776,528,2.061,535,3.264,591,0.254,672,5.458,727,2.573,754,1.776,781,3.832,802,4.055,811,1.173,929,2.004,990,0.948,1000,3.938,1034,3.331,1050,1.586,1095,4.324,1114,2.096,1158,2.651,1228,4.484,1238,1.622,1303,1.341,1311,3.698,1335,1.275,1343,3.625,1345,4.305,1377,2.972,1440,2.779,1553,3.557,1594,3.642,1700,3.99,1887,2.463,2131,4.324,2262,4.667,2473,1.92,2481,4.881,2596,5.467,2645,2.523,2968,1.817,2993,5.458,2996,4.055,3008,7.13,3028,0.87,3042,4.609,3209,4.667,3366,2.825,3546,4.81,3584,7.45,3585,6.54,3586,6.54,3587,6.54,3588,6.54,3589,5.458,3590,5.888,3591,5.888,3592,6.54,3593,6.54,3594,6.54,3595,6.54,3596,6.54,3597,6.54,3598,6.54,3599,3.734,3600,5.888,3601,5.888,3602,6.54,3603,6.54,3604,6.54,3605,6.54,3606,6.54,3607,5.888,3608,6.54,3609,6.54,3610,6.54]],["description//tracks/algorithms-101/leetcode/medium/49",[147,2.473,3007,4.273,3008,4.497,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/48",[361,2.114,596,2.857,3006,3.685]],["content//tracks/algorithms-101/leetcode/medium/48",[35,2.623,54,1.006,57,2.391,71,2.732,137,0.914,185,4.085,226,0.874,353,3.526,361,3.991,387,2.422,591,0.25,596,5.394,633,4.044,811,0.939,929,2.016,990,1.053,1114,1.595,1303,1.176,1335,1.416,1440,3.085,1489,3.136,1624,3.752,1728,5.703,1776,4.145,1838,3.485,2473,1.685,2645,2.644,3002,6.904,3006,6.055,3010,2.215,3028,1.001,3187,3.624,3188,6.06,3222,6.06,3318,7.369,3352,4.801,3366,3.136,3429,5.317,3430,3.949,3447,7.369,3611,9.516,3612,7.261,3613,7.261,3614,7.261,3615,7.261,3616,7.261,3617,7.261,3618,6.537,3619,7.261,3620,7.261,3621,8.83]],["description//tracks/algorithms-101/leetcode/medium/48",[361,2.252,596,3.044,3006,3.926,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/46",[3004,4.391,3005,4.068]],["content//tracks/algorithms-101/leetcode/medium/46",[39,2.633,41,2.305,54,1.205,57,2.335,64,2.284,65,1.556,69,3.34,71,2.913,137,0.943,165,1.281,211,2.277,224,2.459,226,0.854,286,1.739,314,3.28,341,2.09,381,1.2,394,2.427,407,1.903,414,2.221,565,2.459,591,0.252,671,2.088,811,1.303,861,1.459,887,2.633,929,1.917,990,1.028,1037,4.048,1050,1.72,1151,2.017,1194,3.688,1203,2.277,1303,1.149,1335,1.382,1490,3.856,1515,3.77,2473,1.645,2551,5.06,2558,5.06,2626,4.396,2645,2.617,2664,3.34,2968,1.97,3005,6.226,3028,0.746,3206,3.949,3230,4.421,3333,5.917,3351,3.538,3352,4.688,3366,3.062,3392,5.291,3622,7.09,3623,7.09,3624,7.09,3625,7.09,3626,8.703,3627,7.09,3628,7.09,3629,7.09,3630,8.703,3631,7.09,3632,7.09,3633,7.09,3634,7.09,3635,7.09,3636,7.09]],["description//tracks/algorithms-101/leetcode/medium/46",[3004,4.465,3005,4.137,3028,0.658]],["title//tracks/algorithms-101/leetcode/medium/38",[1700,2.494,3003,4.592]],["content//tracks/algorithms-101/leetcode/medium/38",[49,2.273,54,1.133,60,1.622,71,2.53,97,3.762,108,1.666,120,1.915,137,1.036,211,2.062,226,0.773,232,1.04,289,1.826,307,1.805,381,1.385,429,1.311,478,1.61,528,2.222,530,2.819,567,3.762,591,0.259,601,3.594,671,1.54,811,1.057,929,1.93,990,0.931,1010,2.418,1024,2.384,1065,4.404,1095,4.245,1114,1.411,1116,3.025,1303,1.04,1324,2.526,1335,1.252,1456,3.492,1490,3.492,1673,4.24,1700,3.842,1798,2.384,1813,5.406,2294,3.576,2332,5.78,2473,1.49,2576,4.792,2645,2.273,2968,1.784,2984,4.404,2992,4.791,3010,2.51,3028,0.675,3058,4.245,3366,2.773,3391,2.384,3429,5.42,3546,3.025,3637,3.762,3638,8.179,3639,8.179,3640,4.245,3641,4.791,3642,6.421,3643,8.179,3644,6.421,3645,6.421,3646,6.421,3647,6.421,3648,6.421,3649,9.001,3650,7.363,3651,6.421,3652,5.78]],["description//tracks/algorithms-101/leetcode/medium/38",[1700,2.536,3003,4.669,3028,0.658]],["title//tracks/algorithms-101/leetcode/medium/36",[532,2.682,3000,4.01,3001,4.01]],["content//tracks/algorithms-101/leetcode/medium/36",[33,3.11,39,2.406,49,1.801,51,1.408,54,0.898,62,1.847,71,2.545,75,1.455,137,0.943,165,1.634,181,5.443,185,2.998,226,0.78,232,1.05,234,4.279,245,1.865,369,1.72,375,3.234,381,1.53,387,3.399,400,2.668,412,3.861,424,5.871,478,2.267,508,2.931,532,4.745,591,0.248,626,2.931,635,3.796,641,2.512,671,1.554,734,1.589,754,1.76,755,3.053,811,1.063,929,1.936,990,0.939,1002,5.261,1078,3.094,1146,3.285,1168,2.641,1192,4.017,1303,1.05,1324,2.549,1449,3.3,1476,4.696,1517,3.3,1813,4.702,2214,5.261,2427,5.089,2473,1.504,2608,3.285,2645,2.286,2673,5.408,2840,5.089,3001,6.139,3028,0.681,3187,4.106,3301,5.871,3366,2.799,3464,5.089,3500,4.017,3590,5.833,3653,8.836,3654,7.543,3655,5.833,3656,6.48,3657,6.48,3658,6.48,3659,8.227,3660,8.227,3661,8.227,3662,8.227,3663,8.227,3664,8.227,3665,8.227,3666,8.227,3667,6.48,3668,6.48,3669,8.227,3670,6.48,3671,8.227,3672,6.48,3673,7.406,3674,6.48,3675,6.48,3676,6.48,3677,6.48]],["description//tracks/algorithms-101/leetcode/medium/36",[532,2.857,3000,4.273,3001,4.273,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/34",[11,0.731,70,0.715,860,1.276,1050,0.798,1203,1.057,1798,1.222,2358,1.257,2999,2.456]],["content//tracks/algorithms-101/leetcode/medium/34",[11,2.116,16,0.561,30,2.014,51,1.793,54,1.143,64,1.579,65,1.164,71,2.802,75,1.462,137,1.024,165,1.176,214,2.417,226,0.784,232,1.055,390,2.487,395,5.645,400,2.68,414,2.039,420,2.908,433,2.945,445,2.876,495,1.615,508,2.94,511,2.722,591,0.256,800,4.464,811,1.231,929,1.844,990,0.944,1012,2.258,1050,2.197,1114,1.813,1158,2.639,1168,3.156,1174,4.304,1178,2.68,1303,1.337,1335,1.609,1417,3.92,1544,6.886,1798,2.417,1887,2.452,2358,2.487,2473,1.511,2486,2.908,2645,2.517,2968,1.809,2997,3.625,3010,1.633,3012,4.118,3028,0.685,3206,4.595,3230,4.199,3351,4.521,3366,2.812,3391,2.417,3429,5.455,3430,4.488,3432,5.86,3514,5.86,3678,5.433,3679,8.251,3680,6.51,3681,5.86,3682,9.059,3683,9.059,3684,6.51,3685,6.51,3686,6.51,3687,6.51,3688,6.51,3689,6.51]],["description//tracks/algorithms-101/leetcode/medium/34",[11,0.893,70,0.874,860,1.559,1050,0.975,1203,1.291,1798,1.493,2358,1.536,2999,3.001,3028,0.423]],["title//tracks/algorithms-101/leetcode/medium/33",[596,2.28,1012,1.487,1050,1.04,2358,1.638,2998,3.2]],["content//tracks/algorithms-101/leetcode/medium/33",[33,3.584,48,1.894,54,1.034,64,1.811,137,1.009,394,2.556,395,5.121,414,2.339,433,2.428,445,3.087,591,0.258,596,3.97,772,3.726,811,1.161,990,1.082,1050,1.811,1114,1.641,1168,3.283,1368,6.231,2358,2.853,2626,4.629,2968,2.075,3028,0.785,3052,3.726,3062,5.12,3199,7.749,3206,4.158,3230,3.756,3391,2.773,3425,8.997,3426,7.054,3427,5.865,3690,6.722,3691,6.231]],["description//tracks/algorithms-101/leetcode/medium/33",[596,2.603,1012,1.698,1050,1.187,2358,1.87,2998,3.653,3028,0.515]],["title//tracks/algorithms-101/leetcode/medium/3",[165,0.704,888,1.869,1078,1.333,1343,1.555,2970,2.026,2984,1.906]],["content//tracks/algorithms-101/leetcode/medium/3",[1,1.105,11,1.903,16,0.659,29,2.279,49,1.61,51,1.259,54,0.803,59,2.151,62,1.301,64,1.405,65,1.036,69,2.729,70,1.259,71,1.792,128,1.287,137,0.953,165,1.383,170,4.002,178,1.61,210,1.444,211,1.86,214,2.841,226,1.097,256,1.708,287,2.462,341,1.708,385,2.182,395,3.08,404,2.544,409,3.973,429,0.928,433,1.884,445,2.31,528,2.069,576,2.064,591,0.257,601,2.313,631,2.729,746,3.014,749,3.014,777,2.279,811,0.989,861,1.193,887,2.151,888,3.673,929,1.558,983,5.65,989,4.956,990,1.321,1030,4.66,1048,3.014,1050,2.078,1078,2.619,1080,4.551,1087,3.014,1114,2.181,1115,3.592,1166,2.633,1168,1.86,1193,2.385,1203,2.751,1294,3.831,1297,2.349,1303,1.388,1311,3.772,1335,1.492,1343,3.421,1441,2.802,1514,2.182,1624,2.462,1700,2.349,1927,2.246,1981,3.639,2141,3.308,2225,3.395,2235,3.831,2473,1.988,2582,5.46,2645,1.61,2871,3.308,2966,2.213,2970,4.457,2984,4.192,3010,1.453,3028,0.609,3052,2.891,3187,4.857,3209,6.114,3358,3.227,3366,2.502,3391,3.181,3493,5.216,3542,3.151,3546,4.036,3549,8.204,3673,7.713,3692,5.794,3693,4.551,3694,8.568,3695,9.733,3696,7.652,3697,5.794,3698,5.794,3699,5.794,3700,5.794,3701,4.835,3702,5.794,3703,5.794,3704,5.794,3705,5.794,3706,3.831,3707,8.568,3708,5.794,3709,5.794,3710,5.794,3711,4.135,3712,4.551]],["description//tracks/algorithms-101/leetcode/medium/3",[165,0.825,888,2.191,1078,1.563,1343,1.823,2970,2.375,2984,2.233,3028,0.48]],["title//tracks/algorithms-101/leetcode/medium/29",[232,0.773,2598,3.154,2968,1.326,2997,2.657]],["content//tracks/algorithms-101/leetcode/medium/29",[16,0.428,29,1.954,35,1.794,49,1.916,54,1.245,56,3.433,71,2.133,75,1.115,137,1.017,165,1.624,171,1.289,210,0.938,222,5.029,226,0.953,232,1.117,256,1.464,277,2.991,287,2.111,303,2.014,382,1.984,393,2.49,400,2.045,439,2.431,450,1.77,565,1.723,591,0.26,601,3.882,641,1.925,696,1.678,700,3.545,720,2.298,777,2.712,811,1.276,820,2.181,890,2.584,929,1.612,990,0.999,1078,1.701,1087,2.584,1114,2.196,1303,1.283,1315,2.702,1316,2.145,1335,0.969,1392,2.219,1489,2.145,1496,4.472,1654,2.836,1700,2.795,1798,2.56,2241,3.707,2269,2.181,2473,1.838,2645,1.916,2743,3.666,2966,3.025,2968,2.497,2997,4.41,3010,1.246,3015,3.285,3028,0.522,3033,7.88,3052,4.484,3117,4.559,3209,5.651,3366,3.694,3391,3.541,3410,4.146,3411,4.146,3433,2.702,3451,8.372,3543,2.836,3591,9,3713,10.437,3714,3.902,3715,8.09,3716,3.902,3717,4.968,3718,4.968,3719,7.919,3720,3.545,3721,5.754,3722,4.968,3723,4.968,3724,4.968,3725,3.285,3726,7.919,3727,9.723,3728,7.919,3729,6.376,3730,7.919,3731,7.499,3732,4.968,3733,8.986,3734,6.895,3735,4.968,3736,6.895,3737,8.554,3738,8.554]],["description//tracks/algorithms-101/leetcode/medium/29",[232,0.855,2598,3.49,2968,1.467,2997,2.94,3028,0.555]],["title//tracks/algorithms-101/leetcode/medium/2390",[528,1.083,565,1.655,3067,4.294,3068,3.56]],["content//tracks/algorithms-101/leetcode/medium/2390",[1,1.221,7,0.992,11,1.422,16,0.703,65,1.144,128,1.422,146,1.642,157,1.699,161,2.909,171,2.456,174,1.391,178,2.269,210,1.208,226,0.983,231,2.445,247,1.8,256,1.887,273,4.093,278,1.699,316,3.565,318,3.565,341,2.406,344,4.093,345,2.377,381,1.382,382,2.35,396,2.344,401,2.811,455,2.35,460,3.918,462,2.441,478,1.605,508,2.281,509,2.961,528,2.416,530,2.811,533,1.909,565,2.832,576,2.281,578,3.194,591,0.239,625,1.933,671,1.535,727,2.518,777,2.518,778,4.093,802,5.572,811,0.827,829,1.758,868,4.233,990,1.183,1024,2.377,1033,3.33,1094,4.093,1146,3.259,1168,2.886,1238,1.588,1287,3.819,1303,1.037,1311,3.164,1335,1.248,1343,4.18,1353,3.194,1377,3.71,1430,3.855,1435,5.825,1489,2.765,1514,2.411,1564,3.75,1612,5.811,1663,5.22,1722,3.776,1736,4.568,1869,3.414,1960,2.377,1981,2.556,2558,5.825,2645,1.779,2660,4.233,2982,3.33,3028,0.673,3068,7.677,3379,2.595,3394,5.342,3546,3.846,3739,4.777,3740,4.568,3741,2.163,3742,6.401,3743,6.401,3744,3.654,3745,6.401,3746,5.028,3747,6.401,3748,6.401]],["description//tracks/algorithms-101/leetcode/medium/2390",[65,1.06,207,1.275,528,0.913,565,1.395,870,1.157,990,0.583,3028,0.423,3068,3.001]],["title//tracks/algorithms-101/leetcode/medium/22",[8,1.642,2578,3.236,2971,3.437]],["content//tracks/algorithms-101/leetcode/medium/22",[8,2.258,39,2.744,48,1.874,54,1.023,70,1.606,71,2.761,137,0.956,165,1.335,226,0.89,229,3.042,384,3.418,420,3.3,591,0.257,671,1.772,727,2.906,811,0.955,929,1.817,965,4.018,990,1.071,1015,3.191,1114,2.106,1166,3.358,1303,1.446,1311,3.716,1335,1.441,1624,3.14,2473,1.715,2645,2.48,2971,5.707,2991,4.449,3010,2.557,3028,0.777,3209,6.368,3366,3.191,3391,3.313,3429,5.773,3430,5.545,3546,3.481,3749,7.389,3750,7.389,3751,9.588,3752,7.389,3753,7.389]],["description//tracks/algorithms-101/leetcode/medium/22",[8,1.75,2578,3.448,2971,3.662,3028,0.602]],["title//tracks/algorithms-101/leetcode/medium/2",[54,0.661,232,0.773,239,1.119,429,0.764]],["content//tracks/algorithms-101/leetcode/medium/2",[1,1.857,7,0.898,39,2.151,49,1.61,64,1.856,70,1.259,71,1.792,137,0.556,226,1.032,232,1.535,239,1.795,256,1.708,341,1.708,381,1.295,385,2.182,414,1.815,429,1.46,450,2.726,478,1.919,501,3.08,591,0.26,601,3.421,671,1.39,755,2.729,811,1.178,861,1.575,929,1.18,1087,3.014,1114,2.082,1158,3.102,1166,2.633,1287,2.462,1303,1.388,1335,1.13,1430,3.489,1440,2.462,1462,2.933,1624,4.026,1654,3.308,1665,3.227,1756,4.324,1813,3.98,1927,2.246,1981,2.313,2087,8.204,2269,2.544,2473,1.776,2645,1.61,2966,3.481,2968,1.61,2986,3.7,3244,3.592,3347,6.386,3366,3.305,3414,6.435,3599,3.308,3754,9.07,3755,5.794,3756,9.07,3757,5.794,3758,5.794,3759,5.794,3760,5.794,3761,5.794,3762,7.652,3763,7.263,3764,7.652,3765,5.02,3766,5.794,3767,5.794,3768,5.794,3769,6.889,3770,5.794,3771,5.794,3772,5.71,3773,5.794,3774,5.794,3775,7.652,3776,5.794,3777,7.652,3778,7.652,3779,5.794,3780,5.794,3781,5.794,3782,5.794,3783,5.794,3784,5.794,3785,5.794,3786,7.652,3787,5.794,3788,7.652,3789,5.216,3790,7.652,3791,5.216,3792,7.652,3793,8.568,3794,5.794,3795,5.216,3796,5.216,3797,5.794,3798,5.794]],["description//tracks/algorithms-101/leetcode/medium/2",[54,0.731,232,0.855,239,1.239,429,0.846,3028,0.555]],["title//tracks/algorithms-101/leetcode/medium/19",[1,0.743,30,1.205,565,1.351,1665,1.467,2237,2.223,2992,2.907]],["content//tracks/algorithms-101/leetcode/medium/19",[1,1.869,30,2.681,54,1.201,70,1.531,71,2.681,76,3.088,125,1.935,137,0.902,226,0.848,232,1.141,314,3.258,480,2.77,495,1.747,508,2.509,565,3.006,591,0.256,652,3.744,671,1.689,811,1.266,929,1.765,990,1.021,1151,2.003,1303,1.404,1335,1.373,1462,2.967,1665,3.264,1751,4.055,1798,2.615,2237,4.021,2473,2.011,2645,2.408,2992,7.006,3010,2.355,3028,0.911,3239,3.922,3240,5.532,3243,5.026,3244,4.366,3358,3.922,3366,3.042,3391,2.615,3765,6.139,3799,6.34,3800,7.043,3801,5.026,3802,5.256,3803,6.34,3804,5.256,3805,7.043,3806,7.694,3807,6.807,3808,9.388,3809,5.532,3810,7.043,3811,7.043,3812,8.667,3813,7.043]],["description//tracks/algorithms-101/leetcode/medium/19",[1,0.871,30,1.412,565,1.583,1665,1.719,2237,2.606,2992,3.406,3028,0.48]],["title//tracks/algorithms-101/leetcode/medium/189",[596,2.857,1050,1.303,3814,5.374]],["content//tracks/algorithms-101/leetcode/medium/189",[16,0.711,30,2.017,38,2.643,54,0.903,60,1.116,65,1.621,70,1.795,71,2.555,75,1.464,121,2.455,137,0.915,154,2.017,161,3.753,165,1.493,210,1.711,214,3.067,226,1.21,247,1.833,345,2.421,381,1.104,401,2.863,407,1.75,429,1.323,445,2.494,462,2.243,495,2.048,511,2.727,538,4.042,591,0.243,596,5.067,625,1.968,779,3.722,820,2.863,823,3.964,860,2.527,873,2.603,929,1.327,934,2.387,990,1.197,1048,3.391,1049,2.77,1050,2.547,1114,1.815,1143,3.722,1158,2.643,1203,3.276,1238,1.617,1303,1.338,1335,1.271,1539,3.82,1660,2.963,2076,3.129,2181,4.47,2325,4.6,2473,1.513,2478,4.169,2968,1.812,2986,4.407,3010,2.466,3028,0.686,3052,5.323,3206,3.631,3230,4.201,3542,3.546,3543,3.722,3599,3.722,3618,5.869,3741,2.203,3744,3.722,3815,5.441,3816,3.926,3817,6.52,3818,6.52,3819,6.52,3820,8.259,3821,6.52,3822,6.52,3823,9.065]],["description//tracks/algorithms-101/leetcode/medium/189",[65,0.944,445,1.594,596,2.806,1050,1.28,3052,2.634]],["title//tracks/algorithms-101/leetcode/medium/17",[229,1.765,429,0.687,1345,2.231,1482,2.14,2990,3.06]],["content//tracks/algorithms-101/leetcode/medium/17",[54,1.222,69,3.415,70,1.575,71,2.729,137,0.847,226,0.873,229,2.984,363,3.617,382,2.848,394,2.481,406,3.771,412,2.851,414,2.27,429,1.162,478,1.818,528,1.646,535,4.402,591,0.256,641,2.81,811,1.279,929,1.796,990,1.051,1166,3.294,1254,5.312,1303,1.429,1335,1.72,1345,5.364,1440,3.08,1482,3.617,1813,5.43,2473,1.682,2589,4.365,2645,2.451,3028,0.762,3042,4.912,3546,3.415,3589,6.049,3693,5.693,3731,7.361,3824,5.693,3825,7.249,3826,7.249,3827,7.249,3828,7.249,3829,7.249,3830,7.249,3831,7.249,3832,7.249,3833,7.249,3834,7.249,3835,7.249,3836,7.249]],["description//tracks/algorithms-101/leetcode/medium/17",[229,2.015,429,0.785,1345,2.547,1482,2.443,2990,3.494,3028,0.515]],["title//tracks/algorithms-101/leetcode/medium/166",[3716,3.747,3725,3.154,3837,4.294,3838,3.981]],["content//tracks/algorithms-101/leetcode/medium/166",[11,1.308,16,0.507,38,3.136,41,1.915,62,1.323,65,1.053,70,1.28,121,2.913,160,2.544,207,1.868,226,1.104,232,0.954,239,1.382,255,3,256,1.736,263,3.858,282,3.363,382,2.227,410,3.132,413,3.455,433,2.515,450,2.099,455,1.696,462,2.101,495,1.919,511,2.464,514,2.725,528,1.961,530,3.397,535,2.94,563,3.089,591,0.256,601,2.352,625,1.779,671,1.413,754,2.101,785,3.281,811,1,828,7.776,873,2.352,888,4.992,929,1.199,990,1.381,1000,4.659,1048,3.064,1065,3.785,1086,2.882,1087,3.064,1114,1.7,1202,3.861,1228,4.039,1244,4.039,1258,2.94,1303,0.954,1316,4.304,1335,1.149,1440,3.287,1489,3.341,1663,3.767,1952,3.767,2235,3.895,2269,2.587,2282,3.579,2337,4.396,2356,3.652,2473,1.367,2968,2.4,2971,5.524,2997,4.81,3028,0.62,3117,6.589,3368,4.396,3391,2.873,3546,2.775,3716,7.68,3720,4.204,3725,6.686,3741,2.614,3838,4.916,3839,7.942,3840,9.102,3841,5.891,3842,5.891,3843,5.891,3844,5.891,3845,5.303,3846,5.891,3847,8.784,3848,3.895,3849,5.891,3850,5.891,3851,5.891,3852,9.173,3853,5.891,3854,7.736,3855,5.891,3856,5.891,3857,5.891,3858,5.891,3859,5.891,3860,5.891,3861,5.891]],["description//tracks/algorithms-101/leetcode/medium/166",[49,1.055,226,0.457,990,0.55,1238,0.941,2983,2.427,3028,0.399,3716,2.981,3725,2.509,3837,3.417,3838,3.167]],["title//tracks/algorithms-101/leetcode/medium/1657",[232,0.695,528,0.974,1324,1.687,1447,2.02,3065,3.86]],["content//tracks/algorithms-101/leetcode/medium/1657",[1,1.248,16,0.713,35,2.362,51,1.421,60,1.416,65,1.169,120,1.951,144,3.832,171,2.355,174,1.421,207,2.074,226,0.996,229,2.692,232,1.595,278,1.736,345,2.428,381,1.107,394,2.833,447,4.215,462,2.465,508,3.234,528,2.367,557,2.825,583,2.692,591,0.232,597,2.463,625,1.975,626,2.33,696,3.491,719,2.921,734,2.414,754,2.773,756,3.938,777,3.255,802,4.055,811,1.173,990,1.316,1024,3.543,1109,4.667,1193,2.692,1303,1.06,1324,2.573,1335,1.275,1343,4.242,1447,4.277,1514,2.463,1635,4.182,1642,3.734,1660,2.972,1700,3.868,1721,4.484,1832,3.264,1927,3.208,2282,3.025,2358,2.498,2608,3.304,2744,7.286,2996,4.055,3028,0.688,3042,5.056,3231,3.938,3330,5.888,3379,2.651,3498,4.667,3740,4.667,3741,2.796,3744,3.734,3862,6.54,3863,6.54,3864,6.54,3865,5.888,3866,6.54,3867,6.54,3868,6.54,3869,6.54,3870,6.54,3871,6.54,3872,6.54,3873,6.54]],["description//tracks/algorithms-101/leetcode/medium/1657",[232,0.928,528,1.3,1324,2.252,1447,2.697]],["title//tracks/algorithms-101/leetcode/medium/152",[484,2.095,1091,1.771,3012,2.38,3874,4.294]],["content//tracks/algorithms-101/leetcode/medium/152",[11,1.335,16,0.675,30,2.859,35,2.17,60,1.028,65,1.074,76,2.792,187,2.595,207,1.905,210,1.479,214,2.231,226,1.05,232,0.974,256,1.771,286,2.139,311,2.94,330,2.731,345,2.231,369,1.595,380,3.843,381,1.476,382,1.729,394,2.057,396,2.2,413,3.5,429,1.627,433,1.954,462,2.128,478,1.966,484,4.317,563,3.129,591,0.252,601,4.136,625,1.814,696,2.03,811,1.195,823,2.884,829,2.153,873,2.399,890,4.077,990,1.425,1011,3.843,1050,2.49,1091,3.718,1114,1.32,1238,1.944,1278,4.474,1303,0.974,1316,3.385,1335,1.172,1441,2.2,1709,4.484,1727,4.167,1798,2.91,1927,3.038,2004,3.973,2294,3.346,2645,1.67,2720,5.014,2968,1.67,3010,1.507,3012,4.997,3028,0.632,3230,4.187,3348,5.73,3366,2.595,3504,6.85,3521,5.409,3542,3.268,3599,5.276,3637,3.52,3741,2.648,3744,3.43,3875,4.484,3876,7.055,3877,6.009,3878,10.602,3879,10.434,3880,6.009,3881,4.288,3882,6.009,3883,5.409,3884,7.837,3885,6.009,3886,6.009,3887,6.009]],["description//tracks/algorithms-101/leetcode/medium/152",[484,2.005,583,1.879,990,0.662,1091,1.695,3012,2.278,3028,0.48,3874,4.109]],["title//tracks/algorithms-101/leetcode/medium/151",[528,1.083,2986,2.06,3041,3.981,3042,2.657]],["content//tracks/algorithms-101/leetcode/medium/151",[1,1.538,16,0.882,38,4.101,56,3.59,60,1.074,65,1.122,66,2.563,90,2.067,137,0.603,226,1.17,232,1.017,256,1.85,295,2.433,345,2.331,381,1.063,382,1.807,385,2.364,414,3.209,462,2.189,478,2.022,487,2.469,501,4.286,524,2.804,528,2.297,567,6.003,591,0.234,597,2.364,625,1.895,632,3.133,641,2.433,694,4.106,742,6.427,779,3.583,811,1.286,820,4.582,885,5.155,990,1.362,1010,2.364,1065,3.071,1158,2.545,1231,4.014,1238,1.557,1303,1.306,1311,3.855,1335,1.224,1343,2.506,1354,3.678,1375,5.753,1514,2.364,1651,7.432,2065,6.01,2366,4.93,2473,1.871,2645,1.744,2986,4.425,3028,0.66,3042,6.008,3379,2.545,3546,4.427,3640,5.331,3741,2.724,3888,7.257,3889,8.062,3890,6.277,3891,6.277,3892,6.277,3893,6.277]],["description//tracks/algorithms-101/leetcode/medium/151",[528,1.3,2986,2.473,3041,4.778,3042,3.189]],["title//tracks/algorithms-101/leetcode/medium/15",[831,3.134,2989,5.135]],["content//tracks/algorithms-101/leetcode/medium/15",[49,2.273,51,1.395,54,1.133,70,1.395,71,2.784,98,4.106,108,1.666,137,1.036,223,1.805,226,0.985,289,1.826,387,3.002,394,2.198,414,2.562,433,2.088,478,1.61,591,0.261,601,3.266,811,1.057,814,4.555,929,1.665,990,0.931,1050,1.557,1114,2.283,1166,2.918,1303,1.04,1311,2.489,1335,1.252,2214,5.756,2444,5.273,2473,1.49,2626,3.98,2645,2.273,2966,2.453,2968,1.784,3028,0.675,3045,7.304,3052,4.082,3187,4.082,3206,3.576,3230,3.963,3348,5.071,3351,3.204,3352,4.245,3366,2.773,3433,3.492,3498,4.582,3504,6.424,3883,7.363,3894,8.179,3895,8.179,3896,6.421,3897,8.179,3898,8.179,3899,8.179,3900,8.179,3901,6.421,3902,6.421,3903,6.421,3904,6.421,3905,6.421,3906,8.179]],["description//tracks/algorithms-101/leetcode/medium/15",[831,3.187,2989,5.221,3028,0.658]],["title//tracks/algorithms-101/leetcode/medium/1493",[60,0.611,140,1.567,1203,1.145,2970,1.856,3012,1.78,3057,2.977,3058,2.359]],["content//tracks/algorithms-101/leetcode/medium/1493",[16,0.541,38,2.545,54,0.87,60,1.524,62,1.81,65,1.122,137,0.934,140,4.268,154,2.494,160,2.711,170,4.499,174,1.364,210,1.185,226,0.971,232,1.017,247,1.765,289,1.786,330,2.853,381,1.063,385,2.364,413,3.601,429,1.006,445,3.003,462,2.418,478,2.022,508,2.236,511,2.625,591,0.247,600,3.678,625,1.895,719,2.804,734,1.977,777,2.469,811,1.151,817,2.804,829,2.214,861,1.659,873,2.506,973,4.385,983,5.521,989,3.414,990,1.291,1050,2.16,1065,3.944,1091,2.331,1114,2.222,1168,3.121,1172,4.93,1193,2.584,1203,3.017,1303,1.017,1317,3.583,1335,1.224,1362,3.496,1440,2.667,1441,2.952,1514,2.364,1639,4.151,1647,4.93,1751,3.846,1777,3.78,1925,4.014,1980,6.728,1981,3.556,2149,3.78,2269,4.268,2282,2.904,2379,5.238,2486,2.804,2515,5.238,2871,3.583,2970,4.193,3012,4.444,3028,0.66,3057,5.238,3058,5.889,3230,2.625,3231,3.78,3339,4.684,3367,4.684,3379,2.545,3426,4.93,3427,4.93,3729,4.304,3741,2.121,3744,3.583,3907,4.151,3908,5.238,3909,5.238,3910,6.277,3911,5.651,3912,10.246,3913,4.93,3914,6.277,3915,8.906,3916,6.277]],["description//tracks/algorithms-101/leetcode/medium/1493",[11,0.893,140,1.766,385,1.514,583,1.655,990,0.583,1203,1.291,2970,2.092,3012,2.007,3058,2.659]],["title//tracks/algorithms-101/leetcode/medium/148",[1,1.025,2358,2.053,3917,4.838]],["content//tracks/algorithms-101/leetcode/medium/148",[1,2.004,7,1.435,8,1.844,16,0.677,56,2.305,64,2.329,137,0.755,146,2.375,159,2.339,171,1.566,174,1.311,185,2.792,210,1.139,214,3.245,221,2.066,226,1.185,227,2.564,337,3.99,381,1.022,382,1.737,437,4.306,445,3.102,495,1.497,508,2.15,566,4.62,567,3.536,591,0.256,601,3.138,694,3.073,777,2.374,811,1.272,820,3.451,885,3.859,974,4.306,990,0.875,1151,1.717,1168,3.218,1238,1.497,1303,1.416,1352,5.036,1441,2.878,1462,3.286,1585,4.872,1601,5.263,1624,2.564,1665,3.775,1722,2.792,1751,2.606,1869,2.524,1887,2.273,2131,3.99,2358,3.989,2473,1.824,2982,3.139,2997,4.377,3010,1.514,3013,7.075,3028,0.635,3190,5.036,3191,4.74,3199,4.503,3244,4.872,3542,4.274,3543,3.445,3741,2.039,3763,5.865,3765,6.02,3809,6.173,3875,4.503,3918,4.503,3919,7.859,3920,6.035,3921,6.558,3922,6.035,3923,6.035,3924,8.739,3925,6.035,3926,5.036,3927,7.293,3928,5.036,3929,6.035,3930,6.035,3931,7.859,3932,6.035,3933,6.035,3934,6.035,3935,6.035]],["description//tracks/algorithms-101/leetcode/medium/148",[1,0.686,6,2.464,49,0.999,178,0.999,226,0.433,990,0.521,1238,0.891,2358,1.373,2983,2.298,3028,0.378,3917,3.235]],["title//tracks/algorithms-101/leetcode/medium/146",[92,2.993,3936,4.838,3937,4.838]],["content//tracks/algorithms-101/leetcode/medium/146",[1,1.309,7,0.765,16,0.869,30,2.773,38,3.761,48,2.414,53,1.806,54,0.683,62,1.108,64,2.529,70,1.491,92,5.559,120,1.471,128,1.096,131,2.816,137,0.819,146,1.265,154,2.773,171,2.325,174,1.491,178,1.371,210,0.931,221,2.349,224,2.38,226,0.826,255,2.512,286,1.935,340,2.324,381,0.835,414,2.671,431,3.692,435,5.934,442,5.117,462,1.339,495,1.223,508,3.306,511,2.063,557,2.13,565,2.38,576,1.757,591,0.256,597,1.858,607,2.566,696,1.667,719,2.203,734,2.198,811,1.255,826,4.02,829,1.885,990,0.715,1015,3.407,1039,2.324,1114,1.507,1151,1.952,1238,1.223,1287,2.096,1303,1.597,1318,4.503,1335,0.962,1346,4.02,1353,3.424,1422,2.683,1462,2.349,1624,3.352,1660,2.242,1663,3.154,1665,3.799,1710,3.52,1825,4.896,2096,4.534,2466,5.049,2473,1.979,3028,0.519,3239,4.393,3391,3.328,3433,2.683,3543,3.917,3804,3.681,3921,5.726,3938,4.933,3939,4.933,3940,4.933,3941,6.861,3942,8.963,3943,4.933,3944,7.889,3945,4.933,3946,4.933,3947,4.933,3948,8.528,3949,7.889,3950,6.861,3951,6.861,3952,6.861,3953,6.861,3954,4.933,3955,4.933,3956,4.933,3957,4.116,3958,4.933,3959,7.889,3960,3.681,3961,6.861,3962,6.861,3963,6.176,3964,7.889,3965,6.861,3966,7.889,3967,6.861,3968,6.861,3969,6.861,3970,4.933,3971,4.933,3972,4.933,3973,4.933,3974,4.116,3975,4.933,3976,4.933,3977,6.364,3978,6.861,3979,6.176,3980,4.933,3981,4.933]],["description//tracks/algorithms-101/leetcode/medium/146",[49,1.188,92,2.381,591,0.101,1238,1.06,3028,0.45,3583,3.358,3936,3.849,3937,3.849]],["title//tracks/algorithms-101/leetcode/medium/1456",[429,0.572,1091,1.325,1335,0.696,1441,1.306,2984,1.745,3040,2.446,3054,2.977]],["content//tracks/algorithms-101/leetcode/medium/1456",[16,0.743,51,1.277,64,1.873,65,1.05,66,1.691,70,1.277,120,1.752,125,1.614,146,2.213,170,4.437,171,1.524,174,1.277,187,2.537,207,1.863,210,1.457,213,3.638,214,2.181,221,2.011,224,2.038,226,1.146,232,0.952,239,1.378,278,1.559,286,1.441,340,2.767,341,2.276,345,2.867,381,1.551,394,2.011,396,2.151,413,2.624,429,1.566,462,2.097,495,1.457,528,2.161,563,2.346,565,2.679,591,0.234,625,1.774,721,4.787,734,1.441,811,1.115,817,2.624,829,1.614,861,1.209,890,3.056,937,4.192,983,6.057,989,3.195,990,1.328,1030,3.195,1091,3.203,1131,5.51,1190,3.604,1230,3.449,1303,0.952,1311,3.551,1335,1.145,1343,4.081,1345,4.017,1417,3.538,1441,3.355,1514,2.212,1700,4.242,1838,2.82,1981,3.444,2325,3.272,2337,5.762,2356,3.642,2495,4.384,2871,3.354,2968,1.633,2982,3.056,2984,4.22,3010,1.473,3028,0.618,3040,7.304,3052,5.101,3054,4.903,3127,5.289,3231,5.883,3268,5.762,3366,2.537,3379,2.381,3706,3.884,3711,5.51,3741,2.609,3815,4.903,3907,3.884,3908,4.903,3909,4.903,3982,4.614,3983,4.903,3984,8.626,3985,9.77,3986,7.766,3987,5.875,3988,5.875,3989,5.875,3990,5.875,3991,5.875,3992,5.875]],["description//tracks/algorithms-101/leetcode/medium/1456",[11,0.721,207,1.03,429,0.52,583,1.337,870,0.935,884,2.147,990,0.471,1091,1.206,1335,0.633,1441,1.189,2984,1.589,3028,0.342,3040,2.227]],["title//tracks/algorithms-101/leetcode/medium/139",[1048,2.795,3042,2.993,3993,4.838]],["content//tracks/algorithms-101/leetcode/medium/139",[1,1.234,8,2.512,16,0.708,30,2.794,41,3.09,54,0.896,70,1.406,137,1,165,1.169,188,2.052,226,1.144,252,3.166,309,3.838,341,1.907,381,1.095,394,2.215,401,2.841,433,3.19,444,3.365,462,1.757,495,2.038,528,1.866,591,0.257,626,3.572,734,2.215,772,3.229,811,1.062,826,4.815,860,2.508,861,1.956,990,0.938,998,4.828,1048,4.275,1230,2.89,1278,3.693,1303,1.332,1311,3.501,1316,3.55,1343,2.583,1660,2.94,1695,2.437,1727,3.44,1960,2.402,2113,4.278,2473,1.907,2608,3.282,2984,4.984,3010,2.515,3028,0.68,3042,3.603,3144,7.705,3178,4.949,3187,3.229,3188,5.399,3706,5.434,3711,4.617,3994,10.026,3995,6.47,3996,8.219,3997,6.133,3998,6.47,3999,5.824,4000,7.399,4001,5.824,4002,8.219,4003,6.47,4004,6.47,4005,6.47,4006,6.47,4007,6.47,4008,6.47,4009,6.47]],["description//tracks/algorithms-101/leetcode/medium/139",[49,1.188,591,0.101,1048,2.224,1238,1.06,3028,0.45,3042,2.381,3583,3.358,3993,3.849]],["title//tracks/algorithms-101/leetcode/medium/134",[4010,5.374,4011,4.221,4012,4.485]],["content//tracks/algorithms-101/leetcode/medium/134",[16,0.623,42,3.232,137,0.695,161,3.289,226,1.22,341,2.133,381,1.492,413,3.232,427,4.839,462,1.965,495,2.185,508,2.578,563,2.889,591,0.251,734,1.775,785,4.03,890,3.764,990,1.277,1034,5.036,1094,4.628,1114,2.172,1151,2.703,1193,3.628,1303,1.172,1887,2.725,1927,2.805,1960,2.687,2188,2.578,2252,4.628,2473,1.679,2988,3.348,3028,0.761,3391,2.687,3741,2.977,4011,8.332,4012,8.602,4013,7.236,4014,7.236,4015,8.812,4016,7.236,4017,8.812,4018,9.501,4019,7.236,4020,9.501,4021,7.236,4022,8.812,4023,8.812]],["description//tracks/algorithms-101/leetcode/medium/134",[3028,0.602,4011,4.497,4012,4.778,4024,4.497]],["title//tracks/algorithms-101/leetcode/medium/131",[415,3.332,2985,2.993,4024,4.221]],["content//tracks/algorithms-101/leetcode/medium/131",[1,1.77,8,1.661,11,1.843,16,0.631,30,2.956,43,1.963,48,2.654,64,1.318,65,1.311,66,1.564,70,1.181,137,0.797,154,1.681,223,2.062,224,3.315,226,0.999,239,2.084,247,2.062,256,1.602,283,1.861,286,1.333,341,2.446,381,1.241,382,2.67,394,3.041,415,6.41,429,0.871,455,1.564,458,1.885,462,1.991,487,2.138,495,2.3,511,3.066,528,2.33,531,5.232,532,4.141,565,2.543,591,0.243,700,3.879,734,2.344,777,2.138,811,1.148,829,1.493,860,2.842,861,2.173,978,4.056,990,0.788,1010,2.761,1082,4.056,1114,1.611,1151,2.086,1287,2.31,1303,1.344,1311,2.107,1335,1.43,1343,3.546,1430,4.415,1440,3.116,1490,5.197,1528,2.712,1660,2.47,1697,4.997,1798,3.864,1859,3.184,1869,2.273,1960,3.081,2473,1.261,2600,3.594,2645,2.038,2891,5.232,2968,1.51,2984,5.143,2985,5.827,2991,6.126,3028,0.572,3294,3.594,3418,4.893,3706,4.848,3741,2.478,3744,3.103,3999,4.893,4025,7.332,4026,7.332,4027,9.768,4028,5.435,4029,7.332,4030,5.435,4031,5.435,4032,5.435,4033,5.435,4034,5.435,4035,5.435]],["description//tracks/algorithms-101/leetcode/medium/131",[415,3.879,2985,3.484,4024,4.914]],["title//tracks/algorithms-101/leetcode/medium/130",[611,2.442,4036,4.485,4037,4.485]],["content//tracks/algorithms-101/leetcode/medium/130",[29,2.236,38,2.304,39,2.111,41,1.848,48,1.442,66,1.636,70,1.235,120,1.696,137,0.93,154,1.759,157,2.005,175,2.396,182,2.082,186,2.496,191,3.524,210,1.073,214,2.111,223,2.124,224,1.972,226,1.089,278,1.509,341,2.775,345,2.111,381,1.437,385,2.141,387,3.141,394,2.587,445,2.562,462,1.544,473,2.304,478,1.426,495,1.41,554,3.635,580,2.496,591,0.253,671,1.364,734,1.853,748,3.635,785,3.166,811,1.097,826,5.517,861,1.555,990,1.23,1010,2.141,1012,1.972,1049,3.211,1114,2.127,1131,7.573,1164,2.781,1168,2.725,1195,3.331,1239,3.434,1303,1.224,1374,3.898,1448,3.092,1449,5.267,1489,2.455,1490,3.092,1544,8.56,1564,5.517,1660,2.583,1697,4.55,1701,3.898,1960,3.358,1981,2.27,2217,3.759,2325,4.208,2473,1.319,2664,2.678,2691,3.759,2983,3.635,2991,3.423,3010,1.895,3028,0.598,3085,6.908,3163,6.021,3274,5.117,3301,7.43,3316,7.88,3317,4.242,3325,6.802,3358,4.208,3464,6.666,3469,6.802,3653,7.64,3741,2.553,4037,4.744,4038,5.685,4039,9.045,4040,4.465,4041,5.685,4042,7.556,4043,7.556,4044,9.879,4045,7.556,4046,8.487,4047,5.685,4048,7.556]],["description//tracks/algorithms-101/leetcode/medium/130",[611,2.843,4036,5.221,4037,5.221]],["title//tracks/algorithms-101/leetcode/medium/128",[1065,2.334,2225,2.795,2970,2.481,3712,3.747]],["content//tracks/algorithms-101/leetcode/medium/128",[51,1.676,133,3.277,137,0.991,174,1.676,226,0.929,365,3.175,381,1.306,387,3.257,394,2.64,429,1.467,508,2.748,591,0.253,601,4.033,811,0.997,990,1.118,1114,1.695,1130,5.289,1203,2.94,1294,5.1,1303,1.25,1927,2.99,2473,1.79,3028,0.811,3230,3.225,3351,3.849,3391,2.864,3414,6.457,3543,4.403,4049,7.713,4050,7.713,4051,10.101,4052,7.713,4053,8.243,4054,6.944]],["description//tracks/algorithms-101/leetcode/medium/128",[1065,2.802,2225,3.355,2970,2.978,3712,4.497]],["title//tracks/algorithms-101/leetcode/medium/122",[206,1.65,210,0.673,2185,2.446,2278,2.546,3157,2.148,3158,2.148,4055,3.212]],["content//tracks/algorithms-101/leetcode/medium/122",[16,0.678,120,2.348,137,0.89,207,2.496,221,2.695,226,0.948,462,2.137,563,3.143,591,0.239,673,4.82,778,5.034,811,1.017,861,1.62,990,1.343,1054,3.243,1114,1.729,1151,2.239,1303,1.275,1415,6.569,2050,5.034,2473,1.827,2988,3.641,3028,0.975,3178,4.74,3351,3.928,3366,3.4,3391,2.923,3422,6.915,4056,10.37,4057,7.872,4058,7.872,4059,10.168]],["description//tracks/algorithms-101/leetcode/medium/122",[206,2.112,210,0.862,2185,3.13,2278,3.258,3157,2.749,3158,2.749,4055,4.109]],["title//tracks/algorithms-101/leetcode/medium/116",[381,0.604,445,1.077,1151,1.015,1292,2.546,1665,1.344,1751,1.541,4060,3.212]],["content//tracks/algorithms-101/leetcode/medium/116",[137,0.766,226,0.96,513,5.201,557,3.445,591,0.248,597,3.004,811,1.207,899,5.624,990,1.156,1303,1.292,1665,3.004,2473,1.851,3028,0.982,3237,6.656,3248,7.18,3249,7.18,3251,7.18,3252,7.18,3253,7.18,3254,7.18,3422,6.969,3921,6.656,4061,7.976,4062,8.407,4063,9.339,4064,7.976,4065,7.976,4066,7.976]],["description//tracks/algorithms-101/leetcode/medium/116",[381,0.773,445,1.378,1151,1.299,1292,3.258,1665,1.719,1751,1.972,4060,4.109]],["title//tracks/algorithms-101/leetcode/medium/735/",[3069,4.838,3070,4.221,3071,4.221]],["content//tracks/algorithms-101/leetcode/medium/735/",[1,1.044,11,1.215,16,0.717,60,1.425,64,2.511,65,0.978,128,1.215,132,2.363,137,0.855,154,3.027,203,2.443,207,1.735,222,2.786,226,0.887,232,1.443,244,3.047,247,1.538,252,3.603,278,1.452,289,1.556,307,1.538,341,1.612,345,2.031,369,1.452,381,1.574,396,2.003,414,1.713,426,4.565,429,0.877,445,2.223,458,1.898,460,4.275,462,2.261,511,2.288,516,5.05,563,2.184,565,1.898,576,1.949,591,0.234,597,2.06,625,1.652,641,2.12,696,2.813,700,3.904,719,2.443,754,2.6,777,2.152,778,3.498,788,4.709,811,0.707,817,3.718,820,2.402,829,1.503,861,2.047,890,2.846,915,3.617,990,1.207,1015,2.363,1050,2.019,1086,2.677,1114,1.829,1146,3.972,1168,2.365,1190,3.275,1203,1.756,1287,3.784,1303,0.886,1324,2.152,1335,1.436,1354,3.205,1392,3.289,1435,5.941,1449,2.786,1514,2.06,1564,4.878,1612,5.877,1639,3.617,1663,3.498,1664,3.205,1695,2.06,1777,3.294,1798,3.694,1869,2.288,1952,3.498,1960,3.091,2020,3.904,2140,3.617,2225,3.205,2294,3.047,2356,3.391,2558,6.355,2791,7.145,2814,4.297,2982,3.831,2991,3.294,3028,0.575,3070,8.535,3071,5.784,3181,3.904,3379,2.985,3433,2.975,3599,5.465,3741,1.848,3744,3.123,3746,5.784,3816,3.294,3907,3.617,4067,9.574,4068,5.471,4069,5.471,4070,7.364]],["description//tracks/algorithms-101/leetcode/medium/735/",[153,1.91,207,1.356,583,1.76,870,1.231,990,0.62,3028,0.45,3070,3.358,3071,3.358]],["title//tracks/algorithms-101/leetcode/medium/443/",[528,1.22,3047,4.485,3048,3.835]],["content//tracks/algorithms-101/leetcode/medium/443/",[1,1.968,16,0.686,29,2.426,30,1.908,35,2.227,56,2.356,65,1.102,90,2.031,121,2.322,137,0.928,144,3.613,146,1.582,147,3.442,154,2.466,185,3.687,210,1.504,214,2.29,226,0.96,232,0.999,256,2.349,278,1.637,327,2.426,345,2.29,353,2.462,369,2.115,378,2.62,381,1.495,420,4.73,429,0.988,434,4.647,450,2.197,462,2.398,495,2.19,501,3.279,528,2.005,530,2.708,567,3.613,591,0.228,625,1.862,696,2.084,795,2.905,803,7.175,811,1.03,829,2.189,861,1.269,888,4.239,890,4.146,989,3.354,990,1.155,1000,3.714,1114,1.94,1168,1.98,1191,4.401,1287,2.62,1303,0.999,1311,3.423,1335,1.202,1343,4.228,1353,3.078,1392,2.754,1421,4.55,1441,3.539,1515,4.237,1528,3.078,1691,3.279,1700,4.138,1751,4.409,1813,4.856,1869,2.579,1887,2.322,1960,2.29,1981,3.182,2050,3.944,2065,3.944,2225,5.174,2282,2.853,2645,1.714,2871,3.52,3028,0.649,3048,5.688,3652,5.552,3654,5.146,3711,7.189,3741,2.084,4071,5.146,4072,6.167,4073,6.167,4074,6.167]],["description//tracks/algorithms-101/leetcode/medium/443/",[528,1.42,3047,5.221,3048,4.465]],["title//tracks/algorithms-101/leetcode/medium/394/",[528,1.22,3072,4.838,3073,4.221]],["content//tracks/algorithms-101/leetcode/medium/394/",[16,0.672,33,2.864,42,2.665,43,2.817,62,1.34,65,1.067,90,1.965,128,1.325,146,1.53,159,2.312,182,2.185,207,1.892,210,1.74,226,1.047,234,3.103,256,2.299,289,1.697,321,3.699,327,3.068,330,2.711,340,2.811,345,2.215,365,2.456,369,1.583,381,1.321,396,2.185,429,1.602,460,3.744,462,2.503,474,2.977,478,1.496,511,2.495,528,2.414,576,2.126,591,0.255,625,1.801,750,4.337,777,2.347,778,3.815,811,0.771,829,1.639,861,2.11,873,2.382,888,4.172,924,2.896,965,4.243,990,1.336,1095,3.945,1190,3.068,1287,2.535,1297,2.419,1303,0.967,1311,2.312,1335,1.163,1343,3.47,1345,3.103,1435,4.258,1447,3.675,1514,2.247,1515,4.147,1612,5.576,1700,2.419,1714,4.091,1813,3.103,1952,5.895,1960,2.896,2004,3.945,2204,4.979,2558,6.202,2645,1.658,2871,4.453,3028,0.627,3052,3.893,3073,6.826,3181,4.258,3230,3.262,3379,2.419,3433,4.243,3546,3.675,3711,6.826,3741,2.636,3746,4.686,3816,3.593,4075,7.801,4076,5.966,4077,5.966,4078,6.486,4079,8.556,4080,6.51,4081,5.966,4082,5.966,4083,9.812,4084,8.691,4085,5.966,4086,5.966,4087,5.966,4088,7.801]],["description//tracks/algorithms-101/leetcode/medium/394/",[207,1.674,528,1.198,583,2.173,990,0.765,3073,4.146]],["title//tracks/algorithms-101/leetcode/medium/334/",[213,2.247,3044,3.981,3045,3.56,3046,2.795]],["content//tracks/algorithms-101/leetcode/medium/334/",[1,1.671,11,1.591,62,1.608,70,2.056,76,3.71,213,4.456,232,1.16,286,2.148,289,2.037,396,2.623,413,3.199,429,1.707,478,1.796,511,4.12,591,0.242,625,2.162,626,2.552,631,4.125,696,2.42,788,5.6,811,1.223,829,1.968,861,1.947,890,4.555,990,1.269,1203,2.3,1324,2.817,1335,1.397,1441,2.623,1489,3.782,1695,2.697,1751,3.093,2188,3.12,2608,3.496,3010,2.535,3028,0.753,3045,6.535,3046,5.542,3052,3.574,3129,6.565,3187,3.574,3230,2.995,3294,5.79,3433,3.896,3500,4.44,4089,7.163]],["description//tracks/algorithms-101/leetcode/medium/334/",[213,2.697,3044,4.778,3045,4.273,3046,3.355]],["title//tracks/algorithms-101/leetcode/medium/2844/",[171,1.01,174,0.846,311,1.906,429,0.624,958,2.575,4090,3.25]],["content//tracks/algorithms-101/leetcode/medium/2844/",[8,1.644,12,4.914,16,0.463,30,2.736,54,1.28,60,1.514,65,0.962,90,2.718,137,0.85,140,4.058,171,2.472,174,1.794,187,3.145,191,4.514,203,2.403,207,1.706,210,1.015,214,1.998,226,0.877,232,1.18,245,2.742,286,1.319,311,4.522,330,2.445,341,2.433,365,2.215,369,1.428,378,3.094,381,1.497,382,2.096,387,1.794,393,1.943,394,3.164,410,2.86,413,3.687,414,1.685,429,1.609,433,1.749,445,1.624,462,1.977,496,3.152,512,2.445,528,2.28,563,2.907,591,0.249,625,1.624,641,2.085,719,3.252,734,2.169,746,2.798,811,1.259,829,2,860,2.822,958,6.111,965,4.489,984,3.44,990,1.196,1012,1.866,1022,3.689,1109,3.839,1114,2.207,1158,2.181,1168,1.727,1190,2.116,1193,2.215,1248,3.839,1303,0.872,1335,1.049,1440,2.286,1441,1.97,1490,2.926,1514,2.026,1642,3.071,1700,3.346,1777,3.24,1813,4.956,1859,3.152,1960,1.998,2188,1.917,2253,3.839,2269,2.362,2282,2.489,2595,6.048,2608,2.907,2645,2.024,2713,6.16,2968,2.024,2982,4.808,2984,2.632,2986,3.82,3010,2.443,3022,6.337,3028,0.566,3117,5.849,3206,2.996,3230,3.865,3358,2.996,3366,2.323,3379,2.181,3391,1.998,3546,2.534,3599,3.071,3741,2.46,4090,4.49,4091,4.843,4092,5.38,4093,8.32,4094,4.015,4095,8.845,4096,5.38,4097,9.242,4098,9.527,4099,9.527]],["description//tracks/algorithms-101/leetcode/medium/2844/",[171,1.27,174,1.064,311,2.395,429,0.785,958,3.237,4090,4.086]],["title//tracks/algorithms-101/leetcode/medium/2841/",[1024,1.592,1091,1.592,2966,1.638,3012,2.14,4100,3.579]],["content//tracks/algorithms-101/leetcode/medium/2841/",[8,1.915,11,1.392,16,0.809,30,1.939,48,2.043,51,1.362,60,1.073,65,1.121,66,1.804,137,0.602,170,3.908,182,2.295,187,2.707,226,1.131,232,1.016,286,1.537,289,1.783,341,2.374,345,2.327,381,1.363,394,2.146,396,2.295,413,3.597,462,2.187,478,2.02,495,1.555,508,2.233,511,2.621,563,3.216,591,0.247,625,1.892,734,2.183,811,1.307,817,2.799,829,1.722,861,1.29,887,2.327,934,2.295,983,5.517,989,4.38,990,1.167,1010,2.36,1024,3.755,1050,1.954,1091,3.304,1114,2.184,1203,2.857,1239,4.596,1303,1.305,1335,1.57,1353,3.128,1441,3.259,1514,2.36,1798,2.327,1832,3.128,1981,3.216,2282,2.899,2626,4.993,2871,3.578,2891,4.473,2966,3.711,2968,2.238,3010,1.572,3012,5.164,3028,0.659,3052,5.164,3206,3.491,3230,3.928,3294,4.144,3351,3.128,3358,3.491,3379,2.541,3391,3.304,3741,2.721,4053,9.104,4054,5.643,4100,5.231,4101,6.268,4102,5.643,4103,8.054,4104,6.268,4105,6.268,4106,6.268,4107,6.268,4108,6.268,4109,6.268,4110,6.268]],["description//tracks/algorithms-101/leetcode/medium/2841/",[1024,1.96,1091,1.96,2966,2.016,3012,2.634,4100,4.405]],["title//tracks/algorithms-101/leetcode/medium/2840/",[171,0.926,512,1.621,528,0.81,734,0.875,2188,1.271,2278,2.546,4111,2.977]],["content//tracks/algorithms-101/leetcode/medium/2840/",[1,1.841,9,2.579,60,1.155,65,1.509,96,3.18,171,2.19,174,1.467,226,1.016,232,1.61,256,1.989,307,2.373,345,2.506,381,1.559,394,2.89,462,2.501,478,1.693,486,3.589,528,2.191,557,2.915,591,0.245,597,2.542,625,2.038,632,4.816,694,4.299,696,2.852,734,1.655,756,5.083,780,4.184,811,0.872,829,1.854,894,3.759,990,1.224,1065,4.722,1136,3.589,1193,2.779,1287,2.868,1292,4.817,1303,1.094,1327,4.421,1335,1.316,1343,4.046,1344,4.817,1345,3.511,1441,2.472,1514,2.542,1524,4.463,1695,3.469,1798,3.134,2188,3.007,2282,3.122,2358,3.225,2744,6.024,3010,1.693,3028,0.71,3082,6.315,3187,4.212,3231,4.064,3379,2.736,3500,4.184,3546,3.977,3741,2.852,3744,3.853,3982,5.301,4111,5.633,4112,7.234,4113,8.053,4114,6.75,4115,7.599,4116,6.076,4117,7.599,4118,6.076,4119,7.599,4120,6.076,4121,7.599,4122,6.076]],["description//tracks/algorithms-101/leetcode/medium/2840/",[171,1.184,512,2.075,528,1.036,734,1.12,2188,1.626,2278,3.258,4111,3.809]],["title//tracks/algorithms-101/leetcode/medium/238/",[484,1.883,755,2.02,1050,1.04,2256,2.835,3043,3.579]],["content//tracks/algorithms-101/leetcode/medium/238/",[1,1.113,11,1.296,16,0.74,35,2.107,43,2.107,60,0.998,64,2.085,65,1.043,70,1.268,76,2.079,90,1.921,125,1.603,137,0.937,146,1.496,171,1.994,174,1.268,178,1.621,187,2.52,207,2.437,210,1.101,214,2.854,226,1.197,232,1.48,246,2.562,247,1.64,255,3.915,256,1.72,286,2.109,327,3.594,341,1.72,381,1.608,382,2.474,385,2.197,387,2.564,401,2.562,404,3.375,429,1.232,445,2.759,462,2.087,484,4.483,591,0.247,601,4.076,625,1.761,755,2.748,772,4.56,811,1.111,820,3.375,829,1.603,861,1.955,873,2.329,885,3.731,990,1.413,1034,2.971,1050,2.535,1168,2.934,1203,3.429,1287,2.479,1297,2.365,1303,0.945,1335,1.137,1514,2.197,1515,3.102,1691,3.102,1887,2.197,1927,3.332,1950,3.418,1960,3.393,2004,6.279,2096,3.102,2269,2.562,2294,4.281,2473,1.354,2645,2.136,2968,1.621,2997,3.249,3028,0.614,3117,5.083,3147,5.252,3230,3.971,3339,4.354,3348,3.617,3351,3.836,3379,2.365,3542,3.173,3543,3.33,3650,5.252,3740,4.163,3741,2.597,3881,4.163,4080,4.869,4123,9.349,4124,5.834,4125,5.834,4126,5.834,4127,5.834]],["description//tracks/algorithms-101/leetcode/medium/238/",[484,2.318,755,2.487,1050,1.28,2256,3.49,3043,4.405]],["title//tracks/algorithms-101/leetcode/medium/2352/",[1015,1.852,1449,2.184,1517,2.184,2188,1.528,3066,3.579]],["content//tracks/algorithms-101/leetcode/medium/2352/",[1,1.145,7,0.93,16,0.674,38,2.432,41,1.951,51,1.304,65,1.073,72,2.591,83,3.274,90,1.976,137,0.576,216,2.994,226,1.112,256,1.769,282,3.425,289,1.707,290,3.613,318,3.341,341,1.769,378,2.55,381,1.694,382,1.727,401,2.635,414,2.452,431,2.054,433,1.951,441,2.081,462,2.367,508,2.79,510,3.613,530,3.827,533,1.79,563,2.396,583,2.47,591,0.242,607,3.121,625,1.812,655,2.167,719,2.68,734,1.92,754,2.126,802,3.72,811,0.776,823,2.88,873,2.396,934,2.197,990,1.135,1000,3.613,1015,3.764,1024,2.228,1065,2.936,1114,2.03,1190,2.36,1203,1.927,1303,0.972,1324,2.36,1327,4.183,1335,1.527,1362,3.341,1377,2.727,1448,3.263,1449,5.439,1456,3.263,1517,5.399,1642,3.425,1700,4.115,1736,4.282,1776,4.47,1838,2.88,1960,2.228,2143,4.282,2188,2.138,2325,3.341,2481,7.874,2968,2.176,2982,4.073,2996,5.727,3002,5.177,3010,1.505,3028,0.631,3062,4.114,3316,4.713,3352,3.967,3358,4.36,3391,2.228,3430,3.263,3464,7.718,3542,4.74,3740,4.282,3741,2.646,3744,3.425,3848,6.498,4078,4.478,4094,4.478,4128,6,4129,6,4130,6,4131,6,4132,6,4133,6,4134,4.478,4135,4.282,4136,6,4137,6,4138,6,4139,6,4140,6,4141,6,4142,6,4143,6,4144,6,4145,6]],["description//tracks/algorithms-101/leetcode/medium/2352/",[1015,2.28,1449,2.688,1517,2.688,2188,1.881,3066,4.405]],["title//tracks/algorithms-101/leetcode/medium/138/",[1,0.818,13,2.512,1279,1.712,1751,1.852,4146,3.86]],["content//tracks/algorithms-101/leetcode/medium/138/",[1,2.025,7,1.456,13,5.925,16,0.54,42,2.799,62,1.407,66,1.804,70,1.362,146,2.628,160,2.707,210,1.183,214,2.327,226,1.17,239,1.471,256,1.847,269,4.517,286,1.975,298,3.578,341,2.374,381,1.507,414,1.963,458,3.087,535,4.441,591,0.253,608,4.677,696,2.118,754,1.702,811,1.15,829,1.722,990,1.167,1012,2.794,1078,2.146,1151,2.291,1279,4.09,1303,1.016,1335,1.222,1462,3.326,1489,2.707,1624,3.422,1660,2.848,1665,4.052,1751,4.367,1960,2.991,2473,1.455,2691,5.325,3028,0.659,3414,6.574,3541,4.298,3741,2.721,3765,5.692,3772,6.641,4062,7.251,4071,5.231,4147,8.012,4148,6.268,4149,7.251,4150,8.054,4151,8.054,4152,8.054,4153,6.268,4154,6.268,4155,6.268,4156,6.268,4157,6.268,4158,6.268]],["description//tracks/algorithms-101/leetcode/medium/138/",[1,0.724,13,2.224,49,1.055,591,0.089,1238,0.941,1279,1.515,1751,1.639,3028,0.399,3583,2.981,4146,3.417]],["title//tracks/algorithms-101/leetcode/medium/11/",[478,1.348,1673,2.532,2987,4.01]],["content//tracks/algorithms-101/leetcode/medium/11/",[11,1.81,16,0.452,30,2.214,51,1.14,60,1.225,65,1.28,66,1.51,68,2.266,70,1.14,76,1.869,115,4.499,137,0.88,154,3.091,165,0.948,188,1.663,210,1.351,211,1.684,213,3.372,226,1.103,232,1.532,278,2.162,286,1.287,295,2.774,304,3.355,309,2.229,311,2.567,337,3.469,345,2.658,381,1.482,387,1.75,393,1.895,394,2.789,400,2.16,413,2.343,445,3.051,462,1.424,478,2.534,495,2.021,563,2.094,578,3.572,591,0.244,597,1.976,625,1.584,711,3.597,719,3.197,727,3.205,754,1.424,762,2.789,791,2.921,811,0.678,829,2.238,860,2.033,861,1.08,868,3.469,887,2.658,890,2.729,894,2.921,929,1.068,977,3.597,989,2.853,990,1.181,1015,3.092,1030,3.893,1050,2.222,1091,3.026,1094,3.355,1114,1.573,1168,3.275,1187,4.194,1203,1.684,1303,0.85,1324,2.063,1353,2.618,1362,2.921,1392,3.639,1417,4.31,1440,2.229,1514,1.976,1545,7.5,1625,4.723,1639,3.469,1655,3.597,1673,2.471,1706,4.378,1722,3.311,1751,4.613,1798,2.658,1927,3.158,1952,3.355,2005,7.612,2149,3.159,2188,1.869,2253,5.815,2282,2.427,2325,2.921,2366,7.427,2478,3.355,2539,4.12,2894,4.378,2968,1.458,2987,6.532,3028,0.552,3032,3.469,3159,4.723,3367,3.915,3379,2.127,3541,3.597,3741,2.419,4159,5.246,4160,7.88,4161,7.158,4162,5.246,4163,9.456,4164,4.723,4165,5.246,4166,5.246,4167,7.158,4168,8.148,4169,5.246,4170,5.246,4171,8.148,4172,7.158,4173,5.246,4174,5.246]],["description//tracks/algorithms-101/leetcode/medium/11/",[11,1.014,211,1.466,478,1.145,1335,0.89,2005,3.406,2987,3.406,3881,3.258]],["title//tracks/algorithms-101/leetcode/medium/1004/",[60,0.734,1115,2.659,2225,2.512,3055,3.579,3056,3.579]],["content//tracks/algorithms-101/leetcode/medium/1004/",[11,1.314,29,3.051,65,1.058,114,2.362,137,0.882,154,2.4,170,4.536,203,3.465,210,1.117,226,0.934,229,2.435,232,0.958,255,3.951,278,1.57,289,1.683,341,1.744,345,2.197,381,1.001,394,2.025,396,2.841,408,3.562,413,4.104,429,1.569,445,3.012,455,2.233,462,2.495,511,3.62,591,0.247,625,1.786,734,1.451,777,3.405,811,1.003,829,2.131,861,1.597,973,4.219,978,4.415,983,4.809,989,3.218,990,1.124,1004,3.145,1050,2.314,1065,3.796,1091,3.411,1114,2.151,1136,3.145,1168,3.203,1193,2.435,1203,1.899,1303,0.958,1335,1.153,1362,3.295,1440,2.514,1441,2.166,1514,2.228,1542,6.474,1585,3.668,1744,6.177,1751,3.738,1777,3.562,1869,2.474,1927,2.293,1960,2.197,1980,6.474,1981,3.456,2225,5.071,2269,4.495,2282,2.737,2486,2.642,2871,3.377,2968,1.644,2970,4.502,2984,2.894,3012,2.952,3028,0.622,3052,5.155,3055,4.937,3058,6.307,3163,5.535,3230,2.474,3231,3.562,3303,5.536,3339,4.415,3364,4.647,3367,4.415,3379,2.398,3426,4.647,3427,4.647,3741,1.999,3816,3.562,3875,5.789,3908,4.937,3909,4.937,3911,5.326,3913,4.647,4175,5.916,4176,5.326,4177,4.937,4178,5.916,4179,10.12,4180,5.916,4181,5.916,4182,5.916,4183,8.656,4184,5.916]],["description//tracks/algorithms-101/leetcode/medium/1004/",[11,0.798,60,0.615,394,1.23,583,1.479,990,0.521,1050,0.872,1091,1.334,2225,2.105,2269,1.578,2486,1.605,3163,2.298]],["title//tracks/algorithms-101/leetcode/hard/_index",[74,5.135]],["content//tracks/algorithms-101/leetcode/hard/_index",[]],["description//tracks/algorithms-101/leetcode/hard/_index",[]],["title//tracks/algorithms-101/leetcode/hard/2842/",[528,0.81,1091,1.325,1700,1.446,3046,2.09,3052,1.78,4185,3.568,4186,2.802]],["content//tracks/algorithms-101/leetcode/hard/2842/",[8,2.583,11,1.252,16,0.776,54,0.781,65,1.727,66,1.623,69,2.656,70,1.225,108,1.463,137,0.812,165,1.019,207,1.788,210,1.418,223,2.113,226,1.131,229,3.711,243,3.219,245,1.623,286,1.383,318,3.14,345,2.094,381,1.59,393,3.053,394,1.93,396,2.065,404,3.3,413,3.357,429,1.445,462,2.295,528,1.919,557,2.435,563,3.001,591,0.25,597,2.83,625,1.702,671,1.353,727,2.218,734,1.383,780,3.496,811,1.214,823,2.706,856,4.024,873,2.251,990,1.225,1024,3.139,1034,2.872,1086,3.677,1091,3.487,1114,1.651,1231,3.606,1303,0.914,1311,3.93,1327,2.706,1335,1.099,1343,4.089,1377,4.097,1420,3.866,1441,2.065,1514,2.124,1700,4.11,1724,3.14,1927,3.276,2140,3.729,2147,5.076,2247,4.429,2252,3.606,2294,3.14,2416,4.024,2473,1.744,2478,3.606,2495,4.208,2645,1.567,2744,6.434,2896,4.706,2966,2.871,2968,1.567,3020,5.153,3028,0.593,3046,6.001,3052,5.247,3231,4.526,3294,3.729,3379,2.286,3391,2.791,3467,6.766,3546,2.656,3714,6.639,3741,2.539,3983,4.706,4186,8.295,4187,8.453,4188,4.429,4189,5.903,4190,5.639,4191,5.639,4192,5.639,4193,5.639,4194,5.076,4195,5.639,4196,5.639,4197,5.639,4198,5.639,4199,5.639,4200,5.639,4201,8.453,4202,9.016,4203,5.639,4204,5.639]],["description//tracks/algorithms-101/leetcode/hard/2842/",[528,1.111,1091,1.818,1700,1.985,3046,2.868,3052,2.443,4186,3.845]],["title//tracks/algorithms-101/leetcode/easy/_index",[281,3.058]],["content//tracks/algorithms-101/leetcode/easy/_index",[]],["description//tracks/algorithms-101/leetcode/easy/_index",[]],["title//tracks/algorithms-101/leetcode/easy/94",[2486,1.915,2664,2.02,2980,3.579,2981,3.368,2982,2.231]],["content//tracks/algorithms-101/leetcode/easy/94",[29,2.734,49,1.931,54,1.351,57,2.289,62,1.561,64,2.085,70,2.028,71,2.887,137,1.004,165,1.762,226,1.035,239,2.017,330,4.241,382,2.474,445,2.595,473,2.817,513,5.103,578,3.468,583,2.861,591,0.251,652,3.695,811,1.111,873,2.775,929,1.9,990,1.007,1087,3.615,1166,3.158,1168,2.997,1303,1.512,1335,1.355,1369,6.965,1665,3.515,1981,2.775,2473,1.995,2486,3.839,2645,2.594,2664,4.049,2981,5.459,2982,4.471,3028,0.904,3238,6.257,3239,3.87,3240,5.459,3241,5.8,3242,5.8,3243,4.96,3244,4.309,3245,5.459,3246,5.459,3351,3.468,3381,5.8,3765,4.072,4205,6.95,4206,6.95,4207,6.95,4208,6.95,4209,6.95,4210,6.95,4211,6.95,4212,6.95,4213,6.95,4214,6.95,4215,6.95,4216,6.95]],["description//tracks/algorithms-101/leetcode/easy/94",[2486,2.187,2664,2.306,2980,4.086,2981,3.845,2982,2.547,3028,0.515]],["title//tracks/algorithms-101/leetcode/easy/88",[566,2.38,1050,1.157,2358,1.822,2979,3.981]],["content//tracks/algorithms-101/leetcode/easy/88",[70,1.75,137,0.773,185,3.725,226,0.97,353,3.215,591,0.249,633,4.484,811,1.041,990,1.167,1166,3.659,1239,3.659,1303,1.305,1624,3.421,1838,3.865,2473,1.869,3010,2.355,3028,0.847,3187,4.686,3351,4.686,3391,3.487,3484,7.249,4217,8.454,4218,8.454,4219,8.052,4220,8.052,4221,8.052]],["description//tracks/algorithms-101/leetcode/easy/88",[566,2.634,1050,1.28,2358,2.016,2979,4.405,3028,0.555]],["title//tracks/algorithms-101/leetcode/easy/724",[11,1.06,433,1.551,3061,3.981,3062,3.271]],["content//tracks/algorithms-101/leetcode/easy/724",[11,1.352,16,0.681,65,1.088,70,1.323,137,0.843,174,1.323,187,3.413,210,1.492,214,2.26,221,2.705,226,1.057,278,1.615,286,2.278,289,1.731,327,3.452,381,1.572,396,2.229,401,2.673,413,2.719,429,1.266,430,6.595,433,3.497,445,2.978,462,2.383,508,2.169,511,2.545,563,2.43,591,0.232,598,3.236,625,1.838,626,2.169,734,2.152,811,1.298,829,2.171,861,2.067,990,1.146,1010,2.292,1034,5.025,1050,2.335,1114,1.736,1168,2.982,1203,3.333,1303,0.986,1335,1.187,1514,2.292,1521,4.63,1691,3.236,1777,3.665,1927,3.731,1960,3.259,2188,3.43,2645,1.691,2966,4.127,2968,1.691,3028,0.64,3062,6.369,3230,3.884,3379,2.467,3511,5.08,3541,4.173,3542,3.31,3721,6.595,3729,5.419,3741,2.67,3744,3.475,4222,6.087,4223,10.456,4224,6.087,4225,7.9,4226,6.087]],["description//tracks/algorithms-101/leetcode/easy/724",[11,1.272,433,1.862,3061,4.778,3062,3.926]],["title//tracks/algorithms-101/leetcode/easy/70",[2975,3.835,2976,4.01,2977,4.221]],["content//tracks/algorithms-101/leetcode/easy/70",[49,2.374,54,1.482,65,1.912,66,1.981,70,1.496,71,2.643,120,2.772,137,1.031,165,1.544,210,1.299,226,0.829,232,1.115,378,2.924,381,1.165,591,0.257,631,3.242,811,1.201,861,2,873,2.748,929,1.74,986,3.833,990,0.998,1065,3.367,1146,3.88,1166,3.128,1193,2.833,1303,1.115,1528,3.434,1927,2.667,2473,1.597,2626,4.266,2645,2.374,2976,7.456,3010,2.617,3028,0.724,3366,2.972,3391,3.172,4227,6.882,4228,6.195,4229,6.882,4230,9.292,4231,9.717]],["description//tracks/algorithms-101/leetcode/easy/70",[2975,4.086,2976,4.273,2977,4.497,3028,0.602]],["title//tracks/algorithms-101/leetcode/easy/69",[2973,4.833,2974,5.135]],["content//tracks/algorithms-101/leetcode/easy/69",[16,0.753,48,1.811,49,2.428,54,1.441,70,1.551,71,2.703,108,2.267,137,0.686,171,1.852,226,0.86,384,3.302,387,3.504,400,3.597,513,4.81,524,3.188,591,0.253,811,1.328,929,1.923,990,1.035,1049,3.713,1158,3.542,1166,3.244,1238,1.77,1303,1.157,1311,3.387,1335,1.392,1377,3.244,2227,5.992,2473,1.657,2645,2.428,2968,2.735,3009,5.327,3028,0.751,3120,7.867,3391,3.245,3599,4.989,4078,7.048,4112,8.172,4232,7.138,4233,8.739,4234,7.138,4235,7.138,4236,7.138,4237,6.236,4238,7.138]],["description//tracks/algorithms-101/leetcode/easy/69",[2973,4.914,2974,5.221,3028,0.658]],["title//tracks/algorithms-101/leetcode/easy/66",[60,0.92,872,2.857,2972,4.221]],["content//tracks/algorithms-101/leetcode/easy/66",[49,2.394,54,0.966,60,1.6,70,1.515,71,2.665,137,0.994,226,0.84,381,1.18,382,2.69,412,2.743,414,2.698,445,2.105,478,1.749,501,3.707,591,0.255,811,1.208,823,4.486,929,1.754,990,1.011,1050,2.368,1114,2.053,1166,3.169,1168,2.239,1303,1.13,1335,1.36,1362,5.205,1440,3.972,1639,5.695,1691,4.58,1813,5.484,2145,6.428,2473,1.618,2645,2.394,2968,2.877,3028,0.733,3351,4.299,3364,5.477,3392,5.204,3453,6.428,4239,10.03,4240,6.973,4241,7.754,4242,6.973,4243,6.973,4244,8.614,4245,8.614,4246,6.973,4247,6.973,4248,6.973]],["description//tracks/algorithms-101/leetcode/easy/66",[60,0.98,872,3.044,2972,4.497,3028,0.602]],["title//tracks/algorithms-101/leetcode/easy/643",[1091,1.771,1741,2.29,3012,2.38,3053,3.981]],["content//tracks/algorithms-101/leetcode/easy/643",[11,1.392,16,0.694,60,1.523,64,2.159,65,1.121,66,1.804,70,1.934,96,2.953,120,1.87,146,1.608,154,2.492,161,2.848,170,4.581,210,1.52,223,1.762,226,1.072,239,1.471,245,1.804,289,1.783,345,2.991,360,2.953,381,1.061,382,1.804,394,2.146,404,2.752,413,2.799,429,1.641,439,3.067,450,2.233,458,3.258,462,2.187,486,4.282,495,1.998,563,2.503,578,3.128,591,0.238,607,3.26,625,1.892,700,4.473,754,1.702,755,2.953,811,1.041,817,3.597,823,3.008,860,2.429,983,6.35,989,4.84,990,1.361,1050,2.159,1091,2.991,1151,2.532,1168,2.012,1203,2.012,1303,1.016,1324,2.465,1335,1.222,1354,3.672,1441,2.949,1514,2.36,1635,4.008,1691,3.332,1741,4.271,1798,2.327,1927,3.449,2188,2.233,2247,4.923,2279,5.643,2645,1.742,2966,3.798,2968,2.238,3010,2.02,3012,4.441,3028,0.659,3052,5.271,3169,5.231,3230,2.621,3339,4.677,3348,3.886,3366,2.707,3379,2.541,3725,4.144,3729,4.298,3741,2.721,3815,5.231,3876,5.643,3907,4.144,4249,5.643,4250,5.643,4251,5.231,4252,6.268,4253,9.715,4254,6.268,4255,8.899,4256,6.268,4257,6.268]],["description//tracks/algorithms-101/leetcode/easy/643",[226,0.484,583,1.655,990,0.583,1091,1.493,1741,1.93,2983,2.572,3012,2.007,3028,0.423,3053,3.356]],["title//tracks/algorithms-101/leetcode/easy/26",[98,2.742,565,1.487,1050,1.04,2358,1.638,2596,2.582]],["content//tracks/algorithms-101/leetcode/easy/26",[35,2.369,39,2.436,69,3.091,70,2.076,75,1.473,89,2.337,98,5.302,137,1.009,157,1.741,159,2.543,185,3.035,224,2.276,226,0.79,278,1.741,289,1.866,316,3.654,353,3.814,369,1.741,381,1.111,382,2.617,407,1.761,410,3.488,414,2.597,565,2.876,591,0.256,754,1.781,779,3.745,811,1.235,820,2.881,885,5.302,990,0.951,1024,2.436,1050,2.441,1114,1.822,1158,2.659,1203,3.163,1258,3.274,1286,3.21,1316,2.833,1335,1.279,1417,3.951,1441,3.036,1464,3.654,1728,5.153,1838,3.149,1896,4.896,2221,5.153,2294,4.618,2358,2.506,2645,2.304,2725,3.745,2808,5.475,2968,1.823,3010,2.28,3028,0.69,3052,5.304,3206,4.618,3230,4.208,3348,5.14,3391,3.736,3498,4.682,3543,3.745,3806,5.153,3807,6.513,3881,4.682,4258,6.561,4259,6.561,4260,8.292,4261,6.561,4262,6.561,4263,5.906,4264,6.561]],["description//tracks/algorithms-101/leetcode/easy/26",[98,3.131,565,1.698,1050,1.187,2358,1.87,2596,2.948,3028,0.515]],["title//tracks/algorithms-101/leetcode/easy/234",[1,0.91,1462,1.633,2985,2.657,4265,4.294]],["content//tracks/algorithms-101/leetcode/easy/234",[1,2.006,11,1.459,16,0.399,30,2.032,54,1.324,60,0.793,62,1.041,64,1.593,65,1.363,66,1.89,70,1.903,76,3.463,108,2.682,121,1.745,132,2.002,137,0.918,154,1.434,157,1.23,159,1.796,165,1.644,207,1.47,210,1.566,215,5.351,226,1.055,232,1.236,245,2.921,256,1.936,340,2.183,353,2.622,365,1.908,381,1.112,382,1.334,390,3.808,429,0.743,455,1.334,458,3.418,462,1.258,473,1.879,480,1.823,495,1.149,591,0.258,625,1.399,626,2.717,635,3.848,762,2.464,811,1.132,820,3.349,829,2.095,989,2.521,990,1.203,991,3.064,1050,1.85,1151,2.491,1174,4.342,1178,2.703,1230,2.07,1303,0.751,1327,3.982,1335,0.904,1353,3.277,1454,2.715,1462,3.373,1528,2.313,1585,5.924,1601,5.477,1624,4.312,1642,4.354,1654,2.646,1665,3.754,1751,3.294,1960,3.377,1981,2.622,2282,2.144,2473,1.075,2608,3.045,2982,3.416,2985,4.248,2986,4.198,3010,1.162,3028,0.487,3191,7.634,3199,3.458,3216,3.64,3414,6.71,3500,2.873,3542,4.148,3543,2.646,3741,1.566,3765,5.329,3772,6.536,3801,3.307,3802,3.458,3809,3.64,3926,3.868,3927,3.868,3928,3.868,3977,7.674,3979,4.172,4266,4.634,4267,9.555,4268,4.634,4269,4.634,4270,4.634,4271,4.634,4272,4.634]],["description//tracks/algorithms-101/leetcode/easy/234",[1,1.092,1462,1.96,2985,3.189,4265,5.155]],["title//tracks/algorithms-101/leetcode/easy/2215",[11,0.952,232,0.695,307,1.206,1050,1.04,3063,3.579]],["content//tracks/algorithms-101/leetcode/easy/2215",[1,1.98,11,1.992,16,0.549,51,2.17,54,0.883,65,1.139,66,1.834,69,3.002,70,1.949,76,3.195,128,1.415,171,1.653,207,2.021,210,1.536,214,2.366,226,0.98,232,1.453,247,1.792,278,1.691,295,3.476,307,2.522,327,3.202,345,3.022,381,1.378,382,2.343,414,1.996,433,2.072,462,2.435,524,2.846,530,4.288,557,2.752,576,2.27,591,0.23,625,1.924,641,2.47,696,2.75,734,1.996,811,1.262,817,4.221,823,3.058,984,5.205,990,1.3,1024,2.366,1050,2.493,1114,1.4,1190,3.202,1203,3.135,1231,4.075,1239,2.896,1303,1.032,1335,1.242,1514,2.4,1564,3.733,1663,4.075,1691,4.328,1832,4.062,1960,3.022,2626,5.046,2645,1.771,2877,5.318,2968,2.626,3010,1.598,3028,0.67,3379,2.583,3543,3.638,3741,2.75,4217,8.507,4218,8.79,4273,6.372,4274,6.372,4275,6.372,4276,6.372,4277,10.151,4278,10.151,4279,6.372,4280,6.372,4281,6.372,4282,8.14,4283,6.372,4284,8.14,4285,6.372]],["description//tracks/algorithms-101/leetcode/easy/2215",[11,1.172,232,0.855,307,1.484,1050,1.28,3063,4.405]],["title//tracks/algorithms-101/leetcode/easy/21",[1,0.818,232,0.695,566,2.14,2358,1.638,2576,2.512]],["content//tracks/algorithms-101/leetcode/easy/21",[1,1.982,30,1.888,54,0.846,60,1.504,61,4.805,64,2.132,70,2.021,71,2.449,137,0.586,154,1.888,161,2.774,174,1.721,226,0.735,232,1.561,286,1.497,408,3.676,495,1.514,512,2.774,566,4.641,591,0.256,601,3.713,652,3.246,756,3.676,788,5.62,811,1.245,861,1.63,929,1.612,990,0.885,1087,3.175,1114,1.74,1151,2.252,1160,2.987,1166,2.774,1303,1.561,1335,1.19,1462,3.008,1489,2.636,1490,3.32,1624,2.594,1635,3.904,1665,2.299,1777,3.676,1981,3.161,2131,4.036,2358,3.357,2473,1.837,2576,3.577,2645,2.2,3028,0.642,3129,3.784,3239,3.4,3240,4.795,3243,4.356,3244,3.784,3366,2.636,3754,9.35,3756,9.35,3763,7.684,3765,5.149,3789,7.911,3791,5.495,3796,5.495,3801,4.356,3802,6.558,3803,5.495,3804,4.555,3847,5.094,4241,5.495,4286,8.788,4287,8.788,4288,6.104,4289,6.104,4290,6.104,4291,9.299,4292,6.104,4293,6.104,4294,7.918,4295,7.918,4296,7.918,4297,6.104,4298,6.104]],["description//tracks/algorithms-101/leetcode/easy/21",[1,0.934,232,0.793,566,2.443,2358,1.87,2576,2.868,3028,0.515]],["title//tracks/algorithms-101/leetcode/easy/202",[429,0.861,4299,5.374,4300,4.221]],["content//tracks/algorithms-101/leetcode/easy/202",[5,2.418,16,0.7,30,2.209,41,2.321,43,1.888,48,1.326,51,1.552,54,0.724,60,0.894,65,1.454,120,1.559,128,1.161,132,2.257,137,0.987,154,2.209,160,2.257,161,2.375,174,1.136,188,1.657,203,2.334,210,1.535,214,1.941,223,1.469,226,1.052,232,1.318,247,1.469,252,3.493,256,1.54,278,1.895,285,2.779,289,1.487,307,1.469,330,3.245,345,2.651,369,1.895,381,0.885,429,1.722,450,1.862,455,2.634,462,1.419,495,1.296,576,1.862,591,0.246,625,1.578,626,2.544,734,1.995,777,2.808,811,1.221,820,2.295,829,1.961,860,2.026,888,2.508,990,1.267,1010,1.968,1048,2.719,1065,4.276,1078,1.789,1114,1.569,1151,2.313,1190,2.808,1223,3.342,1297,3.297,1303,1.157,1316,2.257,1324,2.056,1335,1.019,1379,6.601,1411,3.9,1422,2.842,1456,3.883,1489,3.084,1514,1.968,1540,3.456,1582,6.828,1585,6.319,1601,6.351,1695,1.968,1724,2.911,1751,4.079,1798,1.941,1813,5.029,1832,2.608,1869,2.986,1887,3.291,1927,2.026,1952,3.342,1960,1.941,1981,3.247,2096,3.796,2140,3.456,2188,2.897,2217,5.779,2262,3.73,2314,4.705,2337,6.069,2539,4.105,2608,2.851,2655,4.361,2811,4.705,2966,3.608,2968,1.452,3010,2.504,3028,0.55,3230,2.986,3303,5.095,3379,2.119,3654,4.361,3741,2.412,3875,3.9,4078,6.828,4225,7.321,4300,7.731,4301,5.226,4302,5.226,4303,5.226,4304,7.14,4305,6.428,4306,6.428,4307,5.226,4308,5.226,4309,5.226,4310,8.132,4311,5.226,4312,5.226,4313,5.226]],["description//tracks/algorithms-101/leetcode/easy/202",[16,0.422,429,0.785,926,2.494,1238,1.214,1324,1.926,4300,3.845]],["title//tracks/algorithms-101/leetcode/easy/20",[532,2.682,2575,2.795,2971,3.437]],["content//tracks/algorithms-101/leetcode/easy/20",[54,0.868,70,1.362,71,2.492,137,0.855,226,1.072,239,1.89,255,3.192,341,1.847,410,3.332,414,1.963,478,1.572,528,2.257,532,4.019,534,2.212,565,2.794,591,0.26,626,2.87,754,2.187,811,1.214,860,3.64,861,1.658,924,3.755,929,1.64,990,0.909,1087,3.26,1166,2.848,1190,3.501,1249,4.144,1303,1.305,1311,3.92,1324,2.465,1335,1.222,1343,2.503,1447,4.764,1612,5.772,1624,3.781,1715,4.473,1981,2.503,2473,1.869,2608,3.216,2645,2.61,2840,6.326,3028,0.659,3366,2.707,3433,3.409,3500,4.993,3546,3.794,3711,6.351,3746,6.326,4079,8.814,4314,8.054,4315,8.899,4316,8.899,4317,8.054,4318,6.268,4319,6.268,4320,6.268,4321,6.268]],["description//tracks/algorithms-101/leetcode/easy/20",[226,0.636,532,2.634,2575,2.746,2971,3.376,3028,0.555]],["title//tracks/algorithms-101/leetcode/easy/191",[137,0.458,429,0.764,2743,2.536,4322,4.294]],["content//tracks/algorithms-101/leetcode/easy/191",[16,0.692,33,2.454,43,1.846,54,1.114,60,0.875,62,1.148,64,1.24,66,1.471,75,1.579,137,1.047,154,1.581,165,0.924,171,2.608,175,1.621,187,3.037,226,1.157,245,2.024,286,2.124,327,2.011,330,4.126,382,2.024,401,3.088,429,1.733,441,1.773,445,2.956,450,2.864,455,2.492,474,2.551,495,1.268,528,1.597,530,2.245,534,1.404,580,2.245,591,0.25,625,1.543,696,1.727,734,1.254,777,2.011,785,2.847,811,1.119,829,1.932,888,3.859,929,1.041,990,1.255,1000,4.841,1114,2.265,1143,2.918,1151,1.454,1178,3.862,1202,2.551,1238,1.744,1303,0.828,1327,2.454,1335,0.997,1360,2.283,1362,5.056,1374,3.505,1440,2.172,1448,2.78,1489,2.208,1539,5.631,1660,2.323,1673,3.313,1700,3.259,1798,1.898,1869,2.138,1887,1.925,1960,1.898,1981,2.808,2076,2.454,2145,5.248,2188,3.085,2235,3.38,2282,2.365,2473,1.186,2486,4.572,2743,5.703,2968,1.421,3010,2.601,3028,0.538,3058,3.38,3231,5.896,3371,6.314,3391,2.611,3725,6.204,3741,2.376,4093,4.602,4323,5.806,4324,3.078,4325,5.112,4326,5.112,4327,7.033,4328,6.331,4329,7.033,4330,4.266]],["description//tracks/algorithms-101/leetcode/easy/191",[16,0.294,137,0.328,171,0.885,207,1.082,429,0.547,583,1.405,990,0.495,1238,0.846,2743,1.814,3028,0.359,4322,3.071,4323,2.182]],["title//tracks/algorithms-101/leetcode/easy/190",[2743,2.857,2986,2.321,4331,4.838]],["content//tracks/algorithms-101/leetcode/easy/190",[16,0.422,29,1.927,30,1.515,43,2.466,48,1.242,54,0.946,60,1.345,64,1.188,65,1.405,70,1.484,75,1.1,76,1.745,92,2.728,115,2.901,120,1.461,137,0.968,145,2.728,146,1.751,159,1.899,161,3.572,171,2.465,174,1.484,210,1.687,221,1.677,222,2.495,224,2.368,226,1.115,229,2.017,232,1.106,239,1.844,245,1.41,277,2.95,283,1.677,314,2.266,330,3.572,340,3.216,341,1.444,345,1.819,353,2.726,369,1.3,378,2.081,381,1.513,382,3.098,396,1.794,400,3.5,401,2.998,404,2.151,429,1.629,431,1.677,445,2.567,450,1.745,455,1.965,458,1.699,462,1.854,473,1.986,512,2.226,528,1.55,530,2.998,583,2.811,591,0.243,696,1.655,727,1.927,811,0.882,823,2.351,829,2.159,860,3.465,887,1.819,888,3.277,929,0.997,934,1.794,990,1.139,1000,4.111,1087,2.548,1114,1.964,1151,1.942,1158,1.986,1168,2.87,1169,2.308,1287,2.081,1303,0.794,1327,2.351,1396,2.728,1425,3.655,1440,2.081,1448,2.664,1539,5.677,1639,3.239,1648,2.548,1691,2.604,1722,2.266,1776,2.796,1798,1.819,1813,2.548,1838,2.351,1960,2.918,1981,1.956,2004,3.239,2007,3.847,2067,3.847,2076,2.351,2145,5.865,2230,3.847,2269,2.151,2282,3.158,2473,1.137,2486,4.135,2645,2.184,2743,5.714,2968,2.573,2986,3.672,2997,2.728,3010,2.613,3015,5.622,3028,0.515,3107,6.173,3181,3.496,3183,4.088,3303,3.496,3391,2.535,3452,6.146,3599,2.796,3701,4.088,3725,4.514,3741,2.307,3816,2.95,3875,3.655,4323,4.366,4328,7.075,4332,4.898,4333,4.898,4334,4.898,4335,4.898,4336,4.898,4337,7.859,4338,8.502,4339,8.502,4340,10.307,4341,4.898,4342,6.828,4343,4.898]],["description//tracks/algorithms-101/leetcode/easy/190",[2743,3.326,2986,2.702,4331,5.632]],["title//tracks/algorithms-101/leetcode/easy/171",[429,0.687,1517,2.184,2717,3.2,3175,2.512,4344,3.86]],["content//tracks/algorithms-101/leetcode/easy/171",[7,0.991,16,0.55,48,1.621,54,1.13,60,1.094,61,2.957,70,1.389,91,3.011,137,1.005,146,1.639,172,2.247,211,2.618,226,1.139,246,2.807,287,2.716,298,3.649,381,1.082,382,1.84,401,2.807,410,3.398,429,1.516,433,3.076,495,1.585,528,1.451,530,3.581,591,0.257,597,2.407,772,4.07,811,1.161,859,4.087,862,3.849,873,2.552,887,2.373,929,1.66,990,1.182,1114,1.792,1151,1.818,1303,1.321,1311,3.937,1340,5.754,1345,4.921,1440,2.716,1441,2.986,1489,2.76,1517,4.574,1720,5.392,1899,4.77,2096,3.398,2188,2.277,2214,5.215,2473,1.893,2596,6.117,2717,4.77,3028,0.672,3156,7.342,3175,3.745,3391,3.028,3546,3.842,3607,8.997,3725,4.226,3982,5.02,4135,4.561,4345,6.391,4346,6.405,4347,10.158,4348,8.517,4349,6.391,4350,8.155,4351,6.391,4352,8.155,4353,6.391,4354,6.391,4355,6.391,4356,6.391,4357,6.391,4358,6.391,4359,6.391,4360,8.155,4361,6.391]],["description//tracks/algorithms-101/leetcode/easy/171",[429,0.846,1517,2.688,2717,3.939,3175,3.093,4344,4.752]],["title//tracks/algorithms-101/leetcode/easy/160",[1,0.818,232,0.695,1462,1.468,3297,2.94,4362,4.288]],["content//tracks/algorithms-101/leetcode/easy/160",[1,2.037,16,0.488,30,2.992,51,1.639,54,1.045,60,1.451,61,2.623,65,1.013,125,1.557,137,0.545,149,3.62,154,2.795,159,2.197,165,1.025,210,1.07,214,2.105,226,1.133,232,1.567,252,4.733,309,2.409,381,1.638,387,2.516,408,3.414,429,1.209,431,1.941,458,2.94,495,2.102,508,2.687,520,2.721,591,0.246,652,3.014,696,3.179,754,2.302,777,3.7,811,1.168,829,1.557,872,3.014,888,2.721,889,3.236,990,0.822,1022,3.887,1034,3.841,1095,3.749,1151,2.411,1239,2.576,1303,1.373,1411,4.231,1441,3.104,1462,3.22,1489,3.257,1504,4.231,1528,4.695,1624,3.839,1665,3.823,1722,2.623,1751,4.544,1832,2.829,1869,3.154,1981,3.607,2293,5.171,2473,1.967,2982,4.7,3010,1.892,3028,0.596,3239,3.157,3243,4.046,3297,7.03,3414,6.63,3765,3.322,3772,5.628,3801,4.046,3802,7.02,3804,4.231,4147,5.104,4363,7.542,4364,9.407,4365,9.407,4366,5.669,4367,9.673,4368,9.407,4369,5.669,4370,5.669,4371,4.731,4372,5.669,4373,5.669,4374,5.104]],["description//tracks/algorithms-101/leetcode/easy/160",[1,0.934,11,1.087,232,0.793,1462,1.676,3297,3.357,3801,3.494]],["title//tracks/algorithms-101/leetcode/easy/1431",[429,0.687,3032,2.835,3034,3.86,3035,3.368,3036,2.742]],["content//tracks/algorithms-101/leetcode/easy/1431",[1,1.833,7,0.938,11,2.059,16,0.798,38,2.453,48,2.22,65,1.565,70,1.315,90,2.593,174,1.902,182,2.216,204,2.961,207,1.919,210,1.486,214,2.924,221,2.695,226,1.186,232,0.981,239,2.175,277,3.644,278,1.606,327,3.78,337,4.002,340,2.851,345,3.25,381,1.333,382,2.519,385,2.279,407,1.625,425,2.156,429,1.607,439,2.961,462,2.517,524,3.517,580,2.658,583,2.491,591,0.218,598,3.218,625,1.827,626,2.805,642,2.531,734,1.931,772,3.02,795,2.851,811,0.782,861,1.621,873,3.144,884,5.206,885,6.145,890,4.096,990,1.454,994,3.87,1050,2.331,1091,3.568,1115,3.752,1169,2.851,1177,3.02,1190,2.38,1231,5.035,1238,1.953,1303,0.981,1328,3.082,1335,1.535,1353,3.929,1360,2.703,1887,2.965,1960,3.25,1981,3.144,2188,2.805,2282,2.8,2473,1.404,2608,3.144,2871,4.495,3028,0.636,3032,5.206,3035,8.074,3036,6.932,3351,3.02,3391,2.247,3541,4.15,3542,3.291,3741,2.957,4371,5.05,4375,6.052,4376,6.052,4377,7.874,4378,6.052,4379,7.874,4380,6.052,4381,6.052,4382,6.052]],["description//tracks/algorithms-101/leetcode/easy/1431",[11,1.087,429,0.785,994,3.131,3032,3.237,3035,3.845,3036,3.131]],["title//tracks/algorithms-101/leetcode/easy/141",[1,0.91,1379,3.154,1462,1.633,3078,3.747]],["content//tracks/algorithms-101/leetcode/easy/141",[1,1.833,16,0.521,29,2.38,30,2.436,51,1.315,54,0.838,60,1.498,65,1.838,66,1.742,75,1.359,137,0.581,154,2.867,165,1.094,210,1.652,214,2.247,223,1.701,226,1.054,232,1.502,247,1.701,248,3.455,252,2.961,298,3.455,387,2.626,419,3.37,429,0.97,458,3.036,462,1.643,478,1.518,591,0.254,625,1.827,626,3.118,780,3.752,811,1.273,820,2.658,829,2.404,990,1.343,1143,3.455,1151,1.722,1230,2.703,1238,1.501,1249,4.002,1303,1.418,1324,2.38,1335,1.18,1374,4.15,1379,6.353,1411,4.516,1462,2.996,1514,2.279,1528,3.929,1582,5.875,1585,6.476,1601,6.39,1624,3.346,1665,2.965,1751,4.44,1887,3.296,1981,3.144,2217,5.787,2473,1.827,2608,3.494,2655,5.05,3010,1.518,3028,0.636,3078,4.753,3130,5.05,3239,3.37,3243,4.319,3379,2.453,3414,5.787,3500,4.881,3542,3.291,3543,3.455,3763,4.516,3765,5.958,3772,5.875,3802,5.875,3804,4.516,3918,4.516,3926,5.05,3927,5.05,3928,5.05,4305,5.448,4306,5.448,4383,6.052,4384,6.052,4385,6.052,4386,6.052,4387,6.052]],["description//tracks/algorithms-101/leetcode/easy/141",[1,0.686,6,2.464,207,1.139,653,1.954,990,0.521,1379,2.376,1462,1.23,2691,2.376,3028,0.378,3078,2.822,4134,2.681]],["title//tracks/algorithms-101/leetcode/easy/14",[999,2.334,1124,2.38,1521,2.795,2970,2.481]],["content//tracks/algorithms-101/leetcode/easy/14",[11,1.653,39,2.763,48,1.887,49,2.068,54,1.031,70,1.617,71,2.772,137,0.861,226,0.896,420,3.323,528,2.266,591,0.254,601,3.985,671,1.785,811,1.29,929,1.825,990,1.079,999,4.705,1050,1.805,1166,3.381,1287,3.162,1303,1.206,1521,5.634,2473,1.727,2645,2.672,2970,3.87,3028,0.782,3366,3.214,3429,5.791,3430,4.874,3546,4.812,3589,6.209,4388,7.441,4389,7.441,4390,7.441,4391,7.441,4392,7.441,4393,7.441,4394,7.441,4395,7.441,4396,7.441,4397,8.962,4398,7.441]],["description//tracks/algorithms-101/leetcode/easy/14",[999,2.583,1124,2.634,1521,3.093,2970,2.746,3028,0.555]],["title//tracks/algorithms-101/leetcode/easy/13",[1675,2.737,2967,3.685,2968,1.493]],["content//tracks/algorithms-101/leetcode/easy/13",[12,4.233,16,0.53,34,6.544,39,2.287,41,3.034,49,2.213,54,1.103,60,1.363,64,1.494,70,1.338,71,2.463,108,2.066,137,0.765,156,2.108,165,1.439,174,2.028,191,5.471,221,2.108,226,0.741,232,0.998,245,2.292,307,1.731,353,3.523,387,3.223,412,2.422,429,1.414,445,1.859,450,2.837,474,3.073,530,2.704,591,0.253,671,1.477,754,1.672,792,4.394,811,0.796,862,3.708,929,1.797,990,0.893,1114,1.749,1116,2.901,1136,3.274,1166,2.799,1168,1.977,1239,4.24,1254,5.314,1293,3.515,1303,0.998,1311,3.421,1335,1.201,1377,4.391,1423,4.434,1424,5.038,1440,2.617,1742,5.46,1765,6.254,1838,2.956,2131,4.072,2249,5.682,2278,6.297,2451,5.544,2473,1.429,2645,2.213,2918,6.169,2967,6.397,2968,1.711,3010,2.482,3028,0.648,3056,6.645,3098,4.394,3128,4.222,3129,3.818,3222,6.645,3391,2.287,3429,5.314,3546,2.901,3655,5.544,3729,5.46,3839,7.589,3960,4.595,3977,6.585,4399,6.158,4400,6.158,4401,6.158,4402,6.158,4403,6.158,4404,7.963,4405,5.544,4406,6.158,4407,6.158,4408,6.158,4409,6.158,4410,6.158,4411,6.158,4412,6.158,4413,6.158,4414,8.825,4415,6.158,4416,6.158,4417,6.158,4418,6.158,4419,6.158,4420,6.158]],["description//tracks/algorithms-101/leetcode/easy/13",[226,0.636,1675,2.688,2967,3.619,2968,1.467,3028,0.555]],["title//tracks/algorithms-101/leetcode/easy/1207",[429,0.764,1024,1.771,2996,2.957,3064,3.981]],["content//tracks/algorithms-101/leetcode/easy/1207",[7,1.444,16,0.684,48,1.555,51,2.216,54,1.1,64,2.398,65,1.096,90,2.019,137,0.763,165,1.435,207,1.944,210,1.157,214,2.277,226,0.956,256,2.596,327,2.412,345,2.948,381,1.577,429,0.982,431,2.099,462,2.391,524,2.738,530,4.341,557,4.023,591,0.227,597,2.99,625,1.851,626,3.319,655,3.634,811,1.318,817,4.603,823,2.943,990,1.276,1024,2.277,1050,2.44,1190,2.412,1203,1.969,1231,3.921,1303,0.993,1327,4.631,1335,1.195,1353,4.648,1441,2.245,1514,2.309,1700,4.007,1847,5.078,1960,2.277,2188,3.138,2294,3.414,2473,2.044,2608,3.719,2645,2.681,2968,2.588,2996,4.922,3010,1.538,3028,0.645,3231,6.303,3379,2.485,3541,4.204,3741,2.683,3848,7.078,4421,7.94,4422,6.131,4423,6.131,4424,7.94,4425,7.94,4426,6.131,4427,6.131,4428,6.131,4429,6.131,4430,6.131]],["description//tracks/algorithms-101/leetcode/easy/1207",[429,0.918,1024,2.126,2996,3.55,3064,4.778]],["title//tracks/algorithms-101/leetcode/easy/1",[137,0.516,232,0.871,2966,2.053]],["content//tracks/algorithms-101/leetcode/easy/1",[1,1.095,11,1.689,16,0.813,60,0.982,64,2.068,65,1.026,75,1.289,118,4.931,128,1.275,207,1.82,210,1.609,214,2.823,223,2.397,226,1.169,232,1.471,239,2.216,247,1.613,255,3.873,256,2.513,278,1.523,295,3.305,307,2.827,341,2.513,345,2.823,381,1.537,395,5.463,396,2.101,407,1.541,414,1.797,429,1.703,431,2.603,433,2.472,441,1.991,462,2.316,511,2.4,534,1.576,535,2.864,576,2.045,591,0.228,597,2.161,625,1.733,643,3.051,734,2.227,754,1.558,811,1.221,829,1.576,861,2.038,990,1.369,1015,3.284,1024,2.131,1050,2.402,1094,4.862,1095,3.795,1143,3.276,1203,2.441,1228,7.045,1238,1.886,1285,3.67,1287,2.438,1303,0.93,1335,1.119,1441,2.101,1514,2.161,1583,3.935,1695,3.729,1722,3.517,1741,2.754,1927,2.947,1960,3.166,1981,2.291,2096,4.534,2188,2.045,2282,2.655,2337,6.775,2645,2.523,2871,3.276,2966,2.192,2968,2.113,3010,1.439,3028,0.603,3218,4.507,3230,3.566,3234,5.674,3294,5.028,3303,6.085,3351,3.794,3379,2.326,3391,2.131,3511,4.789,3541,3.935,3542,3.121,3543,3.276,3741,2.569,3848,3.795,4324,5.467,4431,5.739,4432,5.739,4433,5.739]],["description//tracks/algorithms-101/leetcode/easy/1",[137,0.55,232,0.928,2966,2.187,3028,0.602]],["title//tracks/algorithms-101/leetcode/easy/9/",[412,2.114,429,0.861,2985,2.993]],["content//tracks/algorithms-101/leetcode/easy/9/",[16,0.568,54,0.913,65,1.629,66,2.394,70,1.432,120,1.966,125,2.284,137,0.633,156,2.256,165,1.191,171,1.71,187,2.847,207,2.09,221,2.256,226,1.097,239,1.547,245,1.897,269,4.274,289,1.875,387,2.774,429,1.724,434,2.944,450,3.246,462,1.79,528,2.068,530,4.001,565,2.286,591,0.248,625,1.99,696,2.227,734,1.617,754,1.79,811,0.852,829,1.811,860,3.531,861,1.712,990,1.205,1034,4.236,1078,2.847,1190,3.584,1303,1.068,1324,3.271,1327,4.373,1514,2.482,1539,4.872,1630,5.934,1813,5.24,1832,3.289,1838,3.164,2024,4.872,2143,4.704,2188,2.348,2294,3.671,2478,4.215,2660,4.358,2968,2.311,2985,5.494,2986,4.469,3028,0.693,3181,4.704,3379,2.672,3391,2.447,3453,4.919,3454,5.934,3500,4.086,3599,4.747,3641,4.919,3740,4.704,3741,2.227,3907,4.358,4324,3.969,4434,6.591,4435,5.934,4436,6.591,4437,9.568,4438,9.111,4439,6.591,4440,6.591]],["description//tracks/algorithms-101/leetcode/easy/9/",[429,0.785,583,2.015,870,1.409,1324,1.926,2985,2.726,4441,4.407]],["title//tracks/algorithms-101/leetcode/easy/605/",[353,2.146,3037,4.485,3038,4.221]],["content//tracks/algorithms-101/leetcode/easy/605/",[16,0.571,48,2.318,62,1.489,65,1.186,137,0.878,146,1.701,187,2.865,207,2.647,224,2.896,226,1.005,232,1.075,234,3.45,286,1.627,341,2.461,381,1.413,455,1.909,462,2.267,591,0.238,626,2.363,734,2.241,777,2.609,811,1.181,829,1.822,861,1.718,888,3.184,895,5.971,990,1.39,1010,2.498,1050,1.609,1078,2.271,1114,2.25,1151,1.887,1230,2.962,1287,4.352,1303,1.353,1324,2.609,1335,1.293,1353,4.167,1392,2.962,1440,3.883,1960,3.1,2188,2.363,2356,5.665,2608,2.648,2793,5.21,2891,4.733,2968,1.843,2988,3.068,3010,2.598,3028,0.698,3037,5.535,3038,8.045,3741,2.241,4040,6.558,4071,5.535,4442,9.326,4443,8.953,4444,8.898,4445,9.137,4446,8.349,4447,6.633,4448,6.633,4449,6.633,4450,9.137]],["description//tracks/algorithms-101/leetcode/easy/605/",[234,1.541,281,1.259,429,0.475,894,1.65,990,0.429,1078,1.014,1324,1.165,1709,2.211,1832,1.479,2793,2.327,3038,3.685,4040,2.327,4442,2.667,4444,2.667]],["title//tracks/algorithms-101/leetcode/easy/392/",[3046,3.605,3050,5.135]],["content//tracks/algorithms-101/leetcode/easy/392/",[8,2.454,11,1.386,16,0.692,30,1.93,42,2.787,60,1.068,62,1.401,65,1.116,129,2.995,137,0.771,154,3.072,226,0.967,232,1.609,330,2.836,341,2.617,365,2.569,414,1.954,458,2.786,462,2.181,495,1.992,509,2.887,511,2.609,528,2.203,565,2.164,583,2.569,591,0.241,625,1.884,626,2.861,696,2.714,727,2.454,734,1.53,811,1.212,823,2.995,829,2.439,861,1.653,984,3.99,989,3.394,990,1.359,1078,2.136,1114,1.951,1151,2.285,1303,1.011,1311,4.157,1324,3.159,1335,1.217,1343,4.162,1362,3.475,1441,3.252,1489,3.469,1514,2.35,1528,3.114,1642,5.353,1751,4.42,1981,2.491,2188,3.164,2419,5.702,2495,4.657,2608,2.491,2740,5.207,2982,3.246,3028,0.656,3046,5.819,3050,5.207,3113,5.617,3187,4.956,3368,4.657,3379,2.53,3557,5.617,3706,5.31,3741,2.714,3816,3.758,3983,5.207,3986,7.23,4451,6.24,4452,8.031,4453,6.24]],["description//tracks/algorithms-101/leetcode/easy/392/",[35,1.768,60,0.838,528,1.111,1697,2.948,1832,2.443,3046,2.868]],["title//tracks/algorithms-101/leetcode/easy/345/",[528,1.083,2986,2.06,3039,3.981,3040,3.271]],["content//tracks/algorithms-101/leetcode/easy/345/",[1,1.244,11,1.448,16,0.562,30,2.948,56,2.491,60,1.116,65,1.166,90,2.147,137,0.626,154,2.017,159,2.527,207,2.619,210,1.231,226,1.092,232,1.593,239,1.938,277,3.926,278,2.192,345,3.067,382,2.609,387,3.28,396,2.387,445,2.494,462,2.462,474,3.254,495,2.248,528,2.399,530,2.863,565,2.262,591,0.249,601,3.805,625,1.968,671,1.564,696,2.203,721,4.042,734,1.599,756,3.926,811,1.068,829,2.49,861,1.7,989,3.546,990,1.381,1114,1.815,1131,4.653,1151,1.855,1168,3.06,1238,1.617,1258,3.254,1287,2.77,1311,3.694,1335,1.61,1343,3.805,1514,2.455,1657,4.47,1701,4.47,1736,4.653,1751,4.247,2982,4.296,2986,2.816,3028,0.686,3040,7.199,3268,4.865,3379,2.643,3546,3.891,3706,4.311,3741,2.791,3744,3.722,4001,5.869,4454,6.52,4455,6.52,4456,6.52,4457,6.52,4458,6.52,4459,6.52,4460,6.52,4461,6.52,4462,6.52,4463,6.52,4464,6.52]],["description//tracks/algorithms-101/leetcode/easy/345/",[528,1.3,2986,2.473,3039,4.778,3040,3.926]],["title//tracks/algorithms-101/leetcode/easy/2839/",[171,1.01,512,1.77,528,0.884,734,0.955,2188,1.388,4465,3.506]],["content//tracks/algorithms-101/leetcode/easy/2839/",[11,1.521,54,0.949,65,1.224,96,3.226,108,1.777,174,1.488,182,3.119,226,1.168,229,2.819,232,1.38,309,2.91,345,2.543,381,1.159,394,2.916,429,1.097,441,2.375,462,2.313,486,3.641,528,2.342,591,0.247,625,2.068,632,4.627,655,2.473,694,3.488,696,3.278,756,5.583,811,0.885,823,3.287,894,3.814,990,1.344,1015,2.958,1190,2.694,1193,2.819,1303,1.11,1327,4.088,1335,1.335,1343,4.118,1344,4.887,1345,3.562,1354,4.012,1441,2.508,1514,2.579,1695,3.653,1798,2.543,2188,2.44,2282,3.168,2358,3.812,2473,1.589,2742,5.715,3005,4.528,3028,0.72,3082,6.357,3187,3.418,3379,2.776,3500,4.246,3546,4.013,3741,2.878,3744,3.909,3816,4.124,3982,5.379,4112,7.619,4113,8.095,4115,7.668,4116,6.165,4117,7.668,4118,6.165,4119,7.668,4120,6.165,4121,7.668,4122,6.165,4466,6.848]],["description//tracks/algorithms-101/leetcode/easy/2839/",[171,1.27,512,2.225,528,1.111,734,1.201,2188,1.744,4465,4.407]],["title//tracks/algorithms-101/leetcode/easy/283/",[154,1.662,2269,2.36,3049,4.485]],["content//tracks/algorithms-101/leetcode/easy/283/",[1,1.918,7,1.227,30,2.719,51,1.91,60,1.045,65,1.415,70,1.91,76,2.175,90,2.607,97,3.577,137,0.844,146,2.385,154,1.888,171,1.584,174,1.327,178,1.696,207,1.936,215,4.944,224,2.117,226,1.21,232,0.989,239,1.432,291,3.32,298,3.485,327,3.457,341,1.799,353,3.713,381,1.033,385,2.299,387,2.931,413,2.726,414,2.48,429,1.269,431,2.09,462,2.15,474,3.046,509,2.824,563,2.437,591,0.246,607,4.119,625,1.843,754,1.658,762,3.246,772,4.808,777,2.401,778,3.904,829,1.677,887,2.267,888,2.93,990,1.397,1034,3.109,1050,2.256,1078,2.09,1114,2.043,1151,1.736,1158,4.13,1178,2.513,1203,3.359,1238,1.514,1279,2.437,1303,0.989,1362,4.894,1514,2.299,1528,3.046,1624,2.594,1700,3.21,1751,2.636,1798,3.578,1952,3.904,1960,3.453,2076,2.93,2141,3.485,2269,4.724,2473,1.417,2725,4.52,2968,1.696,3028,0.642,3206,3.4,3230,4.029,3348,5.765,3351,3.046,3368,4.555,3379,2.475,3741,2.675,4467,6.104,4468,6.104,4469,6.104]],["description//tracks/algorithms-101/leetcode/easy/283/",[154,1.935,2269,2.747,3049,5.221]],["title//tracks/algorithms-101/leetcode/easy/206/",[1,0.91,1462,1.633,2986,2.06,3079,3.56]],["content//tracks/algorithms-101/leetcode/easy/206/",[1,2.003,7,0.93,16,0.674,30,1.856,43,2.167,64,1.455,65,1.4,66,1.727,72,2.591,96,2.827,120,1.79,128,1.333,133,2.55,146,1.539,154,1.856,157,2.078,159,2.326,207,1.903,211,1.927,223,1.687,226,1.183,232,0.972,286,1.472,291,3.263,295,2.326,345,2.228,381,1.325,408,3.613,434,2.68,458,2.081,462,2.602,576,2.138,591,0.251,625,1.812,631,2.827,671,1.439,720,2.776,811,1.239,820,3.438,829,2.151,861,1.901,990,1.339,1039,3.688,1050,2.114,1065,2.936,1078,2.054,1151,2.92,1203,1.927,1230,2.68,1238,1.488,1303,1.269,1335,1.17,1458,5.007,1462,3.513,1490,5.024,1514,2.26,1612,3.263,1624,4.253,1665,3.701,1751,4.139,1776,3.425,1960,2.907,2024,3.515,2325,3.341,2473,1.817,2982,4.533,2986,4.384,3028,0.823,3079,5.843,3347,7.709,3379,2.432,3741,2.646,3763,6.894,3765,6.112,3769,7.048,3795,7.048,3801,5.587,3809,6.845,3977,7.575,4149,7.048,4470,7.83,4471,6,4472,6,4473,6]],["description//tracks/algorithms-101/leetcode/easy/206/",[1,0.767,6,2.757,207,1.275,990,0.583,1462,1.377,1697,2.421,2986,1.737,3028,0.423,3079,3.001]],["title//tracks/algorithms-101/leetcode/easy/1768/",[528,1.083,566,2.38,1055,2.168,3030,4.294]],["content//tracks/algorithms-101/leetcode/easy/1768/",[1,1.704,16,0.811,30,3.082,38,3.281,41,2.053,48,2.389,60,1.756,65,1.597,66,1.818,70,1.759,76,2.25,144,5.518,159,2.448,160,2.727,161,4.28,226,1.172,232,1.578,247,1.775,278,1.676,291,3.434,345,3.316,381,1.512,382,2.711,396,2.312,401,2.773,407,1.695,462,2.425,524,2.82,528,2.444,530,2.773,566,4.7,580,2.773,591,0.238,601,3.231,607,3.285,625,1.907,671,1.515,734,1.549,742,4.175,777,3.513,811,0.816,873,3.231,884,4.175,990,1.173,1015,2.727,1055,3.678,1169,2.975,1183,3.7,1203,2.028,1238,2.215,1303,1.023,1316,3.857,1343,3.76,1360,2.82,1362,3.517,1515,5.297,1528,3.151,1751,2.727,1755,7.398,1887,3.048,2282,3.744,2356,3.915,2366,4.96,2473,1.465,3028,0.664,3546,4.437,3741,2.734,3865,7.285,4474,6.315,4475,6.315,4476,6.315,4477,6.315,4478,8.093,4479,8.093,4480,6.315,4481,6.315,4482,6.315,4483,6.315,4484,6.315]],["description//tracks/algorithms-101/leetcode/easy/1768/",[528,1.42,566,3.122,1055,2.843]],["title//tracks/algorithms-101/leetcode/easy/1732/",[11,1.06,2431,3.05,3059,3.981,3060,3.747]],["content//tracks/algorithms-101/leetcode/easy/1732/",[11,1.241,16,0.481,51,1.214,54,0.774,65,0.999,69,2.632,75,1.254,90,1.84,96,2.632,108,2.33,120,1.666,125,2.467,137,0.997,165,1.35,187,3.226,203,2.495,210,1.054,213,2.632,214,3.124,221,2.557,226,1.013,232,0.905,245,2.913,256,2.201,286,2.064,295,2.895,307,1.571,341,2.48,381,1.264,385,2.104,390,2.134,393,3.039,396,2.046,413,3.336,458,3.602,462,2.285,474,2.788,495,1.386,563,3.359,591,0.251,625,2.255,696,1.888,811,1.161,820,3.28,829,1.535,861,1.15,887,2.074,929,1.137,990,1.357,1021,8.764,1030,3.038,1050,2.336,1091,2.773,1114,2.281,1143,4.264,1238,1.386,1303,0.905,1335,1.456,1417,3.364,1440,2.374,1441,2.046,1455,4.388,1514,2.104,1528,2.788,1695,2.813,1798,2.074,1838,2.681,1952,3.573,1960,2.773,1981,2.982,2076,2.681,2188,1.99,2253,3.987,2274,8.34,2431,5.744,2673,4.662,2966,3.431,2968,1.552,3010,2.11,3028,0.588,3060,8.374,3294,3.694,3379,2.265,3542,4.062,3543,3.189,3599,3.189,3741,2.524,3744,3.189,4485,8.414,4486,8.414,4487,8.982,4488,8.414,4489,9.632,4490,9.836,4491,5.587,4492,5.587]],["description//tracks/algorithms-101/leetcode/easy/1732/",[11,1.272,2431,3.662,3059,4.778,3060,4.497]],["title//tracks/algorithms-101/leetcode/easy/1071/",[528,0.974,999,2.098,3031,3.86,3032,2.835,3033,3.2]],["content//tracks/algorithms-101/leetcode/easy/1071/",[8,1.685,11,2.177,16,0.638,34,3.646,38,3.001,54,0.764,56,2.106,61,4.718,65,1.323,70,1.198,91,3.937,96,2.597,108,1.43,207,1.748,210,1.041,226,1.122,232,1.51,247,1.55,311,2.698,380,3.526,387,3.367,390,2.106,394,1.887,407,1.987,429,1.493,462,2.01,486,3.936,508,1.964,528,2.316,580,2.421,591,0.255,625,1.665,671,1.323,696,1.863,727,2.912,734,1.352,739,3.78,740,2.808,754,2.01,811,1.267,873,3.337,929,1.123,934,2.019,990,1.351,999,4.56,1078,1.887,1114,1.211,1169,2.597,1238,1.367,1285,3.526,1286,2.698,1287,3.146,1303,1.199,1316,2.381,1353,2.751,1360,2.463,1430,3.32,1441,3.413,1456,2.999,1515,2.931,1521,4.337,1660,2.506,1887,3.614,1927,2.137,2141,4.226,2188,3.419,2253,3.934,2258,4.33,2282,2.551,2473,1.279,2720,4.601,2984,4.089,2997,3.07,3028,0.58,3032,4.895,3033,6.955,3128,5.076,3129,3.418,3181,3.934,3183,4.601,3366,2.381,3546,3.937,3714,5.815,3741,2.501,3847,4.601,4435,4.963,4493,10.427,4494,10.678,4495,10.647,4496,4.963,4497,8.934,4498,5.514,4499,5.514,4500,5.514,4501,7.403,4502,5.514,4503,5.514,4504,5.514,4505,5.514,4506,5.514,4507,5.514]],["description//tracks/algorithms-101/leetcode/easy/1071/",[11,1.087,232,0.793,528,1.111,999,2.395,3032,3.237,3033,3.653]],["title//tracks/algorithms-101/data-structures/segment-tree",[998,4.592,2664,2.899]],["content//tracks/algorithms-101/data-structures/segment-tree",[7,0.56,8,1.103,9,1.379,11,1.757,16,0.8,25,1.878,38,1.463,41,1.174,48,1.867,51,1.434,53,1.322,54,1.387,60,0.936,62,1.228,64,2.211,66,1.574,69,2.576,70,0.785,81,1.919,108,1.91,114,1.441,121,1.36,128,1.466,137,1.008,146,1.403,157,0.958,165,1.797,171,2.45,174,0.785,175,2.334,207,1.734,210,1.246,223,1.537,227,1.534,232,0.886,245,1.039,247,2.07,256,2.17,269,2.442,279,1.463,283,2.52,286,1.806,287,4.013,289,1.027,293,1.534,305,3.204,309,1.534,311,2.675,327,2.151,333,3.615,345,2.03,353,1.441,365,1.486,369,1.954,381,1.543,385,1.36,390,1.379,393,3.411,396,2.696,400,3.888,407,2.123,412,1.42,420,1.612,429,1.268,433,2.706,442,2.061,444,1.878,445,1.651,455,1.574,478,0.905,495,1.637,509,1.67,513,1.839,527,5.32,576,2.818,591,0.255,598,1.919,622,2.061,652,1.919,671,0.866,702,1.766,719,1.612,755,1.701,785,4.1,795,2.576,811,0.952,823,1.733,824,2.694,846,2.576,860,2.119,861,0.743,882,3.013,883,2.174,929,1.113,990,0.793,998,7.723,1002,2.309,1012,1.252,1037,2.061,1050,2.429,1114,2.185,1168,1.756,1203,3.27,1278,2.061,1286,1.766,1293,3.768,1303,1.348,1335,1.435,1392,1.612,1421,2.061,1440,3.537,1462,1.236,1477,2.238,1490,3.59,1608,2.576,1665,3.605,1695,1.36,1700,1.463,1708,5.52,1710,2.576,1927,2.119,1981,1.441,2024,4.313,2065,2.309,2076,1.733,2165,4.922,2282,1.67,2422,2.836,2473,1.269,2486,2.948,2510,2.836,2582,5.254,2664,5.003,2697,3.013,2722,3.013,2966,3.871,2982,3.83,3010,2.286,3088,4.563,3129,2.238,3191,4.295,3219,3.25,3239,2.011,3297,2.475,3335,2.694,3429,5.012,3430,4.302,3542,1.964,3678,3.013,4135,2.576,4323,2.309,4508,3.25,4509,5.468,4510,2.836,4511,3.61,4512,3.61,4513,5.468,4514,3.61,4515,3.61,4516,2.694,4517,3.61,4518,3.61,4519,3.25,4520,3.61,4521,3.61,4522,3.61,4523,3.61,4524,3.61,4525,3.61,4526,3.61,4527,3.61,4528,3.61,4529,3.61,4530,5.468,4531,3.61,4532,3.61,4533,3.61,4534,3.61,4535,3.61,4536,3.61,4537,4.922,4538,6.144,4539,3.61,4540,5.468,4541,3.61,4542,3.013,4543,3.61,4544,3.61,4545,3.61,4546,3.61,4547,3.61,4548,3.61,4549,3.61,4550,3.61,4551,3.61,4552,3.61,4553,3.61,4554,3.61,4555,5.468,4556,3.61,4557,5.468,4558,3.61,4559,5.468,4560,3.61,4561,3.61,4562,3.61,4563,3.61]],["description//tracks/algorithms-101/data-structures/segment-tree",[]],["title//tracks/algorithms-101/data-structures/binary-tree",[2486,2.748,2664,2.899]],["content//tracks/algorithms-101/data-structures/binary-tree",[7,1.28,11,1.617,48,1.365,51,1.169,54,0.745,62,1.208,64,2.567,65,0.962,72,3.565,108,1.396,128,1.195,129,3.495,137,0.517,146,2.444,154,2.253,159,2.085,165,0.972,221,2.826,224,1.866,232,0.872,239,1.937,340,2.534,365,2.215,381,1.397,407,1.955,410,2.86,445,2.876,455,1.548,495,1.806,513,4.204,576,2.594,591,0.256,626,1.917,777,2.116,811,1.143,861,1.821,888,2.582,890,2.798,929,1.483,1000,3.24,1143,4.157,1168,3.059,1238,1.806,1303,1.497,1327,2.582,1346,3.152,1392,2.403,1440,3.507,1462,1.842,1553,2.926,1624,4.415,1665,4.022,1798,2.704,1950,3.152,2256,5.849,2356,3.335,2473,2.053,2486,4.535,2608,2.148,2664,4.894,3088,4.49,3239,4.055,3241,4.49,3242,4.49,3245,7.888,3246,8.206,3335,5.434,3433,3.96,3918,6.601,3957,8.381,4516,6.16,4564,6.799,4565,5.38,4566,5.38,4567,5.38,4568,4.49,4569,5.38,4570,5.38,4571,5.38,4572,5.38,4573,9.527,4574,8.255,4575,5.38,4576,5.38,4577,5.38,4578,5.38,4579,5.38,4580,5.38,4581,8.255,4582,7.282,4583,5.38,4584,7.282,4585,5.38]],["description//tracks/algorithms-101/data-structures/binary-tree",[2486,3.08,2664,3.248]],["title//tracks/algorithms-101/data-structures/_index",[128,1.367,576,2.192]],["content//tracks/algorithms-101/data-structures/_index",[57,2.181,60,1.133,64,2.023,66,1.906,128,1.853,129,3.179,137,0.949,188,2.1,387,3.046,433,2.712,519,4.942,576,2.972,591,0.257,601,3.646,811,1.277,861,1.363,925,3.988,981,3.688,1089,3.179,1114,2.106,1203,2.678,1303,1.634,1311,3.233,1343,2.644,1375,4.726,1540,4.379,1580,5.527,1665,2.494,1727,4.435,1887,2.494,2214,6.45,2269,2.908,2473,1.936,2486,2.958,2582,7.457,2664,4.654,2736,4.379,2743,3.521,2966,3.186,3010,2.092,3239,4.645,3244,4.106,3369,6.551,3429,5.023,3430,4.536,3706,4.379,3824,5.201,3957,5.527,3997,4.942,4538,5.527,4568,5.527,4586,5.962,4587,6.622,4588,6.622,4589,6.622,4590,8.628,4591,5.962,4592,5.962,4593,7.509,4594,5.962,4595,5.962,4596,5.527,4597,5.962,4598,5.962,4599,5.962,4600,5.962,4601,5.527,4602,7.509,4603,7.509,4604,5.962,4605,5.962,4606,6.622]],["description//tracks/algorithms-101/data-structures/_index",[]],["title//tracks/algorithms-101/codeforces/plan",[538,4.461]],["content//tracks/algorithms-101/codeforces/plan",[11,1.554,54,0.969,59,2.598,60,1.197,128,1.554,137,0.672,163,2.635,192,5.198,222,3.563,232,1.134,239,1.642,241,3.296,407,2.85,528,1.96,576,2.493,872,4.589,1012,2.427,1050,1.697,1297,2.836,1328,3.563,1398,4.337,1424,3.994,1742,4.797,1859,4.099,1887,3.525,1900,5.221,2024,5.484,2358,2.673,2466,3.639,2486,3.125,2966,2.673,2969,5.389,2988,4.88,3020,5.918,3036,4.474,3163,4.474,3456,5.918,3540,4.993,3739,5.221,4607,5.221,4608,5.221,4609,3.744,4610,5.221,4611,5.221,4612,4.993,4613,5.221,4614,5.221,4615,5.221,4616,5.221,4617,5.221,4618,5.221,4619,5.221,4620,5.221,4621,5.221,4622,5.838,4623,5.495,4624,5.495,4625,5.221,4626,5.221,4627,5.221,4628,5.221,4629,5.221,4630,5.221,4631,5.221,4632,5.221,4633,5.221,4634,6.298,4635,6.298,4636,6.298,4637,6.298,4638,5.495]],["description//tracks/algorithms-101/codeforces/plan",[226,0.753,3025,3.572,4639,2.747]],["title//tracks/algorithms-101/codeforces/cp-template",[59,1.995,1238,1.333,3025,3.068]],["content//tracks/algorithms-101/codeforces/cp-template",[41,1.736,59,2.69,62,1.199,64,2.139,66,2.085,70,1.16,76,1.902,108,1.385,115,3.078,125,2.259,128,1.186,137,1.012,157,1.417,171,1.385,207,2.796,210,1.367,211,1.714,226,0.872,239,1.253,256,1.574,283,1.828,287,2.269,295,2.069,314,3.351,412,2.1,433,1.736,434,3.938,528,1.645,533,1.593,557,3.129,576,1.902,591,0.259,597,3.996,601,2.132,652,3.851,746,2.777,811,1.296,885,3.414,899,4.362,981,4.034,1050,1.295,1114,1.806,1233,3.048,1303,1.681,1311,2.808,1346,3.128,1430,3.215,1498,4.193,1648,2.777,1665,3.58,1695,2.011,1876,3.81,1927,2.808,2269,2.344,2292,4.967,2468,6.521,2473,1.239,2645,2.45,2664,2.515,2755,6.521,2966,3.521,2968,2.013,2969,3.768,3010,2.312,3214,4.806,3231,4.362,3264,6.521,3344,3.661,3358,4.034,3429,5.31,3430,5.013,3542,3.94,3918,3.984,3977,3.984,4516,3.984,4519,4.806,4537,4.806,4564,3.81,4640,8.818,4641,7.244,4642,7.244,4643,7.244,4644,7.244,4645,7.244,4646,7.244,4647,7.244,4648,7.244,4649,7.402,4650,7.244,4651,6.521,4652,6.521,4653,6.521,4654,5.437,4655,6.521,4656,7.244,4657,7.244,4658,3.414,4659,3.414,4660,7.244,4661,5.339,4662,5.339,4663,5.339,4664,5.339,4665,5.339,4666,5.339,4667,8.222,4668,5.339,4669,5.339,4670,5.339,4671,5.339,4672,5.339,4673,5.339,4674,7.244,4675,5.339,4676,7.244,4677,5.339,4678,5.339,4679,5.339,4680,7.244,4681,7.244,4682,5.339]],["description//tracks/algorithms-101/codeforces/cp-template",[59,2.323,1238,1.552,3025,3.572]],["title//tracks/algorithms-101/codeforces/_index",[4639,3.16]],["content//tracks/algorithms-101/codeforces/_index",[59,3.036,75,1.836,226,0.985,352,5.038,591,0.223,981,4.554,1013,6.102,1173,4.081,1238,2.481,1462,2.799,1698,6.423,1727,5.319,2891,5.835,3025,4.668,3369,7.858,3386,5.407,4639,4.161,4683,8.177,4684,8.177,4685,8.177]],["description//tracks/algorithms-101/codeforces/_index",[226,0.753,3025,3.572,4639,2.747]],["title//tracks/algorithms-101/codeforces/contests/_index",[3025,4.108]],["content//tracks/algorithms-101/codeforces/contests/_index",[]],["description//tracks/algorithms-101/codeforces/contests/_index",[3025,3.936,4639,3.028]],["title//tracks/algorithms-101/codeforces/contests/867-div-3-1822",[165,0.862,2227,3.271,4237,3.404,4686,4.77]],["content//tracks/algorithms-101/codeforces/contests/867-div-3-1822",[1,1.599,16,0.575,56,2.55,60,1.435,64,2.488,68,3.62,137,0.805,174,1.451,206,3.878,207,2.658,210,1.869,226,0.804,286,1.637,314,3.088,341,2.701,381,1.13,396,2.444,433,2.725,441,2.315,487,2.626,591,0.248,720,3.088,734,2.056,762,3.549,861,1.374,887,2.478,976,6.31,990,0.968,1048,5,1114,1.466,1115,4.138,1134,6.838,1303,1.081,1335,1.301,1392,2.981,1660,3.033,1724,3.717,1744,4.763,1758,8.264,1960,3.112,2050,4.268,2188,2.378,2241,4.981,2419,3.549,2431,5.86,2654,6.539,3010,1.674,3025,3.81,3358,3.717,4654,5.543,4658,5.86,4659,4.268,4687,8.382,4688,4.981,4689,8.382,4690,8.382,4691,10.373,4692,10.373,4693,6.675,4694,5.57,4695,9.164,4696,8.382,4697,6.675,4698,6.675,4699,6.675]],["description//tracks/algorithms-101/codeforces/contests/867-div-3-1822",[165,0.825,591,0.107,2227,3.13,4237,3.258,4639,2.005,4700,4.565,4701,4.565]],["title//tracks/algorithms-101/codeforces/contests/849-div-4-1791",[108,1.238,2227,3.271,4237,3.404,4702,4.77]],["content//tracks/algorithms-101/codeforces/contests/849-div-4-1791",[1,1.108,16,0.871,29,2.284,30,1.547,39,0.879,48,1.473,49,1.087,54,1.134,56,0.904,59,1.857,60,1.437,61,2.686,62,1.784,64,1.68,65,1.31,66,1.672,68,1.022,69,1.115,70,1.779,71,0.732,72,1.022,75,0.879,86,0.99,108,1.797,115,2.943,120,1.491,125,1.075,127,0.832,129,1.136,133,1.662,137,0.987,154,2.458,157,1.838,159,1.516,160,1.022,161,1.076,163,2.187,165,1.436,171,1.507,174,1.087,175,1.241,178,0.658,182,0.867,187,1.69,188,1.585,207,2.039,210,1.383,213,1.115,221,0.81,223,0.666,226,0.957,232,1.122,239,1.173,243,1.351,244,1.318,245,1.439,247,0.666,278,1.541,281,1.662,286,0.581,289,1.113,291,1.287,307,0.666,311,1.914,314,2.686,327,2.529,344,3.197,365,0.975,369,1.327,378,2.468,381,1.386,382,1.439,387,2.731,390,1.495,393,0.855,394,1.988,400,1.611,401,1.04,404,1.718,407,1.342,412,1.539,413,1.747,414,1.566,416,1.565,420,1.057,424,1.689,427,5.012,429,1.561,431,0.81,433,1.626,436,2.587,444,1.231,445,1.181,450,2.069,458,3.232,462,1.062,478,0.594,480,1.539,495,1.818,514,1.095,519,1.767,528,1.947,534,0.65,557,1.69,563,2.319,565,0.821,567,2.929,578,1.952,591,0.257,597,0.891,601,3.06,625,1.51,631,2.355,632,1.952,633,1.318,641,1.516,652,1.259,671,1.661,696,0.8,719,2.233,734,1.424,752,4.144,762,2.08,795,1.115,811,1.109,814,1.318,829,1.595,848,1.767,860,2.492,861,1.029,873,1.996,888,1.136,890,1.231,894,1.318,925,2.356,929,1.309,990,1.062,998,2.919,1012,1.357,1034,2.958,1039,1.115,1048,1.231,1050,1.778,1070,1.914,1078,0.81,1087,1.231,1089,1.136,1091,2.572,1114,2.172,1124,1.181,1136,1.259,1152,3.927,1160,1.158,1168,1.865,1187,2.929,1203,2.065,1233,2.854,1254,2.356,1285,1.514,1303,1.439,1311,3.535,1316,2.777,1328,1.206,1335,0.975,1343,0.945,1345,4.259,1362,1.318,1375,1.689,1377,3.815,1392,1.057,1398,1.468,1417,1.425,1420,1.623,1421,2.854,1423,3.234,1424,1.351,1441,1.433,1454,1.387,1489,1.022,1491,2.587,1502,1.689,1515,1.259,1521,2.292,1528,1.181,1540,1.565,1564,1.387,1580,1.975,1581,2.682,1585,2.425,1639,1.565,1654,1.351,1667,1.975,1675,1.993,1700,2.607,1713,2.131,1724,2.785,1744,1.689,1751,1.022,1797,1.975,1798,2.721,1813,1.231,1847,1.514,1887,1.883,1927,2.492,1950,1.387,1960,1.857,1981,1.562,2076,1.136,2119,1.623,2129,1.565,2149,1.425,2188,1.781,2207,1.565,2214,4.429,2234,1.259,2252,1.514,2269,1.04,2294,1.318,2321,1.975,2358,3.035,2419,3.419,2444,3.403,2463,2.131,2473,0.549,2486,2.594,2582,4.589,2626,3.987,2645,1.614,2664,3.453,2729,3.073,2736,1.565,2743,1.259,2791,2.919,2863,1.318,2966,3.128,2968,1.087,2988,2.975,2997,1.318,3010,2.314,3015,2.587,3025,2.233,3082,1.623,3105,1.859,3129,1.468,3132,3.265,3135,2.131,3144,1.859,3230,0.99,3237,3.265,3239,1.318,3244,1.468,3268,1.767,3303,2.792,3358,2.179,3371,1.859,3405,5.78,3414,2.587,3422,1.767,3429,4.171,3430,4.168,3433,2.719,3540,1.689,3599,3.954,3640,1.565,3690,3.522,3693,3.073,3706,1.565,3720,1.689,3824,1.859,3997,1.767,4135,1.689,4188,1.859,4346,1.859,4538,1.975,4542,6.395,4590,5.228,4591,2.131,4592,2.131,4593,3.522,4594,2.131,4595,2.131,4596,1.975,4597,2.131,4598,2.131,4599,2.131,4600,2.131,4601,1.975,4602,4.501,4603,3.522,4604,3.522,4605,2.131,4609,1.357,4624,1.859,4639,2.55,4649,5.228,4651,2.131,4652,4.501,4653,2.131,4654,3.306,4655,6.235,4694,4.173,4703,2.131,4704,2.367,4705,2.131,4706,2.367,4707,3.912,4708,3.912,4709,3.912,4710,5,4711,4.501,4712,2.367,4713,2.367,4714,3.522,4715,2.367,4716,2.367,4717,2.367,4718,2.367,4719,2.367,4720,2.367,4721,2.367,4722,2.367,4723,3.912,4724,2.367,4725,2.367,4726,2.367,4727,2.367,4728,2.367,4729,2.367,4730,2.367,4731,2.367,4732,2.367,4733,2.367,4734,2.367,4735,2.367,4736,2.131,4737,2.367,4738,2.367,4739,2.367,4740,2.367,4741,2.367,4742,2.367,4743,2.367,4744,2.367,4745,2.367,4746,2.367,4747,2.367,4748,2.367,4749,2.367,4750,3.912,4751,2.131,4752,2.131,4753,2.367,4754,2.367,4755,2.367,4756,2.367,4757,2.131,4758,6.235,4759,3.912,4760,3.912,4761,2.367,4762,2.367,4763,1.623,4764,2.367,4765,2.367,4766,3.912,4767,2.367,4768,2.367,4769,2.367,4770,2.367,4771,2.367,4772,2.367,4773,2.367,4774,2.367,4775,3.522,4776,2.367,4777,2.367,4778,10.08,4779,2.367,4780,7.866,4781,5,4782,3.912,4783,5,4784,2.367,4785,2.367,4786,3.912,4787,2.367,4788,2.367,4789,7.558]],["description//tracks/algorithms-101/codeforces/contests/849-div-4-1791",[108,1.184,591,0.107,2227,3.13,4237,3.258,4639,2.005,4790,4.565,4791,4.565]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index",[591,0.112,3020,3.271,4624,3.747,4705,4.294]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index",[8,1.27,11,1.348,12,2.209,16,0.723,25,3.731,29,1.634,51,2.163,54,1.379,60,1.35,61,3.649,70,1.319,76,2.163,114,2.864,120,2.14,132,1.794,137,0.806,147,4.154,165,1.71,174,1.559,182,1.521,188,1.317,210,0.784,221,2.078,222,2.116,226,0.5,229,3.82,231,3.206,232,1.162,239,0.975,241,1.957,247,1.168,278,1.904,307,1.707,330,2.759,378,2.579,381,1.214,390,2.319,394,2.701,401,1.824,412,2.388,414,2.628,429,1.656,441,1.441,442,3.465,450,2.811,478,1.799,479,2.747,487,3.301,508,1.48,578,2.073,591,0.254,598,2.209,655,3.474,671,0.997,696,2.836,719,4.043,752,2.965,754,1.128,816,4.891,826,2.434,872,2.209,873,1.659,882,3.467,890,2.161,894,2.314,929,1.606,990,0.88,1012,1.441,1015,1.794,1034,3.653,1050,1.008,1078,2.455,1112,3.653,1146,1.659,1168,1.334,1178,1.71,1203,2.814,1239,3.26,1269,6.262,1318,2.372,1328,2.116,1335,0.81,1392,1.856,1499,5.353,1700,3.761,1724,3.381,1742,2.849,1777,2.502,1798,1.543,1859,2.434,1880,7.637,1887,2.701,1900,3.1,1927,2.353,1950,2.434,2004,2.747,2024,4.202,2076,1.994,2141,2.372,2188,1.48,2282,3.318,2346,5.066,2486,1.856,2525,3.263,2575,3.731,2600,2.747,2626,2.576,2814,4.768,2966,1.587,2968,1.155,2969,4.365,2988,3.318,3005,5.216,3010,2.536,3020,5.409,3098,4.332,3107,3.263,3141,7.003,3218,3.263,3297,6.009,3430,5.362,3456,2.849,3498,2.965,3637,4.622,3720,2.965,3729,4.162,3816,2.502,3824,6.591,4188,3.263,4405,8.875,4510,5.634,4596,7.003,4609,2.911,4625,3.1,4626,3.1,4627,3.1,4628,3.1,4629,3.1,4630,3.1,4631,3.1,4632,3.1,4633,3.1,4634,3.74,4635,3.74,4636,3.74,4637,3.74,4638,3.263,4792,6.07,4793,4.155,4794,3.74,4795,7.173,4796,7.173,4797,7.173,4798,8.148,4799,7.889,4800,6.07,4801,4.155,4802,6.07,4803,4.155,4804,3.467,4805,8.392,4806,8.392,4807,8.392,4808,9.279,4809,9.279,4810,3.74,4811,3.74]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index",[226,0.753,3025,3.572,4639,2.747]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A",[1859,2.795,4609,1.655,4628,3.56,4629,3.56]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A",[51,1.999,54,1.375,56,2.57,60,1.151,121,2.534,137,1.014,171,2.185,187,2.906,207,2.671,211,2.16,213,3.17,226,1.161,243,3.841,273,6.164,314,3.112,387,3.311,429,1.474,591,0.256,632,3.358,671,1.614,696,2.273,755,3.17,823,3.229,846,4.801,890,4.382,934,2.464,1114,1.851,1193,2.77,1233,3.841,1249,4.449,1303,1.09,1335,1.312,1354,4.936,1430,4.051,1648,4.382,1660,3.058,1859,5.389,1887,2.534,2024,3.942,2146,5.021,2207,4.449,2269,2.954,2444,6.02,2467,6.012,2740,5.615,2968,2.341,2969,3.5,3010,2.647,3082,4.613,3433,3.659,3881,4.801,4609,2.334,4628,5.021,4629,7.667,4659,4.303,4812,6.057,4813,6.728,4814,6.728,4815,6.728,4816,6.728,4817,6.728,4818,4.051,4819,7.584,4820,6.728]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A",[1859,2.505,1887,1.61,2024,2.505,2969,2.224,4609,1.483,4628,3.191,4629,3.191,4639,1.878]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B",[1742,3.685,4630,4.01,4631,4.01]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B",[7,1.323,11,1.896,62,1.543,86,2.873,90,2.263,137,0.82,207,2.706,226,0.827,229,2.828,269,3.069,314,3.178,385,2.587,393,2.481,394,2.352,414,2.152,429,1.631,431,2.352,511,2.873,576,2.448,591,0.253,601,2.743,625,2.074,754,2.318,817,3.069,894,3.826,990,0.996,1010,2.587,1015,3.686,1022,4.711,1034,4.347,1050,2.252,1303,1.113,1441,3.125,1504,5.127,1660,3.122,1722,3.178,1742,4.711,1927,3.308,2004,5.644,2253,4.903,2346,7.123,2966,3.261,2969,3.574,2986,3.686,2988,3.178,3005,6.954,3010,2.638,3020,4.711,3178,4.137,3344,4.711,3640,4.543,3714,7.293,3997,5.127,4186,7.995,4189,5.396,4194,6.185,4630,6.369,4631,5.127,4659,4.394,4818,4.137,4821,9.712,4822,8.535,4823,8.743,4824,6.871]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B",[1742,3.13,2969,2.375,2988,2.112,3020,3.13,4630,3.406,4631,3.406,4639,2.005]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A",[1050,0.945,1328,1.984,4609,1.351,4625,2.907,4626,2.907,4627,2.907]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A",[30,1.968,54,1.352,60,1.392,62,1.429,65,1.137,114,2.54,137,0.975,157,2.507,165,1.15,171,2.532,174,1.383,175,2.578,207,2.578,210,1.535,226,0.979,269,3.632,295,3.152,307,2.52,314,2.943,341,1.875,378,2.704,382,1.831,387,2.989,401,2.794,429,1.564,484,2.794,591,0.257,601,3.771,625,1.921,632,4.058,696,2.748,734,1.994,754,2.208,777,2.503,811,1.051,861,1.31,888,3.054,1015,3.512,1050,2.492,1114,1.969,1203,2.611,1230,2.842,1297,2.579,1303,1.317,1328,4.565,1335,1.241,1362,3.543,1441,2.978,1624,2.704,1660,2.891,1700,3.633,1981,2.54,2969,3.31,2988,2.943,3010,2.039,3082,5.576,3231,4.897,3344,4.362,3974,5.31,4040,6.387,4609,2.207,4625,4.748,4626,4.748,4627,4.748,4654,4.207,4658,4.069,4659,4.069,4711,5.728,4751,9.249,4818,3.831,4825,7.039,4826,6.363,4827,8.986,4828,8.963,4829,8.963]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A",[1050,0.975,1328,2.048,2969,2.092,2988,1.86,4609,1.395,4625,3.001,4626,3.001,4627,3.001,4639,1.766]],["title//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F",[4609,1.864,4632,4.01,4633,4.01]],["content//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F",[61,4.785,137,1.039,207,2.723,226,0.835,314,3.21,429,1.112,591,0.26,811,0.897,875,5.45,1114,2.329,1303,1.124,1642,5.965,1660,3.153,1887,2.613,2024,4.065,2149,5.171,3010,2.512,3178,5.171,3333,7.166,3358,3.864,3422,5.178,4609,2.407,4632,5.178,4633,5.178,4639,3.047,4818,5.616,4819,6.246,4830,6.939,4831,6.939,4832,6.939,4833,6.939,4834,8.587,4835,6.939,4836,9.326,4837,6.939,4838,8.587,4839,6.939,4840,6.939,4841,5.45]],["description//tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F",[1887,1.844,2024,2.868,4609,1.698,4632,3.653,4633,3.653,4639,2.15]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index",[407,1.281,591,0.112,2988,2.207,4330,3.981]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index",[1,0.894,5,2.168,11,1.852,12,4.853,16,0.404,39,2.458,41,2.86,42,3.928,43,1.692,51,1.018,54,1.218,59,1.74,60,1.133,61,3.062,62,1.723,65,1.677,68,4.314,75,1.486,90,1.543,127,1.647,128,1.041,137,0.949,161,4.264,163,1.765,165,1.196,174,1.812,206,3.062,207,2.644,211,1.505,224,1.625,226,1.099,232,0.759,245,2.4,307,1.317,311,3.238,369,2.036,381,1.622,393,2.39,396,3.792,401,3.37,407,2.729,420,2.956,429,1.23,431,1.604,434,2.093,441,1.625,450,2.734,487,1.843,495,1.162,501,2.491,528,1.503,576,1.67,583,2.725,591,0.221,625,1.415,642,2.768,671,2.11,673,4.88,719,2.093,749,3.443,762,5.251,788,2.997,872,2.491,929,1.698,989,2.549,990,1.462,991,3.098,1033,2.438,1034,3.371,1048,2.438,1049,1.991,1070,2.293,1078,1.604,1081,2.675,1091,2.458,1112,3.908,1114,1.03,1159,3.681,1160,2.293,1171,3.213,1183,2.745,1190,3.018,1297,1.9,1328,2.387,1335,1.715,1377,3.008,1388,3.098,1392,4.077,1398,2.905,1420,4.538,1424,2.675,1482,3.303,1514,2.89,1553,2.549,1655,3.213,1722,2.168,1887,3.312,2069,6.908,2076,2.249,2188,3.343,2252,2.997,2266,3.681,2282,3.062,2358,1.79,2431,5.332,2466,2.438,2575,2.438,2966,1.79,2969,3.443,2988,4.765,3036,2.997,3098,5.476,3128,6.259,3160,6.908,3163,2.997,3455,3.911,3456,3.213,3540,3.344,3739,3.497,3840,7.917,3907,3.098,4177,3.911,4607,3.497,4608,3.497,4609,3.38,4610,3.497,4611,3.497,4612,3.344,4613,3.497,4614,3.497,4615,3.497,4616,3.497,4617,3.497,4618,3.497,4619,3.497,4620,3.497,4621,3.497,4622,3.911,4623,3.681,4780,8.892,4804,3.911,4811,4.218,4842,4.218,4843,9.877,4844,10.237,4845,4.686,4846,4.686]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index",[226,0.753,3025,3.572,4639,2.747]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A",[4607,4.01,4608,4.01,4609,1.864]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A",[49,1.96,60,1.485,66,2.497,76,2.513,108,2.251,137,0.833,165,1.698,171,2.437,175,2.237,226,0.849,307,2.756,314,3.263,390,3.314,407,1.894,591,0.237,635,4.133,670,4.374,671,2.081,754,2.733,811,1.214,1065,3.452,1078,2.415,1233,4.027,1285,4.511,1303,1.143,1311,3.363,1377,3.206,1477,6.549,1711,6.833,1896,5.264,2225,4.133,2293,4.837,2419,3.751,2645,1.96,2793,5.541,3433,3.837,4607,5.264,4608,5.264,4609,2.447,4714,6.351,4763,4.837,4818,4.248,4847,9.618,4848,10.684,4849,7.055,4850,7.055,4851,7.055,4852,7.055,4853,7.055]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A",[407,1.417,4607,3.939,4608,3.939,4609,1.831,4639,2.318]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C",[11,1.06,1297,1.934,4609,1.655,4613,3.56]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C",[11,1.735,137,0.943,226,0.941,314,3.614,407,2.097,528,1.774,591,0.256,1048,4.064,1114,2.027,1297,3.167,1311,3.576,1377,3.551,1624,3.32,2419,4.154,2645,2.171,2988,3.614,3010,1.96,3244,6.416,4609,2.71,4613,5.831,4763,5.357,4818,5.556,4854,7.813,4855,10.144,4856,7.813,4857,7.813,4858,7.034,4859,7.813,4860,7.813,4861,6.52]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C",[11,0.95,407,1.148,528,0.971,1297,1.733,2988,1.978,4609,1.483,4613,3.191,4639,1.878]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B",[3036,3.05,4609,1.655,4611,3.56,4612,3.404]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B",[1,1.417,49,2.064,54,1.24,61,4.445,71,2.769,137,0.713,226,0.894,278,1.971,314,3.436,387,3.327,429,1.435,434,3.317,591,0.255,632,4.467,694,3.783,762,5.109,1034,4.559,1114,2.192,1239,4.367,1327,3.565,1353,3.707,1825,5.3,1927,2.879,2419,3.949,2988,3.436,3010,2.245,3036,6.529,3082,6.138,3721,6.199,4609,2.576,4611,5.543,4612,5.3,4654,4.911,4658,4.75,4763,5.093,4818,5.391,4825,7.031,4861,7.471,4862,8.952,4863,7.428,4864,7.428,4865,6.687]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B",[2988,2.265,3036,3.131,4609,1.698,4611,3.653,4612,3.494,4639,2.15]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A",[872,2.536,3456,3.271,4609,1.655,4610,3.56]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A",[61,4.413,226,0.996,314,3.827,407,2.221,591,0.25,872,4.399,1233,4.723,1377,4.335,2419,4.399,3456,5.673,4609,2.87,4610,6.174,4658,5.291,4694,6.904,4763,5.673,4818,4.982]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A",[407,1.314,872,2.603,3456,3.357,4609,1.698,4610,3.653,4639,2.15]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A",[163,1.796,2466,2.481,4609,1.655,4616,3.56]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A",[11,1.099,39,1.838,49,1.376,51,1.718,54,1.346,60,1.177,62,1.112,70,1.076,71,2.128,108,2.678,128,1.099,132,2.138,137,1.01,139,5.462,154,2.776,161,3.126,163,4.028,165,1.679,183,4.936,207,1.57,210,1.298,221,2.706,236,5.199,239,1.161,245,3.038,314,2.29,330,3.592,341,1.459,378,2.103,381,0.838,382,1.425,393,1.788,407,1.329,413,2.211,414,1.55,429,1.369,433,2.236,444,2.575,496,2.9,511,2.07,516,3.394,563,1.976,565,3.501,576,1.764,591,0.247,633,2.757,641,2.666,671,1.187,719,2.211,817,2.211,829,2.552,860,3.31,861,1.019,929,1.609,1050,2.072,1114,1.736,1146,3.879,1151,1.408,1164,4.179,1177,2.47,1203,2.742,1239,3.881,1353,2.47,1489,2.138,1491,3.273,1539,2.9,1660,2.25,1798,3.663,1937,7.04,1960,1.838,2096,4.541,2466,5.563,2645,1.911,2968,1.376,2969,2.575,2988,2.29,3010,2.251,3130,4.131,3392,3.694,3806,5.402,3807,5.402,3997,5.898,4609,1.717,4616,3.694,4639,2.174,4659,3.166,4866,4.95,4867,3.532,4868,4.456,4869,4.456,4870,4.95,4871,4.456,4872,4.95,4873,4.95,4874,4.95,4875,9.528,4876,4.95,4877,4.95,4878,4.95]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A",[128,0.843,163,1.429,407,1.019,576,1.352,2466,1.974,2969,1.974,2988,1.756,4609,1.316,4616,2.832,4639,1.667]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A",[4609,1.864,4614,4.01,4615,4.01]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A",[61,4.753,120,2.268,137,0.872,226,0.915,286,1.864,289,2.162,314,3.517,407,2.041,591,0.255,811,1.173,1303,1.232,1318,4.34,1722,3.517,1825,5.425,2358,2.904,2419,4.042,2988,3.517,3010,2.277,3128,5.212,3129,4.713,3358,4.233,4542,6.344,4609,2.637,4614,5.673,4615,5.673,4654,6.002,4658,5.805,4763,5.212,4818,5.466,4879,7.602,4880,9.705,4881,6.843,4882,9.705,4883,7.602,4884,9.705,4885,9.078,4886,7.602,4887,7.602,4888,7.602,4889,7.602]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A",[407,1.225,2358,1.744,2988,2.112,4609,1.583,4614,3.406,4615,3.406,4639,2.005]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B",[60,0.816,232,0.773,4609,1.655,4622,3.981]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B",[7,1.474,35,2.618,54,1.222,59,3.765,61,4.691,70,1.917,96,4.479,137,0.95,207,2.797,226,0.873,314,3.353,341,2.137,369,2.341,407,1.946,500,5.295,511,3.689,528,2.302,591,0.233,696,2.98,734,1.778,754,2.582,811,0.937,860,3.419,999,4.316,1233,4.138,1258,3.617,1303,1.174,1343,4.168,1424,4.138,1642,4.138,1960,2.692,2645,2.451,2984,4.316,3433,3.942,3739,7.567,4346,5.693,4623,5.693,4659,4.636,4858,6.526,4861,7.935,4881,6.526,4890,7.249,4891,7.249,4892,7.249,4893,7.249,4894,7.249,4895,7.249]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B",[59,1.695,407,1.225,528,1.036,1424,2.606,3739,3.406,4623,3.585,4639,2.005]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A",[60,0.816,232,0.773,4609,1.655,4617,3.56]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A",[11,1.57,54,1.452,60,1.209,137,0.984,157,1.875,226,0.851,232,1.589,289,2.01,314,3.269,381,1.196,382,2.5,387,2.897,407,1.897,429,1.132,433,2.824,441,2.451,445,2.133,475,5.043,484,4.307,508,2.518,591,0.256,632,3.526,698,4.168,811,1.123,990,1.024,1050,1.714,1065,3.457,1114,2.066,1168,2.269,1174,4.672,1203,3.019,1303,1.145,1324,2.78,1335,1.378,1398,4.381,1700,3.52,1832,3.526,1950,4.14,2149,4.255,2188,3.35,2419,3.757,2968,2.413,2969,3.676,3010,1.772,3421,5.897,3540,5.043,4609,2.451,4617,5.273,4654,4.672,4658,4.519,4763,4.845,4818,5.23,4825,5.55,4896,7.067,4897,7.067,4898,7.067,4899,9.402,4900,8.685,4901,7.067,4902,7.067]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A",[60,0.688,232,0.652,407,1.079,1398,2.493,2969,2.092,3540,2.87,4609,1.395,4617,3.001,4639,1.766]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A",[2966,1.638,3163,2.742,4609,1.487,4618,3.2,4619,3.2]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A",[54,1.417,60,1.13,108,2.654,137,1.033,157,1.752,207,3.036,226,1.002,307,1.856,309,3.537,314,3.851,330,3.783,394,2.26,401,2.899,407,1.772,591,0.259,601,3.64,626,2.352,631,3.922,671,1.584,811,0.853,872,3.51,1114,2.003,1303,1.349,1311,3.826,1798,2.451,2582,4.711,2608,2.636,2966,3.77,2988,3.054,3010,2.401,3163,4.222,3178,3.975,3234,6.804,3344,5.708,3358,3.676,3433,4.527,3599,3.769,4609,2.29,4618,4.926,4619,4.926,4654,5.504,4658,5.323,4659,5.323,4818,5.013,4825,6.538,4827,5.943,4865,5.943,4903,9.118,4904,9.574,4905,9.574,4906,9.574,4907,6.602,4908,6.602,4909,6.602]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A",[407,1.148,2966,1.633,2988,1.978,3163,2.734,4609,1.483,4618,3.191,4619,3.191,4639,1.878]],["title//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A",[4609,1.864,4620,4.01,4621,4.01]],["content//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A",[61,3.857,207,3.039,226,1.004,314,3.857,407,2.238,591,0.237,601,3.329,1303,1.351,3344,5.718,4609,2.892,4620,6.223,4621,6.223,4658,5.333,4659,5.333,4910,8.339,4911,8.339]],["description//tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A",[407,1.417,4609,1.831,4620,3.939,4621,3.939,4639,2.318]],["title//stories/_index",[4912,6.478]],["content//stories/_index",[]],["description//stories/_index",[]],["title//stories/004-trading-bot-refactor-orders",[280,1.046,1940,2.671,4913,1.835,4914,2.671,4915,3.059,4916,3.25]],["content//stories/004-trading-bot-refactor-orders",[16,0.546,38,3.824,43,2.931,48,1.609,56,2.423,60,1.086,75,2.01,120,1.892,125,2.229,146,1.627,156,2.778,157,2.375,171,2.106,174,2.05,175,2.011,183,3.823,211,2.037,221,2.171,228,2.74,278,2.504,286,2.314,309,2.695,319,4.194,345,3.323,375,3.166,396,2.972,407,1.703,414,3.313,439,4.379,441,2.815,487,2.495,512,2.883,531,4.527,576,2.26,591,0.235,607,3.3,655,2.931,694,3.231,698,3.895,734,1.556,743,4.527,746,4.222,839,4.056,894,3.533,929,1.292,1036,4.527,1039,2.988,1078,2.171,1081,3.621,1086,4.379,1119,3.621,1166,2.883,1178,2.611,1194,3.3,1244,4.349,1303,1.315,1335,1.237,1360,2.833,1448,3.45,1655,5.565,1724,3.533,1832,3.166,1838,3.045,1925,4.056,1940,5.565,1951,5.71,1981,2.533,2149,3.82,2263,5.294,2467,4.527,2473,2.263,2542,5.366,2658,4.982,3157,3.82,3158,3.82,4094,4.734,4913,2.988,4914,5.565,4915,7.41,4916,7.469,4917,8.116,4918,8.116,4919,6.343,4920,6.343,4921,9.434,4922,5.71,4923,4.982,4924,6.343,4925,6.343,4926,6.343,4927,6.343,4928,8.116,4929,6.343,4930,6.343,4931,6.343,4932,6.343,4933,6.343,4934,8.116,4935,6.343,4936,8.116,4937,6.343,4938,6.343,4939,6.343,4940,6.343,4941,6.343,4942,6.343,4943,5.71,4944,6.343]],["description//stories/004-trading-bot-refactor-orders",[75,0.588,171,0.679,175,0.83,345,0.972,401,1.15,407,0.703,414,0.82,576,0.933,597,0.986,738,1.795,977,1.795,1086,1.281,1316,1.131,1940,1.795,4134,1.954,4913,1.233,4914,1.795,4915,2.056]],["title//stories/002-openvpn-aws-ec2-setup",[32,0.837,169,1.369,372,1.629,537,1.74,4945,3.25,4946,2.779]],["content//stories/002-openvpn-aws-ec2-setup",[1,1.721,7,1.398,8,2.298,10,3.049,11,1.67,16,0.832,23,1.498,32,1.939,51,1.634,54,1.042,58,4.905,59,2.792,66,2.165,72,3.248,82,2.09,96,3.543,156,2.574,165,1.359,168,3.543,169,2.644,178,2.09,205,4.973,223,2.114,226,1.086,229,3.096,231,2.873,240,2.476,281,3.196,305,4.406,321,4.662,342,5.907,361,3.94,372,3.145,427,3.83,498,4.809,624,4.973,749,3.912,832,3.753,873,3.003,1054,3.181,1074,6.276,1178,3.096,1486,6.77,1782,5.612,1788,5.907,2658,5.907,2830,6.276,4945,6.276,4946,6.436,4947,7.521,4948,6.77,4949,7.521,4950,7.521,4951,9.019,4952,7.521,4953,7.521,4954,7.521,4955,7.521,4956,7.521,4957,4.809]],["description//stories/002-openvpn-aws-ec2-setup",[32,1.231,169,2.013,537,2.557,4945,4.778]],["title//stories/001-rediscovering-backtracking-algo",[129,2.29,1887,1.796,2991,2.872,4958,3.981]],["content//stories/001-rediscovering-backtracking-algo",[7,1.185,8,1.768,10,2.345,11,1.698,16,0.816,21,1.955,30,2.365,37,2.584,43,2.09,51,1.257,53,2.119,62,1.299,65,1.531,66,1.665,75,1.717,82,1.608,83,2.42,86,2.42,114,2.31,120,2.28,127,2.034,129,3.669,159,2.243,174,2.058,182,2.119,188,1.835,207,2.424,214,2.148,218,2.345,226,0.921,230,3.967,232,0.937,240,1.905,247,1.627,282,3.303,289,1.646,305,3.39,316,3.222,351,1.589,360,2.726,369,1.536,381,0.979,406,3.01,415,3.587,420,2.584,455,1.665,460,2.777,474,2.887,495,1.435,498,4.889,509,2.677,520,3.669,524,2.584,529,4.657,534,1.589,591,0.248,597,2.179,598,3.076,642,3.197,711,3.967,728,4.639,732,2.887,734,1.419,743,4.129,783,2.345,827,3.967,829,1.589,839,3.7,855,3.7,883,3.484,926,3.894,942,1.955,953,4.318,961,3.7,969,5.209,976,6.029,978,4.318,990,1.41,991,3.826,1078,1.981,1081,3.303,1156,5.209,1159,4.545,1173,2.887,1190,2.276,1193,2.382,1216,3.587,1222,2.947,1223,3.7,1244,3.967,1259,3.39,1263,4.318,1279,2.31,1288,3.826,1316,2.499,1324,2.276,1350,4.545,1358,3.587,1406,4.829,1479,2.947,1593,4.604,1635,3.7,1650,4.129,1660,3.474,1697,3.484,1720,6.433,1724,3.222,1727,3.076,1756,4.318,1788,4.545,1832,2.887,1887,3.43,2241,4.318,2282,2.677,2325,3.222,2327,4.129,2462,5.209,2483,7.154,2658,4.545,2742,4.829,2867,5.209,2888,3.7,2985,3.222,2991,3.484,3028,0.804,3312,5.209,3381,4.829,3740,4.129,3765,3.39,3845,5.209,3907,3.826,4024,4.545,4135,4.129,4177,4.829,4957,3.7,4958,4.829,4959,5.786,4960,5.786,4961,7.645,4962,5.786,4963,5.786,4964,5.786,4965,5.786,4966,5.786,4967,5.786,4968,5.786,4969,4.361,4970,5.786,4971,7.645,4972,6.943,4973,5.786,4974,5.786,4975,6.797,4976,5.786,4977,5.786,4978,4.129,4979,5.786,4980,5.786,4981,5.786,4982,5.786,4983,5.786,4984,5.786]],["description//stories/001-rediscovering-backtracking-algo",[129,2.748,1887,2.156,2991,3.448,4958,4.778]],["title//stories/003-trading-bot-gui-init-tkinter/",[7,0.739,4913,2.247,4914,3.271,4985,3.05]],["content//stories/003-trading-bot-gui-init-tkinter/",[7,1.293,21,2.238,28,4.339,33,3.179,37,2.958,38,2.685,48,1.68,59,3.097,62,1.487,65,1.184,70,1.439,82,2.318,90,2.181,112,5.201,121,2.494,127,2.328,154,2.049,168,3.929,171,1.718,178,2.318,231,2.53,241,3.12,246,2.908,247,1.862,264,3.988,275,3.988,280,2.239,283,2.267,286,1.624,293,2.814,295,2.567,307,1.862,363,3.305,365,3.434,375,3.305,384,3.063,394,2.267,407,1.778,408,5.023,437,5.952,441,2.297,452,3.063,465,3.305,486,4.435,509,3.858,524,2.958,536,4.541,563,2.644,576,2.359,653,3.602,700,4.726,732,3.305,740,3.373,743,4.726,746,3.445,829,1.819,855,4.235,861,1.363,927,5.962,965,4.966,981,3.688,1050,1.606,1054,2.747,1084,4.541,1086,3.24,1109,4.726,1178,2.726,1203,2.126,1209,5.962,1231,4.235,1238,1.642,1648,3.445,1795,4.942,1796,5.962,1940,4.541,2149,3.988,2207,4.379,2293,4.541,2326,5.962,2422,5.201,2542,6.037,2722,5.527,2725,3.78,2884,5.962,2896,5.527,2993,5.527,3176,5.527,3907,4.379,4094,4.942,4134,4.942,4688,4.942,4752,7.509,4804,5.527,4847,5.962,4913,4.654,4914,6.915,4923,5.201,4948,7.509,4985,6.623,4986,6.622,4987,7.528,4988,6.622,4989,6.622,4990,5.171,4991,6.622,4992,5.962,4993,6.622,4994,6.622,4995,6.622,4996,6.622,4997,5.962]],["description//stories/003-trading-bot-gui-init-tkinter/",[7,0.888,4913,2.697,4914,3.926,4985,3.662]],["title//search/_index",[10,2.494,1012,2.134]],["content//search/_index",[]],["description//search/_index",[]],["title//posts/python-groovy-lint-format-setup",[537,1.47,591,0.077,1238,0.816,1479,1.676,3386,2.176,4998,2.746,4999,2.348,5000,2.746]],["content//posts/python-groovy-lint-format-setup",[1,1.032,2,3.734,3,3.381,7,1.133,16,0.466,25,1.851,38,1.442,41,1.157,48,0.903,51,2.219,53,1.303,54,1.089,62,1.469,65,1.744,68,1.537,75,2.328,81,2.875,83,3.287,86,2.262,94,3.046,108,1.403,115,3.34,120,1.061,122,4.228,125,2.363,127,1.251,133,3.767,137,0.702,142,2.797,149,3.14,157,0.944,165,1.182,168,3.899,172,1.901,174,0.773,175,1.128,178,0.989,182,1.303,185,1.646,188,2.074,189,3.201,210,1.021,214,3.073,218,2.962,223,1.521,229,1.465,231,3.003,232,0.577,234,2.813,239,1.715,245,1.557,247,1,283,1.851,304,2.276,351,2.778,352,4.574,353,1.421,369,2.457,381,0.602,390,1.359,394,1.218,395,3.478,400,2.226,424,2.539,429,0.57,441,1.234,453,1.982,480,3.487,513,3.332,534,0.977,537,2.416,591,0.256,613,2.336,626,3.299,637,2.596,702,3.201,714,1.935,733,3.576,734,2.11,737,1.708,754,0.966,783,1.442,822,2.353,865,4.968,887,2.429,891,2.353,924,2.008,929,0.725,1003,2.646,1005,1.812,1010,2.037,1012,3.075,1017,4.13,1037,2.031,1038,2.464,1086,1.741,1091,1.321,1115,4.056,1135,2.353,1136,1.892,1143,2.031,1145,1.741,1153,2.97,1154,8.279,1173,1.776,1178,2.693,1190,1.4,1196,4.668,1202,4.621,1238,2.461,1260,3.353,1294,2.353,1296,2.206,1320,4.036,1339,2.795,1364,4.869,1369,5.453,1392,1.589,1441,2.676,1476,3.087,1479,2.755,1645,2.353,1648,1.851,1657,2.44,1660,1.617,1665,1.34,1714,2.44,1721,3.708,1722,1.646,1732,3.169,1768,3.203,1776,2.031,1905,2.97,2002,2.97,2007,2.795,2020,2.539,2141,2.031,2186,2.795,2236,1.892,2262,4.668,2325,1.982,2473,0.826,2557,1.851,2560,2.795,2574,3.975,2604,2.276,2608,2.918,2638,2.795,2660,2.353,2699,3.203,2702,3.859,3027,4.869,3126,2.97,3129,2.206,3234,2.655,3386,2.353,3913,5.138,4036,4.513,4998,2.97,4999,6.139,5000,6.907,5001,9.755,5002,6.542,5003,3.558,5004,4.869,5005,3.558,5006,3.558,5007,3.558,5008,3.558,5009,3.558,5010,3.558,5011,3.558,5012,3.558,5013,4.513,5014,3.558,5015,3.558,5016,3.558,5017,3.558,5018,3.558,5019,3.558,5020,3.558,5021,3.203,5022,3.558,5023,3.558,5024,3.558,5025,3.558,5026,3.558,5027,3.558,5028,3.558,5029,3.203,5030,6.579,5031,5.408,5032,3.558,5033,3.558,5034,3.558,5035,3.558,5036,3.558,5037,3.558,5038,3.558,5039,8.277,5040,3.203,5041,3.558,5042,3.558,5043,3.558,5044,5.408,5045,3.558,5046,3.558,5047,3.558,5048,3.558,5049,8.058,5050,8.782,5051,3.558,5052,4.869,5053,4.869,5054,3.558,5055,3.558,5056,2.97,5057,3.558,5058,4.869,5059,3.558,5060,3.558,5061,3.558,5062,3.558,5063,3.558,5064,7.86,5065,7.86,5066,3.558,5067,3.558,5068,3.558,5069,3.558,5070,3.859,5071,3.558]],["description//posts/python-groovy-lint-format-setup",[51,0.874,75,0.903,129,1.93,223,1.131,1238,0.997,2327,2.87,4998,3.356,4999,2.87,5000,3.356]],["title//posts/python-docstring-templates",[59,1.995,1238,1.333,5072,4.485]],["content//posts/python-docstring-templates",[2,4.611,5,4.352,16,0.542,48,2.049,49,2.245,54,1.119,56,2.405,57,2.073,59,2.338,62,1.414,64,1.959,70,1.755,71,1.948,76,2.878,115,2.675,127,2.213,153,2.812,178,1.75,232,1.309,239,2.336,245,2.8,248,3.594,278,1.671,294,3.275,306,2.861,309,2.675,420,2.812,429,1.595,441,2.184,487,2.476,511,2.633,515,4.945,534,2.781,591,0.251,598,3.347,755,2.966,779,3.594,804,2.861,811,1.308,870,2.325,929,1.916,939,4.945,988,4.945,1011,4.026,1038,3.042,1056,3.275,1078,2.155,1238,2.413,1303,1.445,1328,3.207,1339,6.344,1388,4.163,1664,3.689,1940,4.317,2131,5.341,2467,5.764,2510,4.945,2861,5.254,2966,3.086,3379,3.814,3391,3.845,4102,5.668,4251,5.254,5004,8.028,5072,7.442,5073,6.296,5074,8.077,5075,8.918,5076,8.077,5077,8.077,5078,8.028,5079,8.077,5080,6.296,5081,6.296,5082,6.296,5083,8.077,5084,10.123,5085,9.955,5086,8.077,5087,6.296,5088,6.296,5089,6.296]],["description//posts/python-docstring-templates",[59,2.323,1238,1.552,5072,5.221]],["title//posts/python-bitwise-operators",[171,1.394,1238,1.333,4323,3.437]],["content//posts/python-bitwise-operators",[12,3.566,54,1.402,57,2.209,60,1.148,64,1.627,137,0.986,165,1.212,171,2.181,210,1.266,245,2.854,382,1.93,429,1.075,445,2.907,450,2.389,458,2.326,591,0.261,613,2.897,862,5.53,1075,4.786,1114,2.301,1116,3.159,1181,3.735,1423,5.635,1477,4.158,1539,5.641,1722,3.102,1798,2.49,2237,4.799,2347,7.016,2486,3.755,2589,5.53,2595,4.039,2743,4.47,2968,1.864,3010,1.682,3117,6.072,3190,5.597,3533,4.786,3637,4.926,4323,4.289,5090,6.707,5091,6.038,5092,6.707,5093,6.707,5094,5.597,5095,6.707,5096,6.038,5097,6.707,5098,8.408,5099,8.408,5100,6.707]],["description//posts/python-bitwise-operators",[171,1.623,1238,1.552,4323,4.001]],["title//posts/other-snippets",[75,1.382,2863,3.427]],["content//posts/other-snippets",[1,1.511,7,0.946,11,1.356,14,3.577,42,3.536,54,0.846,56,2.332,75,1.371,90,2.01,94,2.366,122,4.203,137,0.893,187,3.795,189,4.831,340,2.876,341,1.799,351,2.873,352,3.246,355,3.046,478,1.531,482,3.577,511,2.553,530,3.859,533,2.362,591,0.256,734,1.942,861,2.032,872,4.944,976,5.785,1012,2.117,1078,2.09,1114,1.341,1131,4.356,1146,2.437,1236,5.6,1239,4.226,1252,5.094,1311,2.366,1360,2.726,1421,3.485,1454,4.639,1656,5.094,1720,4.036,1973,4.795,1981,2.437,2222,5.094,2256,4.036,2753,4.186,2918,5.235,3641,5.909,4346,4.795,4841,6.902,5101,7.918,5102,6.104,5103,6.104,5104,7.894,5105,6.104,5106,6.104,5107,9.048,5108,6.104,5109,6.608,5110,7.128,5111,6.939,5112,6.104,5113,6.104,5114,7.918,5115,6.104,5116,6.104,5117,6.104,5118,6.104,5119,6.104,5120,6.104,5121,6.104,5122,6.104,5123,6.104,5124,6.104,5125,6.104,5126,6.104,5127,6.104,5128,6.104,5129,6.104,5130,6.104,5131,8.371,5132,8.674,5133,6.104,5134,6.104,5135,6.104,5136,6.104,5137,9.635,5138,6.104,5139,6.104,5140,6.104,5141,6.104,5142,6.104,5143,6.104,5144,6.104]],["description//posts/other-snippets",[75,1.548,2863,3.84]],["title//posts/js-snippets",[75,1.207,1479,2.737,2863,2.993]],["content//posts/js-snippets",[1,1.242,5,1.928,7,0.491,8,1.703,16,0.619,28,4.206,30,1.289,33,1.521,35,0.666,38,1.285,40,1.551,41,0.6,43,1.505,44,0.92,47,1.228,48,2.131,53,1.161,54,1.183,57,0.607,59,1.837,60,0.713,62,0.414,64,1.011,70,0.401,72,0.796,75,0.712,81,0.98,83,0.771,108,1.445,115,2.102,127,1.114,128,1.099,131,1.053,132,2.137,135,2.379,137,0.862,146,2.074,148,1.376,149,0.885,154,2.015,157,0.489,165,1.299,170,0.81,171,1.081,174,0.689,175,0.585,178,0.881,187,0.796,188,1.005,197,2.096,201,0.869,210,0.348,211,0.592,214,0.685,215,1.685,219,1.027,222,0.939,223,0.891,224,1.099,232,0.299,233,1.765,239,0.744,242,1.194,245,1.604,247,0.518,248,1.809,256,0.544,258,2.096,269,0.824,276,0.675,278,0.489,279,0.748,285,0.98,308,0.725,327,1.247,328,2.172,351,0.507,360,1.493,365,0.759,369,1.106,378,0.784,382,0.531,385,0.694,387,1.39,390,1.211,393,1.505,396,2.228,397,1.685,400,1.305,407,1.119,412,0.725,414,1.549,416,4.93,419,1.765,429,1.575,431,0.631,434,2.489,444,0.959,450,1.485,452,0.853,458,1.099,460,0.885,473,0.748,478,0.463,489,4.164,495,0.786,508,1.129,528,2.247,529,1.724,530,1.392,532,0.92,533,2.506,534,2.602,557,0.796,563,0.736,576,1.129,591,0.263,593,1.316,597,1.863,613,0.796,614,1.316,625,1.258,626,2.168,633,1.027,652,2.216,655,2.483,671,1,679,1.053,694,0.939,754,0.861,755,0.869,772,0.92,773,1.143,779,1.053,811,1.238,819,4.54,823,1.521,826,1.857,829,0.507,854,0.824,863,1.111,870,0.531,873,0.736,894,1.027,920,2.756,929,0.849,932,1.376,958,1.219,975,1.724,1002,2.027,1003,0.902,1005,1.614,1009,1.539,1010,1.194,1011,1.179,1015,1.369,1017,4.035,1030,1.003,1038,1.57,1040,3.82,1050,1.808,1055,0.838,1112,0.939,1114,1.777,1116,1.493,1123,1.448,1145,2.039,1173,0.92,1190,0.725,1203,1.338,1222,3.918,1249,1.219,1254,1.909,1263,5.74,1287,0.784,1294,2.756,1305,1.376,1315,1.724,1318,1.053,1327,2,1355,3.752,1358,1.143,1361,1.539,1377,0.838,1383,1.448,1392,0.824,1422,1.003,1424,1.053,1437,1.264,1438,2.027,1441,0.675,1448,4.055,1476,1.053,1478,1.539,1479,1.614,1482,2.08,1489,0.796,1545,1.316,1581,2.173,1592,1.66,1665,0.694,1673,0.869,1682,1.376,1688,3.885,1711,2.027,1720,2.756,1732,1.08,1749,2.365,1750,1.448,1807,6.044,1835,4.54,1838,0.885,1847,3.163,1849,1.316,1894,2.853,1896,1.376,1960,2.069,2002,1.539,2045,2.489,2063,2.096,2067,1.448,2080,2.489,2123,1.179,2137,5.115,2141,1.053,2151,1.264,2186,1.448,2188,0.657,2214,1.179,2226,2.645,2230,3.273,2252,1.179,2272,1.448,2358,0.705,2362,2.096,2408,4.647,2419,2.63,2444,3.264,2473,1.834,2481,2.365,2514,1.66,2529,3.752,2575,1.649,2578,1.111,2580,4.128,2581,3.11,2595,1.111,2604,1.179,2608,3.155,2689,2.489,2743,2.216,2829,1.539,2840,1.448,2864,1.539,2918,1.219,2968,0.512,2984,0.902,3015,1.219,3042,1.027,3068,2.365,3102,3.885,3111,1.539,3117,2.096,3132,1.539,3155,1.448,3174,2.096,3175,1.857,3180,2.853,3187,0.92,3189,2.853,3216,1.448,3244,1.965,3277,1.376,3331,1.66,3391,0.685,3453,2.365,3533,1.316,3640,1.219,3691,2.645,3806,2.489,3807,3.885,4000,1.66,4078,1.376,4112,1.448,4113,1.539,4189,1.448,4263,3.752,4323,2.027,4324,1.111,4330,1.539,4510,1.448,4516,2.365,4564,2.262,4624,2.489,4794,1.66,4867,2.262,4871,1.66,4916,5.434,4922,1.66,4975,1.376,5021,2.853,5070,2.974,5096,1.66,5145,1.844,5146,1.844,5147,1.844,5148,1.844,5149,1.844,5150,1.844,5151,1.844,5152,1.844,5153,1.844,5154,1.844,5155,1.844,5156,1.844,5157,1.844,5158,1.844,5159,1.844,5160,1.844,5161,1.844,5162,1.844,5163,1.844,5164,1.844,5165,1.844,5166,1.844,5167,1.844,5168,1.844,5169,3.169,5170,1.844,5171,1.844,5172,1.844,5173,1.844,5174,1.844,5175,1.844,5176,1.844,5177,3.169,5178,1.844,5179,1.844,5180,1.844,5181,1.844,5182,1.844,5183,3.169,5184,1.844,5185,1.844,5186,1.844,5187,1.844,5188,1.844,5189,1.844,5190,3.169,5191,1.844,5192,1.844,5193,1.844,5194,4.168,5195,3.169,5196,3.169,5197,1.844,5198,1.844,5199,1.844,5200,1.844,5201,1.844,5202,1.844,5203,1.844,5204,3.169,5205,3.169,5206,3.169,5207,1.844,5208,1.844,5209,3.169,5210,1.844,5211,4.168,5212,1.844,5213,1.844,5214,1.844,5215,1.844,5216,1.844,5217,1.844,5218,3.169,5219,1.844,5220,1.844,5221,1.844,5222,1.844,5223,1.844,5224,1.844,5225,4.947,5226,6.512,5227,1.844,5228,4.947,5229,1.844,5230,1.844,5231,1.844,5232,1.844,5233,1.844,5234,3.169,5235,1.844,5236,1.844,5237,1.844,5238,1.844,5239,1.844,5240,1.844,5241,1.844,5242,1.844,5243,1.844,5244,1.844,5245,1.844,5246,1.844,5247,1.844,5248,1.844,5249,3.169,5250,3.169,5251,3.169,5252,1.844,5253,1.844,5254,1.844,5255,1.844,5256,1.844,5257,1.844,5258,1.844,5259,1.844,5260,1.844,5261,1.844,5262,1.844,5263,1.844,5264,1.844,5265,1.844,5266,1.844,5267,1.844,5268,1.539,5269,1.844,5270,1.844,5271,1.844,5272,3.169,5273,2.853,5274,1.66,5275,1.844,5276,1.844,5277,1.844,5278,1.844,5279,1.844,5280,1.844,5281,3.169,5282,1.844,5283,1.844,5284,1.66,5285,1.844,5286,1.844,5287,1.844,5288,1.844,5289,1.844,5290,1.844,5291,1.844,5292,1.844,5293,3.169,5294,3.169,5295,3.169,5296,3.752,5297,3.169,5298,1.844,5299,2.645,5300,4.168,5301,1.844,5302,3.752,5303,3.169,5304,1.844,5305,1.844,5306,1.844,5307,4.168,5308,1.844,5309,1.844,5310,1.844,5311,1.844,5312,1.844,5313,4.947,5314,6.084,5315,1.844,5316,1.844,5317,1.844,5318,1.844,5319,1.844,5320,1.844,5321,1.844,5322,1.844,5323,4.168,5324,1.844,5325,1.844,5326,3.169,5327,3.169,5328,1.844,5329,5.477,5330,1.844,5331,1.844,5332,1.844,5333,3.169,5334,3.169,5335,1.844,5336,3.169,5337,1.844,5338,1.844,5339,1.844,5340,1.844,5341,1.539,5342,1.844,5343,1.844,5344,1.66,5345,1.844,5346,1.844,5347,3.169,5348,3.169,5349,1.844,5350,1.844,5351,1.844,5352,1.844,5353,4.168,5354,1.844,5355,4.168,5356,1.844,5357,3.169,5358,1.844,5359,1.844,5360,1.844,5361,1.844,5362,3.169,5363,1.844,5364,1.66,5365,6.084,5366,3.169,5367,1.66,5368,4.168,5369,1.844,5370,1.844,5371,1.844,5372,1.844,5373,3.169,5374,1.844,5375,3.169,5376,1.844,5377,1.844,5378,1.844,5379,3.169,5380,1.844,5381,1.66,5382,3.169,5383,1.844,5384,1.844,5385,3.169,5386,2.853,5387,3.169,5388,4.168,5389,3.169,5390,1.844,5391,1.844,5392,1.844,5393,1.844,5394,3.169,5395,1.844,5396,3.169,5397,1.844,5398,5.477,5399,3.169,5400,3.169,5401,4.168,5402,1.66]],["description//posts/js-snippets",[75,1.405,1479,3.187,2863,3.484]],["title//posts/js-convert-array-to-dict",[530,1.883,655,1.549,1050,1.04,1479,2.184,3848,2.835]],["content//posts/js-convert-array-to-dict",[16,0.675,64,1.902,178,2.179,381,1.328,431,3.165,528,2.099,534,2.154,591,0.258,601,3.692,655,3.668,779,4.477,802,4.862,811,1.014,1024,2.912,1050,2.243,1807,6.114,3960,6.9,5403,9.834,5404,9.834,5405,7.842,5406,7.842,5407,7.842,5408,7.06]],["description//posts/js-convert-array-to-dict",[530,2.318,655,1.906,1050,1.28,1479,2.688,3848,3.49]],["title//posts/hugo-add-copy-button-on-highlight-block",[75,1.144,239,0.772,363,1.642,375,1.642,1279,1.314,4969,1.676,5409,3.291]],["content//posts/hugo-add-copy-button-on-highlight-block",[7,1.126,48,1.842,75,2.345,228,3.136,239,2.233,286,1.781,363,5.148,375,5.063,381,1.229,459,3.421,591,0.26,750,4.407,1041,5.182,1148,2.587,1203,2.331,1279,4.169,1464,4.044,1695,2.735,1807,6.292,2242,5.182,2473,1.685,4638,5.703,5410,7.261,5411,8.83,5412,7.261,5413,7.261,5414,7.261,5415,7.261,5416,7.261,5417,9.516,5418,7.261,5419,7.261,5420,7.261,5421,7.261,5422,7.261,5423,7.261]],["description//posts/hugo-add-copy-button-on-highlight-block",[75,1.018,82,0.789,174,0.617,239,0.666,243,1.62,363,1.416,375,1.416,520,1.362,926,1.446,1081,1.62,1279,1.133,1593,1.709,1656,2.369,2863,1.581,4969,1.446]],["title//posts/howto-render-notebook-in-hugo",[89,1.388,4969,1.984,4972,2.779,5424,2.779,5425,3.059,5426,3.059]],["content//posts/howto-render-notebook-in-hugo",[7,1.436,8,2.404,10,2.45,11,1.747,16,0.753,41,1.965,54,0.837,60,1.034,62,1.357,65,1.817,70,1.313,75,1.964,89,2.803,108,1.568,114,3.141,122,3.874,125,1.66,128,1.747,129,3.775,130,5.03,134,3.849,137,0.58,146,2.243,157,2.088,163,3.617,165,1.092,174,1.313,188,2.494,189,4.279,223,1.699,245,1.739,247,2.212,275,3.639,283,2.069,286,1.482,295,2.342,341,1.781,351,2.161,352,3.213,353,2.413,360,2.847,382,1.739,390,2.309,420,3.906,455,2.264,460,3.775,480,2.377,495,1.499,514,2.796,520,2.901,530,3.84,533,2.609,565,2.096,591,0.226,613,2.61,637,2.901,728,4.718,778,3.865,797,3.016,820,2.654,870,2.264,942,2.042,943,4.144,953,4.51,975,3.287,981,3.365,982,4.747,1062,4.092,1078,2.069,1151,1.719,1160,2.957,1202,3.016,1238,1.499,1279,3.141,1297,3.189,1593,3.639,1648,3.143,1900,4.51,2005,4.51,2181,4.144,2340,5.44,2438,3.746,2630,5.724,2702,5.613,2888,6.142,3328,5.043,4324,3.639,4443,5.043,4969,5.107,4972,6.61,5424,4.312,5425,8.144,5426,8.203,5427,6.043,5428,6.043,5429,6.043,5430,4.747,5431,6.043,5432,9.263,5433,6.043,5434,6.043,5435,6.043,5436,7.866,5437,6.043,5438,6.043,5439,6.043,5440,6.043,5441,6.043,5442,6.043,5443,6.043,5444,6.043,5445,6.043]],["description//posts/howto-render-notebook-in-hugo",[16,0.294,65,0.936,89,1.216,163,1.285,870,0.982,2630,1.948,4969,1.738,4972,2.435,5424,2.435,5425,2.68,5426,2.68]],["title//posts/howto-publish-ts-npm-project",[356,2.02,640,2.184,901,2.512,2574,2.332,5070,3.06]],["content//posts/howto-publish-ts-npm-project",[7,1.255,16,0.697,43,2.925,59,3.7,75,1.819,125,2.225,146,2.077,149,3.887,286,1.986,591,0.191,640,4.799,734,1.986,737,3.887,758,5.021,924,3.007,1148,2.885,1462,3.226,2557,4.213,2574,5.581,4957,6.026,5446,7.291,5447,7.291,5448,7.291,5449,8.482,5450,7.291]],["description//posts/howto-publish-ts-npm-project",[356,2.487,640,2.688,901,3.093,2574,2.871,5070,3.767]],["title//posts/howto-publish-js-npm-project",[356,2.02,640,2.184,901,2.512,1479,2.184,2574,2.332]],["content//posts/howto-publish-js-npm-project",[1,1.283,5,3.111,7,1.464,16,0.725,28,2.493,39,3.789,41,2.186,43,2.429,48,1.216,51,1.461,59,2.884,62,1.076,65,1.202,72,2.07,75,1.992,86,3.709,94,1.858,115,2.036,122,2.004,124,4.049,125,2.69,130,5.672,134,3.8,142,2.99,146,1.229,149,2.3,157,1.272,159,2.606,163,2.925,168,3.967,174,1.688,176,2.886,186,2.105,189,3.29,208,2.669,223,1.89,234,2.493,235,3.839,236,2.3,280,1.287,283,2.883,286,2.255,289,1.363,293,2.857,303,1.943,307,1.347,341,1.982,351,2.839,355,4.202,356,4.839,369,1.785,381,0.811,410,2.548,455,1.379,458,2.694,460,3.227,478,1.202,480,3.312,512,2.178,524,2.141,533,1.43,576,2.767,591,0.25,597,1.805,613,2.904,637,2.3,640,5.054,642,2.004,671,1.863,702,3.29,734,1.175,737,3.227,746,4.783,758,2.971,772,2.392,781,4.551,783,3.595,796,3.839,870,1.379,887,1.78,901,4.551,924,1.78,942,1.619,1037,2.736,1124,2.392,1148,1.707,1160,3.29,1193,1.973,1194,3.498,1202,3.356,1204,2.886,1405,4.677,1462,2.302,1479,4.517,1590,7.028,1664,2.808,1721,3.286,1732,3.94,1847,4.3,2020,4.798,2076,2.3,2113,3.169,2212,3.999,2234,2.548,2236,2.548,2413,4.61,2483,3.764,2542,3.169,2551,4.798,2553,4.677,2557,3.498,2559,3.999,2571,6.618,2572,6.993,2574,5.675,2630,4.807,3002,3.169,4134,3.576,4324,4.049,4957,4.3,4975,5.018,4997,4.314,4999,3.42,5030,7.581,5049,5.611,5050,6.053,5052,6.053,5053,6.053,5446,4.314,5447,4.314,5448,4.314,5449,6.053,5450,6.053,5451,3.999,5452,6.724,5453,6.724,5454,6.053,5455,6.724,5456,4.793,5457,6.724,5458,6.724,5459,6.724,5460,6.724,5461,4.793,5462,4.793,5463,4.793,5464,4.793,5465,6.724,5466,4.793,5467,4.793,5468,4.793,5469,4.793,5470,4.793,5471,6.724,5472,6.724,5473,4.793,5474,4.793,5475,4.793]],["description//posts/howto-publish-js-npm-project",[7,0.623,153,1.796,356,1.894,576,1.433,640,2.048,870,1.157,901,2.356,1479,2.048,2574,2.187]],["title//posts/git-snippets",[2557,3.201,2863,3.427]],["content//posts/git-snippets",[1,1.345,2,4.025,7,0.795,16,0.607,43,1.853,54,0.977,57,1.69,61,2.374,62,1.152,65,0.917,72,3.045,74,6.189,81,3.748,94,2.733,108,2.09,114,2.815,125,2.497,134,3.449,137,0.774,140,3.096,141,3.829,146,1.808,157,2.138,163,1.932,165,1.274,182,1.879,233,3.926,240,1.69,269,2.292,278,1.362,286,1.976,306,2.332,327,2.018,341,2.078,348,3.829,349,5.031,350,3.281,351,2.213,355,2.561,401,2.253,429,0.822,445,1.549,460,4.162,533,2.403,565,3.258,566,3.518,570,3.393,591,0.252,626,1.828,629,5.503,640,3.591,641,1.989,665,6.011,687,6.722,714,2.791,734,1.258,820,2.253,860,2.733,864,4.598,931,2.669,950,2.463,999,2.51,1005,2.613,1032,3.661,1037,2.929,1114,1.77,1158,2.08,1177,2.561,1236,3.09,1248,5.031,1255,5.031,1297,2.08,1346,3.006,1435,5.031,1490,4.381,1700,2.858,1876,5.031,1878,5.748,2050,3.281,2060,4.619,2096,2.728,2184,3.518,2255,4.619,2266,4.03,2325,2.857,2413,4.834,2438,6.652,2452,3.393,2551,5.748,2557,5.676,2564,4.619,2599,5.884,2609,5.261,2630,2.929,2668,8.184,2759,4.619,2806,4.282,3332,4.282,3462,4.619,3715,4.619,3765,4.719,4080,7.237,4496,4.619,4601,4.282,4867,3.661,4914,3.518,4946,3.661,4957,5.813,5299,4.282,5476,9.621,5477,5.131,5478,5.131,5479,5.131,5480,5.131,5481,7.05,5482,5.131,5483,7.05,5484,6.347,5485,5.131,5486,5.131,5487,5.131,5488,5.131,5489,7.05,5490,5.131,5491,7.05,5492,7.05,5493,5.131,5494,5.131,5495,8.672,5496,8.055,5497,7.05,5498,7.05,5499,7.05,5500,7.05,5501,7.05,5502,5.131,5503,5.131,5504,6.347,5505,5.131,5506,5.131,5507,7.05,5508,5.131,5509,5.131,5510,4.282,5511,5.131]],["description//posts/git-snippets",[2557,3.587,2863,3.84]],["title//posts/code-style",[2,3.068,75,1.207,641,2.083]],["content//posts/code-style",[2,5.521,5,2.857,16,0.532,22,2.857,27,2.046,37,2.758,38,2.504,39,3.281,48,1.566,59,2.293,75,2.293,83,2.583,128,1.372,142,2.594,146,2.046,153,2.758,157,2.781,172,2.171,175,1.958,185,2.857,188,1.958,208,3.439,209,2.964,221,2.114,233,4.443,239,1.872,242,2.326,248,3.526,279,2.504,280,1.658,283,3.025,286,2.167,335,4.407,345,2.293,351,1.697,356,2.909,360,2.909,375,3.082,386,5.953,396,2.921,401,2.712,439,4.324,452,3.69,473,2.504,500,5.516,508,2.842,533,1.842,534,2.191,565,2.767,576,2.2,622,3.526,641,2.394,654,4.609,690,3.359,702,3.022,727,2.429,737,2.964,755,2.909,807,4.851,863,4.804,870,1.778,929,1.257,942,2.087,988,4.851,999,3.022,1037,5.332,1040,4.235,1078,2.114,1158,2.504,1202,3.981,1230,2.758,1238,1.532,1241,4.407,1441,2.261,1462,2.114,1479,3.146,1489,2.667,1553,3.359,1594,5.516,1835,4.609,1869,2.583,1887,2.326,2362,5.275,2438,4.946,2553,3.719,2557,3.213,2567,5.56,2571,4.609,2632,5.154,2634,5.953,2640,5.56,2659,7.182,2894,7.375,3332,6.658,5040,5.56,5058,5.56,5386,5.56,5512,6.176,5513,6.176,5514,6.176,5515,6.176,5516,6.176,5517,6.176,5518,6.176,5519,7.978,5520,6.176,5521,6.176,5522,6.176,5523,6.176,5524,6.176,5525,6.176,5526,7.978,5527,6.176,5528,6.176,5529,6.176,5530,6.176,5531,7.182,5532,7.978,5533,5.56,5534,6.176,5535,6.176,5536,6.176,5537,4.851,5538,6.176,5539,6.176,5540,7.182,5541,6.176,5542,6.176,5543,6.176]],["description//posts/code-style",[2,3.572,75,1.405,641,2.425]],["title//posts/bash-snippets",[75,1.207,1948,3.553,2863,2.993]],["content//posts/bash-snippets",[41,2.654,92,3.565,113,3.194,186,2.811,188,2.03,189,4.631,239,2.221,327,2.518,340,4.71,351,2.923,381,1.084,442,5.93,460,3.918,478,1.605,508,2.281,533,1.909,565,2.22,591,0.256,714,3.481,721,3.968,734,1.57,861,1.948,965,3.481,1136,3.403,1154,5.342,1236,5.7,1238,1.588,1239,3.71,1254,6.345,1653,6.414,1960,2.377,1973,7.435,2113,4.233,2249,5.825,2413,5.597,2438,5.061,2452,6.719,2453,6.812,2557,5.536,2604,4.093,2753,6.491,2763,5.342,2964,5.028,2984,3.132,3386,4.233,3430,3.481,4957,4.093,4999,5.825,5510,7.501,5531,5.763,5544,6.401,5545,8.163,5546,5.342,5547,6.401,5548,5.028,5549,9.466,5550,6.401,5551,6.401,5552,6.401,5553,6.401,5554,6.401,5555,5.763,5556,5.342,5557,6.401]],["description//posts/bash-snippets",[56,0.787,75,0.462,134,1.008,171,0.534,175,0.653,351,0.566,396,0.754,441,0.714,442,1.176,537,0.92,557,0.889,629,1.207,925,1.24,926,1.049,965,1.12,1647,1.617,1653,1.47,1727,1.095,1948,1.362,2442,1.176,2496,1.854,2557,1.811,2863,1.147,5510,1.719]],["title//posts/_index",[641,2.789]],["content//posts/_index",[1,1.643,2,4.916,3,3.984]],["description//posts/_index",[]],["title//posts/vps-docker-subdomains-setup/",[537,2.131,5558,3.981,5559,4.294,5560,3.747]],["content//posts/vps-docker-subdomains-setup/",[7,1.273,10,2.159,16,0.459,27,1.366,35,1.923,39,2.685,44,2.658,45,3.521,54,1.002,62,1.624,70,1.157,75,1.196,76,1.897,94,2.064,122,4.063,125,2.923,128,1.183,137,0.789,165,1.307,168,4.721,184,2.606,228,2.3,239,1.927,279,2.159,283,2.476,286,1.306,293,2.263,351,1.463,353,2.126,360,2.509,361,2.095,365,2.192,372,3.972,387,1.776,408,3.207,477,4.691,478,1.336,495,2.284,513,2.712,537,3.23,576,1.897,583,2.192,591,0.26,631,2.509,739,4.959,811,0.688,829,1.463,830,3.974,842,5.68,854,3.668,891,5.824,924,1.977,929,1.084,1003,2.606,1010,2.006,1037,3.04,1041,5.86,1143,3.04,1151,1.515,1173,2.658,1279,2.887,1410,4.444,1421,4.688,1665,3.092,1732,4.237,1948,3.521,2276,8.551,2419,2.831,2443,6.572,2444,5.396,2450,4.794,2452,3.521,2553,3.207,2557,2.77,2568,4.444,2569,6.51,2571,5.397,2574,3.933,2845,3.974,2888,3.406,2986,2.3,3277,5.397,3404,4.794,4324,3.207,4867,6.286,5268,4.444,5451,4.444,5537,6.45,5548,4.183,5558,4.444,5560,4.183,5561,8.212,5562,8.212,5563,5.325,5564,5.325,5565,5.325,5566,5.325,5567,8.212,5568,5.325,5569,7.232,5570,5.325,5571,5.325,5572,5.325,5573,8.212,5574,5.325,5575,6.51,5576,5.325,5577,5.325,5578,5.325,5579,5.325,5580,5.325,5581,5.325,5582,7.232,5583,5.325,5584,7.232,5585,5.325,5586,6.51,5587,5.325,5588,5.325,5589,5.325,5590,5.325,5591,5.325,5592,7.392,5593,8.212,5594,5.325,5595,7.232,5596,8.212,5597,5.325,5598,5.325,5599,8.212,5600,5.325,5601,5.325,5602,5.325,5603,7.232,5604,7.232,5605,5.325]],["description//posts/vps-docker-subdomains-setup/",[361,1.796,477,2.325,537,2.039,929,0.929,5558,3.809,5559,4.109,5560,3.585]],["title//posts/tree-vs-trie-data-structures/",[295,1.849,307,1.341,1193,1.964,2664,2.247]],["content//posts/tree-vs-trie-data-structures/",[1,0.939,7,0.763,8,1.504,11,1.093,16,0.679,33,2.362,54,0.682,62,1.105,64,2.353,66,1.416,70,1.069,72,3.679,91,2.318,95,2.506,121,2.58,128,2.188,129,2.362,131,2.809,137,0.473,140,2.161,156,1.685,165,0.889,171,2.044,174,1.069,178,1.368,186,3.008,210,1.75,211,1.58,214,2.543,224,2.733,232,1.277,246,2.161,255,2.506,256,2.64,278,1.818,280,1.321,287,2.091,295,1.907,307,2.215,316,3.815,318,2.741,320,2.277,339,4.246,345,3.163,366,2.677,381,1.642,391,2.506,396,1.802,429,0.789,431,1.685,441,1.707,445,1.486,473,1.995,478,1.234,487,1.936,508,1.753,513,4.845,520,2.362,528,1.934,532,2.456,533,1.468,534,1.352,557,2.958,563,2.735,576,3.304,578,2.456,583,2.026,591,0.245,607,2.56,626,1.753,643,2.616,655,2.474,671,1.18,727,1.936,734,1.207,755,2.318,822,3.254,823,2.362,824,3.672,846,3.512,861,1.013,865,2.506,873,1.965,894,2.741,929,1.395,958,3.254,986,2.741,1012,2.955,1049,2.091,1050,1.661,1065,3.351,1078,1.685,1143,2.809,1146,1.965,1158,1.995,1164,2.408,1168,1.58,1193,3.817,1203,1.58,1238,1.699,1239,3.113,1286,2.408,1293,2.809,1303,1.38,1324,1.936,1343,2.735,1378,4.107,1388,3.254,1396,2.741,1420,3.374,1422,2.677,1440,2.911,1441,2.508,1448,2.677,1521,4.991,1540,3.254,1553,2.677,1588,4.43,1601,2.963,1602,3.865,1624,2.911,1665,4.017,1974,4.107,2066,4.43,2076,2.362,2357,3.865,2473,1.828,2486,3.519,2608,1.965,2664,4.985,2713,3.672,2717,3.672,2823,4.107,2877,5.716,3010,1.718,3042,5.487,3164,8.982,3239,4.388,3245,3.865,3246,3.865,3256,4.43,3258,4.43,3335,6.357,3640,3.254,3678,4.107,3720,3.512,3816,2.963,3848,5.21,3881,4.888,4094,3.672,4348,4.43,4374,6.166,4564,6.617,4568,4.107,4586,4.43,5094,5.716,5606,6.85,5607,4.43,5608,4.921,5609,4.43,5610,4.921,5611,4.921,5612,4.921,5613,4.921,5614,4.921,5615,4.921,5616,7.879,5617,4.921,5618,6.166,5619,6.85,5620,4.921,5621,6.85,5622,4.921,5623,4.921,5624,4.921,5625,4.921,5626,4.921]],["description//posts/tree-vs-trie-data-structures/",[295,2.219,307,1.61,1193,2.357,2664,2.697]],["title//posts/trading-indicators/stochastic_oscillator",[1695,1.796,5627,3.747,5628,3.404,5629,3.404]],["content//posts/trading-indicators/stochastic_oscillator",[4,3.33,8,1.956,16,0.815,21,2.163,51,1.391,64,1.553,87,3.132,115,3.819,121,2.411,154,1.98,165,1.157,178,1.779,203,2.859,209,3.072,210,1.208,249,3.072,263,2.859,287,2.72,289,1.821,309,3.469,327,2.518,368,3.565,369,1.699,378,2.72,406,3.33,407,1.718,419,3.565,429,1.026,433,2.654,501,3.403,580,2.811,591,0.239,605,3.918,673,4.246,749,4.675,754,1.738,861,1.318,929,1.303,994,4.093,996,5.061,1022,4.389,1054,2.96,1124,4.074,1169,3.015,1177,3.194,1230,2.859,1238,1.588,1254,5.412,1280,5.028,1316,2.765,1325,3.194,1377,2.909,1389,4.916,1421,3.654,1447,3.846,1456,3.481,1553,3.481,1610,4.916,1695,3.385,1741,3.072,1927,3.164,2000,4.568,2271,4.777,2362,4.233,2431,4.093,2436,5.342,2466,3.33,2539,5.028,2608,2.556,2725,4.66,2895,6.642,3052,4.485,3157,4.916,3158,4.916,3637,4.783,3641,4.777,4913,4.71,4990,3.968,5627,8.08,5628,7.341,5629,4.568,5630,6.401,5631,6.401,5632,6.401,5633,6.401,5634,8.988,5635,8.163,5636,5.597,5637,7.059,5638,7.059,5639,6.163,5640,6.401,5641,5.763,5642,4.389,5643,5.028,5644,5.028,5645,4.233,5646,4.093,5647,5.028,5648,5.763]],["description//posts/trading-indicators/stochastic_oscillator",[1695,2.156,4913,2.697,5627,4.497,5628,4.086]],["title//posts/trading-indicators/sma",[121,1.796,154,1.476,1741,2.29,5649,3.404]],["content//posts/trading-indicators/sma",[4,4.458,8,1.525,11,1.109,16,0.775,54,0.691,60,1.184,87,2.442,108,1.295,121,2.605,128,1.904,137,0.664,146,1.774,154,2.651,156,1.709,157,2.275,165,0.902,174,1.085,176,3.006,182,2.533,210,0.942,211,1.603,221,1.709,223,1.403,224,1.731,232,0.809,243,2.849,245,2.845,249,3.32,263,3.828,281,2.121,287,2.121,292,2.924,327,2.721,330,2.268,382,1.437,406,2.596,407,1.34,419,2.78,429,0.8,433,1.623,441,2.399,458,1.731,487,2.721,580,2.192,583,2.055,591,0.26,605,4.114,626,1.778,642,2.087,713,3.422,719,2.229,720,2.309,749,2.596,783,2.023,832,4.648,860,2.681,868,3.3,924,1.853,929,1.408,939,3.92,974,3.562,996,5.314,1015,2.156,1020,3.094,1054,3.358,1087,2.596,1143,2.849,1169,3.74,1181,2.78,1190,3.371,1191,3.562,1238,1.238,1325,2.491,1328,2.542,1335,0.973,1389,5.42,1447,4.038,1456,5.294,1489,2.156,1564,2.924,1585,3.094,1610,4.165,1655,3.422,1691,2.654,1695,3.39,1741,4.47,1798,2.568,1832,2.491,1869,2.087,1907,3.006,1925,3.192,1927,3.322,1950,2.924,2000,3.562,2076,2.396,2188,1.778,2206,3.3,2290,3.92,2466,3.598,2537,4.493,2602,4.493,2608,2.762,2725,2.849,2806,4.165,2895,5.756,2966,2.643,2997,2.78,3010,1.735,3157,4.78,3158,3.006,3637,2.924,4249,4.493,4250,4.493,4913,3.259,4990,6.035,5636,4.743,5637,3.92,5638,3.92,5642,4.743,5643,3.92,5644,3.92,5645,3.3,5646,4.424,5649,7.539,5650,6.423,5651,3.725,5652,3.725,5653,3.725,5654,3.725,5655,6.396,5656,3.725,5657,3.725,5658,5.924,5659,5.162,5660,3.725,5661,6.396,5662,3.725,5663,3.725,5664,5.924,5665,7.146,5666,4.991,5667,4.991,5668,6.917,5669,4.991,5670,4.493,5671,4.991,5672,4.165,5673,4.991,5674,4.991,5675,4.493]],["description//posts/trading-indicators/sma",[1695,2.356,4913,2.947,5649,4.465]],["title//posts/trading-indicators/rsi",[433,1.551,2725,2.723,5645,3.154,5646,3.05]],["content//posts/trading-indicators/rsi",[16,0.775,21,1.514,41,1.457,51,1.393,54,0.621,65,0.801,87,2.193,108,1.163,137,0.719,156,1.534,157,1.189,161,2.037,163,1.688,165,0.81,203,2.864,213,3.527,245,1.29,249,3.078,287,1.904,304,2.866,309,3.674,327,1.763,365,1.845,369,1.702,384,2.073,390,1.712,393,1.619,400,1.845,404,1.968,406,2.331,407,1.203,412,1.763,433,1.457,450,1.597,487,1.763,564,3.073,580,1.968,591,0.262,605,3.922,626,1.597,713,3.073,740,2.283,749,3.335,780,2.778,783,1.817,826,2.626,831,3.266,832,4.315,924,1.664,929,1.306,965,2.437,994,2.866,996,3.975,1021,6.248,1048,2.331,1054,2.962,1112,2.283,1116,2.111,1124,3.736,1151,1.824,1181,2.496,1238,1.112,1293,2.558,1315,2.437,1325,2.237,1354,2.626,1360,2.002,1405,2.699,1423,4.551,1447,2.111,1482,3.2,1610,3.861,1654,2.558,1673,2.111,1675,2.283,1695,3.256,1741,4.317,1744,3.198,1746,3.74,1798,2.381,1869,1.874,1927,3.168,2076,2.151,2140,2.963,2141,2.558,2192,4.035,2232,6.248,2234,3.409,2236,2.383,2237,2.558,2575,2.331,2576,2.626,2595,2.699,2596,2.699,2608,2.989,2725,4.274,2895,5.752,2955,4.035,2975,3.198,2986,1.936,3017,3.344,3157,2.699,3158,2.699,3187,2.237,3637,3.757,3816,2.699,4913,3.021,4923,3.52,4990,4.642,5424,3.198,5628,3.198,5629,3.198,5636,4.397,5637,5.881,5638,5.881,5639,3.073,5642,3.073,5645,4.951,5646,6.452,5650,5.343,5651,3.344,5652,3.344,5653,3.344,5654,3.344,5655,4.785,5656,3.344,5657,3.344,5658,5.587,5659,5.587,5660,3.344,5661,4.785,5662,3.344,5663,6.098,5664,5.587,5676,4.035,5677,4.035,5678,8.172,5679,4.035,5680,4.482,5681,4.482,5682,3.52,5683,6.419,5684,5.881,5685,3.52,5686,6.419,5687,5.881,5688,3.74,5689,6.248,5690,3.74,5691,3.74,5692,6.248,5693,6.82,5694,6.82,5695,6.248,5696,3.74,5697,5.351,5698,5.351,5699,5.351,5700,5.351,5701,5.351,5702,5.351,5703,5.351,5704,3.74,5705,5.351,5706,3.74,5707,3.74,5708,4.035,5709,4.035,5710,4.482,5711,4.482,5712,4.482]],["description//posts/trading-indicators/rsi",[433,1.39,870,1.231,884,2.827,1695,1.61,2725,2.441,4913,2.014,5645,2.827,5646,2.734]],["title//posts/trading-indicators/macd",[154,1.327,1741,2.058,5639,2.94,5713,3.06,5714,3.2]],["content//posts/trading-indicators/macd",[13,1.923,16,0.603,43,1.185,48,0.832,54,0.455,66,0.944,67,3.793,87,1.605,90,1.081,97,1.923,108,0.851,115,4.118,120,0.979,137,0.315,154,1.924,165,0.593,178,1.412,188,1.04,223,1.429,224,1.138,232,0.532,235,1.873,245,0.944,249,2.439,287,1.394,295,1.272,305,1.923,309,1.394,369,1.651,384,1.518,390,1.254,393,1.185,400,1.351,406,3.236,407,0.881,412,2.755,433,1.067,440,2.449,450,1.169,458,1.138,487,1.291,495,1.988,564,4.265,580,2.232,591,0.263,597,1.914,605,4.012,626,1.811,628,2.034,673,1.707,711,2.25,713,2.25,719,1.466,727,1.291,749,1.707,781,1.923,816,2.034,831,1.671,832,2.536,859,2.098,862,1.976,873,2.797,887,1.887,924,1.218,929,1.266,965,1.785,994,3.25,996,4.697,1049,2.16,1054,2.753,1112,2.588,1116,2.93,1124,1.638,1143,1.873,1146,1.31,1147,1.441,1158,1.33,1169,2.93,1177,1.638,1190,1.291,1238,1.26,1325,2.536,1328,1.671,1389,4.563,1447,2.93,1454,1.923,1482,1.638,1517,1.671,1553,1.785,1610,3.06,1635,2.098,1654,1.873,1673,1.546,1675,1.671,1691,1.745,1695,3.339,1714,2.25,1741,2.985,1798,2.814,1859,1.923,1892,2.342,1927,2.937,1938,2.25,2000,3.627,2131,2.17,2206,2.17,2234,1.745,2236,1.745,2237,1.873,2266,2.577,2575,1.707,2576,1.923,2578,1.976,2589,1.976,2595,1.976,2596,4.218,2598,2.17,2608,3.025,2725,1.873,2744,2.342,2823,2.738,2895,6.564,3085,2.342,3157,4.563,3158,3.746,3295,4.241,3637,2.978,3729,2.25,4251,2.738,4324,1.976,4443,2.738,4913,3.776,4923,2.577,4990,3.856,5629,2.342,5636,3.485,5638,2.577,5639,2.25,5642,4.802,5643,2.577,5644,2.577,5645,2.17,5646,3.25,5650,4.439,5651,2.449,5652,2.449,5653,2.449,5654,2.449,5655,3.793,5656,2.449,5657,2.449,5658,4.642,5659,4.642,5660,2.449,5661,3.793,5662,2.449,5663,5.227,5664,4.642,5676,2.954,5682,2.577,5683,5.501,5684,4.885,5685,2.577,5686,5.501,5687,4.885,5688,2.738,5689,5.191,5690,2.738,5691,2.738,5692,5.191,5693,5.845,5694,5.845,5695,5.191,5696,2.738,5697,4.241,5698,4.241,5699,4.241,5700,4.241,5701,4.241,5702,4.241,5703,4.241,5704,4.241,5705,4.241,5706,4.241,5707,4.241,5713,7.325,5714,2.449,5715,3.281,5716,3.281,5717,6.238,5718,3.281,5719,3.281,5720,3.281,5721,3.281,5722,4.575,5723,4.575,5724,4.575,5725,4.575,5726,4.575,5727,4.575,5728,4.575,5729,4.575,5730,4.575,5731,4.575,5732,4.575,5733,4.575,5734,4.575,5735,4.575,5736,2.954,5737,4.575,5738,2.954,5739,2.954,5740,3.281,5741,3.281,5742,3.281,5743,5.082,5744,3.281,5745,6.22,5746,5.082,5747,3.281,5748,3.281,5749,3.281,5750,3.281,5751,3.281,5752,3.281,5753,3.281,5754,2.954]],["description//posts/trading-indicators/macd",[154,1.244,870,1.157,884,2.659,1695,1.514,1741,1.93,4913,1.894,5639,2.757,5713,2.87,5714,3.001]],["title//posts/trading-indicators/ema",[154,1.476,1741,2.29,1859,2.795,5717,3.56]],["content//posts/trading-indicators/ema",[4,4.739,8,1.297,16,0.76,29,1.669,54,1.006,56,1.621,60,1.055,64,1.029,70,1.731,87,2.076,108,1.101,115,1.803,128,1.369,137,0.813,144,2.486,154,1.312,156,1.452,157,1.636,165,0.767,174,1.339,176,2.555,210,0.801,213,1.999,214,2.695,223,1.733,229,2.537,232,0.687,245,2.436,249,2.958,263,4.249,278,2.343,289,1.207,290,2.555,292,2.486,330,1.928,331,3.54,365,1.747,369,1.636,390,2.355,393,2.226,400,1.747,406,3.206,407,1.139,410,2.256,412,1.669,419,2.363,501,2.256,580,2.707,591,0.261,605,4.48,626,1.512,671,1.018,690,2.307,693,3.166,822,2.805,829,1.165,832,4.546,839,2.713,873,2.461,924,1.575,929,1.478,996,3.821,1049,1.803,1054,3.224,1147,1.863,1151,1.207,1169,3.987,1172,4.841,1177,2.117,1178,1.747,1190,3.134,1230,4.069,1238,1.052,1325,3.076,1327,2.036,1328,2.161,1335,0.827,1389,5.486,1447,4.292,1456,5.256,1549,4.841,1610,3.712,1655,2.909,1673,1.999,1691,3.277,1695,1.598,1741,2.036,1798,2.958,1892,3.028,1925,2.713,1927,3.618,2004,5.596,2076,2.036,2206,4.075,2466,3.206,2608,3.181,2653,4.6,2744,3.028,2895,6.261,3010,1.821,3046,2.486,3157,4.371,3158,4.371,3295,3.54,3637,3.611,3816,3.712,4913,3.42,4990,4.5,5629,4.398,5636,4.226,5639,2.909,5642,4.226,5643,3.332,5644,3.332,5649,6.039,5650,5.686,5651,3.166,5652,3.166,5653,3.166,5654,3.166,5655,5.417,5656,3.166,5657,3.166,5658,6.315,5659,5.417,5660,3.166,5661,5.417,5662,3.166,5663,5.946,5664,5.946,5665,6.535,5672,3.54,5675,3.819,5682,3.332,5683,5.702,5684,3.332,5685,3.332,5686,3.332,5687,3.332,5708,3.819,5709,3.819,5713,4.398,5714,3.166,5717,8.026,5755,4.243,5756,4.243,5757,7.259,5758,4.243,5759,4.243,5760,6.164,5761,4.243,5762,4.243,5763,4.243,5764,6.164,5765,4.243,5766,7.259,5767,4.243,5768,4.243,5769,4.243,5770,4.243,5771,4.243,5772,4.243,5773,4.243,5774,4.243,5775,3.166,5776,3.166]],["description//posts/trading-indicators/ema",[1695,2.356,4913,2.947,5717,4.669]],["title//posts/trading-indicators/bollinger_bands",[1054,1.283,1360,1.74,1695,1.467,2206,2.575,5775,2.907,5776,2.907]],["content//posts/trading-indicators/bollinger_bands",[7,0.887,16,0.781,21,1.934,54,1.051,87,2.8,96,2.696,115,3.225,120,1.707,121,2.858,154,2.805,161,2.601,176,3.446,178,2.109,182,2.096,203,2.556,209,2.747,210,1.08,229,2.356,232,0.927,249,2.747,263,2.556,287,2.432,295,2.218,304,3.66,309,3.225,378,2.432,407,1.536,419,3.187,437,4.084,458,1.985,487,2.251,501,4.035,564,3.924,580,2.513,591,0.213,605,2.747,626,2.039,628,3.548,631,2.696,652,3.043,673,4.909,713,3.924,740,4.619,749,2.977,811,0.74,816,3.548,843,4.776,929,1.545,937,4.084,961,3.66,974,4.084,984,3.66,994,5.446,996,5.279,999,3.713,1054,3.432,1087,2.977,1174,3.784,1190,2.251,1238,1.419,1316,2.472,1325,2.856,1328,3.866,1378,4.776,1417,3.446,1454,4.447,1594,3.187,1610,4.57,1657,6.47,1695,3.653,1701,6.65,1741,4.529,1798,3.162,1927,2.218,2000,4.084,2141,3.267,2185,3.924,2206,3.784,2271,4.271,2362,3.784,2363,5.152,2391,4.776,2573,4.776,2575,4.909,2608,3.4,2725,3.267,2786,7.618,2895,6.665,3157,5.84,3158,5.959,3637,3.353,3641,4.271,4176,5.152,4913,2.696,4990,6.013,5367,5.152,5636,5.204,5637,4.495,5641,5.152,5642,5.204,5646,4.854,5647,4.495,5649,6.472,5670,5.152,5672,4.776,5775,7.589,5776,7.977,5777,5.723,5778,8.164,5779,5.152,5780,5.152,5781,5.723,5782,5.723,5783,5.723,5784,5.723,5785,5.152]],["description//posts/trading-indicators/bollinger_bands",[1695,2.156,4913,2.697,5775,4.273,5776,4.273]],["title//posts/trading-indicators/atr",[287,1.655,626,1.388,1695,1.467,1741,1.869,2206,2.575,5786,3.059]],["content//posts/trading-indicators/atr",[16,0.784,21,1.955,33,2.777,60,0.99,64,2.077,70,1.257,87,4.189,146,1.484,154,1.79,157,2.029,172,2.687,178,2.379,182,2.799,203,4.068,211,1.858,213,4.291,247,1.627,249,3.669,280,1.553,287,3.87,289,2.175,304,4.889,309,2.459,327,3.007,353,3.052,369,2.029,384,2.677,394,1.981,407,1.553,419,3.222,458,2.007,474,2.887,487,2.276,498,3.7,501,3.076,519,4.318,556,4.129,580,3.76,591,0.18,598,3.076,605,4.669,626,3.05,713,3.967,781,3.39,783,2.345,785,5.418,817,2.584,861,1.949,929,1.557,974,5.456,977,3.967,979,5.209,988,4.545,996,4.739,1030,3.147,1054,3.119,1087,3.01,1091,2.148,1190,3.007,1230,3.824,1238,1.435,1324,2.276,1325,2.887,1335,1.128,1388,3.826,1392,3.824,1417,3.484,1447,3.601,1477,3.587,1541,5.209,1564,4.479,1594,3.222,1610,4.604,1695,3.224,1741,4.372,1753,5.209,1798,2.839,1925,3.7,1927,3.53,2185,3.967,2205,5.209,2206,6.66,2207,5.055,2232,7.903,2290,4.545,2325,3.222,2389,4.829,2573,4.829,2608,3.052,2791,5.705,2895,5.475,3010,1.451,3046,3.39,3187,2.887,3637,3.39,4913,4.461,4990,6.318,5628,4.129,5636,5.242,5642,3.967,5646,3.7,5647,4.545,5677,5.209,5713,4.129,5779,5.209,5780,5.209,5786,8.353,5787,5.786,5788,4.318,5789,5.786,5790,9.108,5791,5.786,5792,5.786,5793,5.786,5794,5.786,5795,5.786,5796,7.645,5797,5.786,5798,5.786,5799,5.786,5800,5.786,5801,7.645,5802,5.786]],["description//posts/trading-indicators/atr",[1695,2.356,4913,2.947,5786,4.914]],["title//posts/trading-indicators/_index",[1695,2.317,4913,2.899]],["content//posts/trading-indicators/_index",[12,2.812,17,1.32,54,0.733,87,1.691,108,0.897,115,2.248,121,1.302,128,0.768,137,0.617,154,2.785,157,1.404,165,0.625,245,0.995,287,1.469,371,4.603,390,1.32,391,1.76,393,1.248,400,1.423,412,1.36,433,2.856,444,1.798,450,1.231,458,1.199,580,1.518,591,0.263,626,1.885,692,2.884,740,1.76,831,2.694,832,1.725,846,2.466,859,2.21,862,2.081,886,2.884,924,1.283,975,1.88,989,1.88,992,2.323,996,3.279,1013,3.947,1054,2.116,1112,1.76,1116,1.628,1124,1.725,1142,2.579,1160,1.691,1280,5.047,1316,2.284,1317,1.973,1379,2.285,1447,1.628,1482,1.725,1549,2.715,1564,2.025,1581,2.37,1673,1.628,1675,1.76,1695,1.302,1741,4.55,1859,3.099,1882,2.466,1925,2.21,1938,2.37,2000,2.466,2234,2.812,2236,1.838,2237,1.973,2269,1.518,2382,2.715,2575,1.798,2576,2.025,2578,2.081,2589,2.081,2595,2.081,2596,2.081,2598,2.285,2725,1.973,2998,2.579,2999,2.579,3000,2.579,3003,2.579,3004,2.466,3006,2.37,3007,2.579,3011,2.715,3015,2.285,3023,2.884,3062,2.37,3092,3.111,3096,3.111,3098,2.466,3100,3.111,3102,2.715,3105,2.715,3108,3.111,3111,2.884,3118,3.111,3430,1.88,4228,3.111,4810,3.111,4990,2.143,5627,2.715,5628,5.839,5629,2.466,5639,2.37,5645,4.249,5646,2.21,5647,2.715,5648,3.111,5649,2.466,5650,4.585,5651,2.579,5652,2.579,5653,2.579,5654,2.579,5655,3.947,5656,2.579,5657,2.579,5658,4.795,5659,4.795,5660,2.579,5661,3.947,5662,2.579,5663,5.372,5664,4.795,5682,2.715,5683,5.654,5684,5.047,5685,2.715,5686,5.654,5687,5.047,5688,2.884,5689,5.362,5690,2.884,5691,2.884,5692,5.362,5693,6.007,5694,6.007,5695,5.362,5696,2.884,5697,4.414,5698,4.414,5699,4.414,5700,4.414,5701,4.414,5702,4.414,5703,4.414,5704,4.414,5705,4.414,5706,4.414,5707,4.414,5713,2.466,5714,2.579,5717,3.947,5722,4.762,5723,4.762,5724,4.762,5725,4.762,5726,4.762,5727,4.762,5728,4.762,5729,4.762,5730,4.762,5731,4.762,5732,4.762,5733,4.762,5734,4.762,5735,4.762,5736,4.762,5737,4.762,5738,4.762,5739,4.762,5775,2.579,5776,2.579,5778,3.111,5786,2.715,5803,3.456,5804,5.29,5805,5.29,5806,5.29,5807,5.29,5808,5.29,5809,5.29,5810,5.29,5811,5.29,5812,5.29,5813,5.29,5814,5.29,5815,5.29,5816,5.29,5817,5.29,5818,5.29,5819,5.29,5820,5.29,5821,5.29,5822,5.29,5823,5.29,5824,5.29,5825,5.29,5826,5.29,5827,5.29,5828,5.29,5829,5.29,5830,5.29,5831,5.29,5832,5.29,5833,5.29,5834,5.29,5835,5.29,5836,5.29,5837,5.29,5838,5.29,5839,5.29,5840,3.456,5841,5.29,5842,3.456,5843,3.456,5844,3.456,5845,3.456,5846,3.456,5847,4.762,5848,3.456,5849,3.456,5850,3.456,5851,3.456,5852,3.456,5853,3.456,5854,3.456,5855,3.456,5856,5.29,5857,3.456,5858,3.456,5859,3.456,5860,3.456,5861,3.456,5862,3.456,5863,3.456,5864,3.456,5865,3.456,5866,3.456,5867,3.456,5868,5.29,5869,3.456,5870,3.456,5871,3.456,5872,3.456,5873,3.456,5874,3.456,5875,3.456,5876,3.456,5877,3.456,5878,3.456,5879,3.456,5880,3.456,5881,2.884,5882,3.456,5883,3.456,5884,3.456,5885,3.456,5886,3.456,5887,3.456,5888,3.456]],["description//posts/trading-indicators/_index",[1695,2.597,4913,3.248]],["title//posts/serverless-flask-lambda-api-gateway-mongodb/",[113,2.682,5889,5.374,5890,5.374]],["content//posts/serverless-flask-lambda-api-gateway-mongodb/",[1,0.834,7,1.327,16,0.376,21,2.128,22,2.913,27,1.615,31,2.247,32,1.587,47,1.694,48,1.108,51,0.95,57,1.439,62,1.658,70,0.95,71,1.352,72,1.887,82,2.479,89,1.557,90,1.439,91,2.059,94,2.441,113,4.783,116,3.494,117,2.181,122,3.844,125,2.028,128,0.971,134,2.138,137,0.605,163,1.646,165,0.79,168,2.059,175,1.386,178,1.214,192,2.632,203,1.952,217,3.142,228,1.887,239,1.025,247,1.229,251,2.632,255,2.226,279,2.553,293,1.857,303,2.553,310,2.377,339,2.709,355,2.181,356,2.059,358,2.56,366,2.377,369,1.671,384,2.022,394,1.496,414,1.369,431,1.496,441,1.516,450,1.557,458,1.516,480,1.719,511,2.633,513,2.226,533,2.554,537,2.813,576,1.557,591,0.249,597,3.359,611,1.986,625,1.319,626,1.557,702,3.952,800,2.996,811,1.107,854,4.281,865,2.226,931,2.273,934,1.6,942,1.477,965,2.377,1003,2.138,1004,3.348,1005,4.114,1017,2.181,1039,2.059,1071,3.119,1184,2.495,1238,2.004,1239,1.986,1279,1.745,1303,1.387,1396,2.434,1404,5.255,1410,5.255,1481,3.261,1482,2.181,1483,3.647,1500,4.027,1502,3.119,1564,2.56,1565,3.119,1597,2.996,1599,3.432,1612,2.377,1624,1.857,1645,4.164,1765,3.432,1911,3.934,1941,5.669,2063,2.89,2096,2.323,2292,2.996,2408,3.119,2557,2.273,2560,3.432,2574,2.377,2604,4.721,2608,2.514,2630,2.495,2638,4.946,2702,5.268,3386,2.89,3430,3.425,3701,5.255,3712,3.432,3731,3.647,4975,3.261,5013,6.161,5430,3.432,5555,3.934,5556,3.647,5891,3.647,5892,4.37,5893,4.37,5894,4.37,5895,7.708,5896,6.297,5897,4.37,5898,4.37,5899,4.37,5900,4.37,5901,4.37,5902,4.37,5903,4.37,5904,4.37,5905,4.37,5906,4.37,5907,4.37,5908,4.37,5909,4.37,5910,4.37,5911,4.37,5912,4.37,5913,4.37,5914,4.37,5915,4.37,5916,4.37,5917,4.37,5918,4.37,5919,4.37,5920,4.37,5921,4.37,5922,4.37,5923,4.37,5924,4.37,5925,4.37,5926,4.37,5927,4.37,5928,4.37,5929,4.37,5930,4.37,5931,4.37,5932,4.37,5933,4.37,5934,4.37,5935,4.37,5936,4.37,5937,4.37,5938,4.37,5939,4.37,5940,4.37,5941,4.37,5942,4.37,5943,4.37,5944,4.37,5945,4.37,5946,4.37,5947,4.37,5948,4.37,5949,4.37,5950,4.37,5951,4.37,5952,4.37,5953,4.37,5954,4.37,5955,4.37,5956,4.37,5957,4.37,5958,4.37,5959,4.37,5960,4.37,5961,4.37,5962,4.37,5963,4.37,5964,4.37,5965,4.37,5966,4.37,5967,4.37,5968,4.37,5969,4.37,5970,4.37,5971,4.37,5972,4.37,5973,4.37,5974,4.37,5975,4.37,5976,4.37,5977,4.37,5978,4.37,5979,4.37,5980,4.37,5981,4.37,5982,4.37,5983,4.37,5984,4.37,5985,4.37,5986,4.37,5987,4.37,5988,4.37,5989,4.37,5990,4.37,5991,4.37,5992,4.37,5993,4.37,5994,4.37,5995,4.37,5996,4.37,5997,4.37,5998,4.37,5999,4.37,6000,4.37,6001,4.37,6002,8.563,6003,4.37,6004,4.37,6005,4.37,6006,5.669,6007,4.37,6008,4.37,6009,4.37,6010,4.37,6011,4.37,6012,4.37,6013,7.382,6014,4.37,6015,7.382,6016,4.37,6017,7.272,6018,3.934,6019,4.37,6020,4.37,6021,3.934,6022,4.37,6023,4.37,6024,4.37,6025,6.297,6026,4.37,6027,4.37,6028,4.37,6029,4.37,6030,7.382,6031,4.37,6032,4.37,6033,4.37,6034,4.37,6035,6.297,6036,4.37,6037,4.37,6038,4.37,6039,4.37,6040,4.37,6041,4.37,6042,4.37,6043,4.37,6044,4.37,6045,4.37,6046,4.37,6047,4.37,6048,4.37,6049,4.37,6050,4.37,6051,4.37,6052,4.37,6053,6.297,6054,4.37,6055,4.37,6056,4.37,6057,4.37,6058,4.37,6059,4.37,6060,4.37,6061,4.37,6062,4.37,6063,4.37,6064,4.37,6065,4.37,6066,4.37,6067,4.37,6068,4.37,6069,4.37,6070,4.37,6071,4.37,6072,4.37,6073,4.37,6074,4.37,6075,4.37,6076,4.37,6077,4.37,6078,4.37,6079,4.37,6080,4.37,6081,4.37,6082,4.37,6083,4.37,6084,4.37,6085,4.37,6086,4.37,6087,4.37,6088,4.37,6089,4.37,6090,6.297]],["description//posts/serverless-flask-lambda-api-gateway-mongodb/",[7,0.529,22,1.578,24,1.999,27,0.875,32,0.733,47,1.322,113,1.703,591,0.15,5891,2.847,6017,3.071]],["title//posts/python-snippets/",[1238,1.333,3174,3.553,3175,3.149]],["content//posts/python-snippets/",[1,1.705,7,0.77,8,1.241,11,0.461,16,0.743,28,0.594,29,0.449,30,1.537,34,0.755,35,1.467,38,3.575,41,0.371,43,0.749,47,0.804,48,1.948,51,1.696,53,0.418,54,1.414,56,1.338,60,1.24,61,3.553,62,0.786,64,2.092,66,1.008,70,0.883,71,0.641,72,1.513,75,0.64,76,0.407,81,1.514,82,0.317,86,0.477,91,0.538,98,0.73,108,2.529,115,0.485,120,1.045,121,0.43,126,1.821,127,0.729,128,0.902,131,1.184,132,1.23,133,0.485,137,0.991,139,1.326,140,0.91,146,0.898,148,0.852,156,2.044,157,0.756,159,0.804,160,1.513,161,0.519,165,1.807,171,1.386,174,1.08,175,0.362,181,0.688,182,1.82,185,0.528,187,2.798,188,1.288,191,1.285,201,0.538,211,0.666,215,1.514,221,0.71,222,0.582,223,0.985,224,2.914,229,0.47,231,0.436,232,1.085,238,1.056,239,1.166,240,0.938,241,1.342,245,2.708,247,1.278,248,1.184,252,1.014,256,1.032,263,0.926,264,0.688,274,0.708,278,0.756,279,0.463,281,0.485,285,0.607,286,0.698,287,1.932,289,0.81,290,0.688,307,0.801,308,0.816,310,0.621,316,0.636,327,1.12,341,0.337,345,0.424,347,0.485,351,1.365,352,0.607,353,0.456,355,1.035,360,1.342,365,2.458,369,0.303,375,0.57,381,0.193,382,0.597,384,2.103,385,0.43,387,2.998,390,3.067,393,2.049,399,0.559,400,1.672,407,0.306,412,0.449,414,1.556,420,0.926,429,0.651,431,2.218,433,1.737,434,0.926,441,0.719,442,1.184,444,0.594,445,0.626,450,1.904,455,0.329,458,1.409,473,0.84,480,0.449,487,0.449,489,2.907,495,0.869,501,0.607,508,1.771,509,0.528,510,0.688,511,0.477,520,1.681,524,1.272,528,1.607,529,1.128,530,0.501,531,5.052,533,2.395,534,1.559,535,1.035,557,0.493,565,1.409,591,0.261,597,2.597,607,0.594,613,0.493,625,0.86,626,3.34,627,0.953,631,2.813,632,0.57,641,2.314,652,2.16,655,2.618,671,0.683,693,0.852,696,1.372,720,0.528,721,3.081,734,1.53,737,0.995,739,1.422,746,2.113,750,0.57,754,1.621,755,1.342,756,0.688,772,1.421,777,0.449,779,0.652,781,0.669,783,0.463,788,0.73,811,1.162,816,0.708,819,0.852,820,0.501,823,0.548,829,0.782,860,0.804,861,0.235,865,0.582,873,1.137,884,3.006,896,1.028,926,0.582,929,0.232,934,1.043,942,0.386,958,0.755,973,1.128,975,1.128,978,0.852,981,0.636,984,0.73,992,0.91,1005,1.056,1010,2.012,1012,0.719,1020,0.708,1024,0.77,1029,1.028,1034,0.582,1038,1.712,1039,1.65,1048,0.594,1049,0.485,1050,0.277,1065,0.559,1078,1.39,1086,0.559,1112,0.582,1114,1.471,1116,0.977,1135,0.755,1151,0.996,1158,0.84,1160,0.559,1167,0.607,1168,0.666,1169,1.342,1178,3.305,1187,0.669,1188,0.815,1190,0.449,1195,0.669,1202,1.421,1203,1.715,1204,4.625,1223,0.73,1228,0.783,1231,0.73,1233,3.239,1238,1.964,1239,0.519,1249,0.755,1254,2.993,1255,2.899,1278,1.184,1279,0.828,1286,0.559,1287,0.881,1294,0.755,1297,0.463,1303,1.419,1311,0.443,1318,1.184,1327,0.548,1335,0.223,1339,1.628,1341,1.028,1343,1.137,1353,0.57,1374,0.783,1375,0.815,1377,1.846,1423,1.155,1430,0.688,1441,1.282,1448,3.086,1459,1.866,1477,1.285,1478,0.953,1498,0.897,1502,1.48,1505,0.897,1515,0.607,1553,0.621,1581,0.783,1594,1.155,1602,0.897,1624,2.537,1642,0.652,1644,2.923,1648,2.113,1660,0.519,1663,0.73,1668,0.815,1673,1.342,1675,1.45,1722,0.528,1727,0.607,1736,2.499,1754,2.237,1776,0.652,1795,0.852,1798,0.77,1832,0.57,1838,1.367,1847,3.818,1859,0.669,1870,0.953,1875,0.815,1876,0.815,1882,1.48,1886,1.028,1892,0.815,1905,0.953,1922,0.897,1960,2.561,1981,0.828,1996,1.028,2024,0.669,2050,0.73,2076,1.367,2137,2.751,2141,1.184,2143,1.48,2145,0.852,2188,1.447,2222,0.953,2226,0.953,2227,0.783,2230,2.751,2234,1.102,2241,0.852,2247,0.897,2249,1.48,2256,0.755,2262,0.815,2265,1.028,2269,0.501,2271,0.852,2316,0.953,2321,1.73,2347,0.953,2360,1.028,2362,0.755,2408,3.546,2416,0.815,2425,4.093,2444,4.148,2467,4.451,2473,2.149,2481,4.654,2491,1.028,2521,1.028,2558,0.815,2575,0.594,2580,0.953,2581,1.547,2608,3.698,2645,0.317,2691,1.371,2709,1.73,2721,1.028,2743,0.607,2864,0.953,2871,0.652,2966,1.088,2968,0.317,2969,2.365,2971,1.326,2982,0.594,2986,0.493,2996,0.708,3010,0.714,3011,1.628,3042,0.636,3094,2.564,3102,1.628,3105,1.628,3116,2.564,3117,1.371,3126,0.953,3157,1.715,3187,1.748,3215,1.028,3216,0.897,3230,0.867,3239,1.95,3297,0.783,3314,1.028,3317,0.852,3335,0.852,3361,0.953,3391,0.77,3392,0.852,3394,0.953,3433,0.621,3453,0.852,3498,0.815,3500,3.701,3533,2.032,3546,0.538,3599,0.652,3600,1.866,3601,1.866,3640,1.371,3693,0.897,3720,0.815,3799,1.866,3839,0.897,3848,3.533,3888,2.564,3913,1.628,3960,2.613,3974,3.794,4091,1.028,4188,0.897,4189,0.897,4323,0.73,4324,0.688,4510,0.897,4516,4.456,4564,3.546,4612,0.815,4736,1.028,4757,1.028,4812,1.028,4823,1.028,4842,1.028,4943,5.832,5056,0.953,5078,4.093,5274,1.028,5296,3.153,5299,1.73,5302,3.657,5329,3.153,5341,6.049,5344,4.093,5364,1.028,5484,1.028,5546,0.953,5645,1.371,5650,0.815,5785,1.866,6091,2.073,6092,1.142,6093,1.142,6094,2.073,6095,2.564,6096,1.142,6097,1.142,6098,1.142,6099,1.142,6100,1.028,6101,1.142,6102,2.073,6103,2.848,6104,2.073,6105,1.142,6106,2.848,6107,1.142,6108,2.073,6109,1.142,6110,1.142,6111,1.142,6112,1.142,6113,1.028,6114,2.848,6115,1.142,6116,1.142,6117,1.142,6118,1.142,6119,1.142,6120,2.564,6121,1.142,6122,1.142,6123,1.142,6124,1.142,6125,4.546,6126,1.142,6127,1.142,6128,1.142,6129,1.142,6130,1.142,6131,1.142,6132,2.073,6133,7.547,6134,2.073,6135,2.848,6136,1.142,6137,1.142,6138,1.142,6139,2.073,6140,1.142,6141,1.142,6142,2.073,6143,1.142,6144,1.142,6145,1.142,6146,1.142,6147,2.073,6148,1.142,6149,1.142,6150,1.142,6151,2.848,6152,2.073,6153,2.073,6154,1.142,6155,1.142,6156,1.142,6157,1.142,6158,1.142,6159,2.848,6160,2.073,6161,3.502,6162,1.142,6163,2.073,6164,1.142,6165,1.142,6166,3.502,6167,1.142,6168,2.848,6169,1.142,6170,2.073,6171,1.142,6172,1.142,6173,2.073,6174,2.073,6175,1.142,6176,2.848,6177,2.073,6178,2.073,6179,2.073,6180,1.142,6181,2.073,6182,2.073,6183,1.142,6184,1.142,6185,1.142,6186,1.142,6187,1.142,6188,3.502,6189,1.142,6190,1.142,6191,5.674,6192,2.073,6193,2.848,6194,1.142,6195,1.142,6196,1.142,6197,1.142,6198,3.502,6199,2.848,6200,1.142,6201,2.073,6202,3.502,6203,2.073,6204,1.142,6205,2.073,6206,1.142,6207,1.142,6208,1.142,6209,1.142,6210,1.142,6211,1.142,6212,1.142,6213,1.142,6214,1.142,6215,1.142,6216,1.142,6217,1.142,6218,1.142,6219,1.142,6220,2.073,6221,1.142,6222,1.142,6223,2.848,6224,2.073,6225,2.848,6226,1.142,6227,1.142,6228,1.142,6229,1.142,6230,2.073,6231,2.848,6232,1.142,6233,1.142,6234,3.502,6235,1.142,6236,1.142,6237,1.142,6238,1.142,6239,1.142,6240,1.142,6241,1.142,6242,1.142,6243,1.142,6244,2.073,6245,1.142,6246,1.142,6247,1.142,6248,1.142,6249,1.142,6250,1.142,6251,1.142,6252,1.142,6253,1.142,6254,1.142,6255,2.073,6256,1.142,6257,1.142,6258,1.142,6259,1.142,6260,1.142,6261,1.142,6262,1.142,6263,1.142,6264,2.073,6265,5.832,6266,3.502,6267,2.073,6268,1.866,6269,1.142,6270,1.142,6271,1.142,6272,1.142,6273,2.073,6274,3.502,6275,2.073,6276,5.343,6277,1.142,6278,1.142,6279,1.142,6280,2.848,6281,2.073,6282,1.142,6283,1.142,6284,1.142,6285,1.142,6286,1.142,6287,4.062,6288,2.073,6289,1.142,6290,1.142,6291,2.848,6292,1.142,6293,1.142,6294,1.142,6295,1.142,6296,1.142,6297,3.502,6298,1.142,6299,1.142,6300,2.848,6301,2.073,6302,1.142,6303,2.848,6304,1.142,6305,1.142,6306,1.142,6307,2.848,6308,1.142,6309,1.142,6310,1.142,6311,1.142,6312,5.674,6313,2.073,6314,1.142,6315,1.142,6316,1.142,6317,1.142,6318,3.502,6319,2.848,6320,2.073,6321,2.073,6322,1.142,6323,1.142,6324,2.073,6325,1.142,6326,1.142,6327,2.073,6328,3.502,6329,1.142,6330,4.546,6331,1.142,6332,2.848,6333,1.142,6334,1.866,6335,1.142,6336,1.142,6337,2.073,6338,1.142,6339,2.073,6340,1.142,6341,2.073,6342,2.073,6343,1.142,6344,1.028,6345,1.142,6346,1.142,6347,2.073,6348,2.073,6349,1.142,6350,1.142,6351,1.142,6352,1.142,6353,1.142,6354,1.142,6355,4.97,6356,1.142,6357,1.142,6358,1.142,6359,1.142,6360,1.142,6361,1.142,6362,1.142,6363,1.142,6364,3.502,6365,1.142,6366,1.142,6367,1.142,6368,1.142,6369,1.142,6370,1.142,6371,1.142,6372,1.142,6373,1.142,6374,1.142,6375,1.142,6376,2.073,6377,2.073,6378,5.971,6379,1.142,6380,1.142,6381,2.073,6382,1.142,6383,1.142,6384,2.073,6385,1.142,6386,1.142,6387,1.142,6388,1.142,6389,1.142,6390,1.142,6391,1.142,6392,1.142,6393,1.142,6394,1.142,6395,1.028,6396,2.073,6397,3.502,6398,1.142,6399,1.142,6400,1.142,6401,1.142,6402,1.142,6403,1.142,6404,1.142,6405,1.142,6406,2.848,6407,1.142,6408,1.142]],["description//posts/python-snippets/",[1238,1.552,3174,4.137,3175,3.666]],["title//posts/markdown-syntax/",[3174,3.553,3175,3.149,4978,3.835]],["content//posts/markdown-syntax/",[1,1.811,2,1.694,4,1.543,6,2.034,7,1.12,16,0.719,30,2.582,35,2.106,39,2.165,41,2.156,47,2.26,49,0.825,54,1.156,57,0.977,60,1.315,62,0.666,64,0.72,70,1.57,75,2.017,76,3.062,83,1.964,96,1.398,114,1.185,115,3.07,118,2.254,120,0.885,127,1.651,128,1.295,131,1.694,137,0.825,146,1.205,157,1.247,163,1.117,174,1.267,191,2.912,203,1.325,210,1.1,221,1.016,223,0.834,232,0.481,239,0.696,247,0.834,255,1.511,256,0.875,272,3.171,279,1.203,289,0.844,294,2.443,310,2.555,316,2.616,322,1.897,333,1.962,353,2.328,361,2.842,368,1.652,375,3.834,381,0.795,387,1.567,410,1.578,414,2.076,429,0.753,434,1.325,436,1.962,441,1.029,442,5.806,445,1.76,458,1.029,459,4.147,473,1.203,478,1.178,489,1.897,495,1.165,509,2.697,520,2.254,528,0.674,529,1.614,533,1.739,552,3.92,576,1.057,591,0.262,597,1.117,605,2.254,635,4.232,653,1.614,694,1.511,696,1.003,698,2.254,711,2.034,750,2.344,752,2.117,781,3.416,792,2.117,817,1.325,819,4.351,820,2.56,825,2.476,826,2.752,860,1.15,862,2.828,929,1.75,942,1.97,961,3.728,975,2.555,1002,4.62,1009,2.476,1011,1.897,1040,5.268,1056,2.443,1065,1.452,1078,1.608,1144,3.033,1147,1.303,1168,1.872,1169,1.398,1177,1.481,1192,2.912,1202,2.909,1203,2.319,1204,1.787,1269,2.214,1287,1.261,1318,4.124,1343,1.185,1344,2.117,1345,2.443,1360,3.728,1431,4.731,1440,1.261,1449,2.392,1462,1.996,1463,4.228,1499,2.214,1517,4.099,1644,2.476,1695,1.117,1699,3.352,1710,2.117,1720,1.962,1813,1.543,1832,1.481,1849,2.117,1870,2.476,2086,2.671,2137,3.689,2186,6.914,2236,1.578,2249,4.731,2333,2.331,2427,4.579,2498,2.671,2518,2.671,2589,2.828,2718,2.671,2871,2.681,2888,1.897,2956,5.248,2957,4.865,2966,2.227,2969,2.443,2997,1.652,3042,1.652,3141,2.476,3218,2.331,3301,3.352,3304,6.917,3391,2.165,3584,2.671,4079,5.533,4123,5.248,4237,4.16,4441,2.671,4564,2.117,4798,2.671,4868,5.248,4869,5.248,4969,1.511,4978,4.16,5056,5.533,5273,2.671,5609,2.671,5788,2.214,6100,2.671,6334,2.671,6395,2.671,6409,2.476,6410,4.697,6411,4.697,6412,4.697,6413,4.697,6414,4.697,6415,4.697,6416,8.345,6417,4.228,6418,4.228,6419,4.697,6420,4.697,6421,4.697,6422,4.697,6423,4.697,6424,4.697,6425,2.967,6426,2.967,6427,2.967,6428,2.967,6429,4.697,6430,2.967,6431,2.967,6432,2.967,6433,2.967,6434,2.967,6435,2.967,6436,2.967,6437,2.967,6438,2.967,6439,2.967,6440,2.967,6441,2.671,6442,2.967,6443,2.967,6444,8.981,6445,8.224,6446,2.967,6447,4.697,6448,2.967,6449,4.697,6450,2.671,6451,2.967,6452,2.967,6453,2.967,6454,2.967,6455,2.967,6456,2.967,6457,2.967,6458,2.967,6459,2.967,6460,2.967,6461,2.967,6462,4.697,6463,2.967,6464,2.967,6465,2.967,6466,2.671,6467,4.697,6468,8.347,6469,4.697,6470,2.967,6471,5.83,6472,2.967,6473,2.967,6474,4.228,6475,2.967,6476,2.967,6477,2.967,6478,2.967,6479,2.967,6480,2.967,6481,2.671,6482,2.967,6483,2.967,6484,2.967,6485,2.967,6486,2.967,6487,2.967,6488,4.697,6489,4.697,6490,2.967,6491,2.967,6492,2.967,6493,2.967,6494,2.967,6495,2.967,6496,4.697,6497,4.697,6498,4.697,6499,4.697,6500,7.683,6501,5.83,6502,7.683,6503,5.83,6504,7.683,6505,7.683,6506,5.83,6507,5.83,6508,5.83,6509,5.83,6510,5.83,6511,5.83,6512,5.83]],["description//posts/markdown-syntax/",[4978,4.92,5402,6.207]],["title//posts/mac-setup-development/",[537,2.4,1821,4.221,6513,4.01]],["content//posts/mac-setup-development/",[1,1.278,2,1.725,5,1.398,6,2.072,7,0.469,13,1.771,16,0.762,21,2.739,26,1.933,27,2.079,40,1.479,42,1.35,51,1.683,56,1.155,60,0.816,62,1.504,65,1.055,66,0.87,71,1.474,75,1.637,76,1.077,81,1.607,85,1.539,89,1.077,94,2.825,97,1.771,110,1.683,114,2.356,115,1.284,119,2.157,120,1.422,122,4.306,125,1.621,126,3.773,127,1.062,129,3.498,142,0.983,146,1.223,149,4.149,154,0.935,157,0.802,170,1.327,172,1.062,177,2.256,182,1.107,205,1.999,211,0.97,218,2.392,219,3.286,223,0.85,227,1.284,238,1.539,239,1.572,242,2.917,262,1.479,264,1.82,278,1.566,279,3.139,280,2.321,281,2.025,286,2.284,293,1.284,294,1.572,295,1.172,307,0.85,318,1.683,320,2.205,351,0.83,352,1.607,355,2.945,356,3.434,368,1.683,369,1.566,387,1.968,434,2.129,439,2.332,441,1.048,450,1.077,452,2.205,459,3.155,465,1.508,476,1.644,477,3.712,478,0.758,480,3.551,482,2.792,495,0.75,498,3.048,500,2.654,520,2.288,521,1.999,530,2.093,533,0.902,534,1.621,537,2.636,578,2.378,591,0.254,597,1.138,613,1.305,637,3.215,656,2.592,665,3.557,728,1.539,734,0.741,737,2.288,758,1.874,774,2.072,797,2.378,809,1.327,839,1.933,861,0.981,863,1.82,864,3.369,868,1.999,870,0.87,872,1.607,920,4.429,924,2.191,934,1.107,942,1.021,946,2.256,947,4.291,950,2.832,953,2.256,957,1.771,976,4.922,981,1.683,1002,1.933,1003,1.479,1004,2.534,1012,2.528,1017,1.508,1038,2.745,1039,2.245,1055,1.374,1056,3.792,1077,2.374,1078,1.035,1086,1.479,1088,2.157,1112,1.539,1148,1.077,1167,2.534,1169,1.424,1170,2.427,1173,3.343,1175,3.743,1176,5.312,1177,2.378,1178,1.244,1184,2.721,1189,2.072,1196,4.211,1222,3.005,1230,2.129,1236,4.389,1238,1.661,1239,1.374,1269,2.256,1296,2.955,1311,1.172,1315,1.644,1331,2.374,1351,3.557,1354,2.792,1377,2.166,1396,1.683,1422,1.644,1433,2.157,1462,1.035,1476,1.725,1477,1.874,1521,1.771,1527,4.998,1545,2.157,1569,2.522,1585,1.874,1601,1.82,1610,2.87,1648,2.479,1665,2.745,1675,1.539,1722,2.205,1732,3.457,1749,5.439,1750,3.743,1767,5.201,1788,2.374,1832,2.378,1907,1.82,2001,2.374,2063,1.999,2096,1.607,2113,3.902,2129,3.151,2151,2.072,2167,2.522,2184,2.072,2234,1.607,2235,1.999,2242,2.157,2300,2.721,2327,4.211,2419,1.607,2428,2.721,2444,2.792,2466,2.479,2542,1.999,2557,2.479,2574,5.064,2589,1.82,2600,1.999,2604,1.933,2638,3.743,2653,2.256,2700,4.635,2702,5.527,2746,2.721,2753,2.072,2863,3.286,2918,4.429,2967,2.072,3010,0.758,3048,2.157,3136,2.721,3277,4.403,3328,3.977,3361,2.522,3430,2.592,4688,2.256,4841,2.374,4946,2.157,4985,4.283,4999,2.157,5013,4.924,5029,2.721,5104,7.209,5107,6.03,5109,3.977,5110,4.291,5111,4.403,5131,2.721,5132,6.972,5425,4.635,5426,4.635,5454,2.721,5504,5.312,5533,5.312,5586,4.291,5679,2.721,5881,2.522,5891,3.977,5895,4.291,6018,2.721,6409,2.522,6474,2.721,6481,2.721,6513,3.557,6514,2.522,6515,3.023,6516,3.977,6517,4.766,6518,3.023,6519,3.023,6520,3.023,6521,6.972,6522,3.023,6523,4.998,6524,4.766,6525,3.023,6526,3.023,6527,3.023,6528,3.023,6529,2.256,6530,4.766,6531,3.023,6532,3.023,6533,6.562,6534,3.023,6535,4.766,6536,3.023,6537,3.023,6538,3.023,6539,3.023,6540,5.901,6541,3.023,6542,4.766,6543,5.901,6544,5.901,6545,3.023,6546,3.023,6547,5.901,6548,5.312,6549,3.023,6550,5.901,6551,4.766,6552,2.522,6553,5.901,6554,8.851,6555,5.901,6556,3.023,6557,6.698,6558,3.023,6559,3.023,6560,3.023,6561,3.023,6562,3.023,6563,3.023,6564,3.023,6565,3.023,6566,4.766,6567,3.023,6568,3.023,6569,3.023,6570,3.023,6571,3.023,6572,3.023,6573,3.023,6574,2.157,6575,3.023,6576,2.721,6577,3.023,6578,4.766,6579,4.766,6580,4.766,6581,3.023,6582,3.977,6583,3.023,6584,3.023,6585,3.023,6586,3.023,6587,3.023,6588,3.023,6589,3.023,6590,4.766,6591,4.766,6592,2.374,6593,3.023,6594,3.023,6595,3.023,6596,3.023,6597,3.023,6598,3.023,6599,4.766,6600,3.023,6601,3.023,6602,3.023,6603,3.023,6604,3.023,6605,3.023,6606,3.023,6607,3.023,6608,5.901,6609,4.766,6610,2.721,6611,3.023,6612,3.023,6613,3.023,6614,5.901,6615,3.023,6616,3.023,6617,3.023,6618,3.023,6619,3.023,6620,3.023,6621,3.023,6622,3.023,6623,3.023,6624,3.023,6625,3.023,6626,3.023,6627,3.023,6628,3.023,6629,3.023,6630,3.023,6631,3.023,6632,3.023,6633,6.698,6634,3.023,6635,3.023,6636,3.023,6637,2.522,6638,3.023,6639,3.023,6640,3.023,6641,3.023,6642,3.023,6643,3.023,6644,7.289,6645,7.745,6646,6.972,6647,2.721,6648,3.023,6649,3.023,6650,3.023,6651,3.023,6652,3.023,6653,3.023,6654,3.023,6655,3.023,6656,5.901,6657,3.023,6658,3.023,6659,3.023,6660,3.023,6661,3.023,6662,5.901,6663,4.766,6664,3.023,6665,3.023,6666,3.023,6667,3.023,6668,3.023,6669,3.023,6670,3.023,6671,3.023,6672,3.023,6673,3.023,6674,3.023,6675,3.023,6676,3.023,6677,3.023,6678,2.721,6679,3.023,6680,3.023]],["description//posts/mac-setup-development/",[21,1.542,51,0.992,223,1.283,656,2.483,1610,2.749,6514,3.809,6516,3.809]],["title//posts/linux-interactive-non-interactive-users/",[82,1.082,736,3.011,865,1.984,1158,1.579,2442,2.223]],["content//posts/linux-interactive-non-interactive-users/",[7,1.465,8,1.599,11,1.162,16,0.701,28,3.717,31,1.875,51,1.137,82,3.002,89,3.261,94,2.77,97,3.066,122,2.188,125,2.704,149,2.512,157,2.321,171,1.854,172,3.218,175,1.659,188,2.266,189,4.988,215,2.782,227,2.224,238,2.665,246,2.298,276,2.617,283,2.446,289,2.487,295,2.028,303,3.83,307,2.009,318,3.98,321,4.43,337,3.46,339,3.244,341,1.542,351,2.515,361,2.058,381,1.21,396,3.202,404,2.298,425,1.864,441,2.823,473,2.121,474,2.611,477,4.662,508,1.864,514,4.045,525,4.11,588,3.46,591,0.242,600,3.066,613,2.26,632,2.611,642,2.988,649,3.066,652,2.782,656,2.846,670,5.045,736,5.591,791,2.914,809,2.298,861,1.471,929,1.065,957,3.066,994,3.346,1078,2.446,1157,2.56,1158,4.094,1177,2.611,1189,6.846,1197,3.46,1249,3.46,1260,3.244,1293,2.987,1311,2.028,1317,2.987,1346,3.066,1377,3.698,1422,3.886,1433,3.734,1553,2.846,1564,3.066,1566,4.11,1583,3.588,1594,2.914,1691,2.782,1776,2.987,1875,6.24,1948,3.46,1974,4.367,2187,4.711,2245,4.11,2419,2.782,2442,4.079,2449,5.333,2604,4.57,2626,4.43,2660,3.46,2753,3.588,2887,4.711,3234,3.905,4946,6.532,5537,4.11,5754,4.711,6265,4.711,6681,5.233,6682,5.233,6683,5.233,6684,5.233,6685,5.233,6686,5.233,6687,5.233,6688,7.146,6689,9.154,6690,5.233,6691,9.449,6692,5.233,6693,8.863,6694,7.146,6695,5.233,6696,5.233,6697,5.233,6698,5.233,6699,7.146,6700,5.233,6701,5.233,6702,5.233,6703,5.233,6704,5.233,6705,7.146,6706,7.146,6707,5.233]],["description//posts/linux-interactive-non-interactive-users/",[82,1.188,295,1.657,736,3.224,1158,1.733,2143,3.051,2442,2.441,2983,2.734]],["title//posts/interactivebrokers-deposit/",[731,2.907,736,2.026,6708,3.25,6709,3.506,6710,3.059,6711,3.25]],["content//posts/interactivebrokers-deposit/",[7,1.225,16,0.68,38,3.203,60,1.352,62,1.774,128,1.755,146,2.027,174,1.717,181,4.758,209,3.792,242,2.976,429,1.488,461,3.655,508,2.815,514,4.296,591,0.24,594,7.751,703,6.594,727,3.108,731,6.931,1148,3.627,1151,2.248,1170,4.73,2063,6.141,2235,5.224,5847,7.113,6708,7.751,6711,8.663,6712,7.901,6713,7.901]],["description//posts/interactivebrokers-deposit/",[731,3.653,736,2.547,6708,4.086,6709,4.407,6710,3.845,6711,4.086]],["title//posts/hugo-shortcode-examples/img",[6441,6.478]],["content//posts/hugo-shortcode-examples/img",[161,4.191,162,7.696,174,2.004,188,2.924,278,2.447,361,3.47,445,2.189,459,4.821,474,4.602,478,2.313,480,3.627,534,2.786,591,0.233,640,4.697,656,5.016,740,4.697,792,6.581,1168,1.716,1233,5.264,1946,7.243,2057,8.302,2466,4.797,2553,5.553,2801,8.302,3175,5.403,3533,5.871,3691,7.696,3963,9.129,4135,6.581,4638,7.243,5091,4.812,5094,6.051,5607,6.527,5788,6.882,6417,9.608,6418,9.608,6714,8.822,6715,5.346,6716,5.346,6717,10.141,6718,9.222,6719,9.222,6720,9.222,6721,9.222,6722,9.222,6723,9.222,6724,9.222,6725,9.222,6726,7.243,6727,9.222,6728,9.222,6729,9.222,6730,9.222,6731,9.222,6732,9.222,6733,7.25]],["description//posts/hugo-shortcode-examples/img",[131,3.269,236,2.748,361,2.252,6592,4.497]],["title//posts/hugo-shortcode-examples/chart",[1702,4.934]],["content//posts/hugo-shortcode-examples/chart",[54,1.169,108,1.946,115,3.188,127,2.967,128,2.144,137,1.022,165,1.526,279,2.28,383,3.77,534,2.319,591,0.261,626,3.008,732,2.807,824,6.3,1116,2.649,1124,2.807,1145,3.671,1437,5.144,1438,4.798,1499,5.598,1507,6.695,1675,2.864,1702,5.144,2123,4.798,2234,2.99,2236,2.99,2237,3.21,2608,3.371,3079,7.001,3138,8.107,3155,7.369,5284,9.542,6344,7.6,6734,5.063,6735,5.624,6736,7.502,6737,7.502,6738,8.442,6739,10.558,6740,9.382,6741,9.382,6742,9.006,6743,9.006,6744,9.382,6745,9.382,6746,10.237,6747,9.006,6748,9.006,6749,9.006,6750,9.382,6751,7.502,6752,7.502,6753,8.442,6754,8.442,6755,8.442,6756,5.624,6757,5.624,6758,5.624,6759,5.624]],["description//posts/hugo-shortcode-examples/chart",[4969,3.187,4972,4.465,6734,5.632]],["title//posts/hugo-shortcode-examples/_index",[929,1.094,4969,2.737,4972,3.835]],["content//posts/hugo-shortcode-examples/_index",[75,1.906,131,4.847,236,4.075,279,3.442,361,3.808,511,3.55,929,1.729,4957,5.429,6592,6.668]],["description//posts/hugo-shortcode-examples/_index",[]],["title//posts/hugo-add-search-lunr-popup/",[239,0.837,360,1.681,1012,1.237,1593,2.148,4969,1.817,6574,2.546,6760,2.802]],["content//posts/hugo-add-search-lunr-popup/",[1,1.461,5,3.054,7,1.453,8,2.452,10,3.374,11,1.037,16,0.402,30,2.482,31,1.225,35,1.063,40,1.441,41,1.518,43,2.095,48,1.825,51,1.015,54,0.803,59,1.733,62,1.925,66,0.847,71,1.794,83,2.76,97,1.725,108,1.505,120,0.878,128,1.037,137,0.634,146,1.198,154,1.444,159,1.809,165,0.532,170,1.293,174,0.64,186,3.16,203,2.085,209,1.413,228,2.851,236,2.241,239,1.953,245,0.847,283,1.598,286,0.722,287,2.465,307,0.828,320,3.054,339,1.825,351,2.462,360,1.387,365,2.388,375,3.294,381,0.79,382,2.887,386,3.484,390,1.125,407,1.253,433,3.047,440,2.197,450,1.663,459,2.199,460,2.241,473,1.194,491,4.841,527,1.601,566,3.294,591,0.262,626,1.663,671,0.706,694,1.5,716,3.484,721,2.894,727,3.525,737,3.454,754,0.8,759,1.681,781,5.342,809,2.899,811,0.853,829,1.593,852,2.457,863,2.811,887,1.093,929,0.599,942,1.577,1003,2.284,1012,3.51,1038,1.109,1040,2.019,1084,3.977,1114,1.274,1151,0.838,1177,1.469,1178,1.212,1193,1.212,1202,2.33,1222,4.24,1316,2.016,1408,3.896,1456,3.59,1462,1.986,1464,3.23,1489,1.272,1527,2.197,1593,4.334,1624,1.984,1651,2.457,1660,1.338,1720,4.759,1807,6.844,2149,1.773,2272,3.667,2427,5.185,2449,3.484,2524,5.942,2548,3.896,2581,6.212,2608,1.864,2645,1.834,2879,2.651,2888,3.709,3960,5.714,4688,2.197,4703,4.203,4969,2.378,5424,3.331,5575,4.203,6021,4.203,6450,5.942,6574,2.101,6576,5.222,6761,2.944,6762,8.025,6763,5.801,6764,4.668,6765,2.944,6766,4.668,6767,4.668,6768,7.658,6769,5.801,6770,7.658,6771,4.668,6772,6.601,6773,5.801,6774,4.668,6775,5.801,6776,2.944,6777,2.944,6778,4.668,6779,6.601,6780,5.801,6781,4.668,6782,4.668,6783,8.324,6784,4.668,6785,4.668,6786,4.668,6787,4.668,6788,4.668,6789,6.601,6790,4.668,6791,4.668,6792,4.668,6793,4.668,6794,4.668,6795,4.668,6796,4.668,6797,4.668,6798,4.668,6799,4.668,6800,4.668,6801,4.668,6802,6.601,6803,4.668,6804,4.668,6805,4.668,6806,4.668,6807,4.668,6808,4.668,6809,4.668,6810,4.668,6811,4.668,6812,4.668,6813,4.668,6814,4.668,6815,4.668,6816,4.668,6817,6.601,6818,4.668,6819,4.668,6820,4.668,6821,4.668,6822,6.601,6823,6.601,6824,5.801,6825,4.668,6826,4.668,6827,4.668,6828,4.668,6829,4.668,6830,4.668,6831,4.668,6832,4.668,6833,4.668,6834,4.668,6835,4.668,6836,4.668,6837,4.668,6838,4.668,6839,4.668,6840,4.668,6841,4.668,6842,4.668,6843,4.668,6844,4.668,6845,6.601,6846,6.601,6847,4.668,6848,4.668,6849,4.668,6850,4.668,6851,4.668,6852,2.944,6853,2.944,6854,2.944,6855,2.944,6856,2.944,6857,2.944,6858,2.944,6859,2.651,6860,2.944,6861,2.944,6862,2.944,6863,5.801,6864,2.944,6865,2.944]],["description//posts/hugo-add-search-lunr-popup/",[40,1.857,174,0.825,360,1.788,433,1.234,698,1.822,1012,1.316,1593,2.285,1620,3.417,4969,1.933,6574,2.708]],["title//posts/hugo-add-image-zoomin/",[1148,1.7,4969,2.43,6582,3.981,6592,3.747]],["content//posts/hugo-add-image-zoomin/",[2,3.939,7,1.07,11,1.533,16,0.774,34,3.289,43,2.492,48,1.75,53,1.821,59,3.178,60,0.851,62,1.779,75,1.779,93,3.549,108,1.29,115,2.113,146,1.77,157,1.32,159,1.928,168,2.343,175,1.577,178,1.382,186,2.184,210,1.615,221,2.362,227,2.113,228,2.98,232,0.806,235,4.885,239,2.183,247,1.398,256,1.466,278,1.32,285,3.669,289,1.415,308,1.956,320,3.959,351,2.469,355,4.486,356,3.251,360,3.733,361,3.933,363,3.443,369,1.32,382,1.432,384,2.301,394,1.703,407,1.335,412,1.956,414,2.481,420,2.221,434,2.221,455,1.432,459,2.343,474,2.482,486,2.644,513,2.533,567,2.914,583,2.841,591,0.259,637,2.387,694,2.533,699,2.387,728,3.514,736,2.587,737,4.927,742,3.289,774,3.41,796,2.839,809,3.479,950,2.387,961,3.181,976,2.914,1038,3.386,1089,2.387,1114,1.093,1136,2.644,1148,2.458,1151,1.415,1158,2.016,1173,2.482,1177,2.482,1261,6.386,1358,3.083,1366,3.549,1396,2.77,1448,2.705,1462,2.362,1466,3.289,1489,2.148,1593,2.995,1599,3.906,1647,3.906,1660,3.136,1664,2.914,1724,2.77,1761,5.758,1807,6.738,1940,3.41,2076,2.387,2236,2.644,2595,2.995,2609,5.913,2736,3.289,2831,4.477,2888,3.181,3006,3.41,3405,4.15,4969,4.036,4978,5.654,5049,4.15,5424,4.924,6416,6.212,6552,8.669,6859,6.212,6866,6.9,6867,4.974,6868,4.974,6869,4.974,6870,7.923,6871,4.974,6872,7.923,6873,7.923,6874,7.704,6875,6.9,6876,4.974,6877,6.9,6878,9.303,6879,6.9,6880,6.9,6881,4.974,6882,6.9,6883,4.974,6884,6.9,6885,4.974,6886,4.974,6887,4.974,6888,6.9,6889,4.974,6890,4.974,6891,4.974,6892,4.974,6893,4.974,6894,4.974,6895,6.9,6896,6.9,6897,6.9,6898,4.974,6899,4.974,6900,4.974,6901,4.974,6902,4.974,6903,4.974,6904,4.974,6905,4.974,6906,4.974,6907,4.974,6908,4.974,6909,6.9,6910,4.974,6911,4.974,6912,4.974,6913,4.974]],["description//posts/hugo-add-image-zoomin/",[737,2.533,1148,1.881,4969,2.688,6552,4.405,6582,4.405]],["title//posts/howto-tkinter-interactive-plotly-chart/",[7,0.553,16,0.307,736,1.856,1702,2.446,4987,2.802,6914,2.977,6915,2.977]],["content//posts/howto-tkinter-interactive-plotly-chart/",[1,0.989,7,1.495,8,2.788,13,4.743,16,0.75,27,2.52,37,2.314,41,1.685,48,1.314,51,1.126,54,0.718,62,1.163,65,1.557,71,1.603,75,1.163,76,1.846,86,2.167,108,1.344,122,3.386,125,2.392,128,2.092,129,3.407,137,0.682,146,1.329,160,2.238,165,0.936,168,2.441,170,3.117,210,0.978,225,3.036,228,2.238,242,2.673,247,1.457,249,2.487,256,1.527,283,1.774,286,1.986,287,2.202,350,3.313,356,2.441,369,1.375,381,0.877,387,1.728,452,2.397,456,3.867,458,1.797,476,2.818,495,2.16,513,4.435,533,1.546,556,3.697,564,3.553,591,0.254,597,3.752,694,3.615,732,3.542,736,4.53,737,2.487,740,2.639,746,3.692,748,5.177,797,2.586,811,0.67,829,1.95,854,4.308,860,2.008,887,2.636,924,1.924,925,3.12,981,2.886,1039,2.441,1054,2.868,1173,2.586,1177,2.586,1216,3.212,1231,4.539,1238,2.16,1287,2.202,1303,1.478,1316,2.238,1423,2.886,1424,2.958,1464,2.886,1702,5.551,1706,4.324,1721,3.553,1981,2.069,2141,2.958,2184,3.553,2249,5.777,2294,2.886,2350,7.267,2473,2.186,2542,3.426,2645,1.44,2654,3.697,2702,5.065,2888,3.313,3010,1.78,3239,3.953,3455,5.923,4300,4.07,4324,3.12,4508,4.664,4688,3.867,4985,4.539,4987,7.918,4992,4.664,5341,4.324,5430,4.07,5618,4.664,6113,4.664,6268,4.664,6914,7.267,6915,7.267,6916,5.181,6917,10.178,6918,5.181,6919,5.181,6920,5.181,6921,5.181,6922,5.181,6923,5.181,6924,5.181,6925,5.181,6926,5.181,6927,7.098,6928,5.181,6929,7.098,6930,5.181,6931,5.181,6932,5.181,6933,5.181,6934,5.181,6935,5.181,6936,5.181,6937,5.181,6938,5.181,6939,5.181,6940,5.181,6941,5.181,6942,5.181,6943,5.181,6944,5.181,6945,5.181,6946,5.181,6947,5.181,6948,5.181,6949,7.098,6950,7.098,6951,5.181,6952,5.181,6953,5.181,6954,5.181,6955,5.181,6956,5.181,6957,5.181,6958,5.181,6959,5.181,6960,5.181,6961,5.181,6962,7.098,6963,7.098,6964,5.181,6965,5.181,6966,5.181,6967,5.181,6968,5.181,6969,5.181,6970,5.181,6971,5.181,6972,5.181]],["description//posts/howto-tkinter-interactive-plotly-chart/",[7,0.529,16,0.294,27,0.875,65,0.936,736,1.775,870,0.982,925,2.054,1702,2.339,4987,2.68,6914,2.847,6915,2.847]],["title//posts/howto-rename-files-in-python/",[351,1.476,1238,1.333,1653,3.835]],["content//posts/howto-rename-files-in-python/",[16,0.749,48,1.798,53,2.596,120,2.115,146,2.232,171,2.258,178,1.97,186,3.822,211,2.277,229,3.583,240,2.335,307,1.993,351,2.949,352,3.77,429,1.136,430,5.917,525,5.569,533,2.809,557,3.062,565,2.459,580,3.114,591,0.245,597,3.546,653,3.856,655,2.561,754,1.925,926,3.611,929,1.444,934,2.596,1238,1.759,1255,5.06,1279,2.831,1360,3.167,1653,6.72,1847,6.279,2065,4.534,2245,5.569,2292,6.732,2478,4.534,6973,10.078,6974,7.09,6975,7.09,6976,9.819,6977,7.09,6978,8.703,6979,7.09,6980,7.09,6981,7.09,6982,7.09,6983,7.09,6984,7.09,6985,7.09,6986,7.09,6987,7.09,6988,8.703,6989,7.09,6990,7.09,6991,8.703,6992,8.703,6993,8.703,6994,7.09,6995,7.09]],["description//posts/howto-rename-files-in-python/",[351,1.719,1238,1.552,1653,4.465]],["title//posts/howto-install-rhel-9-free/",[122,1.629,412,1.532,931,2.026,950,1.869,2442,2.223,6996,3.25]],["content//posts/howto-install-rhel-9-free/",[1,1.129,5,1.856,7,1.388,10,1.626,11,0.891,14,2.351,16,0.713,21,2.795,27,2.296,30,1.241,42,1.792,51,1.528,60,0.687,62,0.901,65,1.058,66,1.155,68,2.556,70,1.881,72,1.733,75,1.578,82,2.882,89,1.43,94,1.555,96,1.89,97,4.546,110,2.234,114,2.362,122,4.393,125,1.931,127,1.41,128,1.561,129,1.926,134,3.439,142,1.924,146,1.803,147,1.733,149,3.374,157,1.065,160,1.733,165,0.725,168,1.89,170,2.598,172,2.727,174,1.286,180,2.234,181,3.563,182,2.167,183,1.89,184,1.963,188,1.272,189,1.963,203,1.792,212,3.668,221,1.374,223,1.128,227,3.515,239,1.82,240,2.555,246,1.762,275,2.416,276,2.167,278,1.065,286,1.724,289,1.141,301,4.647,306,1.823,307,1.128,320,1.856,328,1.762,340,3.311,351,1.625,356,2.787,361,3.052,363,4.32,369,1.065,377,2.994,378,2.514,384,2.737,406,2.087,412,3.981,439,1.963,445,1.786,455,1.155,465,2.002,473,1.626,480,3.052,484,1.762,495,1.468,508,1.43,509,1.856,513,4.68,514,4.25,517,2.994,533,1.197,537,2.643,541,3.146,545,6.138,578,2.002,579,3.151,591,0.139,597,1.511,653,2.182,656,3.823,707,2.234,721,2.487,734,1.903,746,3.656,754,1.09,795,1.89,797,4.129,816,2.487,826,2.351,854,1.792,856,2.863,864,2.29,873,2.362,887,3.072,894,2.234,924,2.197,931,3.656,934,1.469,950,4.41,961,2.566,1012,1.392,1038,2.228,1105,2.994,1119,2.29,1137,2.863,1147,3.087,1148,3.084,1160,1.963,1168,1.288,1169,1.89,1175,4.647,1177,2.002,1178,2.894,1182,2.566,1184,4.942,1185,2.234,1187,2.351,1190,1.578,1192,2.487,1236,2.416,1238,0.995,1258,2.953,1279,1.602,1297,1.626,1317,2.29,1331,3.151,1346,2.351,1374,2.751,1377,1.823,1415,3.348,1431,2.863,1454,2.351,1466,2.653,1525,3.348,1551,4.057,1638,3.348,1652,3.612,1664,3.467,1673,1.89,1678,2.994,1691,3.146,1699,5.016,1701,2.751,1727,3.146,1732,2.351,1733,3.151,1767,2.863,1795,2.994,1821,3.151,1869,2.939,1892,2.863,1946,3.151,2065,2.566,2076,2.84,2096,2.133,2117,5.866,2123,6.606,2124,8.114,2171,3.612,2181,2.751,2183,3.612,2234,2.133,2236,2.133,2263,5.866,2268,3.151,2275,3.348,2293,4.057,2327,4.222,2442,5.355,2443,2.863,2444,2.351,2553,4.233,2754,3.612,2791,2.994,2813,3.612,2957,3.348,3380,3.612,3386,2.653,4011,3.151,4371,3.348,4789,6.328,4985,2.566,5104,3.151,5111,2.994,5540,3.612,5560,4.647,5881,3.348,6095,3.612,6466,3.612,6514,3.348,6516,4.938,6523,2.994,6548,7.448,6610,6.984,6647,3.612,6693,3.612,6996,8.446,6997,4.012,6998,4.012,6999,4.012,7000,4.012,7001,4.012,7002,4.012,7003,4.012,7004,4.012,7005,4.012,7006,4.012,7007,4.012,7008,4.012,7009,4.012,7010,4.012,7011,4.012,7012,4.012,7013,4.012,7014,4.012,7015,4.012,7016,4.012,7017,4.012,7018,7.029,7019,4.012,7020,5.917,7021,4.012,7022,4.012,7023,4.012,7024,4.012,7025,4.012,7026,4.012,7027,4.012,7028,4.012,7029,4.012,7030,4.012,7031,4.012,7032,5.917,7033,4.012,7034,4.012]],["description//posts/howto-install-rhel-9-free/",[122,2.047,412,1.926,931,2.547,950,2.35,2442,2.795,6996,4.086]],["title//posts/howto-create-react-electron-app-ts/",[7,0.665,27,1.1,1288,2.835,2151,2.94,6726,3.368]],["content//posts/howto-create-react-electron-app-ts/",[7,1.319,16,0.63,21,2.471,27,2.056,28,2.236,41,1.398,48,1.578,51,1.742,54,0.595,59,2.716,65,1.733,75,2.054,82,1.195,83,3.558,94,2.412,108,1.115,121,1.619,122,3.709,125,2.436,126,2.749,129,2.063,133,2.644,137,0.413,142,2.023,146,2.056,149,3.51,165,0.777,168,4.497,170,1.888,172,1.511,174,0.934,186,2.733,188,1.973,189,3.045,201,2.025,223,2.254,239,1.009,242,1.619,245,1.237,247,1.75,283,3.131,286,1.054,289,1.223,319,4.115,328,2.733,351,2.337,356,2.025,369,2.573,372,1.798,390,1.642,393,1.553,395,2.286,400,1.77,447,2.189,455,1.791,476,2.338,480,1.691,484,1.888,489,3.979,495,2.2,500,2.394,513,2.189,576,2.606,591,0.258,597,3.34,626,3.498,637,2.063,694,2.189,702,3.045,732,2.145,737,4.39,746,3.237,770,4.175,776,3.979,804,1.954,811,0.556,829,1.709,854,4.509,887,1.596,924,1.596,925,3.747,934,1.574,981,2.394,1038,1.619,1114,0.944,1116,2.025,1148,1.532,1151,1.223,1153,3.587,1160,2.103,1178,2.562,1179,2.589,1194,2.236,1283,2.454,1288,2.842,1296,2.665,1297,3.25,1389,4.404,1405,2.589,1447,2.025,1479,3.169,1583,2.948,1664,2.519,1665,1.619,1732,3.646,1807,2.842,1835,3.208,1847,2.749,1876,3.068,1946,3.376,2005,3.208,2151,7.144,2184,2.948,2327,3.068,2408,4.441,2444,2.519,2452,2.842,2542,2.842,2560,5.745,2571,5.458,2574,4.824,2604,3.979,2689,3.376,2700,6.682,2786,5.745,2845,3.208,2888,2.749,4160,3.87,4324,2.589,4609,1.491,4867,6.071,4957,3.979,4975,5.458,5070,4.441,5268,3.587,5430,3.376,5451,3.587,5548,3.376,5592,5.602,6409,3.587,6513,3.208,6726,8.328,7035,4.299,7036,4.299,7037,4.299,7038,6.223,7039,6.223,7040,6.223,7041,6.223,7042,4.299,7043,4.299,7044,4.299,7045,7.314,7046,7.314,7047,7.314,7048,4.299,7049,4.299,7050,4.299,7051,4.299,7052,6.223,7053,4.299,7054,4.299,7055,4.299,7056,4.299,7057,4.299,7058,4.299,7059,4.299,7060,4.299,7061,4.299,7062,4.299,7063,6.223,7064,4.299,7065,4.299,7066,4.299,7067,6.223,7068,6.223,7069,6.223,7070,4.299,7071,4.299,7072,4.299,7073,4.299,7074,4.299,7075,4.299,7076,4.299,7077,4.299,7078,4.299,7079,4.299,7080,4.299,7081,4.299,7082,4.299,7083,4.299,7084,4.299,7085,6.223,7086,6.223,7087,4.299,7088,6.223,7089,8.017,7090,4.299,7091,4.299,7092,4.299]],["description//posts/howto-create-react-electron-app-ts/",[7,0.708,27,1.171,848,3.406,1288,3.018,2151,3.13,5070,3.258,6726,3.585]],["title//posts/howto-create-deepclone-js/",[7,0.665,655,1.549,758,2.659,1479,2.184,2691,2.835]],["content//posts/howto-create-deepclone-js/",[7,1.145,16,0.826,54,1.023,61,4.435,62,1.659,64,1.792,137,0.71,269,3.3,431,3.055,591,0.26,655,3.223,758,6.173,811,0.955,1015,3.191,1145,3.615,1287,3.14,1324,2.906,1490,4.018,1807,6.34,2691,4.885,5398,6.651,5408,8.631,7093,8.924,7094,7.389,7095,7.389,7096,7.389,7097,7.389,7098,7.389,7099,7.389,7100,7.389,7101,8.924,7102,7.389,7103,8.924,7104,8.924,7105,7.389,7106,7.389,7107,7.389,7108,7.389,7109,7.389,7110,7.389]],["description//posts/howto-create-deepclone-js/",[7,0.818,655,1.906,758,3.272,1479,2.688,2691,3.49]],["title//posts/how-to-upload-app-to-sourceforge/",[27,1.224,699,2.29,7111,4.77,7112,3.981]],["content//posts/how-to-upload-app-to-sourceforge/",[1,1.051,4,2.864,5,2.547,7,1.544,10,3.62,11,1.223,25,2.864,37,3.304,51,1.815,53,2.016,54,0.763,60,0.942,62,1.236,65,1.715,68,3.857,72,2.378,82,2.056,90,2.751,108,1.428,114,2.953,127,2.6,133,2.34,137,0.529,142,2.716,146,2.555,165,0.995,168,5.043,171,1.428,172,1.936,178,2.481,181,4.454,183,4.389,188,1.746,200,4.595,204,2.694,206,2.547,212,3.414,219,4.119,223,2.348,227,2.34,231,3.191,239,1.736,241,2.594,245,1.585,279,3.386,280,1.478,289,1.566,351,2.559,355,4.168,363,4.891,364,3.929,366,2.995,369,1.461,429,0.882,445,2.233,455,1.585,487,2.909,495,2.471,500,3.066,514,4.131,524,2.459,533,2.492,591,0.174,600,3.226,654,4.109,698,2.643,699,4.286,727,2.166,728,2.804,742,3.641,746,3.848,873,2.198,887,3.101,924,3.101,934,2.016,939,4.325,950,4.009,1008,4.595,1024,2.045,1145,3.619,1146,3.335,1147,3.248,1148,3.734,1151,1.566,1164,2.694,1165,4.595,1167,2.928,1168,2.375,1178,3.045,1179,3.316,1185,4.652,1192,4.586,1222,3.767,1320,5.52,1325,3.691,1358,3.414,1462,2.532,1464,3.066,1551,3.775,1583,3.775,1590,6.97,1597,3.775,1696,4.325,1727,2.928,2416,3.929,2486,2.459,2550,4.957,2553,5.377,2557,2.864,2559,7.452,2600,4.891,2630,4.222,2644,4.957,2660,3.641,2689,4.325,2830,4.595,2990,3.929,3373,4.957,6529,4.109,7112,8.178,7113,5.506,7114,5.506,7115,5.506,7116,7.397,7117,5.506,7118,5.506,7119,5.506,7120,5.506,7121,5.506]],["description//posts/how-to-upload-app-to-sourceforge/",[27,0.672,65,1.103,86,1.095,153,1.169,168,1.233,240,0.862,279,1.061,280,0.703,699,1.257,870,1.223,924,0.972,1091,0.972,1111,2.056,7112,2.185]],["title//posts/docker-commands/",[94,2.083,477,2.737,1146,2.146]],["content//posts/docker-commands/",[1,1.702,3,2.913,7,1.383,11,0.602,16,0.718,27,1.121,30,1.352,31,2.493,40,2.138,41,0.882,57,0.893,60,1.182,66,0.78,71,1.699,85,3.518,92,2.434,94,2.677,95,1.381,108,0.703,116,2.039,124,1.633,125,2.816,127,2.214,128,0.602,134,2.138,140,2.411,141,4.7,142,0.882,145,2.434,146,0.696,153,2.452,165,0.49,171,0.703,172,1.93,174,1.369,177,3.262,178,0.753,180,1.51,184,1.327,186,1.919,211,0.871,223,1.544,227,3.79,233,1.51,238,2.226,240,0.893,242,1.646,256,0.799,262,1.327,263,1.211,264,1.633,278,0.72,283,2.997,286,1.072,295,1.051,309,1.152,344,2.795,351,2.028,355,1.353,361,4.091,368,3.507,369,1.16,371,5.166,383,2.813,384,1.254,385,1.021,396,0.993,398,1.475,399,1.327,455,1.258,460,1.301,477,5.607,478,2.661,495,2.124,511,1.134,532,1.353,533,0.809,534,0.745,535,2.181,557,1.171,563,1.745,565,3.397,585,4.313,591,0.256,608,2.023,613,1.171,616,3.433,626,0.966,629,1.589,632,2.181,641,1.694,696,0.916,699,2.098,732,3.143,742,2.89,750,2.181,754,0.736,770,1.548,773,2.71,776,3.511,783,2.993,785,4.499,789,6.099,795,2.587,797,4.943,809,3.76,820,1.191,854,2.452,861,0.558,863,4.865,885,1.734,891,2.89,892,2.441,901,4.047,924,2.039,929,1.118,934,2.529,950,2.098,958,2.89,975,1.475,1005,2.797,1020,3.404,1032,3.119,1038,1.646,1039,1.277,1043,3.119,1049,2.676,1077,7.22,1111,2.13,1146,1.745,1147,1.191,1177,4.032,1184,1.548,1197,5.342,1202,1.353,1232,2.441,1233,2.495,1241,3.119,1252,3.647,1253,2.441,1254,4.446,1255,5.952,1261,3.262,1279,1.745,1286,3.081,1315,1.475,1317,1.548,1352,2.263,1353,1.353,1358,4.814,1377,1.986,1398,4.814,1405,2.632,1454,2.561,1494,2.441,1514,1.021,1515,1.442,1528,1.353,1583,2.997,1594,1.51,1612,4.223,1624,1.152,1665,2.601,1682,3.262,1710,1.935,1722,1.254,1767,3.119,1948,3.631,1998,3.647,2063,1.793,2116,6.161,2293,1.859,2352,2.263,2406,3.935,2413,5.062,2419,4.128,2442,1.548,2449,2.023,2460,2.441,2568,6.161,2604,1.734,2645,0.753,2753,2.997,2763,7.305,2779,2.441,2786,2.13,2863,1.51,2918,1.793,3085,1.935,3174,2.89,3175,2.561,3388,5.669,3839,3.433,3918,2.023,4164,2.441,4758,7.88,4775,2.441,4867,4.494,4946,3.119,5537,5.799,5548,2.13,6513,2.023,6678,2.441,6874,6.218,7122,8.341,7123,8.919,7124,4.371,7125,5.491,7126,4.371,7127,8.079,7128,2.711,7129,2.711,7130,2.711,7131,5.491,7132,7.383,7133,4.371,7134,2.711,7135,4.371,7136,4.371,7137,4.371,7138,2.711,7139,2.711,7140,2.711,7141,2.711,7142,8.754,7143,6.907,7144,2.711,7145,4.371,7146,2.711,7147,2.711,7148,7.383,7149,2.711,7150,2.711,7151,2.711,7152,2.711,7153,4.371,7154,2.711,7155,2.711,7156,2.711,7157,4.371,7158,4.371,7159,4.371,7160,2.711,7161,2.711,7162,2.711,7163,2.711,7164,2.711,7165,2.711,7166,2.711,7167,2.711,7168,2.711,7169,2.711,7170,2.711,7171,2.711]],["description//posts/docker-commands/",[94,2.425,477,3.187,1405,3.767]],["title//posts/diploma/",[932,4.592,946,4.592]],["content//posts/diploma/",[210,1.602,315,4.617,455,2.444,767,5.263,946,6.336,1187,4.974,3399,7.643,7172,8.49,7173,8.49,7174,8.49]],["description//posts/diploma/",[614,4.086,847,4.273,946,4.273,953,4.273]],["title//posts/cloud-exam-quizz/amplify-setup-project",[32,0.922,168,2.02,537,1.915,907,2.94,2630,2.448]],["content//posts/cloud-exam-quizz/amplify-setup-project",[8,2.193,16,0.618,29,2.822,68,3.099,92,3.996,94,3.398,116,2.664,122,3,125,1.971,133,3.049,134,3.51,137,0.842,146,2.249,159,2.781,160,3.099,168,4.846,184,3.51,186,3.151,231,2.741,239,1.683,240,3.247,242,2.702,283,3.521,286,1.76,288,5.12,328,3.151,340,3.38,351,1.971,397,3.815,455,2.065,480,2.822,495,1.779,537,4.228,578,3.58,591,0.232,611,3.261,854,3.915,907,7.053,924,2.664,1148,2.556,1151,2.494,1193,2.954,1194,3.732,1222,4.465,1315,3.902,1450,6.459,1500,6.053,1732,4.204,2315,5.987,2398,4.919,2630,5.872,2700,6.885,3681,6.459,4957,6.053,5556,5.987,6006,6.459,7175,7.175,7176,7.175,7177,7.175,7178,7.175,7179,7.175,7180,7.175]],["description//posts/cloud-exam-quizz/amplify-setup-project",[32,1.135,537,2.358,829,1.45,907,3.619,2630,3.013]],["title//posts/cloud-exam-quizz/amplify-custom-domain",[32,0.922,51,0.932,89,1.528,679,2.448,907,2.94]],["content//posts/cloud-exam-quizz/amplify-custom-domain",[3,3.054,15,4.093,16,0.569,17,2.522,18,5.943,32,1.419,35,2.384,51,1.981,57,2.174,62,1.869,65,1.18,89,3.79,120,1.969,128,2.025,133,3.537,142,2.965,159,3.227,163,2.486,178,2.313,192,3.975,221,2.26,223,1.856,239,2.496,280,1.772,286,1.619,340,3.11,347,2.805,365,2.718,372,3.481,410,3.51,420,3.718,455,1.9,495,2.065,514,3.054,533,1.969,537,2.949,541,3.51,591,0.215,666,5.943,671,1.584,679,6.23,734,2.348,757,5.943,770,3.769,772,3.294,854,2.949,887,3.091,907,7.376,1004,4.426,1038,2.486,1112,3.362,1113,4.526,1119,3.769,1148,2.352,1151,1.878,1222,4.24,1279,2.636,1380,6.804,1551,5.708,1904,6.947,2113,4.365,2235,4.365,2834,5.943,2871,3.769,7181,8.324]],["description//posts/cloud-exam-quizz/amplify-custom-domain",[32,1.135,51,1.147,89,1.881,679,3.013,907,3.619]],["title//posts/cheat-sheet-command-tar/",[94,1.849,3174,3.154,3175,2.795,7182,3.981]],["content//posts/cheat-sheet-command-tar/",[1,1.376,7,1.531,83,3.677,127,2.535,189,3.528,211,2.315,255,3.673,290,4.343,351,2.891,352,3.834,385,2.716,478,1.809,533,2.623,732,3.599,999,3.528,1082,7.08,1255,5.146,1279,2.879,1324,2.837,1377,3.277,1515,3.834,1522,6.77,2184,4.945,2214,5.623,2918,4.768,3048,7.35,3268,5.382,3640,4.768,5546,6.018,7182,9.061,7183,9.487,7184,7.212,7185,7.212,7186,7.212,7187,7.212,7188,10.299,7189,8.793,7190,9.877,7191,7.212,7192,9.487,7193,7.212,7194,7.212,7195,8.793,7196,7.212,7197,8.793,7198,7.212,7199,7.212]],["description//posts/cheat-sheet-command-tar/",[94,2.219,3174,3.786,3175,3.355,7182,4.778]],["title//posts/archive/",[236,2.953,1522,4.391]],["content//posts/archive/",[236,4.091,591,0.228,863,5.133,2963,8.736,2964,7.622]],["description//posts/archive/",[]],["title//photos/_index",[361,2.83]],["content//photos/_index",[]],["description//photos/_index",[]],["title//photos/midjourney/",[8,1.642,2129,3.553,7200,4.838]],["content//photos/midjourney/",[2,5.55,591,0.259,727,3.824,827,6.666,1711,6.842,1813,5.057,2382,7.637,2664,3.247,3533,6.938,4915,7.637,5381,8.753,6445,8.753,7201,9.723,7202,9.723,7203,6.893,7204,9.723,7205,9.723,7206,9.395,7207,9.723,7208,9.723,7209,9.723,7210,9.723,7211,9.723,7212,9.723,7213,6.893,7214,6.893]],["description//photos/midjourney/",[8,1.912,2129,4.137,7200,5.632]],["title//photos/ai/",[8,1.88,2129,4.068]],["content//photos/ai/",[]],["description//photos/ai/",[8,2.107,2129,4.559]],["title//photos/22-07-02-israel-haifa-bahai-gardens/",[6710,3.747,7215,4.294,7216,4.294,7217,4.294]],["content//photos/22-07-02-israel-haifa-bahai-gardens/",[100,4.664,535,4.28,591,0.229,1056,4.461]],["description//photos/22-07-02-israel-haifa-bahai-gardens/",[6710,4.497,7215,5.155,7216,5.155,7217,5.155]],["title//p/supportme",[53,2.635]],["content//p/supportme",[]],["description//p/supportme",[]],["title//p/links",[1462,2.463]],["content//p/links",[1,1.456,7,1.41,8,2.332,69,3.594,120,2.276,121,2.873,129,3.662,137,0.733,351,2.096,352,4.056,361,3.578,375,3.807,396,2.794,450,2.718,622,4.355,630,5.693,637,3.662,673,3.969,863,4.594,929,1.553,931,5.056,962,5.444,976,5.33,1263,5.693,1335,1.488,1338,6.367,1443,5.992,1601,4.594,1648,3.969,1686,5.992,2129,6.9,2185,5.231,2600,5.045,3158,4.594,4912,6.868,4990,4.73,5788,6.789,6120,6.868,6533,6.868,6646,6.868,7206,6.868,7218,7.629,7219,7.629,7220,7.629,7221,9.097,7222,7.629,7223,7.629,7224,7.629,7225,7.629,7226,7.629,7227,7.629,7228,7.629,7229,7.629,7230,7.629]],["description//p/links",[]],["title//homepage/pages",[236,3.454]],["content//homepage/pages",[]],["description//homepage/pages",[]],["title//homepage/",[]],["content//homepage/",[]],["description//homepage/",[]],["title//homepage/experience",[498,4.602]],["content//homepage/experience",[]],["description//homepage/experience",[]],["title//homepage/education",[7231,7.196]],["content//homepage/education",[]],["description//homepage/education",[]],["title//homepage/about",[2967,4.219,6637,5.135]],["content//homepage/about",[]],["description//homepage/about",[]],["title//authors/roman-kurnovskii/_index",[2967,4.219,6637,5.135]],["content//authors/roman-kurnovskii/_index",[]],["description//authors/roman-kurnovskii/_index",[]],["title//apps/_index",[854,3.214]],["content//apps/_index",[7,1.419,14,4.519,15,4.782,17,2.947,32,1.968,38,3.127,134,3.774,168,3.634,199,5.676,242,2.905,280,2.071,312,3.774,351,2.515,360,3.634,368,4.295,433,2.508,486,4.101,530,3.387,576,2.748,773,5.676,861,1.588,918,5.756,1233,4.403,1238,1.913,1259,4.519,1593,4.645,2130,5.756,2292,5.289,2466,4.012,2473,1.79,2574,4.195,2664,3.634,2696,8.243,3637,4.519,4841,7.192,4969,4.663,4978,6.534,4985,4.932,5111,5.756,5788,6.833,6513,5.756,6523,7.287,6529,5.756,6574,5.504,6760,7.192,7232,7.713,7233,6.944]],["description//apps/_index",[]],["title//apps/npm/hugo-lunr-ml/",[2130,4.01,4969,2.737,6760,4.221]],["content//apps/npm/hugo-lunr-ml/",[]],["description//apps/npm/hugo-lunr-ml/",[7,0.663,351,1.175,360,2.014,433,1.39,1593,2.575,4969,2.178,6574,3.051,6760,3.358]],["title//apps/npm/cognito-token-observer/",[199,3.332,486,2.857,773,3.332]],["content//apps/npm/cognito-token-observer/",[]],["description//apps/npm/cognito-token-observer/",[23,0.716,178,0.999,199,2.228,240,1.183,312,1.758,416,2.376,773,2.228,809,1.578,1259,2.105,1878,3.888]],["title//apps/cloud-exam-quizz/",[15,3.332,17,2.053,7233,4.838]],["content//apps/cloud-exam-quizz/",[9,3.816,15,5.05,17,3.112,27,2.089,41,2.648,43,2.942,60,1.394,62,1.829,69,4.454,210,1.537,248,4.65,381,1.379,673,4.237,734,1.998,754,2.212,772,4.718,855,5.209,1113,5.585,1194,4.237,1366,5.813,1462,2.788,1667,6.798,1927,3.157,2149,4.905,2575,4.237,2729,6.398,7234,8.145]],["description//apps/cloud-exam-quizz/",[15,3.272,17,2.016,734,1.295,772,2.634,1194,2.746]],["title//apps/brewmate/",[6529,5.37]],["content//apps/brewmate/",[10,3.054,16,0.649,27,2.48,53,3.306,122,4.192,171,1.954,172,2.648,174,1.637,246,3.308,281,3.201,286,1.848,351,2.48,355,4.506,476,4.097,480,2.963,853,5.622,854,4.578,860,2.92,864,4.301,924,2.797,931,4.697,934,2.759,950,4.64,1012,2.613,1146,3.008,1148,2.684,1294,4.982,1434,5.376,1825,5.376,1933,6.287,2184,5.166,2553,4.537,4985,4.818,5104,7.873,5109,6.287,5111,7.48,6521,8.704,6523,5.622,6529,7.48,7235,7.534,7236,9.029,7237,7.534,7238,7.534,7239,7.534,7240,7.534,7241,7.534]],["description//apps/brewmate/",[280,1.537,854,2.557,4985,3.662,6523,4.273]]],"invertedIndex":[["",{"_index":591,"title":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/archive/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/posts/archive/":{},"/photos/midjourney/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["0",{"_index":1114,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["0'",{"_index":3364,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["0).wordcount",{"_index":6862,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["0,0,0,0],[0,4,5,0],[0,3,1,0",{"_index":3438,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["0,0000133334",{"_index":1789,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0,1",{"_index":3623,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["0,1,1",{"_index":3902,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["0,1,2,0],[3,4,5,2],[1,3,1,5",{"_index":3437,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["0,1],[1,0",{"_index":3624,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["0,2",{"_index":4779,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["0,20",{"_index":1786,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0.(3",{"_index":3844,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["0.0.0.0/0",{"_index":2210,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["0.000016667",{"_index":1784,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["0.0047/hour",{"_index":4953,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["0.1",{"_index":5283,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["0.10",{"_index":2112,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["0.2",{"_index":5284,"title":{},"content":{"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["0.25",{"_index":3531,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["0.25000",{"_index":3528,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["0.30000000000000004",{"_index":5285,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["0.33",{"_index":5764,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["0.3333",{"_index":3843,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["0.5",{"_index":4233,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["00",{"_index":4093,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["0000",{"_index":4340,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["00000001011",{"_index":4326,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["0001",{"_index":4328,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["000644",{"_index":2924,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["001",{"_index":4329,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["0011",{"_index":4342,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["00:00:00.000",{"_index":6625,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["00:00:10.000",{"_index":6629,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["01",{"_index":4330,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/js-snippets":{}},"description":{}}],["01.01",{"_index":3397,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["01.png",{"_index":2070,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["0101",{"_index":4339,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["0110",{"_index":4337,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["02",{"_index":4705,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["02.png",{"_index":2295,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["03",{"_index":4706,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["03.png",{"_index":2296,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["03:24:00",{"_index":5182,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["04.png",{"_index":2297,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["05.png",{"_index":2298,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["06.png",{"_index":2299,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["07.png",{"_index":2301,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["08.png",{"_index":2303,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["09",{"_index":2900,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["09.png",{"_index":2310,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["0](2n",{"_index":4664,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["0fd18c8deb52983d5",{"_index":2945,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["0s",{"_index":3449,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["1",{"_index":137,"title":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{}}}],["1'",{"_index":3058,"title":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["1,0,1",{"_index":3898,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["1,0,1,2",{"_index":3896,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["1,0,1],[0,0,0],[1,0,1",{"_index":3436,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["1,000",{"_index":7220,"title":{},"content":{"/p/links":{}},"description":{}}],["1,095",{"_index":1823,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["1,1,1],[1,0,1],[1,1,1",{"_index":3435,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["1,1,2,3,4,4",{"_index":4290,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["1,10,100",{"_index":4417,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["1,2",{"_index":3897,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["1,2,1",{"_index":3515,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["1,2,3",{"_index":3392,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-snippets/":{}},"description":{}}],["1,2,3):[1,2,3",{"_index":6172,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["1,2,3,4,5",{"_index":3799,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/posts/python-snippets/":{}},"description":{}}],["1,2,3,4,5,6",{"_index":4271,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["1,2,3,4,5,6,7",{"_index":3817,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["1,2,3,5",{"_index":3800,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1",{"_index":3622,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["1,2,3],[4,5,6],[7,8,9",{"_index":3614,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["1,2,4",{"_index":4241,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["1,2,5,7,8,9,10",{"_index":4207,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["1,3",{"_index":3477,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,3,2",{"_index":4206,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["1,3,4",{"_index":4289,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["1,3],[2,6],[8,10],[15,18",{"_index":3475,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,4",{"_index":3482,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,4],[4,5",{"_index":3480,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,5",{"_index":3481,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,6",{"_index":3479,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,6],[8,10],[15,18",{"_index":3476,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["1,7,8",{"_index":3517,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["1,8,6,2,5,4,8,3,7",{"_index":4166,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["1,8c1",{"_index":6707,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["1,null,2,3",{"_index":4205,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["1,𝑎_2",{"_index":4896,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["1..i",{"_index":3560,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["1.0",{"_index":896,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-snippets/":{}},"description":{}}],["1.12(345",{"_index":3857,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["1.14.0.jar",{"_index":5483,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["1.2.2.zip",{"_index":2762,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["1.5",{"_index":5281,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["1.console.aws.amazon.com/amplify/home?region=eu",{"_index":7176,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["1.next",{"_index":4268,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["1/22",{"_index":3529,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["1/3",{"_index":3842,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["1/4",{"_index":3530,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["10",{"_index":450,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/p/links":{}},"description":{}}],["10**9",{"_index":4194,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["10.0",{"_index":5650,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["10.0.0.0/16",{"_index":2304,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.1.0/24",{"_index":2309,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.100.0/24(u",{"_index":2305,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.0.101.0/24",{"_index":2307,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10.1",{"_index":5653,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["10.15",{"_index":7240,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["10.png",{"_index":2311,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["10/3",{"_index":3722,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["100",{"_index":1423,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["1000",{"_index":1424,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["1000000007(109+7",{"_index":4824,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["10011",{"_index":5100,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["1004",{"_index":3055,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["100[(c",{"_index":5633,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["100k",{"_index":5488,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["100kb",{"_index":5485,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["101",{"_index":3371,"title":{"/tracks/algorithms-101/_index":{}},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/_index":{}}}],["1010",{"_index":4338,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["1011",{"_index":4327,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["10111",{"_index":5099,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["102",{"_index":6748,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["1024",{"_index":5565,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["1024.00000",{"_index":3525,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["104",{"_index":3086,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["107",{"_index":4785,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["1071",{"_index":3031,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["10^9",{"_index":3467,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["10tb",{"_index":2839,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["11",{"_index":1673,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["11.0",{"_index":5651,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["11.png",{"_index":2313,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["1100",{"_index":4750,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["11011",{"_index":5098,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["116",{"_index":4060,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["1161",{"_index":3099,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["12",{"_index":1116,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["12.0",{"_index":5655,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["12.1",{"_index":5654,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["12.2",{"_index":5656,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["12.png",{"_index":2317,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["120",{"_index":3455,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["1200",{"_index":5440,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["1207",{"_index":3064,"title":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1207":{}}}],["1211",{"_index":3643,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["122",{"_index":4055,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["123",{"_index":3453,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["1234",{"_index":4440,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["12345",{"_index":1630,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["1234567890ab",{"_index":1843,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["1234abcd",{"_index":1839,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["124",{"_index":4242,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["128",{"_index":3712,"title":{"/tracks/algorithms-101/leetcode/medium/128":{}},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/128":{}}}],["128k",{"_index":5143,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["12ab",{"_index":1840,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["13",{"_index":1675,"title":{"/tracks/algorithms-101/leetcode/easy/13":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{"/tracks/algorithms-101/leetcode/easy/13":{}}}],["13.4",{"_index":5665,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["13.4(sma",{"_index":5762,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["13.9",{"_index":5660,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["13.png",{"_index":2318,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["130",{"_index":4036,"title":{"/tracks/algorithms-101/leetcode/medium/130":{}},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{"/tracks/algorithms-101/leetcode/medium/130":{}}}],["131",{"_index":4024,"title":{"/tracks/algorithms-101/leetcode/medium/131":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{}}}],["132",{"_index":6741,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["134",{"_index":4010,"title":{"/tracks/algorithms-101/leetcode/medium/134":{}},"content":{},"description":{}}],["136",{"_index":3162,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1372",{"_index":3091,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["138",{"_index":4146,"title":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["139",{"_index":3993,"title":{"/tracks/algorithms-101/leetcode/medium/139":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/139":{}}}],["14",{"_index":1124,"title":{"/tracks/algorithms-101/leetcode/easy/14":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{"/tracks/algorithms-101/leetcode/easy/14":{}}}],["14.0",{"_index":5661,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["14.1",{"_index":5662,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["14.13",{"_index":5769,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["14.9",{"_index":5682,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["14.png",{"_index":2320,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["140",{"_index":1845,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["141",{"_index":3078,"title":{"/tracks/algorithms-101/leetcode/easy/141":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{"/tracks/algorithms-101/leetcode/easy/141":{}}}],["1431",{"_index":3034,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1433",{"_index":1574,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["1448",{"_index":3089,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1456",{"_index":3054,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["146",{"_index":3936,"title":{"/tracks/algorithms-101/leetcode/medium/146":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/146":{}}}],["1466",{"_index":3112,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["148",{"_index":3917,"title":{"/tracks/algorithms-101/leetcode/medium/148":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/148":{}}}],["1493",{"_index":3057,"title":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["15",{"_index":831,"title":{"/tracks/algorithms-101/leetcode/medium/15":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/15":{}}}],["15,13,2,5],[14,3,4,1],[12,6,8,9],[16,7,10,11",{"_index":3617,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["15.0",{"_index":5658,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.1",{"_index":5659,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.2",{"_index":5657,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.67",{"_index":5763,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["15.9",{"_index":5685,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["15.png",{"_index":2319,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["150",{"_index":3027,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["1500",{"_index":4638,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["151",{"_index":3041,"title":{"/tracks/algorithms-101/leetcode/medium/151":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{}}}],["1510",{"_index":3382,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["152",{"_index":3874,"title":{"/tracks/algorithms-101/leetcode/medium/152":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/152":{}}}],["1521",{"_index":1573,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["159",{"_index":6750,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["15from",{"_index":2781,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["16",{"_index":2234,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["16.0",{"_index":5664,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["16.1",{"_index":5663,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["16.9",{"_index":5688,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["16.png",{"_index":2322,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["16.x",{"_index":1793,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["160",{"_index":4362,"title":{"/tracks/algorithms-101/leetcode/easy/160":{}},"content":{},"description":{}}],["1602162242",{"_index":5192,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["162",{"_index":3138,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["1657",{"_index":3065,"title":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["166",{"_index":3837,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["1679",{"_index":3051,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["168",{"_index":1939,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["169.254/latest/meta",{"_index":798,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["16:10",{"_index":6597,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["17",{"_index":1482,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["17.0",{"_index":5684,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["17.06.1",{"_index":7135,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["17.1",{"_index":5683,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["17.9",{"_index":5691,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["17.png",{"_index":2324,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["171",{"_index":4344,"title":{"/tracks/algorithms-101/leetcode/easy/171":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/171":{}}}],["1728x1080",{"_index":6598,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["1732",{"_index":3059,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["1768",{"_index":3030,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1772a",{"_index":4620,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["1773f",{"_index":4632,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}}}],["1774a",{"_index":4634,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["1776a",{"_index":4635,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["1776l",{"_index":4637,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["1777a",{"_index":4625,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["1777b",{"_index":4630,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["1778a",{"_index":4618,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["1787a",{"_index":4628,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}}}],["1788a",{"_index":4617,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["1791",{"_index":4791,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["1796b",{"_index":4622,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["1798a",{"_index":4614,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}}}],["1799a",{"_index":4616,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}}}],["17t03:24:00",{"_index":5184,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["18",{"_index":2236,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["18.0",{"_index":5687,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["18.1",{"_index":5686,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["18.5",{"_index":5287,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["1807a",{"_index":4610,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}}}],["1807b",{"_index":4611,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}}}],["1807c",{"_index":4613,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}}}],["1809a",{"_index":4607,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}}}],["182",{"_index":6088,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["1822",{"_index":4701,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}}}],["1822a",{"_index":4693,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["189",{"_index":3814,"title":{"/tracks/algorithms-101/leetcode/medium/189":{}},"content":{},"description":{}}],["19",{"_index":2237,"title":{"/tracks/algorithms-101/leetcode/medium/19":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{}}}],["19.0",{"_index":5690,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["19.1",{"_index":5689,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["19.9",{"_index":5696,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["190",{"_index":4331,"title":{"/tracks/algorithms-101/leetcode/easy/190":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/190":{}}}],["1900",{"_index":4788,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["191",{"_index":4322,"title":{"/tracks/algorithms-101/leetcode/easy/191":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/191":{}}}],["192",{"_index":6746,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["192.168.1.1",{"_index":1508,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["1926",{"_index":3119,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["192k",{"_index":6621,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["1950",{"_index":5632,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["1960",{"_index":6728,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["1978",{"_index":5789,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["1980",{"_index":5777,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["199",{"_index":3097,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1994",{"_index":4409,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["1995",{"_index":5181,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["1^i",{"_index":4814,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["1d",{"_index":3145,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["1m",{"_index":5117,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["1mb",{"_index":1928,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["1p",{"_index":5114,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["1s",{"_index":2711,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["1st",{"_index":1797,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["1w",{"_index":2733,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["2",{"_index":54,"title":{"/tracks/algorithms-101/leetcode/medium/2":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2":{}}}],["2'",{"_index":3365,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["2)(2",{"_index":6246,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2)(3",{"_index":6245,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2**3",{"_index":6099,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["2**31",{"_index":3736,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2*n",{"_index":4519,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["2,1",{"_index":3513,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["2,3,1,1,4",{"_index":3496,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["2,4,3",{"_index":3755,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["2,6",{"_index":3478,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["2...henc",{"_index":4663,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["2.0",{"_index":2316,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/python-snippets/":{}},"description":{}}],["2.00000",{"_index":3524,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["2.1",{"_index":895,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["2.10000",{"_index":3526,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["2.2",{"_index":4447,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["2.33333",{"_index":3724,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2.5",{"_index":5096,"title":{},"content":{"/posts/python-bitwise-operators":{},"/posts/js-snippets":{}},"description":{}}],["2.7335",{"_index":3718,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2.82842",{"_index":4234,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["2.amazonaws.com/v1/repos/lab",{"_index":2685,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["2.console.aws.amazon.com/lambda/home?region=u",{"_index":1791,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["2/(n+1",{"_index":5759,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["20",{"_index":2575,"title":{"/tracks/algorithms-101/leetcode/easy/20":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/20":{}}}],["20.0",{"_index":5693,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["20.1",{"_index":5692,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["200",{"_index":1408,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["2000",{"_index":1044,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["2010",{"_index":2899,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["2012",{"_index":1481,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["2015",{"_index":2498,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["2018",{"_index":5371,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["2019",{"_index":7002,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["202",{"_index":4299,"title":{"/tracks/algorithms-101/leetcode/easy/202":{}},"content":{},"description":{}}],["2020",{"_index":946,"title":{"/posts/diploma/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/mac-setup-development/":{},"/posts/diploma/":{}},"description":{"/posts/diploma/":{}}}],["2021",{"_index":1652,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2022",{"_index":1821,"title":{"/posts/mac-setup-development/":{}},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["2022:22",{"_index":7138,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["2023",{"_index":848,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["206",{"_index":3079,"title":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["208",{"_index":3165,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["2095",{"_index":3080,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["21",{"_index":2576,"title":{"/tracks/algorithms-101/leetcode/easy/21":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/21":{}}}],["21.0",{"_index":5695,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["21.1",{"_index":5694,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["21.99",{"_index":1210,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["212530",{"_index":6881,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["2130",{"_index":3083,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["2147483647",{"_index":3411,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["2147483648",{"_index":3410,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["21th",{"_index":5710,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["22",{"_index":2578,"title":{"/tracks/algorithms-101/leetcode/medium/22":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/22":{}}}],["22.0",{"_index":5699,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["22.1",{"_index":5697,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["2215",{"_index":3063,"title":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/2215":{}}}],["225",{"_index":6563,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["23",{"_index":2589,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["23.0",{"_index":5701,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["23.1",{"_index":5698,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["231",{"_index":3451,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["234",{"_index":4265,"title":{"/tracks/algorithms-101/leetcode/easy/234":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/234":{}}}],["235",{"_index":6743,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["2352",{"_index":3066,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["236",{"_index":3093,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["238",{"_index":3043,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["2390",{"_index":3067,"title":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["24",{"_index":1938,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["24.0",{"_index":5703,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["24.1",{"_index":5700,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["25",{"_index":2595,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["25.0",{"_index":5705,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["25.1",{"_index":5702,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["255",{"_index":6749,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["256",{"_index":1371,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["257",{"_index":5088,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["26",{"_index":2596,"title":{"/tracks/algorithms-101/leetcode/easy/26":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/26":{}}}],["26.0",{"_index":5707,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["26.1",{"_index":5704,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["26th",{"_index":5718,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["27",{"_index":862,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["27.0",{"_index":5723,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["27.1",{"_index":5706,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["28",{"_index":859,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["28.0",{"_index":5725,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["28.1",{"_index":5722,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["283",{"_index":3049,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["2839",{"_index":4465,"title":{"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/easy/2839/":{}}}],["2840",{"_index":4111,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{}}}],["2841",{"_index":4100,"title":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2841/":{}}}],["2842",{"_index":4185,"title":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{},"description":{}}],["2844",{"_index":4090,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["2880x1800",{"_index":6596,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["29",{"_index":2598,"title":{"/tracks/algorithms-101/leetcode/medium/29":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/29":{}}}],["29.0",{"_index":5727,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["29.1",{"_index":5724,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["2:(bestcent",{"_index":3572,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["2>&1",{"_index":5134,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["2^0",{"_index":4332,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["2^31",{"_index":4333,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["2a",{"_index":2546,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["2a)and",{"_index":2306,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2b",{"_index":2308,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["2c6a45b",{"_index":5497,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["2d",{"_index":3611,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["2mb",{"_index":1929,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["2n",{"_index":4518,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["2nd",{"_index":2321,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["2y",{"_index":4816,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["3",{"_index":165,"title":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}}}],["3,2,1,0,4",{"_index":3497,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["3,4",{"_index":3514,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["3.0",{"_index":6095,"title":{},"content":{"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.1",{"_index":4000,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/posts/js-snippets":{}},"description":{}}],["3.33333",{"_index":3723,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["3.3333333333333335",{"_index":6096,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.5",{"_index":6184,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.6",{"_index":6113,"title":{},"content":{"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["3.7",{"_index":6174,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["3.8",{"_index":1289,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["3.8/month",{"_index":4954,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["3.9",{"_index":7010,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["3.x",{"_index":2027,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["30",{"_index":1112,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["30.0",{"_index":5729,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["30.1",{"_index":5726,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["3000",{"_index":1959,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["31",{"_index":3011,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["31.0",{"_index":5731,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["31.1",{"_index":5728,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["32",{"_index":3015,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{}},"description":{}}],["32.0",{"_index":5733,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["32.1",{"_index":5730,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["321",{"_index":3454,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["3231",{"_index":6756,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["328",{"_index":3081,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["33",{"_index":2998,"title":{"/tracks/algorithms-101/leetcode/medium/33":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/33":{}}}],["33.0",{"_index":5735,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["33.1",{"_index":5732,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["3306",{"_index":1570,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["331",{"_index":6758,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["3322251",{"_index":3642,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["334",{"_index":3044,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["34",{"_index":2999,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["34.0",{"_index":5737,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["34.1",{"_index":5734,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["342",{"_index":3759,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["345",{"_index":3039,"title":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["34cd",{"_index":1841,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["35",{"_index":1581,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["35.0",{"_index":5739,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["35.1",{"_index":5736,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["36",{"_index":3000,"title":{"/tracks/algorithms-101/leetcode/medium/36":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/36":{}}}],["36.0",{"_index":5805,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["36.1",{"_index":5738,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{}},"description":{}}],["365",{"_index":1824,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["37",{"_index":3023,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["37.0",{"_index":5807,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["37.1",{"_index":5804,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["38",{"_index":3003,"title":{"/tracks/algorithms-101/leetcode/medium/38":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/38":{}}}],["38.0",{"_index":5809,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["38.1",{"_index":5806,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["39",{"_index":3096,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["39.0",{"_index":5811,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["39.1",{"_index":5808,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["392",{"_index":3050,"title":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["394",{"_index":3072,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["399",{"_index":3115,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["3sum",{"_index":2989,"title":{"/tracks/algorithms-101/leetcode/medium/15":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/medium/15":{}}}],["3x3",{"_index":3669,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["4",{"_index":108,"title":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["4\",\".\",\".\",\"8\",\".\",\"3\",\".\",\".\",\"1",{"_index":3662,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["4\",\"1\",\"9\",\".\",\".\",\"5",{"_index":3665,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["4,000",{"_index":1072,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["4,3,2,1",{"_index":4243,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4,3,2,2",{"_index":4244,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4,5",{"_index":3483,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["4.0",{"_index":6255,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["4.1",{"_index":4180,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["4.2",{"_index":4181,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["4.5",{"_index":5288,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["40",{"_index":3098,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["40.0",{"_index":5813,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["40.1",{"_index":5810,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["400",{"_index":2451,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["4000",{"_index":7126,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["4000:80",{"_index":7125,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["403",{"_index":1402,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["404",{"_index":1410,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["4096",{"_index":4648,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["41",{"_index":3100,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["41.0",{"_index":5815,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["41.1",{"_index":5812,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["42",{"_index":3102,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["42.0",{"_index":5817,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["42.1",{"_index":5814,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["43",{"_index":3105,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["43.0",{"_index":5819,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["43.1",{"_index":5816,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["4321",{"_index":4245,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4322",{"_index":4246,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["4324",{"_index":6757,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["435",{"_index":3168,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["437",{"_index":3090,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["44",{"_index":3108,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["44.0",{"_index":5821,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["44.1",{"_index":5818,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["443",{"_index":3047,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["45",{"_index":3111,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{}},"description":{}}],["45.0",{"_index":5823,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["45.1",{"_index":5820,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["450",{"_index":3103,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["46",{"_index":3004,"title":{"/tracks/algorithms-101/leetcode/medium/46":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/46":{}}}],["46.0",{"_index":5825,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["46.1",{"_index":5822,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["465",{"_index":3760,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["47",{"_index":3118,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["47.0",{"_index":5827,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["47.1",{"_index":5824,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["48",{"_index":3006,"title":{"/tracks/algorithms-101/leetcode/medium/48":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/posts/trading-indicators/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/48":{}}}],["48.0",{"_index":5829,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["48.1",{"_index":5826,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["484",{"_index":5089,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["49",{"_index":3007,"title":{"/tracks/algorithms-101/leetcode/medium/49":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/49":{}}}],["49.0",{"_index":5831,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["49.1",{"_index":5828,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["4922",{"_index":5516,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["4956",{"_index":5530,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["4kb",{"_index":1833,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["4xxerror",{"_index":2951,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["5",{"_index":245,"title":{"/tracks/algorithms-101/leetcode/medium/5":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{}}}],["5\",\"3\",\".\",\".\",\"7",{"_index":3658,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["5,1,9,11],[2,4,8,10],[13,3,6,7],[15,14,12,16",{"_index":3616,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["5,4",{"_index":3516,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["5,500",{"_index":1856,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["5,6,4",{"_index":3757,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["5,6,7,1,2,3,4",{"_index":3820,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["5,6,7,4,3,2,1",{"_index":3819,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["5,7,7,8,8,10",{"_index":3679,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["5.0",{"_index":6094,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["5.14",{"_index":7006,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.32",{"_index":7012,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["5.99",{"_index":1213,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["50",{"_index":12,"title":{"/tracks/algorithms-101/leetcode/medium/50":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/50":{}}}],["50,000",{"_index":1857,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["50.0",{"_index":5833,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["50.1",{"_index":5830,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["500",{"_index":1765,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["502",{"_index":1760,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["5022",{"_index":5520,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["503",{"_index":2417,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["504",{"_index":2179,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["51",{"_index":3131,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["51.0",{"_index":5835,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["51.1",{"_index":5832,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["512",{"_index":6518,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["5139",{"_index":5525,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5151",{"_index":5514,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5159",{"_index":5535,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["52",{"_index":3132,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{}},"description":{}}],["52.0",{"_index":5837,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["52.1",{"_index":5834,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["53",{"_index":101,"title":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/53":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/53":{}}}],["53.0",{"_index":5839,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["53.1",{"_index":5836,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["5306",{"_index":5523,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5307",{"_index":5534,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["5308",{"_index":5528,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["54",{"_index":3135,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["54.0",{"_index":5841,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["54.1",{"_index":5838,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["5432",{"_index":1568,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["547",{"_index":3109,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["55",{"_index":3016,"title":{"/tracks/algorithms-101/leetcode/medium/55":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/55":{}}}],["55.0",{"_index":5843,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["55.1",{"_index":5840,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["5500",{"_index":7174,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["56",{"_index":3018,"title":{"/tracks/algorithms-101/leetcode/medium/56":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/medium/56":{}}}],["56.1",{"_index":5842,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["56ef",{"_index":1842,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["57",{"_index":3142,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["5759e988",{"_index":1027,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["58",{"_index":3143,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["59",{"_index":3146,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["5gb",{"_index":1357,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["5tb",{"_index":1356,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["5th",{"_index":5666,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["5xxerror(serv",{"_index":2952,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["6",{"_index":390,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["6\",\".\",\".\",\".\",\".\",\"2\",\"8",{"_index":3664,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["6\",\".\",\".\",\"1\",\"9\",\"5",{"_index":3659,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["6,5,4,3,2,1",{"_index":4272,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["6.1",{"_index":6311,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["6.2",{"_index":6353,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["6.8under",{"_index":1662,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["60",{"_index":1123,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{}},"description":{}}],["600",{"_index":7071,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["605",{"_index":3037,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["61",{"_index":3149,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["62",{"_index":3019,"title":{"/tracks/algorithms-101/leetcode/medium/62":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{"/tracks/algorithms-101/leetcode/medium/62":{}}}],["63",{"_index":1342,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["64",{"_index":3155,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["64,000",{"_index":2456,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["643",{"_index":3053,"title":{"/tracks/algorithms-101/leetcode/easy/643":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/643":{}}}],["649",{"_index":3075,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["65",{"_index":3156,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["66",{"_index":2972,"title":{"/tracks/algorithms-101/leetcode/easy/66":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/66":{}}}],["67",{"_index":3160,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["68",{"_index":3161,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["69",{"_index":2973,"title":{"/tracks/algorithms-101/leetcode/easy/69":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/69":{}}}],["6th",{"_index":5708,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{}},"description":{}}],["7",{"_index":393,"title":{"/tracks/algorithms-101/leetcode/medium/7":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/7":{}}}],["7\",\".\",\".\",\".\",\"2\",\".\",\".\",\".\",\"6",{"_index":3663,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["7,0,8",{"_index":3758,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["7,2,8,1,9,5,10",{"_index":4208,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["7,4,1],[8,5,2],[9,6,3",{"_index":3615,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["7,6,5,4,3,2,1",{"_index":3818,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["7.0",{"_index":6093,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["70",{"_index":2975,"title":{"/tracks/algorithms-101/leetcode/easy/70":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/rsi":{}},"description":{"/tracks/algorithms-101/leetcode/easy/70":{}}}],["700",{"_index":3101,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["71",{"_index":3166,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["72",{"_index":3167,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["720/1000",{"_index":876,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["724",{"_index":3061,"title":{"/tracks/algorithms-101/leetcode/easy/724":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/724":{}}}],["73",{"_index":3021,"title":{"/tracks/algorithms-101/leetcode/medium/73":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{"/tracks/algorithms-101/leetcode/medium/73":{}}}],["735",{"_index":3069,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["74",{"_index":3172,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["75",{"_index":3022,"title":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/75":{}}}],["75/100",{"_index":880,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["754",{"_index":5277,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["77b9b82",{"_index":5498,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["78",{"_index":3024,"title":{"/tracks/algorithms-101/leetcode/medium/78":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{}},"description":{"/tracks/algorithms-101/leetcode/medium/78":{}}}],["8",{"_index":400,"title":{"/tracks/algorithms-101/leetcode/medium/8":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/8":{}}}],["8\",\".\",\".\",\".\",\"6\",\".\",\".\",\".\",\"3",{"_index":3661,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8\",\".\",\".\",\"7\",\"9",{"_index":3666,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8\",\"3\",\".\",\".\",\"7",{"_index":3667,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8'",{"_index":3668,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["8.0",{"_index":7013,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["8.345",{"_index":3717,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["80",{"_index":891,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/docker-commands/":{}},"description":{}}],["800",{"_index":4609,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["807",{"_index":3761,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["8080",{"_index":2663,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["80:80",{"_index":5605,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["841",{"_index":3106,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["849",{"_index":4790,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["849/1791",{"_index":4702,"title":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{},"description":{}}],["85",{"_index":3221,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["86",{"_index":6744,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["867",{"_index":4700,"title":{},"content":{},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}}}],["867/1822",{"_index":4686,"title":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"content":{},"description":{}}],["872",{"_index":3087,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["88",{"_index":2979,"title":{"/tracks/algorithms-101/leetcode/easy/88":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/easy/88":{}}}],["9",{"_index":412,"title":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["9\",\"8\",\".\",\".\",\".\",\".\",\"6",{"_index":3660,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["9.26100",{"_index":3527,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["9.5",{"_index":5652,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["90",{"_index":3222,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["900",{"_index":1742,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["900000000",{"_index":6390,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["933",{"_index":3074,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["94",{"_index":2980,"title":{"/tracks/algorithms-101/leetcode/easy/94":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{}}}],["95",{"_index":3220,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["960x540",{"_index":6628,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["99",{"_index":6740,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["99.9",{"_index":2479,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["994",{"_index":3123,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["9>>1",{"_index":4669,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["9✕10",{"_index":5279,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["_",{"_index":314,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["__",{"_index":683,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["_add(self",{"_index":3981,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["_build",{"_index":5019,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["_client",{"_index":5207,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["_cloudacademylab",{"_index":1919,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["_default",{"_index":6911,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_markup",{"_index":6912,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["_master_into",{"_index":2662,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["_max",{"_index":4053,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["_note:_th",{"_index":2824,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["_put_into",{"_index":1640,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["_remove(self",{"_index":3976,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["a'",{"_index":3600,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/python-snippets/":{}},"description":{}}],["a(n",{"_index":682,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["a(n)__",{"_index":36,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["a+b",{"_index":4621,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["a.next",{"_index":4295,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["a.obj",{"_index":7109,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["a.sort",{"_index":4787,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a.val",{"_index":4298,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["a/2^n",{"_index":5095,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["a/d",{"_index":5855,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["a2a",{"_index":1262,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["a2p",{"_index":1264,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["a=3",{"_index":6224,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["a[0",{"_index":4881,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["a[i",{"_index":4542,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["a[i:i+2",{"_index":4894,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["a[v.slice(0",{"_index":5160,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["a[x",{"_index":4766,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a_i",{"_index":4781,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a_max",{"_index":4880,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["a_set",{"_index":4746,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["a_{ij}b_{kl}=\\delta_{i}^{l",{"_index":6499,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["aa",{"_index":4345,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["aaaaa",{"_index":4728,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["aac",{"_index":6619,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["aarch64",{"_index":7015,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ab",{"_index":4346,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/other-snippets":{}},"description":{}}],["aba",{"_index":3537,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["abab",{"_index":4499,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["ababab",{"_index":4498,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["abandon",{"_index":7003,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abbccc",{"_index":3603,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["abbr",{"_index":6479,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["abbrevi",{"_index":2718,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/markdown-syntax/":{}},"description":{}}],["abc",{"_index":3693,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["abca",{"_index":4731,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcab",{"_index":4730,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcabc",{"_index":4737,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcabcbb",{"_index":3692,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["abcabcd",{"_index":4723,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcd",{"_index":4725,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abcddeef",{"_index":6251,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["abil",{"_index":1366,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/_index":{},"/posts/hugo-add-image-zoomin/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["abort",{"_index":5135,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["abov",{"_index":1169,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abs(a[0",{"_index":4756,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["abs(denomin",{"_index":3852,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["abs(dividend",{"_index":3726,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["abs(divisor",{"_index":3728,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["abs(n",{"_index":4420,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["abs(numer",{"_index":3853,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["absolut",{"_index":2791,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/atr":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["abstract",{"_index":4915,"title":{"/stories/004-trading-bot-refactor-orders":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/photos/midjourney/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["academi",{"_index":1428,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["acalla",{"_index":5257,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["acceler",{"_index":1419,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["accept",{"_index":1166,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["access",{"_index":240,"title":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/npm/cognito-token-observer/":{}}}],["accessdeni",{"_index":2852,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["accesstoken",{"_index":5211,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["accident",{"_index":2178,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["accommod",{"_index":2948,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["accomplish",{"_index":753,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["accord",{"_index":424,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["accordingli",{"_index":4071,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["account",{"_index":514,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["account_id",{"_index":1300,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["accounti",{"_index":1679,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["accumulation/distribut",{"_index":5854,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["accur",{"_index":4249,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/sma":{}},"description":{}}],["ach",{"_index":1418,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["achiev",{"_index":2478,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["acknowledg",{"_index":2844,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["acl",{"_index":1390,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["acm",{"_index":919,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["acodec",{"_index":5141,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["acquir",{"_index":7000,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["act",{"_index":2955,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["action",{"_index":163,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{}}}],["actions/checkout@v2",{"_index":5478,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["actionund",{"_index":2818,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["activ",{"_index":541,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["actual",{"_index":1498,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-snippets/":{}},"description":{}}],["ad",{"_index":221,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["ad\",\"ae\",\"af\",\"bd\",\"be\",\"bf\",\"cd\",\"ce\",\"cf",{"_index":3826,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["adam",{"_index":5165,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["adapt",{"_index":1925,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{}}],["add",{"_index":239,"title":{"/tracks/algorithms-101/leetcode/medium/2":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2":{},"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["add(1",{"_index":5292,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["add(5",{"_index":6209,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add(self",{"_index":4592,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["add(x",{"_index":6206,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add(y=6",{"_index":6210,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add/sync",{"_index":6586,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["add_10",{"_index":6241,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(3",{"_index":6243,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_10(i",{"_index":6250,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["add_edge(self",{"_index":3267,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["add_numbers(3",{"_index":5086,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["add_numbers(num1",{"_index":5083,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["addcopybuttontocodeblock",{"_index":5410,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["added/upd",{"_index":2367,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["adder",{"_index":6240,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["adder(i",{"_index":6239,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["addit",{"_index":1039,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["addperm",{"_index":2848,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["address",{"_index":399,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["addtwonumbers(self",{"_index":3762,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["addus",{"_index":6640,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["adf",{"_index":543,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["adher",{"_index":2842,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["adipis",{"_index":6423,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["adjac",{"_index":4040,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["adjust",{"_index":937,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["adjust=false).mean",{"_index":5745,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["adjustidx",{"_index":2588,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["admin",{"_index":2060,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/git-snippets":{}},"description":{}}],["administ",{"_index":1891,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["administr",{"_index":517,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["administratoraccess",{"_index":2084,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["adopt",{"_index":4102,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{},"/posts/python-docstring-templates":{}},"description":{}}],["advanc",{"_index":1882,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["advantag",{"_index":1374,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["advic",{"_index":2082,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["adx",{"_index":5844,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["ae",{"_index":1370,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["aeiouaeiou",{"_index":4455,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["affect",{"_index":2894,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/code-style":{}},"description":{}}],["affleck",{"_index":6377,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["afford",{"_index":4949,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["aforement",{"_index":3821,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["afterward",{"_index":2746,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/mac-setup-development/":{}},"description":{}}],["ag",{"_index":2137,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["again",{"_index":160,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["against",{"_index":1364,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["age(self",{"_index":6291,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.delet",{"_index":6293,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["age.sett",{"_index":6292,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["agent",{"_index":647,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["aggreg",{"_index":1608,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["aggress",{"_index":5493,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["agre",{"_index":6381,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ahead",{"_index":3176,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["ai",{"_index":2129,"title":{"/photos/midjourney/":{},"/photos/ai/":{}},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/mac-setup-development/":{},"/p/links":{}},"description":{"/photos/midjourney/":{},"/photos/ai/":{}}}],["ai/ml",{"_index":2142,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["aim",{"_index":3701,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["airflow",{"_index":1069,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["airship",{"_index":1268,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["aispl",{"_index":2102,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["ak",{"_index":2126,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["akeyless",{"_index":1818,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["alan",{"_index":617,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["alarm",{"_index":1284,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarm'",{"_index":2794,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarms>al",{"_index":2787,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarmst",{"_index":2819,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alarm—th",{"_index":2796,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["alb",{"_index":392,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["aldu",{"_index":6731,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["alert",{"_index":561,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["alert(\"i'm",{"_index":5309,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["algo",{"_index":3384,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["algorithm",{"_index":1887,"title":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/code-style":{}},"description":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/stories/001-rediscovering-backtracking-algo":{}}}],["algorithm/idea",{"_index":3375,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["algorithmica",{"_index":4604,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["alia",{"_index":1749,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["alias",{"_index":1750,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["alic",{"_index":552,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/markdown-syntax/":{}},"description":{}}],["align",{"_index":2086,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/markdown-syntax/":{}},"description":{}}],["aliquam",{"_index":6431,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["all(c",{"_index":4850,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["all_the_args(**kwarg",{"_index":6228,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(*arg",{"_index":6227,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(1",{"_index":6223,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(a=3",{"_index":6229,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["all_the_args(arg",{"_index":6220,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["alloc",{"_index":1728,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["allow",{"_index":247,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowj",{"_index":7053,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowsyntheticdefaultimport",{"_index":7056,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["allowtraff",{"_index":1763,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["alma",{"_index":5888,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["along",{"_index":868,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/trading-indicators/sma":{},"/posts/mac-setup-development/":{}},"description":{}}],["alongsid",{"_index":1953,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["alot",{"_index":2369,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["alow",{"_index":2394,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["alpha",{"_index":2956,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/markdown-syntax/":{}},"description":{}}],["alphabet",{"_index":4348,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["alphabet.index(lett",{"_index":4353,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["alphanumer",{"_index":2855,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["alreadi",{"_index":2096,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["alt",{"_index":1144,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/markdown-syntax/":{}},"description":{}}],["altalt",{"_index":1319,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["alter",{"_index":4136,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["altern",{"_index":1055,"title":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["although",{"_index":1350,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["altitud",{"_index":3060,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["alway",{"_index":1722,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["amazon",{"_index":23,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/apps/npm/cognito-token-observer/":{}}}],["amazon'",{"_index":4951,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["amazon/aw",{"_index":840,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["amazonec2readonlyaccess",{"_index":2072,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["amet",{"_index":6421,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ami",{"_index":624,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["amiid",{"_index":2901,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["amongst",{"_index":4388,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["amount",{"_index":762,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["amplifi",{"_index":907,"title":{"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["amplify.yml",{"_index":7177,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["amz",{"_index":1372,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["amzn",{"_index":1025,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["an",{"_index":3209,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["anaconda",{"_index":6528,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["anagram",{"_index":3008,"title":{"/tracks/algorithms-101/leetcode/medium/49":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{"/tracks/algorithms-101/leetcode/medium/49":{}}}],["analys",{"_index":2670,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["analysi",{"_index":556,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/trading-indicators/atr":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["analyt",{"_index":225,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["analytics_queue_url",{"_index":1224,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["analytics_queue_url=$(aw",{"_index":1218,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["analyz",{"_index":496,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["anamorph",{"_index":7205,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["ancestor",{"_index":3094,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/python-snippets/":{}},"description":{}}],["and",{"_index":4341,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["and/or",{"_index":1505,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-snippets/":{}},"description":{}}],["andaepu",{"_index":6454,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ander",{"_index":5297,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["angl",{"_index":6467,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["anim",{"_index":2597,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["animate=tru",{"_index":6935,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["annot",{"_index":1009,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["announc",{"_index":6999,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["annoy",{"_index":5311,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["anomali",{"_index":2657,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["anonym",{"_index":6244,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["anoth",{"_index":35,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["ans.append(",{"_index":3752,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["ans.append(interv",{"_index":3492,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["ans.valu",{"_index":3609,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["ans[tuple(count)].append(",{"_index":3608,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["answer",{"_index":69,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/p/links":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["answer[0",{"_index":4273,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["answer[1",{"_index":4274,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["ant",{"_index":1382,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["anyon",{"_index":1486,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["anyth",{"_index":633,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["anytim",{"_index":376,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["anywher",{"_index":1425,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["apach",{"_index":588,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["apart",{"_index":2026,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["api",{"_index":22,"title":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["api.mysite.com",{"_index":403,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["api.sharedtodos.com",{"_index":5222,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["apigateway",{"_index":5899,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["apiurl",{"_index":5209,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["app",{"_index":854,"title":{"/apps/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/apps/brewmate/":{}}}],["app(root",{"_index":6969,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["app.errorhandler(404",{"_index":6044,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.j",{"_index":2569,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["app.on('activ",{"_index":7083,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.on('window",{"_index":7079,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.pi",{"_index":5893,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.quit",{"_index":7082,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.register_error_handler(500",{"_index":6048,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.rout",{"_index":6030,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["app.tsx",{"_index":7043,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["app.whenready().then(createwindow",{"_index":7078,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["appclean",{"_index":6526,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["appconfig",{"_index":917,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["appear",{"_index":1258,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["append",{"_index":1515,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["appl",{"_index":1269,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["appli",{"_index":1136,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/bash-snippets":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["applic",{"_index":27,"title":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["application'",{"_index":2231,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["application.f",{"_index":2323,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["application/json",{"_index":6786,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["applications/components/aw",{"_index":1019,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["application’",{"_index":2111,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["applic­",{"_index":1068,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["applic­ation’",{"_index":2651,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["approach",{"_index":462,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["appropri",{"_index":2830,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["approv",{"_index":2644,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["approx",{"_index":6509,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["approxim",{"_index":1822,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["appspec",{"_index":2680,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["appspec.yml",{"_index":2570,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["appsync",{"_index":253,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["apt",{"_index":6611,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["ar",{"_index":4825,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar.count(2",{"_index":4898,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["ar[0",{"_index":4865,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar[i",{"_index":4827,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar[i+1",{"_index":4909,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["ar[idx",{"_index":4906,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["arbitrari",{"_index":1602,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["architect",{"_index":964,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["architectur",{"_index":251,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["archit­ectur",{"_index":2950,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["archiv",{"_index":1522,"title":{"/posts/archive/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["archive.tar",{"_index":7188,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["archive.tar.bz2",{"_index":7197,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["archive.tar.gz",{"_index":7192,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["area",{"_index":1545,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["areachart",{"_index":1704,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["arg",{"_index":5078,"title":{},"content":{"/posts/python-docstring-templates":{},"/posts/python-snippets/":{}},"description":{}}],["args/kwarg",{"_index":6226,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["argument",{"_index":531,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-snippets/":{}},"description":{}}],["aris",{"_index":6686,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["arithmet",{"_index":5282,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["arm",{"_index":1788,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/mac-setup-development/":{}},"description":{}}],["arm64",{"_index":6008,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["arn",{"_index":63,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["arn:aws:s3",{"_index":1912,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["arn:aws:s3:::your_bucket_nam",{"_index":2849,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["arnand",{"_index":1487,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["arnaud",{"_index":5886,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["around",{"_index":827,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/photos/midjourney/":{}},"description":{}}],["arr",{"_index":4421,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["arr[i",{"_index":4666,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["arrang",{"_index":4792,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["array",{"_index":1050,"title":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-convert-array-to-dict":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-convert-array-to-dict":{}}}],["array'",{"_index":3495,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["array.from(clon",{"_index":7106,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.from(obj",{"_index":7107,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.isarray(obj",{"_index":7103,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array.length",{"_index":5270,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["array.prototype.foreach",{"_index":7096,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["array[:mid",{"_index":3200,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["array[i",{"_index":3180,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{}},"description":{}}],["array[j",{"_index":3189,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{}},"description":{}}],["array[mid",{"_index":3201,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["arrayofanytyp",{"_index":5394,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["arriv",{"_index":1922,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/posts/python-snippets/":{}},"description":{}}],["arrow",{"_index":1688,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/js-snippets":{}},"description":{}}],["art",{"_index":7206,"title":{},"content":{"/photos/midjourney/":{},"/p/links":{}},"description":{}}],["artefact",{"_index":2688,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["articl",{"_index":6,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/disser/utils/text_2_short":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["artifact",{"_index":2398,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["artifactori",{"_index":2401,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["artifici",{"_index":2805,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ascend",{"_index":3690,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["asg",{"_index":2175,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["asid",{"_index":2710,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["ask",{"_index":298,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["aspect",{"_index":2224,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["assembl",{"_index":2687,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["assert",{"_index":4263,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/js-snippets":{}},"description":{}}],["asset",{"_index":2573,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["asset'",{"_index":5770,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["assign",{"_index":215,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["assist",{"_index":5798,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["associ",{"_index":145,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/docker-commands/":{}},"description":{}}],["assum",{"_index":1654,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["assume/analyze/draw",{"_index":2995,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["assumedroleus",{"_index":2532,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["assumerolewithsaml",{"_index":546,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["assumerolewithwebident",{"_index":548,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["asterisk",{"_index":3739,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["asteroid",{"_index":3070,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["asteroidcollision(asteroid",{"_index":4069,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["asymmetr",{"_index":1864,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["async",{"_index":4916,"title":{"/stories/004-trading-bot-refactor-orders":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{}},"description":{}}],["asynchron",{"_index":738,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["asyncio.create_task",{"_index":4941,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["athena",{"_index":747,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["atlassian",{"_index":2629,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["atoi",{"_index":3403,"title":{"/tracks/algorithms-101/leetcode/medium/8":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/8":{}}}],["atr",{"_index":5786,"title":{"/posts/trading-indicators/atr":{}},"content":{"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/atr":{}}}],["attach",{"_index":1332,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["attain",{"_index":3862,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["attempt",{"_index":1152,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["attribut",{"_index":1204,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["attributeerror",{"_index":6310,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["audienc",{"_index":5263,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["audio",{"_index":5131,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["audit",{"_index":745,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["aurora",{"_index":270,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["aut",{"_index":6432,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["auth0",{"_index":2529,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/js-snippets":{}},"description":{}}],["authent",{"_index":197,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{}},"description":{}}],["author",{"_index":920,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["authoris",{"_index":1812,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["authorship",{"_index":6461,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["auto",{"_index":714,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/git-snippets":{},"/posts/bash-snippets":{}},"description":{}}],["autom",{"_index":1062,"title":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["automat",{"_index":613,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["automa­t",{"_index":2153,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["autosc",{"_index":712,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["autoscal",{"_index":2196,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["autosuggest",{"_index":6656,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["avail",{"_index":642,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["averag",{"_index":1741,"title":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/macd":{}}}],["average(tr",{"_index":5791,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["avoid",{"_index":816,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["aw",{"_index":32,"title":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["await",{"_index":5226,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["awar",{"_index":1668,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-snippets/":{}},"description":{}}],["away",{"_index":519,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/atr":{}},"description":{}}],["awesom",{"_index":5865,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["awk",{"_index":7166,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["aws/lambda/cloudacademylab",{"_index":1676,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["aws/service/ami",{"_index":2903,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::cloudformation::init",{"_index":2892,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::ec2::inst",{"_index":2908,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::ec2::securitygroup",{"_index":2927,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::includ",{"_index":801,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["aws::region",{"_index":2920,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::ssm::parameter::valu",{"_index":2902,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws::stacknam",{"_index":2919,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["aws:km",{"_index":1915,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["aws_",{"_index":2960,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["aws_account_id.dkr.ecr.region.amazonaws.com",{"_index":2407,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["aws_account_id.dkr.ecr.region.amazonaws.com/hello",{"_index":2412,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["aws_proxi",{"_index":1745,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["aws_vpc_k8s_cni_externalsnat",{"_index":2203,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["awslambdabasicexecutionrol",{"_index":1737,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["awslambdadynamodbexecutionrol",{"_index":1757,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["awslambdavpcaccessexecutionrol",{"_index":1774,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["awstemplateformatvers",{"_index":2898,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["awsxraydaemonwriteaccess",{"_index":1738,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["axi",{"_index":1706,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["axio",{"_index":5205,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["axios.cr",{"_index":5215,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["axioserror.from",{"_index":5529,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["axiosinst",{"_index":5206,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["axiosprogressevent.ev",{"_index":5527,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["az",{"_index":660,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["azur",{"_index":1058,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["b",{"_index":61,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b'",{"_index":3601,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/python-snippets/":{}},"description":{}}],["b,c,e,f,w,t4,b9",{"_index":5028,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["b.obj",{"_index":7110,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["b.val",{"_index":4294,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["b3d92c5",{"_index":5496,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["b:a",{"_index":6620,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["b=4",{"_index":6225,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["b[0",{"_index":4890,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["b[i",{"_index":4884,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["b_set",{"_index":4748,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["bab",{"_index":3536,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["babad",{"_index":3535,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["back",{"_index":29,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["backbon",{"_index":560,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["backend",{"_index":258,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{}},"description":{}}],["backendurl",{"_index":5218,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["backendurl}/api/v1",{"_index":5223,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["background",{"_index":1261,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["background.j",{"_index":2594,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["backgroundcolor",{"_index":6738,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["backlight",{"_index":6472,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["backoff",{"_index":1860,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["backtick",{"_index":5360,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["backtrack",{"_index":2991,"title":{"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/stories/001-rediscovering-backtracking-algo":{}}}],["backtrack(0",{"_index":4035,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["backtrack([2",{"_index":3345,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(end",{"_index":4033,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["backtrack(first",{"_index":3346,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(i",{"_index":3349,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(num",{"_index":3336,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(nums[:i",{"_index":3341,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["backtrack(start",{"_index":4030,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["backup",{"_index":521,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["bad",{"_index":2243,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["badg",{"_index":7119,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["bag",{"_index":4862,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["bahai",{"_index":7216,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["balanc",{"_index":391,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}}}],["balancer'",{"_index":2246,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["balloon",{"_index":3170,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["bamboo",{"_index":2639,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["banana",{"_index":3141,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["band",{"_index":5776,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/bollinger_bands":{}}}],["bandwidth",{"_index":1416,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["bank",{"_index":6711,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["bar",{"_index":1145,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["bare",{"_index":2471,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["base",{"_index":211,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["base64",{"_index":2029,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["base64.b64decode(record['data",{"_index":2034,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["base=$(basenam",{"_index":5550,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["basedirectori",{"_index":7179,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["baselin",{"_index":300,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["basenam",{"_index":6784,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["baseof.html",{"_index":6909,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["baseurl",{"_index":5216,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["base}.ru.png",{"_index":5551,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["bash",{"_index":1948,"title":{"/posts/bash-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{"/posts/bash-snippets":{}}}],["basi",{"_index":672,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["basic",{"_index":975,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["basicali",{"_index":4567,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["basictex",{"_index":5105,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["bat",{"_index":6355,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bat\"],[\"nat\",\"tan\"],[\"ate\",\"eat\",\"tea",{"_index":3587,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["bat.init(self",{"_index":6374,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bat.pi",{"_index":6354,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batch",{"_index":467,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["batchelder’",{"_index":5008,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["batchgettrac",{"_index":1053,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["bati",{"_index":6356,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batman",{"_index":6364,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["batman(superhero",{"_index":6365,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["baz",{"_index":5401,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bb",{"_index":3539,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["bcabc",{"_index":4738,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["bd862e3f",{"_index":1028,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["be",{"_index":33,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["beamer",{"_index":1270,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["bean",{"_index":2280,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["beanstalk",{"_index":260,"title":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}}}],["bear",{"_index":3334,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bearer",{"_index":5213,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bearish",{"_index":5644,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["beastalk",{"_index":751,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["beauti",{"_index":4186,"title":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/leetcode/hard/2842/":{}}}],["becom",{"_index":330,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["beer",{"_index":6406,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["befor",{"_index":41,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["beforeallowtraff",{"_index":1762,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["beg",{"_index":6396,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["beg(target_funct",{"_index":6399,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["begin",{"_index":509,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["beginatzero",{"_index":6755,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["beginn",{"_index":4382,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["behalf",{"_index":2724,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["behav",{"_index":2288,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["behavior",{"_index":93,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["behind",{"_index":1635,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/macd":{}},"description":{}}],["belong",{"_index":2268,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["below",{"_index":406,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["beneath",{"_index":1917,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["benefit",{"_index":1650,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["bessi",{"_index":2622,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["bessie@cloudacademy.com",{"_index":2623,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["best",{"_index":206,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["bestcent",{"_index":3568,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["beta",{"_index":2957,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["better",{"_index":1087,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["between",{"_index":295,"title":{"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{}}}],["beyond",{"_index":2221,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["bf",{"_index":3095,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bfg",{"_index":5481,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["bfs(self",{"_index":3270,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bfs_tree(root",{"_index":3247,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["bia",{"_index":1541,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["bianca",{"_index":4864,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["bid",{"_index":2440,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["big",{"_index":2271,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["bigger",{"_index":5484,"title":{},"content":{"/posts/git-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["bighorriblealert",{"_index":5308,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["biker",{"_index":4485,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["bill",{"_index":2095,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["bin",{"_index":5448,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["bin.j",{"_index":5461,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["bin/bash",{"_index":2753,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["bin/sh",{"_index":5576,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["binanc",{"_index":4919,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["binanceord",{"_index":4925,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["binari",{"_index":2486,"title":{"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-bitwise-operators":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}}}],["binary_valu",{"_index":4855,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["binary_values.append(1",{"_index":4857,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["binary_values.append(v",{"_index":4860,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["bind",{"_index":7160,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["binomi",{"_index":4795,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["binpack",{"_index":2390,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["bisect",{"_index":4640,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bisect_left(num",{"_index":3688,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["bisect_right",{"_index":4644,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bisect_right(num",{"_index":3689,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["bit",{"_index":2743,"title":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{}}}],["bit(n",{"_index":4767,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["bitmap",{"_index":6482,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bitwis",{"_index":4323,"title":{"/posts/python-bitwise-operators":{}},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/python-bitwise-operators":{}}}],["black",{"_index":1154,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/bash-snippets":{}},"description":{}}],["blake2",{"_index":686,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["blame",{"_index":2708,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["blank",{"_index":2769,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["blind",{"_index":492,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["blob",{"_index":5487,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["block",{"_index":375,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/p/links":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["blockquot",{"_index":6449,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["blog",{"_index":982,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["blogs/no",{"_index":6579,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["blue",{"_index":1437,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["blue/green",{"_index":844,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["bluemix",{"_index":2384,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["blueprint",{"_index":651,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["bnbusdt",{"_index":6957,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["board",{"_index":3653,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["boardi",{"_index":3672,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["boardrow",{"_index":4044,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["boast(self",{"_index":6331,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bob",{"_index":6469,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["bobbi",{"_index":5323,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bodi",{"_index":774,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["body.classnam",{"_index":2590,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["boiler",{"_index":5331,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["boilerpl",{"_index":7036,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["bold",{"_index":6445,"title":{},"content":{"/posts/markdown-syntax/":{},"/photos/midjourney/":{}},"description":{}}],["bolling",{"_index":5775,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/bollinger_bands":{}}}],["book",{"_index":5788,"title":{},"content":{"/posts/trading-indicators/atr":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{},"/p/links":{},"/apps/_index":{}},"description":{}}],["book.pdf",{"_index":5130,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["bookmark",{"_index":6555,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["bool",{"_index":3500,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/python-snippets/":{}},"description":{}}],["bool(0",{"_index":6103,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(2",{"_index":6108,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(4",{"_index":6105,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(int",{"_index":6107,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bool(set",{"_index":6104,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["boolean",{"_index":5296,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["boost",{"_index":2190,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["bootstrap",{"_index":1735,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["bootstrappackag",{"_index":2937,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["border",{"_index":1544,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["bordercolor",{"_index":6751,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["borderwidth",{"_index":6752,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["bot",{"_index":4914,"title":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/git-snippets":{}},"description":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{}}}],["bot'",{"_index":4928,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["bot@noreply.github.com",{"_index":5480,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["both",{"_index":696,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["boto3",{"_index":1299,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["boto3.client('dynamodb",{"_index":2031,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["boto3.client('sts').get_caller_identity()[\"account",{"_index":1301,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["boto3.resource('s3",{"_index":1302,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["bottleneck",{"_index":494,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["bottom",{"_index":1164,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["bottom=2cm",{"_index":5119,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["bottommost",{"_index":4527,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["bounc",{"_index":5783,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["bound",{"_index":3317,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/python-snippets/":{}},"description":{}}],["boundari",{"_index":1980,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["box",{"_index":1476,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["boy",{"_index":4636,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["brace",{"_index":6116,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["braceless",{"_index":5321,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["bracket",{"_index":4079,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/markdown-syntax/":{}},"description":{}}],["branch",{"_index":2551,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{}},"description":{}}],["breach",{"_index":1472,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["bread",{"_index":1469,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["breadth",{"_index":3236,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["break",{"_index":1048,"title":{"/tracks/algorithms-101/leetcode/medium/139":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/139":{}}}],["breakout",{"_index":5801,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["brew",{"_index":5104,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["brewmat",{"_index":6529,"title":{"/apps/brewmate/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["bridg",{"_index":2714,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["brief",{"_index":939,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/sma":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["briefli",{"_index":1622,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["bring",{"_index":1613,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["broad",{"_index":1811,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["broadli",{"_index":6681,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["broken",{"_index":2642,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["broker",{"_index":6709,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{}}}],["brought",{"_index":2672,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["brows",{"_index":1433,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["browser",{"_index":1173,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["browser=non",{"_index":7087,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow",{"_index":7067,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["browserwindow.getallwindows().length",{"_index":7084,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["brute",{"_index":3540,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["bst",{"_index":3104,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["btcusd",{"_index":6956,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["bu",{"_index":1110,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["buck",{"_index":5020,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["bucket",{"_index":374,"title":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}}}],["bucket_arn",{"_index":1484,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["buddi",{"_index":6572,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["bufsiz",{"_index":4647,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bug",{"_index":5540,"title":{},"content":{"/posts/code-style":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["build",{"_index":283,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["build.gradl",{"_index":5040,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{}},"description":{}}],["build/index.html",{"_index":7076,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["build_tre",{"_index":4563,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(a",{"_index":4531,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["build_tree(array",{"_index":4526,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["builder",{"_index":7046,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["buildspec.yml",{"_index":2690,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["built",{"_index":524,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["bulb",{"_index":4848,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["bulletproof",{"_index":6324,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["bullish",{"_index":5643,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["bunch",{"_index":3361,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["bundl",{"_index":7037,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["burden",{"_index":2893,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["burger",{"_index":4809,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["burst",{"_index":2493,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["buse",{"_index":2152,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["busi",{"_index":575,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["businesswork",{"_index":2133,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["busine­ss",{"_index":1066,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["button",{"_index":363,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["button.addeventlistener('click",{"_index":6886,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["buy",{"_index":3157,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["byte",{"_index":4343,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["bytesio",{"_index":4642,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["bzip2",{"_index":7195,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["c",{"_index":1377,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["c'",{"_index":6129,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["c(3",{"_index":4800,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["c(n",{"_index":4797,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["c01",{"_index":850,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c02",{"_index":851,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["c1",{"_index":4478,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["c2",{"_index":4479,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["c:a",{"_index":6618,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["c:v",{"_index":6615,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["c_j",{"_index":4131,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["ca",{"_index":1513,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cabl",{"_index":1212,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["cach",{"_index":92,"title":{"/tracks/algorithms-101/leetcode/medium/146":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/bash-snippets":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/146":{}}}],["cachehitcount",{"_index":2953,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["calab",{"_index":1509,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["calabs.1",{"_index":1512,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["calcul",{"_index":1927,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["calculate_sum(self",{"_index":4546,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["call",{"_index":224,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{}},"description":{}}],["call(step",{"_index":3627,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["calm",{"_index":5794,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["camel",{"_index":2135,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["can",{"_index":1730,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["can't",{"_index":1285,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["can_fli",{"_index":6359,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=fals",{"_index":6375,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["can_fly=tru",{"_index":6357,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["canari",{"_index":845,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["canbeequal(self",{"_index":4466,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["cancel",{"_index":1898,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cancompletecircuit(self",{"_index":4016,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["candi",{"_index":3036,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}}}],["candid",{"_index":3329,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["canjump(self",{"_index":3499,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["cannnot",{"_index":5291,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["canplaceflowers(flowerb",{"_index":4449,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["canva",{"_index":6595,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["can’t",{"_index":1535,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["capabl",{"_index":1645,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["capac",{"_index":435,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["capit",{"_index":6100,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["cappuccino",{"_index":5389,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["caption",{"_index":4977,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["captur",{"_index":839,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/ema":{},"/posts/mac-setup-development/":{}},"description":{}}],["car",{"_index":5370,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["card",{"_index":1149,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["cardin",{"_index":2488,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["care",{"_index":1651,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["carefulli",{"_index":1159,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["carri",{"_index":2087,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["cascad",{"_index":3423,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["case",{"_index":671,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["cask",{"_index":5111,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{}}],["cast",{"_index":6106,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cat",{"_index":2887,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["catalina",{"_index":7241,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["catalog",{"_index":2879,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["catch",{"_index":2655,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["categor",{"_index":6682,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["categori",{"_index":1603,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["categoryand",{"_index":2538,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["caus",{"_index":419,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["cbbd",{"_index":3538,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["cci",{"_index":5648,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/_index":{}},"description":{}}],["cd",{"_index":2452,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["cdk",{"_index":867,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cdn",{"_index":2831,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["ce",{"_index":7136,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ceil",{"_index":6256,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cell",{"_index":3301,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/markdown-syntax/":{}},"description":{}}],["center",{"_index":961,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["cento",{"_index":5560,"title":{"/posts/vps-docker-subdomains-setup/":{}},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["centos:latest",{"_index":5580,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["central",{"_index":2054,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["centuri",{"_index":6724,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["certain",{"_index":894,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["certif",{"_index":918,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/apps/_index":{}},"description":{}}],["certifi",{"_index":847,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/posts/diploma/":{}}}],["certifi==2022.6.15",{"_index":6063,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["certif­",{"_index":1872,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["cf",{"_index":7189,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["cfn",{"_index":2890,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["cft",{"_index":2874,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["ch",{"_index":5619,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["chaikin",{"_index":5846,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["chain",{"_index":1029,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/posts/python-snippets/":{}},"description":{}}],["challeng",{"_index":3740,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["chanc",{"_index":2363,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["chand",{"_index":5863,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["chang",{"_index":157,"title":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}}}],["change/cr",{"_index":6765,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["changebutton",{"_index":2554,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["changelog.md",{"_index":5459,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["changemessagevis",{"_index":1117,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["changes.html",{"_index":724,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["changeset",{"_index":2870,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["channel",{"_index":1280,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/_index":{}},"description":{}}],["chao",{"_index":481,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["chapter",{"_index":2693,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["char",{"_index":3711,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["char(7",{"_index":2011,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["char.isdigit",{"_index":4085,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["char_comb",{"_index":4203,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["char_count",{"_index":4196,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["charact",{"_index":1343,"title":{"/tracks/algorithms-101/leetcode/medium/3":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{}}}],["characterist",{"_index":1974,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["charg",{"_index":1326,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["chars[writ",{"_index":4074,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["charset",{"_index":6064,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["chart",{"_index":1702,"title":{"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["chart.j",{"_index":6734,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{"/posts/hugo-shortcode-examples/chart":{}}}],["chart.png",{"_index":6971,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["chatgpt",{"_index":6566,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["cheaper",{"_index":2439,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["cheapest",{"_index":4786,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["cheat",{"_index":3174,"title":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{},"/posts/docker-commands/":{}},"description":{"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}}}],["cheatsheet",{"_index":5402,"title":{},"content":{"/posts/js-snippets":{}},"description":{"/posts/markdown-syntax/":{}}}],["check",{"_index":734,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/apps/cloud-exam-quizz/":{}}}],["check_neighbor",{"_index":4445,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["check_neighbors(n",{"_index":4450,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["checkbox",{"_index":1431,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["checker",{"_index":5029,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["checkout",{"_index":2668,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/git-snippets":{}},"description":{}}],["checkstrings(s1",{"_index":4114,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{}}],["checksum",{"_index":685,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["chees",{"_index":6478,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["cherri",{"_index":5501,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["child",{"_index":4564,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["children",{"_index":3335,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["children'",{"_index":4511,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["chmod",{"_index":2450,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["choic",{"_index":2069,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["choos",{"_index":68,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["choppi",{"_index":5681,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["chore",{"_index":5531,"title":{},"content":{"/posts/code-style":{},"/posts/bash-snippets":{}},"description":{}}],["chore(doc",{"_index":5532,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["chosen",{"_index":927,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["chrome",{"_index":6533,"title":{},"content":{"/posts/mac-setup-development/":{},"/p/links":{}},"description":{}}],["chrome://settings/searchengin",{"_index":6559,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["chunk",{"_index":4178,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["ci",{"_index":2634,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/algorithms-101/_index":{},"/posts/code-style":{}},"description":{}}],["ci/cd",{"_index":2637,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["cicd",{"_index":2692,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["cidr",{"_index":674,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cidrip",{"_index":2930,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["circleci",{"_index":2632,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/code-style":{}},"description":{}}],["circuit",{"_index":4013,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["circumv",{"_index":3743,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["citat",{"_index":6468,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["cite",{"_index":6451,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["citi",{"_index":3114,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["citizen",{"_index":5312,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["cjf",{"_index":7196,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["clariti",{"_index":4384,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["class",{"_index":2473,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/apps/_index":{}},"description":{}}],["class'",{"_index":6320,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["class(",{"_index":6315,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["classic",{"_index":409,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}}}],["classless",{"_index":677,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["classmethod",{"_index":6283,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["claus",{"_index":2025,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clb",{"_index":2161,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["clean",{"_index":1876,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["cleanup",{"_index":5504,"title":{},"content":{"/posts/git-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["clear",{"_index":2266,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/git-snippets":{},"/posts/trading-indicators/macd":{}},"description":{}}],["clearli",{"_index":2812,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cli",{"_index":124,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-publish-js-npm-project":{},"/posts/docker-commands/":{}},"description":{}}],["cli/serverless",{"_index":5997,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["click",{"_index":1148,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/hugo-add-image-zoomin/":{}}}],["click.json",{"_index":1947,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["click==7.1.2",{"_index":6066,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["click_interv",{"_index":1971,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["click_interval=2",{"_index":1967,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clickal",{"_index":2775,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["clickchoos",{"_index":1986,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clickingchoos",{"_index":2052,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["clickstream",{"_index":1607,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["client",{"_index":40,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{}}}],["client(accesstoken",{"_index":5248,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["client.t",{"_index":5204,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["clientid",{"_index":5259,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["climb",{"_index":2976,"title":{"/tracks/algorithms-101/leetcode/easy/70":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{"/tracks/algorithms-101/leetcode/easy/70":{}}}],["climbstairs(self",{"_index":4229,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["clip",{"_index":1461,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["clipboard",{"_index":2242,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/mac-setup-development/":{}},"description":{}}],["clockwis",{"_index":3613,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["clone",{"_index":758,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/posts/howto-create-deepclone-js/":{}}}],["clone.length",{"_index":7105,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["clone[key",{"_index":7099,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["close",{"_index":1447,"title":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1657":{}}}],["close[6",{"_index":5768,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["close[i",{"_index":5758,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["closed/open",{"_index":6144,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["closer",{"_index":1753,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["closestrings(word1",{"_index":3864,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["cloud",{"_index":17,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/trading-indicators/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/apps/cloud-exam-quizz/":{}}}],["cloud'",{"_index":1611,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["cloud9",{"_index":908,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudacademi",{"_index":928,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cloudacademy.bucket",{"_index":1511,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cloudacademy/lab",{"_index":2667,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["cloudacademybucket",{"_index":1510,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["cloudacademylab",{"_index":1186,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cloudbe",{"_index":2633,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["cloudflar",{"_index":1529,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["cloudfold",{"_index":1429,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"description":{}}],["cloudform",{"_index":58,"title":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}}}],["cloudformation:cancelupdatestack",{"_index":5900,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:continueupdaterollback",{"_index":5901,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:createchangeset",{"_index":5902,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:createstack",{"_index":5903,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:createuploadbucket",{"_index":5904,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:deletestack",{"_index":5905,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:describ",{"_index":5906,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:estimatetemplatecost",{"_index":5907,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:executechangeset",{"_index":5908,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:get",{"_index":5909,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:list",{"_index":5910,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:stack",{"_index":2872,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["cloudformation:updatestack",{"_index":5911,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:updateterminationprotect",{"_index":5912,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudformation:validatetempl",{"_index":5913,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cloudfront",{"_index":106,"title":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["cloudf­orm­",{"_index":2856,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["cloudhsm",{"_index":1836,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["cloudn",{"_index":1532,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["cloudshel",{"_index":909,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cloudtrail",{"_index":644,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["cloudwatch",{"_index":324,"title":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}}}],["cloudwatch'",{"_index":2745,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cloudwatchmonitoringscript",{"_index":2761,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cls.speci",{"_index":6285,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["cluster",{"_index":272,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/markdown-syntax/":{}},"description":{}}],["cluster/domain",{"_index":1649,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["clutter",{"_index":6589,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["cm",{"_index":4410,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["cmd",{"_index":5603,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["cmf",{"_index":5848,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["cmk",{"_index":764,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["cname",{"_index":757,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["code",{"_index":75,"title":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/bash-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/code-style":{},"/posts/bash-snippets":{}}}],["code'",{"_index":4966,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["code\\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\\nenabled=1\\ngpgcheck=1\\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc",{"_index":7030,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["code]\\nname=visu",{"_index":7029,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["code_debug",{"_index":4676,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["codeartifact",{"_index":910,"title":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{"/tracks/aws-certified-developer-associate/codeartifact/":{}}}],["codear­tifact",{"_index":2694,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["codeblock",{"_index":5411,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codeblock.innertext",{"_index":5420,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codeblock.parentnode.insertbefore(copybutton",{"_index":5423,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codeblocks.foreach(codeblock",{"_index":5413,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["codebuild",{"_index":911,"title":{"/tracks/aws-certified-developer-associate/codebuild/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["codecommit",{"_index":912,"title":{"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}}}],["codecommit.u",{"_index":2684,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["codedeploy",{"_index":143,"title":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["codedeploydefault.ecscanary10percent15minut",{"_index":835,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codedeploydefault.ecslinear10percentevery1",{"_index":838,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codedeploydefault.lambdacanary10percent15minut",{"_index":837,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codedeploydefault.lambdacanary10percent5minut",{"_index":836,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["codeforc",{"_index":4639,"title":{"/tracks/algorithms-101/codeforces/_index":{}},"content":{"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}}}],["codeguru",{"_index":913,"title":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["codeguru'",{"_index":2676,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["codenam",{"_index":6997,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["codenarc",{"_index":5039,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["codepipelin",{"_index":173,"title":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["codesect",{"_index":1626,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["codestar",{"_index":914,"title":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}}}],["codetocopi",{"_index":5419,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["coding/drawing/understand",{"_index":3383,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["coduguru",{"_index":2652,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["coeffici",{"_index":4796,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["cognito",{"_index":199,"title":{"/tracks/aws-certified-developer-associate/cognito/":{},"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cognito/":{},"/apps/npm/cognito-token-observer/":{}}}],["coin",{"_index":4780,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["col",{"_index":3316,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["cold",{"_index":1780,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["coll",{"_index":4048,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["colleagu",{"_index":2330,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["collect",{"_index":557,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/posts/bash-snippets":{}}}],["collections.count",{"_index":4685,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["collections.defaultdict(list",{"_index":3605,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["collid",{"_index":4068,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["collis",{"_index":3071,"title":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{}}}],["colloc",{"_index":2383,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["colon",{"_index":5543,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["color",{"_index":1711,"title":{"/tracks/algorithms-101/leetcode/medium/75":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/js-snippets":{},"/photos/midjourney/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/75":{}}}],["color.green",{"_index":5304,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["column",{"_index":1517,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/trading-indicators/macd":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{}}}],["columnsum",{"_index":3792,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["columntitl",{"_index":4347,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["comb(char_count[c",{"_index":4204,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["combin",{"_index":229,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["combination'",{"_index":4192,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["combinator",{"_index":3020,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["combinatori",{"_index":3326,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["come",{"_index":578,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["comma",{"_index":6162,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["command",{"_index":94,"title":{"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}}}],["comment",{"_index":248,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["commentblock",{"_index":6835,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["commentblock.appendchild(link",{"_index":6842,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["comments/cod",{"_index":3385,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["commit",{"_index":2438,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{}},"description":{}}],["commitid",{"_index":5502,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["committ",{"_index":2552,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["committil",{"_index":2601,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["commod",{"_index":5647,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{}}],["commodi",{"_index":6433,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["common",{"_index":999,"title":{"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["commonli",{"_index":2697,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["commun",{"_index":294,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-docstring-templates":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["commun­ica­t",{"_index":1265,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["compact",{"_index":4973,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["compani",{"_index":80,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["company’",{"_index":691,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["compar",{"_index":1327,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/js-snippets":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{}},"description":{}}],["comparedates(date1",{"_index":5193,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["comparedates(itema.d",{"_index":5202,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["comparison",{"_index":2143,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-snippets/":{}},"description":{"/posts/linux-interactive-non-interactive-users/":{}}}],["compass",{"_index":6538,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["compat",{"_index":1567,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["competit",{"_index":3369,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["compil",{"_index":2689,"title":{},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{},"/posts/js-snippets":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["compileropt",{"_index":7048,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["complet",{"_index":42,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["complex",{"_index":214,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["complianc",{"_index":619,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["compliant",{"_index":593,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/js-snippets":{}},"description":{}}],["compon",{"_index":1084,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["components/search",{"_index":6772,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["compos",{"_index":1077,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["compose.yml",{"_index":7151,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["composit",{"_index":2485,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["comprehend",{"_index":4963,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["comprehens",{"_index":884,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}}}],["compress",{"_index":3048,"title":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/posts/mac-setup-development/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/443/":{}}}],["compress(self",{"_index":4073,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["compris",{"_index":2289,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["comput",{"_index":404,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/aws-certified-developer-associate/fargate/":{}}}],["computation",{"_index":3983,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["con",{"_index":5636,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["concaten",{"_index":3640,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["conced",{"_index":4830,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["concept",{"_index":598,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/atr":{}},"description":{}}],["concern",{"_index":326,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["conclud",{"_index":2314,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["conclus",{"_index":6972,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["concurr",{"_index":319,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["condit",{"_index":309,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/docker-commands/":{}},"description":{}}],["config",{"_index":233,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/docker-commands/":{}},"description":{}}],["config.backend.url",{"_index":5219,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["config.backend.url.slice().replace(\"api.sharedtodos.com",{"_index":5221,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["config.t",{"_index":5249,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["config.yaml",{"_index":6779,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["config/codenarc/rules.groovi",{"_index":5044,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["configfil",{"_index":5042,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["configopt",{"_index":5250,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["configur",{"_index":142,"title":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["configureundersourc",{"_index":1983,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["confiqur",{"_index":1589,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["confirm",{"_index":1325,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["conform",{"_index":1161,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["conjunct",{"_index":713,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["connect",{"_index":320,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["connect(self",{"_index":4061,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["connect/switch",{"_index":6692,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["conquer",{"_index":3013,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["consectetur",{"_index":6422,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["consecut",{"_index":2225,"title":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["consequuntur",{"_index":6425,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["consid",{"_index":719,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{}},"description":{}}],["consider",{"_index":2229,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["consist",{"_index":96,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["consol",{"_index":347,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-snippets/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["console.error(state.messag",{"_index":5384,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.html",{"_index":52,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["console.log('load",{"_index":1803,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log(color[c",{"_index":5305,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.log(i",{"_index":5396,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.log(json.stringify(ev",{"_index":1806,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["console.log(state.valu",{"_index":5383,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console.log(v",{"_index":5395,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["console/termin",{"_index":6391,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["consolid",{"_index":871,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["const",{"_index":1807,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["constant",{"_index":3216,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["constantli",{"_index":579,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["constrain",{"_index":2476,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["constraint",{"_index":2727,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["construct",{"_index":2024,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}}}],["constructor",{"_index":5329,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["constructor(accesstoken",{"_index":5208,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["constructor(publ",{"_index":5348,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["constructor(x",{"_index":5333,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["consult",{"_index":970,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["consum",{"_index":380,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["contact",{"_index":457,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["contain",{"_index":478,"title":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["container",{"_index":2376,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["container'",{"_index":4164,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/docker-commands/":{}},"description":{}}],["container/clust",{"_index":2372,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["containers(ec",{"_index":2177,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["contai­n",{"_index":2120,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["content",{"_index":83,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["contest",{"_index":3025,"title":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}}}],["contest/solv",{"_index":3376,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["context",{"_index":1305,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/js-snippets":{}},"description":{}}],["contigu",{"_index":3876,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["continu",{"_index":1869,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["contract",{"_index":507,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["contradict",{"_index":4467,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["contrast",{"_index":2508,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["contribut",{"_index":968,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["contributor",{"_index":2617,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["contributor1",{"_index":2625,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["control",{"_index":241,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{}}}],["controlbox",{"_index":1671,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["controlsect",{"_index":1670,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["conveni",{"_index":1667,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["convent",{"_index":1339,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-snippets/":{}},"description":{}}],["convention",{"_index":1906,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["converg",{"_index":5714,"title":{"/posts/trading-indicators/macd":{}},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/macd":{}}}],["convers",{"_index":3641,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/other-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["convert",{"_index":530,"title":{"/posts/js-convert-array-to-dict":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/apps/_index":{}},"description":{"/posts/js-convert-array-to-dict":{}}}],["cook",{"_index":1800,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cook_sec",{"_index":1799,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["cookbook",{"_index":3370,"title":{},"content":{},"description":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{}}}],["cooki",{"_index":2164,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["cool",{"_index":2182,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["coordin",{"_index":1076,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["copado",{"_index":2636,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["copi",{"_index":1279,"title":{"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["copilot",{"_index":900,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["coppock",{"_index":5885,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["copybutton",{"_index":5414,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copybutton.addeventlistener('click",{"_index":5418,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copybutton.classlist.add('copi",{"_index":5416,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copybutton.innerhtml",{"_index":5417,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["copyrandomlist(self",{"_index":4148,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["cor",{"_index":1404,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["core",{"_index":1109,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["corner",{"_index":1192,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["corpor",{"_index":2388,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["correct",{"_index":410,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["correct_sum",{"_index":4360,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["correctli",{"_index":176,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["correspond",{"_index":255,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["corridor",{"_index":3292,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["corrupt",{"_index":680,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["cors(app",{"_index":6029,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cors==3.0.10",{"_index":6070,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["cost",{"_index":427,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["cost[i",{"_index":4023,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["costli",{"_index":4303,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["couldn't",{"_index":3312,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["count",{"_index":1700,"title":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/git-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}}}],["count'",{"_index":4072,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["count[ord(c",{"_index":3606,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["count\\text{count}count",{"_index":3598,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["count_minu",{"_index":4753,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["count_zero",{"_index":4754,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["countandsay(1",{"_index":3638,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(2",{"_index":3644,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(3",{"_index":3645,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(4",{"_index":3646,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(n",{"_index":3639,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["countandsay(self",{"_index":3647,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["counter",{"_index":3231,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["counter(",{"_index":4197,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["counter(word1",{"_index":3867,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter(word2",{"_index":3869,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter.get(num",{"_index":3233,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["counter1",{"_index":3866,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter2",{"_index":3868,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["counter[num",{"_index":3232,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["countksubsequenceswithmaxbeauty(self",{"_index":4195,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["coupl",{"_index":2007,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["cours",{"_index":932,"title":{"/posts/diploma/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{}},"description":{}}],["coursera",{"_index":960,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["coursera'",{"_index":954,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["courses(fre",{"_index":955,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["cover",{"_index":622,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/code-style":{},"/p/links":{}},"description":{}}],["coverag",{"_index":935,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["covert",{"_index":5097,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["cp",{"_index":4775,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["cph",{"_index":4683,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["cpu",{"_index":313,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cpualarm",{"_index":2821,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cpuutil",{"_index":2555,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cpuutilizationmetr",{"_index":2730,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["creat",{"_index":7,"title":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/disser/utils/text_2_short":{},"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["create\\_in\\_progress",{"_index":2943,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_adder(10",{"_index":6242,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_adder(x",{"_index":6238,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["create_complet",{"_index":1615,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_completestatu",{"_index":2939,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_failedstatu",{"_index":2941,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["create_record",{"_index":6039,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["createcachepolici",{"_index":105,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createdbclust",{"_index":1575,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["createglobalreplicationgroup",{"_index":103,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createindex",{"_index":6791,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["createindex(pages_cont",{"_index":6811,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["createlinkednode(valu",{"_index":3764,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["createreusabledelegationset",{"_index":99,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createstackset",{"_index":102,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["createtask(listid",{"_index":5236,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["createwindow",{"_index":7069,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["creation",{"_index":1119,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["creationd",{"_index":2516,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["creationpolici",{"_index":2921,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["creativ",{"_index":4961,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["creatur",{"_index":6493,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["credenti",{"_index":180,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["credential.help",{"_index":2562,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["credentials.csv",{"_index":2682,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["credentialssect",{"_index":2627,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["crf",{"_index":6617,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["criteria",{"_index":874,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["criterion",{"_index":878,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["critic",{"_index":1074,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["cri­tic",{"_index":1067,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["cron",{"_index":348,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{}},"description":{}}],["crontab",{"_index":2768,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["cross",{"_index":1389,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["crossov",{"_index":5752,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["crucial",{"_index":4094,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["crumb",{"_index":1470,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["cryptograph",{"_index":603,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["css",{"_index":6409,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["csv",{"_index":2075,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["ctrl+alt+delet",{"_index":6487,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ctrl+c",{"_index":2579,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ctrl+shift+p",{"_index":5032,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["cu",{"_index":6669,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["cuaderno",{"_index":5433,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["culmin",{"_index":2291,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["cumul",{"_index":1604,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{}},"description":{}}],["cur",{"_index":3414,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["cur.append(i",{"_index":3415,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["cur.extend(res[j",{"_index":3416,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["cur.next",{"_index":3772,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["cur.random",{"_index":4155,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["curat",{"_index":7218,"title":{},"content":{"/p/links":{}},"description":{}}],["curl",{"_index":5586,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{}},"description":{}}],["curr",{"_index":3347,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["curr.append(nums[i",{"_index":3356,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["curr.next",{"_index":3795,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["curr.pop",{"_index":3357,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["curr_divisor",{"_index":3733,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["curr_num",{"_index":4084,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["curr_str",{"_index":4083,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["current",{"_index":861,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["current+1",{"_index":4049,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["current.next",{"_index":3769,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["current[0",{"_index":3306,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["current[1",{"_index":3308,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["current_altitud",{"_index":4489,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["current_ga",{"_index":4020,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["current_partit",{"_index":4027,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["current_partition.append(substr",{"_index":4032,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["current_partition.pop",{"_index":4034,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["current_posit",{"_index":4026,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["currentsum",{"_index":3210,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["curv",{"_index":2382,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/posts/trading-indicators/_index":{},"/photos/midjourney/":{}},"description":{}}],["custom",{"_index":89,"title":{"/posts/howto-render-notebook-in-hugo":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/posts/howto-render-notebook-in-hugo":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["cut",{"_index":1253,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/docker-commands/":{}},"description":{}}],["cwl",{"_index":1694,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["cycl",{"_index":1379,"title":{"/tracks/algorithms-101/leetcode/easy/141":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/141":{}}}],["cyril",{"_index":5106,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["czf",{"_index":7193,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["d",{"_index":1254,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/bash-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["d1",{"_index":5196,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["d1.gettim",{"_index":5200,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["d2",{"_index":5198,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["d2.gettim",{"_index":5201,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["daemon",{"_index":842,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["daemon.config",{"_index":1046,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["daili",{"_index":1578,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["dairi",{"_index":6476,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dan",{"_index":689,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["danda",{"_index":6455,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dangl",{"_index":7133,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["dangling=tru",{"_index":7167,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["darwin",{"_index":7081,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dasboard",{"_index":2312,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dash",{"_index":6917,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash(nam",{"_index":6931,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash.depend",{"_index":6923,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash_html_compon",{"_index":6921,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash_thread",{"_index":6958,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dash_thread.start",{"_index":6960,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dashboard",{"_index":1716,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dashthread",{"_index":6924,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dashthread(self.data_list",{"_index":6959,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dashthread(threading.thread",{"_index":6926,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dat1",{"_index":577,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["data",{"_index":128,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}}}],["data.append('user_email",{"_index":5242,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["data.pl",{"_index":2765,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["data/ami",{"_index":799,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["data[start",{"_index":4554,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["data_item",{"_index":2035,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_item['session_id",{"_index":2038,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_item['session_tim",{"_index":2039,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_item['user_id",{"_index":2040,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["data_list",{"_index":6927,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["databas",{"_index":262,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["datadog",{"_index":1059,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["datafram",{"_index":5742,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["datapoint",{"_index":2784,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dataset",{"_index":824,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["datast",{"_index":2802,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["datatyp",{"_index":6092,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["data—th",{"_index":2797,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["date",{"_index":416,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["date().gethour",{"_index":2584,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["date().tolocaletimestr",{"_index":6895,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["date(...val).valueof",{"_index":5179,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date(date1",{"_index":5197,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date(date2",{"_index":5199,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date1",{"_index":5195,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["date2",{"_index":5194,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["datetim",{"_index":1298,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dateutil==2.8.2",{"_index":6080,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["day",{"_index":673,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/p/links":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["db",{"_index":271,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["db'",{"_index":2355,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["db_client",{"_index":6057,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["db_client[mongo_collection_db_nam",{"_index":6059,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dbm",{"_index":2501,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["dc",{"_index":3325,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["dcc",{"_index":6922,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dcc.graph(id=\"l",{"_index":6934,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dcc.interv",{"_index":6936,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["dd",{"_index":3591,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dd.get(s_sort",{"_index":3594,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["dd.valu",{"_index":3597,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["dd[s_sort",{"_index":3596,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["ddb_item",{"_index":2037,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["de",{"_index":2233,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["dead",{"_index":3296,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["deadlin",{"_index":4843,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["deal",{"_index":3720,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["debian",{"_index":6607,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["debiti",{"_index":6434,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["debug",{"_index":991,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{}}}],["debug/submit",{"_index":3398,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["debugg",{"_index":4967,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["dec",{"_index":3377,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["decid",{"_index":711,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/macd":{},"/posts/markdown-syntax/":{}},"description":{}}],["decigion",{"_index":3625,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["decim",{"_index":3725,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["decimal.append",{"_index":3856,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["decimal.append(str(remaind",{"_index":3860,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["decimal.insert(remainder_dict[remaind",{"_index":3855,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["decis",{"_index":995,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["declar",{"_index":2226,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["decod",{"_index":3073,"title":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/394/":{}}}],["decodestring(",{"_index":4082,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["decompos",{"_index":979,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/trading-indicators/atr":{}},"description":{}}],["decompress",{"_index":5522,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["decor",{"_index":6395,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["decoupl",{"_index":706,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["decreas",{"_index":1417,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["decrement",{"_index":3367,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["decrypt",{"_index":609,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["dedic",{"_index":1565,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["deep",{"_index":2691,"title":{"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/howto-create-deepclone-js/":{}}}],["deepclon",{"_index":7097,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(a",{"_index":7108,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deepclone(obj[key",{"_index":7102,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["deeper",{"_index":4997,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["deepl",{"_index":6530,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["def",{"_index":1303,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["default",{"_index":1038,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["default)\"),or",{"_index":2545,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["default=\"mongodb://localhost:27017",{"_index":6054,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["default=\"test",{"_index":6055,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["defaultdict",{"_index":3264,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["defaultdict(list",{"_index":3266,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["defin",{"_index":1010,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{}},"description":{}}],["definit",{"_index":652,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["deflat",{"_index":7187,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["degre",{"_index":3612,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["dek",{"_index":1834,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["del",{"_index":3974,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/python-snippets/":{}},"description":{}}],["delay",{"_index":784,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["delaysecond",{"_index":1118,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["deleg",{"_index":2064,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["delet",{"_index":140,"title":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["delete.html",{"_index":151,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["deletetask(listid",{"_index":5233,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["delimit",{"_index":6470,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["deliv",{"_index":454,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["deliveri",{"_index":84,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["deliveryfail",{"_index":2046,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["delta",{"_index":3304,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/markdown-syntax/":{}},"description":{}}],["delta[0",{"_index":3307,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["delta[1",{"_index":3309,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["demand",{"_index":1782,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["demo",{"_index":6871,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["demoapp.us.auth0.com",{"_index":5258,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["demonstr",{"_index":111,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["deni",{"_index":1395,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["denomin",{"_index":3840,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["denot",{"_index":4188,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-snippets/":{}},"description":{}}],["denyuploadifnotssekmsencrypt",{"_index":1910,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["depart",{"_index":2093,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["depend",{"_index":702,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dependabot",{"_index":5465,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["dependabot.yml",{"_index":5456,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["deploy",{"_index":116,"title":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["deploymentmethod",{"_index":6005,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["deploy­",{"_index":2677,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["deposit",{"_index":6708,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["depth",{"_index":2983,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/linux-interactive-non-interactive-users/":{}}}],["depth=0",{"_index":6643,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["depth=1",{"_index":5124,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["dequ",{"_index":3237,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque(",{"_index":4719,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque('123",{"_index":4717,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque(['1",{"_index":4718,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["deque([root",{"_index":3248,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["deque([start",{"_index":3271,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["deriv",{"_index":3331,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/js-snippets":{}},"description":{}}],["desc=\"mi",{"_index":6714,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["descend",{"_index":3219,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["describ",{"_index":1011,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["descript",{"_index":5,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["design",{"_index":246,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["designerg",{"_index":1623,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["desir",{"_index":2181,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["desktop",{"_index":1946,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["despit",{"_index":5606,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["destin",{"_index":1678,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["destination\\_sql\\_stream",{"_index":2023,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["destination_sql_stream",{"_index":2010,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["detach",{"_index":6874,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{}}],["detail",{"_index":153,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-docstring-templates":{},"/posts/code-style":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/howto-publish-js-npm-project":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["detect",{"_index":1582,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["determin",{"_index":1324,"title":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{},"/posts/howto-create-deepclone-js/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["detrend",{"_index":5866,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["dev",{"_index":2560,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dev/nul",{"_index":5133,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["devdepend",{"_index":5051,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["develop",{"_index":21,"title":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/posts/mac-setup-development/":{}}}],["developer'",{"_index":808,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["deviat",{"_index":5778,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{}}],["devic",{"_index":205,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["device_typ",{"_index":1945,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["devid",{"_index":3676,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["devis",{"_index":4960,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["devop",{"_index":1609,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["df",{"_index":3085,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/trading-indicators/macd":{},"/posts/docker-commands/":{}},"description":{}}],["df['close'].ewm(span=12",{"_index":5744,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['close'].ewm(span=26",{"_index":5747,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['ema12",{"_index":5743,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['ema26",{"_index":5746,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['macd",{"_index":5748,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['macd'].ewm(span=9",{"_index":5750,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["df['signal",{"_index":5749,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["dfs(0",{"_index":3420,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["dfs(current",{"_index":3300,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(i",{"_index":3419,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["dfs(l",{"_index":3751,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["dfs(matrix",{"_index":3315,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(n",{"_index":3753,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["dfs(neighbor",{"_index":3289,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(next_cel",{"_index":3311,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(root",{"_index":3283,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(root.left",{"_index":3285,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(root.right",{"_index":3286,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dfs(self",{"_index":4041,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["dfs(start",{"_index":3313,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["diagram",{"_index":962,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/p/links":{}},"description":{}}],["diagrams/block",{"_index":6735,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["dialog",{"_index":1475,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["diccionario",{"_index":3229,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dict",{"_index":3960,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/js-convert-array-to-dict":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["dict(counter(arr",{"_index":4427,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["dict[c",{"_index":4416,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["dict_count",{"_index":4424,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["dict_keys(['on",{"_index":6197,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dictat",{"_index":2287,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dictionari",{"_index":3848,"title":{"/posts/js-convert-array-to-dict":{}},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/posts/js-convert-array-to-dict":{}}}],["didn't",{"_index":2255,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/git-snippets":{}},"description":{}}],["diff",{"_index":3234,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["diff1",{"_index":4282,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["diff2",{"_index":4284,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["differ",{"_index":307,"title":{"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/tree-vs-trie-data-structures/":{}}}],["difficult",{"_index":325,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["difficulti",{"_index":2965,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["digest",{"_index":684,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["digit",{"_index":1813,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/markdown-syntax/":{},"/photos/midjourney/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{}}}],["digits[i",{"_index":4239,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["dimension",{"_index":3290,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["dip",{"_index":5709,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{}},"description":{}}],["dir",{"_index":5548,"title":{},"content":{"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["dir(math",{"_index":6263,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dir=\"/path/to/fold",{"_index":5547,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["direct",{"_index":1564,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["directli",{"_index":1776,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["directori",{"_index":189,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["directory'",{"_index":7124,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["disabl",{"_index":1466,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["disast",{"_index":662,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["discord",{"_index":6531,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["discount",{"_index":731,"title":{"/posts/interactivebrokers-deposit/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/posts/interactivebrokers-deposit/":{}},"description":{"/posts/interactivebrokers-deposit/":{}}}],["discourag",{"_index":336,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["discov",{"_index":1686,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/p/links":{}},"description":{}}],["discoveri",{"_index":1987,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["discret",{"_index":4793,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["discuss",{"_index":1458,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["disk",{"_index":1767,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["diskspaceutil",{"_index":2826,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["dispar",{"_index":2148,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["display",{"_index":732,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["display'",{"_index":2219,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["disrupt",{"_index":367,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dist",{"_index":5021,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{}},"description":{}}],["distanc",{"_index":3159,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["distinct",{"_index":2626,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["distinct_el",{"_index":4106,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["distinguish",{"_index":2482,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["distribut",{"_index":447,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["distribution'",{"_index":2853,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["distri­but",{"_index":1098,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["div",{"_index":4237,"title":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{"/tracks/algorithms-101/leetcode/easy/69":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["div=2",{"_index":4236,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["divblock",{"_index":6816,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["divblock.contains(event.target",{"_index":6818,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["divblock.setattribute('class",{"_index":6820,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["divblock.style.display",{"_index":6819,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["dive",{"_index":4134,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/tracks/algorithms-101/leetcode/easy/141":{},"/stories/004-trading-bot-refactor-orders":{}}}],["diverg",{"_index":5639,"title":{"/posts/trading-indicators/macd":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/macd":{}}}],["divid",{"_index":2997,"title":{"/tracks/algorithms-101/leetcode/medium/29":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/29":{}}}],["divide(self",{"_index":3730,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dividend",{"_index":3713,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["divis",{"_index":3117,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["division=chapt",{"_index":5126,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["divisor",{"_index":3033,"title":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["divmod(num",{"_index":4309,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["django",{"_index":2331,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["dmg",{"_index":7236,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["dn",{"_index":666,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["dnf",{"_index":7032,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["dnsmadeeasi",{"_index":1531,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["dnspython==2.2.1",{"_index":6067,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["do",{"_index":3368,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["doc",{"_index":863,"title":{"/tracks/archive/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/archive/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{},"/posts/archive/":{},"/p/links":{}},"description":{}}],["doc['titl",{"_index":6800,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["docker",{"_index":477,"title":{"/posts/docker-commands/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{"/posts/vps-docker-subdomains-setup/":{},"/posts/docker-commands/":{}}}],["dockerfil",{"_index":5537,"title":{},"content":{"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["dockerservlet",{"_index":2674,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["dockerservlet.java",{"_index":2675,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["docs.docker.com",{"_index":7170,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["docstr",{"_index":5072,"title":{"/posts/python-docstring-templates":{}},"content":{"/posts/python-docstring-templates":{}},"description":{"/posts/python-docstring-templates":{}}}],["document",{"_index":942,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.addeventlistener('mouseup",{"_index":6825,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createelement('a",{"_index":6837,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createelement('button",{"_index":5415,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["document.createelement('li",{"_index":6836,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createelement('ul",{"_index":6832,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.createtextnode(titl",{"_index":6839,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.getelementbyid(\"search",{"_index":6846,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.getelementbyid('root",{"_index":7066,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["document.getelementbyid('search",{"_index":6823,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["document.getelementsbytagname(\"body\")[0",{"_index":2585,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["document.queryselector('#button",{"_index":6885,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('#histori",{"_index":6892,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["document.queryselector('bodi",{"_index":5174,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["document.queryselector('head",{"_index":5171,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["document.queryselector('titl",{"_index":5172,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["document.queryselectorall('code[class^=\"languag",{"_index":5412,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["documentdb",{"_index":5892,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["documents.foreach(funct",{"_index":6798,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["doesn't",{"_index":1950,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/trading-indicators/sma":{}},"description":{}}],["dog\",\"racecar\",\"car",{"_index":4391,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["doll",{"_index":1128,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["dolor",{"_index":6419,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["dom",{"_index":7045,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["dom.iter",{"_index":7051,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["domain",{"_index":679,"title":{"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/js-snippets":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["domino",{"_index":3152,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["don't",{"_index":473,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["donchian",{"_index":5858,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["done",{"_index":340,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["don’t",{"_index":443,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["dostuff",{"_index":5272,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["dot",{"_index":2518,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/markdown-syntax/":{}},"description":{}}],["dota2",{"_index":3076,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["dotenv==0.20.0",{"_index":6081,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["doubl",{"_index":1294,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/apps/brewmate/":{}},"description":{}}],["double_numbers(iter",{"_index":6386,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["double_numbers(range(1",{"_index":6389,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["doublesub",{"_index":6567,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["doubli",{"_index":3941,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["down",{"_index":1049,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["download",{"_index":950,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["downloaded/cr",{"_index":7162,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["downstream",{"_index":379,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["downtim",{"_index":1250,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["downtrend",{"_index":5784,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["dp",{"_index":3144,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["dp[0",{"_index":4006,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[end",{"_index":4004,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[i",{"_index":4009,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[j",{"_index":4007,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dp[prev_substr_end_index",{"_index":4003,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["dpo",{"_index":5867,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["dr",{"_index":4045,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["drag",{"_index":1434,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/apps/brewmate/":{}},"description":{}}],["drain",{"_index":2118,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["draw",{"_index":3333,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["drift",{"_index":1271,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["drive",{"_index":1331,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["driven",{"_index":1088,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["driver",{"_index":7140,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["drop",{"_index":1181,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["dropdown",{"_index":1320,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["dryrun",{"_index":1740,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ds",{"_index":3727,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["ds_store",{"_index":5554,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["dss",{"_index":2059,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["dual",{"_index":6568,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["duck",{"_index":5189,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["due",{"_index":337,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["dummi",{"_index":3963,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["dummyhead",{"_index":3786,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["dummyhead.next",{"_index":3798,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["dun",{"_index":6330,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["dunder",{"_index":6271,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["duplic",{"_index":98,"title":{"/tracks/algorithms-101/leetcode/easy/26":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/26":{}}}],["durabl",{"_index":2341,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["durat",{"_index":1134,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["durationof",{"_index":2611,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["durations[i",{"_index":4697,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["dure",{"_index":203,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["dutch",{"_index":3359,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["duti",{"_index":6684,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["dv",{"_index":3738,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dva",{"_index":849,"title":{"/tracks/aws-certified-developer-associate/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["dvd",{"_index":3737,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["dyanmodb",{"_index":2053,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["dyanmodb'",{"_index":2523,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["dynam",{"_index":1278,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{}},"description":{}}],["dynamo",{"_index":428,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["dynamodb",{"_index":117,"title":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}}}],["dynamodb:createt",{"_index":5914,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:deletet",{"_index":5915,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:describet",{"_index":5916,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:describetimetol",{"_index":5917,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb:updatetimetol",{"_index":5918,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["dynamodb_cli",{"_index":2030,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["dynamodb_client.put_item(tablename=table_nam",{"_index":2041,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["dynamolambda",{"_index":1677,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["dynamolambdaconsolelink",{"_index":1621,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["e",{"_index":721,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["e','",{"_index":4457,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["e.g",{"_index":500,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["e203",{"_index":5022,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["e266",{"_index":5023,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["e501",{"_index":5024,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["each",{"_index":381,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-convert-array-to-dict":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["earlier",{"_index":1182,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["earn",{"_index":4845,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["eas",{"_index":112,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["easi",{"_index":281,"title":{"/tracks/algorithms-101/leetcode/easy/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["easier",{"_index":1081,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["easiest",{"_index":119,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["easili",{"_index":244,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["east",{"_index":2707,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["eat",{"_index":3140,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["eat\",\"tea\",\"tan\",\"ate\",\"nat\",\"bat",{"_index":3586,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["eb",{"_index":346,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ebextens",{"_index":354,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["ebs–optim",{"_index":2477,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["ec",{"_index":302,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["ec2",{"_index":169,"title":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{}}}],["ec2'",{"_index":2154,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ec2/non",{"_index":2835,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["ec2/on",{"_index":2679,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["ec2:attachinternetgateway",{"_index":5919,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:authorizesecuritygroupingress",{"_index":5920,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:creat",{"_index":1770,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ec2:createinternetgateway",{"_index":5921,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createnetworkacl",{"_index":5922,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createnetworkaclentri",{"_index":5923,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createroutet",{"_index":5924,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createsecuritygroup",{"_index":5925,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createsubnet",{"_index":5926,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createtag",{"_index":5927,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:createvpc",{"_index":5928,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:delet",{"_index":1773,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ec2:deleteinternetgateway",{"_index":5929,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletenetworkacl",{"_index":5930,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletenetworkaclentri",{"_index":5931,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deleteroutet",{"_index":5932,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletesecuritygroup",{"_index":5933,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletesubnet",{"_index":5934,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:deletevpc",{"_index":5935,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:describ",{"_index":5936,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:describenetworkinterfac",{"_index":1772,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["ec2:detachinternetgateway",{"_index":5937,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2:modifyvpcattribut",{"_index":5938,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ec2monitoringrol",{"_index":2749,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ecdsa==0.18.0",{"_index":6068,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["echo",{"_index":1236,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/other-snippets":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["eclips",{"_index":2328,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["ecommerc",{"_index":1591,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["ecr",{"_index":902,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["edg",{"_index":1420,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["edit",{"_index":759,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["editor",{"_index":1296,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["editor.codeactionsonsav",{"_index":5067,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["editor.defaultformatt",{"_index":5065,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["editor.formatonsav",{"_index":5064,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["editori",{"_index":3422,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["educ",{"_index":7231,"title":{"/homepage/education":{}},"content":{},"description":{}}],["ef",{"_index":370,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["efa",{"_index":2200,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["effect",{"_index":1396,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["effici",{"_index":345,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["effort",{"_index":1092,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["eg",{"_index":4668,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["egg",{"_index":5014,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["egress",{"_index":2833,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["eight",{"_index":1547,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["eighti",{"_index":2215,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["eiu",{"_index":6426,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["eject",{"_index":7085,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ek",{"_index":904,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["el",{"_index":3506,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["elaps",{"_index":833,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["elast",{"_index":259,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{}}}],["elasticach",{"_index":104,"title":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{"/tracks/aws-certified-developer-associate/elasticache/":{}}}],["elasticbeanstalk",{"_index":343,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["elasticsearch",{"_index":898,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["elasti­csearch",{"_index":1605,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["elb",{"_index":938,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["elb(elast",{"_index":2176,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["electron",{"_index":6726,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/posts/hugo-shortcode-examples/img":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["electron/main.t",{"_index":7040,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:build",{"_index":7091,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dev",{"_index":7086,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["electron:dist",{"_index":7092,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["element",{"_index":1203,"title":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["elementcontain",{"_index":5169,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["elementcontains(document.queryselector('bodi",{"_index":5173,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["elif",{"_index":3433,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-snippets/":{}},"description":{}}],["elig",{"_index":6351,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["elimin",{"_index":1100,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["elit",{"_index":6424,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["elliott",{"_index":5860,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["elsewher",{"_index":2739,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["elucid",{"_index":4129,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["ema",{"_index":5717,"title":{"/posts/trading-indicators/ema":{}},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/ema":{}}}],["ema'",{"_index":5760,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema(first",{"_index":5761,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema12",{"_index":5719,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["ema26",{"_index":5720,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["ema9",{"_index":5721,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["ema[5",{"_index":5766,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema[6",{"_index":5767,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["ema[i",{"_index":5757,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["email",{"_index":219,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["email/email",{"_index":1282,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["emb",{"_index":2867,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["embark",{"_index":4947,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["embed",{"_index":4971,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["embedurl",{"_index":5251,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["embrac",{"_index":4988,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["emerg",{"_index":6916,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["emili",{"_index":359,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["emit",{"_index":5316,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["emordnilap",{"_index":4631,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}}}],["emphas",{"_index":3380,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["emphasi",{"_index":6443,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["employ",{"_index":4468,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["empti",{"_index":1287,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["empty_dict",{"_index":6167,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["empty_set",{"_index":6185,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["emr",{"_index":586,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["en",{"_index":2963,"title":{},"content":{"/tracks/archive/":{},"/posts/archive/":{}},"description":{}}],["enabl",{"_index":218,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["enclos",{"_index":828,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["encod",{"_index":4075,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["encoded_str",{"_index":4077,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["encount",{"_index":1952,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["encourag",{"_index":4434,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["encrypt",{"_index":602,"title":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}}}],["encryption/decrypt",{"_index":1853,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["encryptionto",{"_index":1921,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["encryption”:”aes256",{"_index":1373,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["encryption”:”aws:km",{"_index":1376,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["end",{"_index":30,"title":{"/tracks/algorithms-101/leetcode/medium/19":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/algorithms-101/leetcode/medium/19":{}}}],["end_of_str",{"_index":5623,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["endi",{"_index":3474,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["endless",{"_index":4302,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["endlessli",{"_index":4301,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["endpoint",{"_index":268,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["endpoint'",{"_index":2959,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["enforc",{"_index":1905,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["engag",{"_index":6683,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["engin",{"_index":482,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["english",{"_index":3982,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["english/hebrew",{"_index":6520,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["enhanc",{"_index":1940,"title":{"/stories/004-trading-bot-refactor-orders":{}},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-docstring-templates":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["eni",{"_index":1764,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["enough",{"_index":2252,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{}},"description":{}}],["enrol",{"_index":956,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["ensur",{"_index":86,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["ensurerun",{"_index":2926,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["enter",{"_index":1147,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["enterpris",{"_index":545,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["entertain",{"_index":4692,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["entir",{"_index":2325,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/git-snippets":{},"/posts/trading-indicators/atr":{}},"description":{}}],["entiti",{"_index":2357,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["entranc",{"_index":3121,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["entri",{"_index":781,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["entrypoint",{"_index":892,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/docker-commands/":{}},"description":{}}],["enum",{"_index":4922,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{}},"description":{}}],["enumer",{"_index":4794,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{}},"description":{}}],["enumerate(",{"_index":4462,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["enumerate(ar",{"_index":4901,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["enumerate(maxextend",{"_index":3570,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["enumerate(num",{"_index":3511,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["enumerate(sorted_scor",{"_index":3226,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["env",{"_index":2604,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["env:mongo_collection_db_nam",{"_index":6016,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["env:mongo_connection_str",{"_index":6014,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["envelop",{"_index":1851,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["environ",{"_index":303,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["environments.yml",{"_index":5458,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["envsubst",{"_index":1965,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["epel",{"_index":5591,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["ephemer",{"_index":2738,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["epsilon",{"_index":6501,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["eq",{"_index":5138,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["equal",{"_index":2188,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}}}],["equalpairs(self",{"_index":4139,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["equat",{"_index":4629,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}}}],["equival",{"_index":2230,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["errichto:leetcod",{"_index":3573,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["error",{"_index":1017,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["error/index.html",{"_index":2846,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["error_stream",{"_index":2009,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["es",{"_index":936,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["es2023",{"_index":7049,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["es6",{"_index":5054,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["esbenp.pretti",{"_index":5066,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["eslint",{"_index":5049,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["eslint:recommend",{"_index":5055,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["eslintignor",{"_index":5452,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["eslintrc.json",{"_index":5052,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["esmoduleinterop",{"_index":7055,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["esnext",{"_index":7052,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["especi",{"_index":3816,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{}},"description":{}}],["espresso",{"_index":5388,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["essenti",{"_index":4135,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["establish",{"_index":299,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["estim",{"_index":4521,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["etc",{"_index":1594,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/code-style":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["etc/nginx",{"_index":5602,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/nginx/nginx.conf",{"_index":5600,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/passwd",{"_index":6701,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["etc/sudo",{"_index":7020,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["etc/yum.repos.d",{"_index":5581,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/yum.repos.d/cento",{"_index":5584,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["etc/yum.repos.d/vscode.repo",{"_index":7031,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ethusdt",{"_index":6955,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["etl",{"_index":1083,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["eu",{"_index":6006,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["euclidean",{"_index":4497,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["evalu",{"_index":3116,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/python-snippets/":{}},"description":{}}],["even",{"_index":632,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["even_s1",{"_index":4115,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["even_s2",{"_index":4119,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["evenli",{"_index":449,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["event",{"_index":228,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["event'records'['sn",{"_index":1306,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["event.data.fn.keyword",{"_index":1712,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["event.preventdefault",{"_index":6817,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["event.target.alt",{"_index":6897,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["event['record",{"_index":2033,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_nam",{"_index":1943,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_name=\"${events[random%${#ev",{"_index":1962,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_timestamp",{"_index":1942,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_timestamp=$(($(d",{"_index":1963,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["event_typ",{"_index":1944,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["eventbridg",{"_index":463,"title":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["eventb­ridg",{"_index":1141,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["events:deleterul",{"_index":5939,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:describerul",{"_index":5940,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:listrul",{"_index":5942,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:listrulenamesbytarget",{"_index":5941,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:listtargetsbyrul",{"_index":5943,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:putrul",{"_index":5944,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:puttarget",{"_index":5945,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events:removetarget",{"_index":5946,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["events=(checkout",{"_index":1957,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["eventsform",{"_index":1689,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["eventssearch",{"_index":1641,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["eventu",{"_index":1411,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["everybodi",{"_index":4626,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["everyday",{"_index":2061,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["everyon",{"_index":1156,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["everyth",{"_index":2113,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["everythin",{"_index":6667,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["everytim",{"_index":2368,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["evict",{"_index":3940,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["ex",{"_index":1023,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["exact",{"_index":282,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["exactli",{"_index":1095,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["exam",{"_index":15,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/apps/cloud-exam-quizz/":{}}}],["examin",{"_index":978,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{}},"description":{}}],["exampl",{"_index":929,"title":{"/posts/hugo-shortcode-examples/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/p/links":{}},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["example.com",{"_index":5153,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["exce",{"_index":1744,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["excel",{"_index":2717,"title":{"/tracks/algorithms-101/leetcode/easy/171":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/171":{}}}],["except",{"_index":755,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["exceptiontyp",{"_index":5080,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["excerpt",{"_index":2719,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["excess",{"_index":1127,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["exchang",{"_index":4921,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["exchanges.bin",{"_index":4926,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["exclam",{"_index":4801,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["exclud",{"_index":3913,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["exclus",{"_index":4596,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["exec",{"_index":3388,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/posts/docker-commands/":{}},"description":{}}],["execut",{"_index":238,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["exhaust",{"_index":3863,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["exist",{"_index":508,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["exist.add(z",{"_index":3677,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["existedex",{"_index":1409,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["exit",{"_index":1454,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/other-snippets":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["expand",{"_index":973,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/python-snippets/":{}},"description":{}}],["expect",{"_index":779,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/python-snippets/":{}},"description":{}}],["expectednum",{"_index":4261,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["expectednums.length",{"_index":4264,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["expend",{"_index":2354,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["expens",{"_index":2495,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["experi",{"_index":498,"title":{"/homepage/experience":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["expert",{"_index":966,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["expir",{"_index":1878,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/git-snippets":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["expire=now",{"_index":5490,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["expl",{"_index":3610,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["explain",{"_index":658,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["explan",{"_index":49,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-docstring-templates":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["explanatori",{"_index":2257,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["explicit",{"_index":1894,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-snippets":{}},"description":{}}],["explicitli",{"_index":1478,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["explod",{"_index":4067,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["explor",{"_index":1697,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["explos",{"_index":7210,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["expo",{"_index":1272,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["expon",{"_index":4232,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["exponenti",{"_index":1859,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/ema":{}},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}}}],["export",{"_index":1835,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["exports.handl",{"_index":1804,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["expos",{"_index":830,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["express",{"_index":739,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{}},"description":{}}],["express.j",{"_index":2541,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["express.jsproject",{"_index":2540,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ext",{"_index":6979,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["extend",{"_index":2141,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["extens",{"_index":352,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-rename-files-in-python/":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{}},"description":{}}],["extern",{"_index":335,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/code-style":{}},"description":{}}],["extra",{"_index":885,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/docker-commands/":{}},"description":{}}],["extracandi",{"_index":4377,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["extract",{"_index":1082,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["extrem",{"_index":4176,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["f",{"_index":1255,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["f\"she",{"_index":6115,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f\"{f.stem}_new{f.suffix",{"_index":6985,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f\"{name",{"_index":6117,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["f\"{name}_new{ext",{"_index":6981,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f('ab",{"_index":4734,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f('abc",{"_index":4732,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f('abca",{"_index":4733,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f('b",{"_index":4735,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["f(c",{"_index":4187,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["f.rename(new_nam",{"_index":6986,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["f1",{"_index":5317,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f2",{"_index":5318,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f3",{"_index":5319,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f4",{"_index":5320,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f401",{"_index":5027,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["f403",{"_index":5026,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["f5",{"_index":5322,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["f=\"name=\"exampl",{"_index":7163,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["fabric",{"_index":2199,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["face",{"_index":4983,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["facebook",{"_index":2526,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["fact",{"_index":4823,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/python-snippets/":{}},"description":{}}],["factor",{"_index":196,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["factori",{"_index":2346,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["fail",{"_index":889,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["failov",{"_index":667,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["failur",{"_index":332,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["fall",{"_index":4729,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["fals",{"_index":2608,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["famili",{"_index":2171,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["familiar",{"_index":2258,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["fan",{"_index":1142,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}}}],["fantast",{"_index":5427,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["faq",{"_index":1933,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/apps/brewmate/":{}},"description":{}}],["far",{"_index":3294,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["fargat",{"_index":471,"title":{"/tracks/aws-certified-developer-associate/fargate/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["farther",{"_index":1625,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["fast",{"_index":1601,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["fast.next",{"_index":3926,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["fast.next.next",{"_index":3928,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["faster",{"_index":822,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["fastest",{"_index":6571,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["fat",{"_index":5313,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["fault",{"_index":504,"title":{"/tracks/aws-certified-developer-associate/fis/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["favor",{"_index":2183,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["fc",{"_index":5108,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["fcm",{"_index":1274,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["fd",{"_index":5509,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["feasibl",{"_index":3330,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["feat",{"_index":5539,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["feat(export",{"_index":5512,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["featur",{"_index":452,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["feb",{"_index":893,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["februari",{"_index":858,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["feder",{"_index":542,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["fee",{"_index":1827,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["feed",{"_index":4688,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["feedback",{"_index":250,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["feel",{"_index":1518,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["feeper",{"_index":1829,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["fenwick",{"_index":4590,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["fenwicktre",{"_index":4765,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["fepend",{"_index":6857,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["fetch",{"_index":2696,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/apps/_index":{}},"description":{}}],["fetch/xhr",{"_index":6556,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["few",{"_index":110,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{}}}],["ffmpeg",{"_index":5132,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["fi",{"_index":1973,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/posts/other-snippets":{},"/posts/bash-snippets":{}},"description":{}}],["fibonacci",{"_index":4228,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{},"/posts/trading-indicators/_index":{}},"description":{}}],["field",{"_index":183,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["fifo",{"_index":1093,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["fifteen",{"_index":1977,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["fig",{"_index":6950,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["fig.update_xaxes(range=[max(0",{"_index":6952,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["figma",{"_index":6532,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["figur",{"_index":4508,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["file",{"_index":351,"title":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/bash-snippets":{},"/posts/howto-rename-files-in-python/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["file'",{"_index":4976,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["file('config/codenarc/rules.groovi",{"_index":5043,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["file://${path.join(__dirnam",{"_index":7075,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["file_name.mp3",{"_index":5144,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["file_name=\"${video_fil",{"_index":5139,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["filenam",{"_index":5546,"title":{},"content":{"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["files/fold",{"_index":1494,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/posts/docker-commands/":{}},"description":{}}],["filesystem",{"_index":2779,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/docker-commands/":{}},"description":{}}],["filippov",{"_index":4690,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["fill",{"_index":181,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/python-snippets/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["filled_dict",{"_index":6168,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"four",{"_index":6179,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.get(\"on",{"_index":6178,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.setdefault(\"f",{"_index":6181,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict.update({\"four\":4",{"_index":6183,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"f",{"_index":6182,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"four",{"_index":6177,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_dict[\"on",{"_index":6173,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set",{"_index":6191,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filled_set.add(5",{"_index":6192,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["filter",{"_index":1020,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["filter(text",{"_index":6906,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["final",{"_index":2294,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["financ",{"_index":2092,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["financi",{"_index":6914,"title":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["find",{"_index":11,"title":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}}}],["find_target",{"_index":3687,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["find_target(num",{"_index":3205,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["finddifference(nums1",{"_index":4279,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["findmaxaverage(num",{"_index":4252,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["fine",{"_index":668,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["finer",{"_index":1391,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["finish",{"_index":1183,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["finit",{"_index":3846,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["fip",{"_index":1844,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["firebas",{"_index":1273,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["firefox",{"_index":6590,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["firehos",{"_index":590,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["firm",{"_index":2079,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["first",{"_index":70,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["first_col_has_zero",{"_index":3444,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["first_row_has_zero",{"_index":3442,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["firstnumb",{"_index":5293,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["fit",{"_index":2654,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["five",{"_index":792,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["fix",{"_index":1037,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["fix(cancellederror",{"_index":5515,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fix(gener",{"_index":5517,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fix(head",{"_index":5521,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fix(webwork",{"_index":5524,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["fl",{"_index":4390,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["flag",{"_index":2713,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["flake8",{"_index":5001,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["flash",{"_index":2838,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["flask",{"_index":6017,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["flask(nam",{"_index":6028,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["flask+api",{"_index":5889,"title":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"content":{},"description":{}}],["flask==1.1.4",{"_index":6069,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["flask_cor",{"_index":6023,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["flexibl",{"_index":275,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["fli",{"_index":6384,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["flickr",{"_index":7208,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["flight",{"_index":695,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["flink",{"_index":1924,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["flip",{"_index":3163,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["float",{"_index":3533,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/img":{},"/photos/midjourney/":{}},"description":{}}],["float('inf",{"_index":4089,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{}}],["float=\"left",{"_index":5091,"title":{},"content":{"/posts/python-bitwise-operators":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["float=\"right",{"_index":5094,"title":{},"content":{"/posts/python-bitwise-operators":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["flood",{"_index":704,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["floor",{"_index":2347,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{}},"description":{}}],["flop",{"_index":4619,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["flow",{"_index":992,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["flowchart",{"_index":1444,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["flower",{"_index":3038,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["flower\",\"flow\",\"flight",{"_index":4389,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["flowerb",{"_index":4442,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["flowerbed[i",{"_index":4446,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["flowerbed[i+1",{"_index":4448,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{}}],["floyd",{"_index":4304,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["floyd'",{"_index":4383,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["fluctuat",{"_index":5668,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["fn",{"_index":1629,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["fn::base64",{"_index":2915,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["fn::getatt",{"_index":73,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["fn:findinmap",{"_index":2876,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["fo",{"_index":6781,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["focu",{"_index":475,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["focus",{"_index":743,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["folder",{"_index":355,"title":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/other-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}}}],["folders/fil",{"_index":6601,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["follow",{"_index":369,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["font",{"_index":5107,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["foo",{"_index":5398,"title":{},"content":{"/posts/js-snippets":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["foo.bar",{"_index":5399,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["foo.baz",{"_index":5400,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["foobar",{"_index":1631,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["food",{"_index":451,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["foot",{"_index":6217,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["footbal",{"_index":4633,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}}}],["footer",{"_index":6450,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["for..in",{"_index":5397,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["for..of",{"_index":5393,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["forbidden",{"_index":1403,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["forc",{"_index":1398,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["forceconsistentcasinginfilenam",{"_index":7057,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["foreground",{"_index":5579,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["foreign",{"_index":2500,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["forev",{"_index":4372,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["forex",{"_index":5780,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["forgetloggedinus",{"_index":5229,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["forgotten",{"_index":4959,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["form",{"_index":727,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/photos/midjourney/":{}},"description":{}}],["form.addeventlistener(\"submit",{"_index":6847,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["formal",{"_index":4258,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["format",{"_index":1202,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["format(msg",{"_index":6403,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["format(x",{"_index":6208,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["formatt",{"_index":4999,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/mac-setup-development/":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["formdata",{"_index":5241,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["former",{"_index":1659,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["formerli",{"_index":2374,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["formula",{"_index":3637,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/apps/_index":{}},"description":{}}],["forth",{"_index":5774,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["forum",{"_index":2512,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["forward",{"_index":408,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["found",{"_index":511,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-docstring-templates":{},"/posts/other-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/docker-commands/":{}},"description":{}}],["foundri",{"_index":2128,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["four",{"_index":191,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["fractal",{"_index":5872,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["fraction",{"_index":3716,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["fractiontodecimal(self",{"_index":3849,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["frac{n}{2",{"_index":4522,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{4",{"_index":4523,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frac{n}{8",{"_index":4524,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["frama",{"_index":5873,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["frame",{"_index":7226,"title":{},"content":{"/p/links":{}},"description":{}}],["framework",{"_index":2542,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["frameworkvers",{"_index":6000,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["free",{"_index":931,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-install-rhel-9-free/":{},"/p/links":{},"/apps/brewmate/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["freecodecamp",{"_index":930,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["freez",{"_index":6674,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["frequenc",{"_index":2744,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["frequent",{"_index":709,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["fresh",{"_index":1492,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["friendli",{"_index":1837,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["frill",{"_index":2348,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["from=$(nvm",{"_index":6642,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["from=markdown",{"_index":5128,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["from_binance_ord",{"_index":4920,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["from_binance_order(binance_ord",{"_index":4924,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["frompend",{"_index":2773,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["fromport",{"_index":2931,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["front",{"_index":790,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["frontend",{"_index":288,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["fruit",{"_index":4798,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["fsck",{"_index":5507,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["fssl",{"_index":6524,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["fulfil",{"_index":1008,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["full",{"_index":1346,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/git-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["fulli",{"_index":1090,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["func",{"_index":4553,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["function",{"_index":48,"title":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["function'",{"_index":1734,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["function(",{"_index":3407,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["function(ev",{"_index":1805,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["function_name(param1",{"_index":5073,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["function_name(param1_valu",{"_index":5081,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["functionfollow",{"_index":2051,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["functool",{"_index":6398,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["fundament",{"_index":2722,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["further",{"_index":2207,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["furthest",{"_index":2807,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["futur",{"_index":1244,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["g",{"_index":3277,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{}},"description":{}}],["g.add_edge(0",{"_index":3278,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.add_edge(1",{"_index":3279,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.add_edge(2",{"_index":3280,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.add_edge(3",{"_index":3281,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.bfs(2",{"_index":3282,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["g.square(10",{"_index":5352,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["g1",{"_index":4777,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["g2",{"_index":4704,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["ga",{"_index":4011,"title":{"/tracks/algorithms-101/leetcode/medium/134":{}},"content":{"/tracks/algorithms-101/leetcode/medium/134":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/134":{}}}],["gain",{"_index":1021,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["gain[i",{"_index":4488,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["galley",{"_index":6720,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["game",{"_index":2119,"title":{"/tracks/algorithms-101/leetcode/medium/55":{}},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/leetcode/medium/55":{}}}],["gamma",{"_index":6500,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["gann",{"_index":5859,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["gap",{"_index":1978,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["garbag",{"_index":1729,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["garden",{"_index":7217,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["garland",{"_index":4608,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}}}],["gas[i",{"_index":4022,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["gatewav",{"_index":1560,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["gateway",{"_index":24,"title":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["gateway+lambda+mongodb",{"_index":5890,"title":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"content":{},"description":{}}],["gather",{"_index":1018,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["gato",{"_index":7203,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["gaug",{"_index":5779,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["gb",{"_index":6517,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["gc",{"_index":5491,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["gcc",{"_index":7011,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["gcd",{"_index":4493,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcd(a",{"_index":4503,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcd(len(str1",{"_index":4505,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcdofstr",{"_index":4507,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gcdofstrings(self",{"_index":4502,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["gen_to_list",{"_index":6392,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gener",{"_index":8,"title":{"/tracks/algorithms-101/leetcode/medium/22":{},"/photos/midjourney/":{},"/photos/ai/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/p/links":{}},"description":{"/tracks/disser/utils/text_2_short":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/photos/midjourney/":{},"/photos/ai/":{}}}],["generate_prices(self",{"_index":6964,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["generatedatakey",{"_index":1852,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["generateparenthesis(self",{"_index":3750,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["geograph",{"_index":1543,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["geoloc",{"_index":1537,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["geometri",{"_index":4624,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{}},"description":{}}],["geometry.square(5",{"_index":5351,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["geometry:\"top=1cm",{"_index":5118,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["geoproxim",{"_index":1538,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["georg",{"_index":5630,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["geq",{"_index":6510,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["get",{"_index":1710,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["get(key",{"_index":3938,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["get(self",{"_index":3950,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["get/put",{"_index":3943,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["get_child(head",{"_index":4211,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_child(head.left",{"_index":4212,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_child(head.right",{"_index":4214,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_child(root",{"_index":4215,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["get_neighbors(root",{"_index":3287,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["get_next(get_next(fast",{"_index":4312,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_next(n",{"_index":4310,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_next(num",{"_index":4308,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_next(slow",{"_index":4311,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["get_species(cl",{"_index":6284,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["get_user(user_id",{"_index":6032,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["getatt",{"_index":2935,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["getatt.html",{"_index":78,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["getattr",{"_index":6339,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["getbaseurl",{"_index":5145,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getbaseurl('http://url.com/page?name=adam&surname=smith",{"_index":5147,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getcallerident",{"_index":549,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["getclient",{"_index":5247,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getfederationtoken",{"_index":547,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["getintersectionnode(self",{"_index":4363,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["getloggedinus",{"_index":5224,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getmetricdata",{"_index":646,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["getobject",{"_index":1485,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["getpalindrom",{"_index":3544,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["getpalindrome(i",{"_index":3553,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["getpalindrome(left",{"_index":3547,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["getsessiontoken",{"_index":555,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["gettasks(listid",{"_index":5231,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["getter",{"_index":6288,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gettimestamp",{"_index":5190,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["gettracesummari",{"_index":1052,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["geturlparamet",{"_index":5158,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["geturlparameters('google.com",{"_index":5163,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["geturlparameters('http://url.com/page?name=adam&surname=smith",{"_index":5164,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["ghi",{"_index":3828,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["gid=1000(interactiveus",{"_index":6696,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["gif",{"_index":6481,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["gigabyt",{"_index":1785,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["git",{"_index":2557,"title":{"/posts/git-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/git-snippets":{},"/posts/bash-snippets":{}}}],["gitattribut",{"_index":5453,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github",{"_index":2630,"title":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/posts/howto-render-notebook-in-hugo":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}}}],["github/dependabot.yml",{"_index":5464,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github/workflow",{"_index":5445,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["github/workflows/cr",{"_index":5466,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github/workflows/test",{"_index":5467,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["github_workspac",{"_index":5477,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["gitignor",{"_index":5454,"title":{},"content":{"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{}},"description":{}}],["gitlab",{"_index":2631,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["give",{"_index":1691,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["given",{"_index":1335,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["gke",{"_index":2122,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["glacier",{"_index":922,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["glanc",{"_index":993,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["global",{"_index":81,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["globe",{"_index":2832,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["glue",{"_index":708,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["gmail",{"_index":2800,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["gnome",{"_index":7017,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["go",{"_index":887,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["go.figure(data=data",{"_index":6951,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["go.scatt",{"_index":6944,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["goal",{"_index":2149,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["godaddi",{"_index":1530,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["goe",{"_index":3295,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"description":{}}],["gone",{"_index":2813,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["good",{"_index":1328,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["googl",{"_index":1056,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-docstring-templates":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{}}],["gopherfest",{"_index":6465,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["goto",{"_index":3681,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["govern",{"_index":916,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["gp2",{"_index":2474,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["gpu",{"_index":2421,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["grab",{"_index":4612,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}}}],["grace",{"_index":7209,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["gracefulli",{"_index":7128,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["gradl",{"_index":2699,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["grain",{"_index":669,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["grammar",{"_index":6575,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["grammarli",{"_index":6534,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["grant",{"_index":1385,"title":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}}}],["granular",{"_index":1007,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["graph",{"_index":748,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["graphic",{"_index":2422,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["graphql",{"_index":267,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["great",{"_index":2340,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["greater",{"_index":890,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["greatest",{"_index":3032,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}}}],["greatli",{"_index":438,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["greedi",{"_index":2988,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["green",{"_index":1438,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["greet",{"_index":5363,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["grep",{"_index":1252,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/other-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["grey",{"_index":2006,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["grid",{"_index":3464,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["grid0",{"_index":3465,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["gridm",{"_index":3466,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["groovi",{"_index":5000,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["group",{"_index":147,"title":{"/tracks/algorithms-101/leetcode/medium/49":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/49":{}}}],["group'",{"_index":803,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["groupanagrams(self",{"_index":3588,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["groupanagrams(str",{"_index":3604,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["groupdescript",{"_index":2928,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["groups=1000(interactiveus",{"_index":6697,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["grow",{"_index":2146,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["grunt",{"_index":6287,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["gsi",{"_index":2487,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["gt",{"_index":6775,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["guarante",{"_index":1094,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["guard",{"_index":1468,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["guess",{"_index":3134,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["gui",{"_index":4985,"title":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/apps/brewmate/":{}}}],["guid",{"_index":870,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["guidanc",{"_index":967,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["guidelin",{"_index":515,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-docstring-templates":{}},"description":{}}],["gzip",{"_index":7183,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["h",{"_index":2425,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-snippets/":{}},"description":{}}],["h1",{"_index":6410,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h14",{"_index":5635,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["h2",{"_index":6411,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h2o",{"_index":6483,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h3",{"_index":6412,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h4",{"_index":6413,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h5",{"_index":6414,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["h6",{"_index":6415,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ha",{"_index":2351,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["habr",{"_index":4605,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["hack",{"_index":6650,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["had_0",{"_index":4098,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["had_5",{"_index":4097,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["haifa",{"_index":7215,"title":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["half",{"_index":3191,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["halfatatim",{"_index":1748,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["halv",{"_index":3190,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/posts/python-bitwise-operators":{}},"description":{}}],["hammingweight(self",{"_index":4325,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{}},"description":{}}],["hand",{"_index":986,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["handbook",{"_index":3402,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["handi",{"_index":1647,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/bash-snippets":{}}}],["handl",{"_index":1086,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["handler",{"_index":1599,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["happen",{"_index":139,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-snippets/":{}},"description":{}}],["happi",{"_index":4300,"title":{"/tracks/algorithms-101/leetcode/easy/202":{}},"content":{"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/202":{}}}],["har",{"_index":4991,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["harbor",{"_index":2402,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["hard",{"_index":74,"title":{"/tracks/algorithms-101/leetcode/hard/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/git-snippets":{}},"description":{}}],["hardcod",{"_index":1951,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["hardli",{"_index":1336,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["hardwar",{"_index":1846,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["hare",{"_index":4306,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["has2_neg",{"_index":4905,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["has2_posit",{"_index":4904,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["has_diff",{"_index":4903,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["hascycle(head",{"_index":4385,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["hascycle(self",{"_index":4386,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["hash",{"_index":1228,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-snippets/":{}},"description":{}}],["hashabl",{"_index":4423,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["hashicorp",{"_index":1814,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["hashmap",{"_index":4147,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["hasn't",{"_index":1191,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/posts/trading-indicators/sma":{}},"description":{}}],["hat",{"_index":2124,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["have",{"_index":1724,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["haven't",{"_index":2273,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["hdd",{"_index":2434,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["head",{"_index":3765,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/git-snippets":{}},"description":{}}],["head.next",{"_index":3809,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["head.next.next",{"_index":4473,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["head.val",{"_index":4270,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["head=[1",{"_index":3810,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["heada",{"_index":4364,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["headb",{"_index":4365,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["header",{"_index":1040,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["header.html",{"_index":6853,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["head~5",{"_index":5503,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["health",{"_index":1526,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["healthi",{"_index":1548,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["healthy/unhealthi",{"_index":2267,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["healthyhostcount",{"_index":2260,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["heap",{"_index":3125,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["heart",{"_index":4927,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["heaven",{"_index":2591,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["heavi",{"_index":2470,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["heavili",{"_index":2665,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["height",{"_index":2005,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["height=\"180px",{"_index":5093,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["height=\"200px",{"_index":5615,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["height=\"210px",{"_index":5090,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["height=\"250px",{"_index":5607,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["height=\"470px",{"_index":6716,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["height[left",{"_index":4167,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["height[right",{"_index":4168,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["held",{"_index":2285,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["hello",{"_index":2408,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["helm",{"_index":2706,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["help",{"_index":487,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["helper",{"_index":2891,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["henc",{"_index":1899,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["hens",{"_index":3732,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["here",{"_index":873,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["here'",{"_index":1143,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{}},"description":{}}],["here.notic",{"_index":2810,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["hereand",{"_index":2774,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["hero",{"_index":980,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["hft",{"_index":5715,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["hg",{"_index":5015,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["hi",{"_index":5364,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["hidden",{"_index":491,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hide",{"_index":6824,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hidesearchresult",{"_index":6815,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hidesearchresults(",{"_index":6826,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["hierarch",{"_index":1588,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["hierarchi",{"_index":1001,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["high",{"_index":580,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["highcpuinst",{"_index":2731,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["highcpuinstanceund",{"_index":2788,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["higher",{"_index":2050,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/git-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["highest",{"_index":2431,"title":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1732/":{}}}],["highli",{"_index":1524,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}}}],["highligh",{"_index":5409,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"content":{},"description":{}}],["highlight",{"_index":1656,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/other-snippets":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["hint",{"_index":3379,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/python-docstring-templates":{}},"description":{}}],["hipaa",{"_index":2349,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["hire",{"_index":3133,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["histogram",{"_index":1707,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["histori",{"_index":2609,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["history.innerhtml",{"_index":6896,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["historysect",{"_index":2825,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["hit",{"_index":1775,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["hive",{"_index":587,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["hma",{"_index":5871,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["hoc",{"_index":574,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["hold",{"_index":3881,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["hole",{"_index":4807,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["holiday",{"_index":2817,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["home",{"_index":2449,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["home/ec2",{"_index":2561,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["home/interactiveus",{"_index":6694,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["home/noninteractiveus",{"_index":6699,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["homebrew",{"_index":6523,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{},"/apps/brewmate/":{}},"description":{"/apps/brewmate/":{}}}],["homebrew/cask",{"_index":5110,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["hook",{"_index":1761,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["hope",{"_index":4165,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["horizont",{"_index":2173,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["host",{"_index":184,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["hot",{"_index":562,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["hour",{"_index":767,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/posts/diploma/":{}},"description":{}}],["hour/second",{"_index":2437,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["hourli",{"_index":2716,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["hourly)p",{"_index":1828,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["hous",{"_index":3150,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["hover",{"_index":2547,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["howto",{"_index":1935,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["hpa",{"_index":2197,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["hpc",{"_index":2194,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["hsm",{"_index":1848,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["html",{"_index":2888,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["html.div",{"_index":6933,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["html5",{"_index":6471,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["htmlpage",{"_index":2946,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["htmlunescap",{"_index":6778,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["http",{"_index":44,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["http/http",{"_index":1281,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["http://127.0.0.1:3000",{"_index":7088,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://docs.aws.amazon.com/apigateway/latest/developerguide/how",{"_index":50,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["http://docs.aws.amazon.com/awscloudformation/latest/userguide/intrins",{"_index":77,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["http://foo.com/img.jpg",{"_index":6442,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["http://google.com",{"_index":6448,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["http://localhost:3000",{"_index":5268,"title":{},"content":{"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["http://localhost:4000",{"_index":5571,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["http://localhost:8008",{"_index":5254,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["http://url.com/pag",{"_index":5148,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["http_proxi",{"_index":2961,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["httpapi",{"_index":6012,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["httpd",{"_index":2445,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["https://aws.amazon.com/blogs/aws/new",{"_index":411,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["https://aws.amazon.com/blogs/compute/new",{"_index":741,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["https://aws.amazon.com/serverless/sam",{"_index":136,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["https://checkip.amazonaws.com",{"_index":1672,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["https://cloudacademy.com/lab/introduct",{"_index":2681,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["https://code.visualstudio.com/docs/setup/linux",{"_index":7026,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://demoapi.server.com/v1",{"_index":5266,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["https://developers.redhat.com/products/rhel/get",{"_index":7033,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://docs.aws.amazon.com/amazonecs/latest/developerguide/ecs_monitoring.html",{"_index":2397,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["https://docs.aws.amazon.com/amazons3/latest/userguide/us",{"_index":675,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2",{"_index":717,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["https://docs.aws.amazon.com/cloudfront/latest/apireference/api_createcachepolicy.html",{"_index":107,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["https://docs.aws.amazon.com/codedeploy/latest/userguide/deploy",{"_index":150,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["https://docs.aws.amazon.com/codepipeline/latest/userguide/tutori",{"_index":190,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["https://docs.aws.amazon.com/config/latest/developerguide/monitor",{"_index":723,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/tutorials.html",{"_index":2338,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["https://docs.aws.amazon.com/iam/latest/userguide/id_roles_providers_saml.html",{"_index":551,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["https://docs.aws.amazon.com/sns/latest/dg/welcome.html",{"_index":468,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["https://docs.aws.amazon.com/streams/latest/dev/kinesi",{"_index":568,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["https://docs.aws.amazon.com/sts/latest/apireference/api_assumerolewithsaml.html",{"_index":550,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["https://eu",{"_index":7175,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["https://example.com",{"_index":5151,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["https://git",{"_index":2683,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["https://github.com/arnaudj/mooc",{"_index":945,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/itsmostafa/certifi",{"_index":944,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["https://github.com/zsh",{"_index":6654,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://packages.microsoft.com/keys/microsoft.asc",{"_index":7028,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh",{"_index":6648,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://raw.githubusercontent.com/homebrew/install/head/install.sh",{"_index":6525,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://repo1.maven.org/maven2/com/madgag/bfg/1.14.0/bfg",{"_index":5482,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["https://romankurnovskii.com",{"_index":6639,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://rpm.nodesource.com/setup_14.x",{"_index":5589,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["https://sourabhbajaj.com/mac",{"_index":6678,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["https://u",{"_index":1790,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["https://www.engineeringwithutsav.com/blog/spic",{"_index":6680,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://www.redhat.com/sysadmin/instal",{"_index":7034,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["https://www.robinwieruch.de/mac",{"_index":6677,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://www.youtube.com/results?search_query=%s&page={startpage?}&utm_source=opensearch",{"_index":6565,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["https://yandex.ru/{yandex:searchpath}?text=%s&{yandex:referralid}&lr=101443&rstr",{"_index":6562,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["hub",{"_index":2399,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["huge",{"_index":417,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["hugo",{"_index":4969,"title":{"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/npm/hugo-lunr-ml/":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["hull",{"_index":5870,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["human",{"_index":6265,"title":{},"content":{"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["human(\"joel",{"_index":6298,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human(name=\"ian",{"_index":6295,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.pi",{"_index":6314,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["human.speci",{"_index":6302,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["hunt",{"_index":6490,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["hvm",{"_index":2905,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["hybrid",{"_index":2375,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["hyperv",{"_index":7145,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["hyphen",{"_index":1506,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["hypothesi",{"_index":499,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["i%60",{"_index":1968,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["i','i",{"_index":4458,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["i':1,'v':5,'x':10,'l':50,'c':100,'d':500,'m':1000",{"_index":4413,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["i'll",{"_index":1796,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["i'm",{"_index":1795,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["i(9",{"_index":4670,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["i+1",{"_index":3421,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["i+=1",{"_index":3207,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["i.",{"_index":2356,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["i.ag",{"_index":6307,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(\"hi",{"_index":6296,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.ag",{"_index":6308,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i.say(i.get_speci",{"_index":6301,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["i/o",{"_index":2461,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["i=0",{"_index":4476,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["i^1(8",{"_index":4671,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["iam",{"_index":179,"title":{"/tracks/aws-certified-developer-associate/iam/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["iam:attachrolepolici",{"_index":5947,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:createrol",{"_index":5948,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:deleterol",{"_index":5949,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:deleterolepolici",{"_index":5950,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:detachrolepolici",{"_index":5951,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:getrol",{"_index":5952,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:passrol",{"_index":5953,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iam:putrolepolici",{"_index":5954,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iamresourc",{"_index":1619,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["ian",{"_index":6297,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ib",{"_index":6712,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["ibm",{"_index":1105,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ibn",{"_index":7184,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["ichimoku",{"_index":5852,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["icon",{"_index":362,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["id",{"_index":809,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/docker-commands/":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["id'",{"_index":2866,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["id:root=1",{"_index":1026,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["id=\"graph",{"_index":6937,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["id=\"zoom",{"_index":6913,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["idea",{"_index":3366,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["ideal",{"_index":2204,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["ident",{"_index":510,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/iam/":{}}}],["identif",{"_index":5751,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["identifi",{"_index":749,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["identi­fi",{"_index":2650,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["idl",{"_index":2180,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["idna==3.3",{"_index":6071,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["idx",{"_index":2582,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["idxa",{"_index":4357,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["idxb",{"_index":4358,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["idxstep",{"_index":2586,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ie",{"_index":2166,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ieee",{"_index":5276,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["if(num",{"_index":3409,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["ifram",{"_index":5441,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["ignor",{"_index":2020,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["ii",{"_index":2278,"title":{"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}}}],["iii",{"_index":3056,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["iiii",{"_index":4403,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["il",{"_index":7228,"title":{},"content":{"/p/links":{}},"description":{}}],["illustr",{"_index":1455,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["imag",{"_index":361,"title":{"/tracks/algorithms-101/leetcode/medium/48":{},"/photos/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/48":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-shortcode-examples/img":{}}}],["image.html",{"_index":6910,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image/index.j",{"_index":6876,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["image/placeholders.j",{"_index":6899,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["imageid",{"_index":2909,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["imagenam",{"_index":7122,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["imagestatu",{"_index":1453,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["imagetag=latest",{"_index":2415,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["imagetyp",{"_index":1452,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["imagin",{"_index":2814,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["img",{"_index":6441,"title":{"/posts/hugo-shortcode-examples/img":{}},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["immedi",{"_index":344,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["immut",{"_index":1736,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/python-snippets/":{}},"description":{}}],["impact",{"_index":1031,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["impelemnt",{"_index":6761,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["implement",{"_index":407,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/004-trading-bot-refactor-orders":{}}}],["impli",{"_index":5711,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["implic",{"_index":1474,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["implicitli",{"_index":6204,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["import",{"_index":597,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["import/export",{"_index":2954,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["important!_",{"_index":1495,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{}},"description":{}}],["important!_**bucket",{"_index":1503,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{}},"description":{}}],["importlib",{"_index":6072,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["imposs",{"_index":1896,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/js-snippets":{}},"description":{}}],["improv",{"_index":439,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["inact",{"_index":1637,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["inbound",{"_index":402,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["inch",{"_index":6515,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["incklud",{"_index":6858,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["incl",{"_index":1861,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["includ",{"_index":188,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["inclus",{"_index":3824,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["incognito",{"_index":2240,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["incom",{"_index":1036,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["incoming/outgo",{"_index":1563,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["incompat",{"_index":1759,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["incorpor",{"_index":2884,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["incorrect",{"_index":2329,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["incorrectli",{"_index":782,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["increas",{"_index":213,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["incred",{"_index":5626,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["increment",{"_index":1362,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["incur",{"_index":1778,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["inde",{"_index":2828,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["indefinit",{"_index":2251,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["indent",{"_index":5056,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["independ",{"_index":2463,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["index",{"_index":433,"title":{"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/trading-indicators/rsi":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/trading-indicators/rsi":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["index'",{"_index":4222,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["index(b",{"_index":4349,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["index.html",{"_index":2845,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["index.j",{"_index":5462,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["index.test.j",{"_index":5463,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["index.tsx",{"_index":7044,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["indexarea",{"_index":1705,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["indexerror",{"_index":6142,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["indic",{"_index":1695,"title":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/markdown-syntax/":{}},"description":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}}}],["individu",{"_index":2065,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["industri",{"_index":2057,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["industry'",{"_index":6718,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["ineffici",{"_index":3744,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["inequ",{"_index":6109,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inexpens",{"_index":1266,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["inf",{"_index":4645,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["infer",{"_index":5314,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["infinit",{"_index":3130,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["inflat",{"_index":7186,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["info",{"_index":1032,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/git-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["inform",{"_index":795,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["infrastructur",{"_index":472,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}}}],["infras­tru­ctur",{"_index":2857,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["infrequ",{"_index":1781,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["infti",{"_index":6506,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ingest",{"_index":1725,"title":{},"content":{},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["ingress",{"_index":2208,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["inher",{"_index":5797,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["inherit",{"_index":5341,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["init",{"_index":126,"title":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}}}],["init(arr",{"_index":4661,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["init(self",{"_index":3239,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["initi",{"_index":829,"title":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}}}],["initiative'",{"_index":7115,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["inject",{"_index":503,"title":{"/tracks/aws-certified-developer-associate/fis/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["inner",{"_index":3909,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["innov",{"_index":2462,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["inord",{"_index":2981,"title":{"/tracks/algorithms-101/leetcode/easy/94":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{}}}],["inordertraversal(self",{"_index":4209,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["inoread",{"_index":6581,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["inp",{"_index":4649,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp().split",{"_index":4655,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp_int",{"_index":4651,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp_int_list",{"_index":4653,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["inp_str_list",{"_index":4656,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["input",{"_index":2645,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["input(\"ent",{"_index":6123,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["input(\"graph",{"_index":6941,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["input().split",{"_index":4658,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["input.mp4",{"_index":6614,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["input.value.trim",{"_index":6848,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["input_string_var",{"_index":6122,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["insect",{"_index":6491,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["insert",{"_index":131,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/_index":{}},"description":{"/posts/hugo-shortcode-examples/img":{}}}],["insert(root",{"_index":4565,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["insert(self",{"_index":4568,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["insertion_sort(array",{"_index":3177,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["inservic",{"_index":2238,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["insid",{"_index":750,"title":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}}}],["insight",{"_index":1022,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["inspect",{"_index":789,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/docker-commands/":{}},"description":{}}],["inspir",{"_index":4955,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["instal",{"_index":122,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/brewmate/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["instanc",{"_index":156,"title":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}}}],["instance'",{"_index":1188,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-snippets/":{}},"description":{}}],["instanceid",{"_index":2392,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["instancesfrom",{"_index":2734,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["instancetyp",{"_index":2911,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["instanti",{"_index":6268,"title":{},"content":{"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["instantli",{"_index":1923,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["instead",{"_index":1838,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["instruct",{"_index":1170,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["instrument",{"_index":843,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["insuffici",{"_index":2334,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["insur",{"_index":2078,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["int",{"_index":3391,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["int(",{"_index":3463,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["int(a",{"_index":4910,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["int(b",{"_index":4911,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["int(curr_num",{"_index":4087,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["int(d",{"_index":3834,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["int(i/3",{"_index":3674,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["int(inp",{"_index":4652,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["int(inp().strip",{"_index":4762,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["int(input",{"_index":4818,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["int(j/3",{"_index":3675,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["int(s_l1",{"_index":3781,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["int(s_l2",{"_index":3782,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["integ",{"_index":2968,"title":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/13":{}}}],["integr",{"_index":37,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/code-style":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["integr­",{"_index":1140,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["intellig",{"_index":2646,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["intell­ig",{"_index":2648,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["intens",{"_index":2435,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["inter",{"_index":678,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["interact",{"_index":736,"title":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["interactiveus",{"_index":6689,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["interactiveuser:x:1000:1000::/home/interactiveuser:/bin/sh",{"_index":6703,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["interceptor",{"_index":1045,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["interchang",{"_index":1457,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["interest",{"_index":1709,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["interfac",{"_index":28,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["interim",{"_index":7172,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["intermedi",{"_index":1998,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/plan":{},"/posts/docker-commands/":{}},"description":{}}],["intermediate\\_sql\\_stream",{"_index":1999,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["intermediate_sql_stream",{"_index":1988,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["intermitt",{"_index":786,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["intern",{"_index":333,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/markdown-syntax/":{}},"description":{}}],["internal_server_error",{"_index":6049,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["internal_server_error(",{"_index":6047,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["internet",{"_index":329,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["interpol",{"_index":5361,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["interpret",{"_index":6294,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["intersect",{"_index":3297,"title":{"/tracks/algorithms-101/leetcode/easy/160":{}},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/160":{}}}],["interv",{"_index":1708,"title":{"/tracks/algorithms-101/leetcode/medium/56":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{"/tracks/algorithms-101/leetcode/medium/56":{}}}],["interval=1",{"_index":6938,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["interval[0",{"_index":3491,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["interval[1",{"_index":3494,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervals.sort",{"_index":3485,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervals[0",{"_index":3486,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervals[i",{"_index":3472,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervalsir",{"_index":3489,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["intervent",{"_index":2187,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["interview",{"_index":3026,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["intl.datetimeformat().resolvedopt",{"_index":5176,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["intra",{"_index":2878,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["intro",{"_index":2520,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["introduc",{"_index":988,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/python-docstring-templates":{},"/posts/code-style":{},"/posts/trading-indicators/atr":{}},"description":{}}],["introduct",{"_index":1089,"title":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}}}],["introductori",{"_index":4441,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["intuit",{"_index":2993,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["invalid",{"_index":2840,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/js-snippets":{}},"description":{}}],["invalid_dict",{"_index":6169,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["invalid_set",{"_index":6189,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["invalidperson",{"_index":5325,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["invalu",{"_index":4994,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["invent",{"_index":6272,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["inventori",{"_index":1176,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/mac-setup-development/":{}},"description":{}}],["inventory_messag",{"_index":1237,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["inventory_message=$(aw",{"_index":1234,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["inventory_queue_url",{"_index":1235,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["inventory_queue_url=$(aw",{"_index":1220,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["invers",{"_index":4821,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["inversion_pair",{"_index":4822,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["invert",{"_index":5609,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{},"/posts/markdown-syntax/":{}},"description":{}}],["investig",{"_index":2612,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["invis",{"_index":1133,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["invoc",{"_index":775,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["invok",{"_index":237,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["involv",{"_index":2282,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["inward",{"_index":4161,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["io",{"_index":2468,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["io1",{"_index":2459,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["iobas",{"_index":4643,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["iop",{"_index":2457,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["ios/android",{"_index":6580,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["iot",{"_index":1108,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{}},"description":{}}],["iot:createtopicrul",{"_index":5955,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:deletetopicrul",{"_index":5956,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:disabletopicrul",{"_index":5957,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:enabletopicrul",{"_index":5958,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["iot:replacetopicrul",{"_index":5959,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ip",{"_index":398,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/docker-commands/":{}},"description":{}}],["ipaddress",{"_index":7169,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ipprotocol",{"_index":2932,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["ipsam",{"_index":6435,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ipsum",{"_index":6418,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["ipv4",{"_index":794,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ir",{"_index":3487,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["is...**:_greater/equ",{"_index":2792,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["is_palindrom",{"_index":4025,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["is_palindrome(substr",{"_index":4029,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["is_uniqu",{"_index":4103,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["is_unique(arr",{"_index":4105,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["is_unique(num",{"_index":4109,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["is_valid_cell(next_cel",{"_index":3310,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["isdatevalid",{"_index":5177,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid('1995",{"_index":5183,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid('decemb",{"_index":5180,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid('duck",{"_index":5186,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid(1995",{"_index":5188,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdatevalid(2023",{"_index":5187,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["isdev",{"_index":7068,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["isdon",{"_index":5295,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["iseven(7",{"_index":5289,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["iseven(numb",{"_index":5290,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["ishappy(n",{"_index":4307,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["isinstance(other_ord",{"_index":4932,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["isinstance(sup",{"_index":6336,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["isn't",{"_index":1663,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/python-snippets/":{}},"description":{}}],["isnan(num",{"_index":3412,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["isol",{"_index":1669,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["isolatedmodul",{"_index":7061,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["ispalindrome(self",{"_index":4266,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["ispalindrome(x",{"_index":4436,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["israel",{"_index":6710,"title":{"/posts/interactivebrokers-deposit/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"content":{},"description":{"/posts/interactivebrokers-deposit/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}}}],["issu",{"_index":208,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{}},"description":{}}],["issubsequence(",{"_index":4453,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["isvalid(self",{"_index":4314,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["isvalidsudoku(self",{"_index":3670,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["it'",{"_index":1190,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ital",{"_index":6444,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["italic___",{"_index":6446,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["item",{"_index":442,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/posts/bash-snippets":{}}}],["item1",{"_index":5353,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["item2",{"_index":5355,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["item=ddb_item",{"_index":2042,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["itemb.d",{"_index":5203,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["items_to_untrack",{"_index":5557,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["items_to_untrack=(\".idea",{"_index":5553,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["iter",{"_index":1960,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["iter(our_iter",{"_index":6201,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["iterm",{"_index":6661,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["iterm2",{"_index":6535,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["itertool",{"_index":4193,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["itertools.combin",{"_index":4191,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["itex",{"_index":1407,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["ith",{"_index":4240,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["itsdangerous==1.1.0",{"_index":6074,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["itself",{"_index":1430,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/python-snippets/":{}},"description":{}}],["itsyc",{"_index":6536,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["it’",{"_index":440,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/posts/trading-indicators/macd":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["iu'",{"_index":2868,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["iv",{"_index":4404,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["ix",{"_index":4406,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["j",{"_index":3187,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{}}],["j+=1",{"_index":3208,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["j.say(\"hello",{"_index":6299,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.ag",{"_index":6309,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j.say(j.get_speci",{"_index":6304,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["j=0",{"_index":4477,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["jan",{"_index":3378,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["jar",{"_index":5486,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["jasmin",{"_index":573,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["jasmin'",{"_index":582,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["java",{"_index":570,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/git-snippets":{}},"description":{}}],["javascript",{"_index":1479,"title":{"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-create-deepclone-js/":{}}}],["javascriptreact",{"_index":5069,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["jdk",{"_index":2387,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["jelast",{"_index":2385,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["jenkin",{"_index":167,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["jenkinsfil",{"_index":5538,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["jest",{"_index":5470,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["jestconfig.json",{"_index":5460,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["jfrog",{"_index":2400,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["jinja2==2.11.3",{"_index":6075,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jira",{"_index":2556,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["jkl",{"_index":3829,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["jmespath==1.0.1",{"_index":6076,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["job",{"_index":349,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{}},"description":{}}],["joel",{"_index":6300,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["john",{"_index":5367,"title":{},"content":{"/posts/js-snippets":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["join",{"_index":742,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["join(decim",{"_index":3861,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["join(r",{"_index":4481,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["join(s.split",{"_index":3893,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["join(sorted(",{"_index":3593,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["join(stack",{"_index":3748,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["join(word",{"_index":3892,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["journal",{"_index":7227,"title":{},"content":{"/p/links":{}},"description":{}}],["journey",{"_index":4948,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["jp=\"jupyt",{"_index":6676,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["jr",{"_index":5787,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["js",{"_index":3404,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["js/typescript",{"_index":5048,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["json",{"_index":1003,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["json.loads(request.data",{"_index":6040,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["json.parse(event.records[0].sns.messag",{"_index":1808,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["json.parse(this.responsetext",{"_index":6810,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["json.tool",{"_index":1240,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["json=$(cat",{"_index":1964,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["jsonifi",{"_index":6021,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["jsonify(message='hello",{"_index":6043,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jsonify({'error",{"_index":6036,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jsonify({'us",{"_index":6037,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["jsx",{"_index":7063,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["judg",{"_index":4260,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["juli",{"_index":7001,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["jump",{"_index":3017,"title":{"/tracks/algorithms-101/leetcode/medium/55":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/posts/trading-indicators/rsi":{}},"description":{"/tracks/algorithms-101/leetcode/medium/55":{}}}],["jupyt",{"_index":5425,"title":{"/posts/howto-render-notebook-in-hugo":{}},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{"/posts/howto-render-notebook-in-hugo":{}}}],["jupyterlab",{"_index":6553,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["jwt",{"_index":2536,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["k",{"_index":3052,"title":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}}}],["k8",{"_index":2371,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["k[encoded_str",{"_index":4076,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["kafka",{"_index":1102,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["kb",{"_index":1850,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["kbd",{"_index":6480,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["keep",{"_index":563,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/docker-commands/":{}},"description":{}}],["keltner",{"_index":5857,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["kept",{"_index":2808,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["kernel",{"_index":7007,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["key",{"_index":431,"title":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{}}}],["key'",{"_index":615,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["key(append",{"_index":1889,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["key/sess",{"_index":2056,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["key/valu",{"_index":1439,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["key2",{"_index":1890,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["keyboard",{"_index":6593,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["keycheckbox",{"_index":1893,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["keycloak",{"_index":2531,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["keyerror",{"_index":6176,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keynam",{"_index":5404,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["keypair",{"_index":2748,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["keys(symmetr",{"_index":1863,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["keyword",{"_index":5302,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["keyword_args(**kwarg",{"_index":6214,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["keyword_args(big=\"foot",{"_index":6215,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["kibana",{"_index":1692,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["kick",{"_index":6665,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["kid",{"_index":3035,"title":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{}}}],["kid'",{"_index":4375,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["kidswithcandi",{"_index":4381,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["kidswithcandies(self",{"_index":4376,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["kill",{"_index":2116,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/docker-commands/":{}},"description":{}}],["kind",{"_index":1080,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["kinesi",{"_index":464,"title":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["kinesis:createstream",{"_index":5960,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["kinesis:deletestream",{"_index":5961,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["kinesis:describestream",{"_index":5962,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["kit",{"_index":657,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["km",{"_index":599,"title":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}}}],["kms(provid",{"_index":1862,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["know",{"_index":444,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{}}],["knowledg",{"_index":953,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{"/posts/diploma/":{}}}],["known",{"_index":1540,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["koko",{"_index":3139,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["kst",{"_index":5874,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["kth",{"_index":3127,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["kube",{"_index":2201,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["kubernet",{"_index":903,"title":{"/tracks/aws-certified-developer-associate/eks/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{"/tracks/aws-certified-developer-associate/eks/":{}}}],["kurnovskii",{"_index":6637,"title":{"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["kwarg",{"_index":4943,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{},"/posts/python-snippets/":{}},"description":{}}],["l",{"_index":3429,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["l,r",{"_index":4672,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["l1",{"_index":3754,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l1.next",{"_index":3796,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l1.val",{"_index":3789,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l14",{"_index":5634,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["l1val",{"_index":3788,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["l2",{"_index":3756,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l2.next",{"_index":3797,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["l2.val",{"_index":3791,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["l2val",{"_index":3790,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["l4",{"_index":2159,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["l7",{"_index":2157,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["l[i",{"_index":4397,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["la",{"_index":5601,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["lab",{"_index":948,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["lab'",{"_index":1634,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["lab.txt",{"_index":2686,"title":{},"content":{"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["label",{"_index":1507,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["labor",{"_index":6427,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["lack",{"_index":6685,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["lag",{"_index":2000,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{}}],["lag(\"event_timestamp",{"_index":1995,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lake",{"_index":1243,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["lambda",{"_index":47,"title":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["lambda@edg",{"_index":1752,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["lambda\\_s3\\_put",{"_index":1290,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["lambda_function.pi",{"_index":1295,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lambda_handler(ev",{"_index":1304,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lambdaelasticsearch",{"_index":1681,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["lambdaexecutionrol",{"_index":1794,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["land",{"_index":2344,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["lane",{"_index":5631,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["languag",{"_index":1464,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["languagemod",{"_index":6770,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["languagemode}/search.json",{"_index":6803,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["languagetool",{"_index":6573,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["laptop",{"_index":1333,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["larg",{"_index":823,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{}}],["larger",{"_index":1777,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["larger/equ",{"_index":4297,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["largest",{"_index":3128,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["largest/smallest",{"_index":3705,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["largestaltitude(gain",{"_index":4491,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["last",{"_index":860,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["last=fals",{"_index":3947,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["last_digit",{"_index":4439,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["last_i",{"_index":3501,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["last_par",{"_index":4828,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["last_valu",{"_index":4316,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["last_value(\"session_timestamp",{"_index":2019,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["lastli",{"_index":5306,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["late",{"_index":5641,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["latenc",{"_index":88,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["later",{"_index":1195,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/python-snippets/":{}},"description":{}}],["latest",{"_index":864,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{}}],["latest/amzn2",{"_index":2904,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["latest_tim",{"_index":2016,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["latex",{"_index":6494,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["latter",{"_index":1661,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["launch",{"_index":476,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/brewmate/":{}},"description":{}}],["layer",{"_index":1754,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-snippets/":{}},"description":{}}],["layout",{"_index":6859,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["layouts/_default/index.json",{"_index":6773,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/partials/components/search",{"_index":6767,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/partials/footer.html",{"_index":6769,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/partials/header.html",{"_index":6766,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["layouts/shortcod",{"_index":5438,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["lazi",{"_index":2360,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/python-snippets/":{}},"description":{}}],["lb",{"_index":2211,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["ld",{"_index":1051,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["ldot",{"_index":4525,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["lead",{"_index":501,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{}}],["leaderboard",{"_index":2342,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["leaf",{"_index":3088,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["leap",{"_index":6725,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["learn",{"_index":926,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/bash-snippets":{}}}],["leav",{"_index":1286,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["leetcod",{"_index":3028,"title":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["left",{"_index":1168,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["left.next",{"_index":3934,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["left.val",{"_index":3932,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["left=1cm",{"_index":5120,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["left=non",{"_index":3241,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["left_half",{"_index":3192,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["left_index",{"_index":3197,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["left_num",{"_index":3682,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["left_sum",{"_index":4223,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["leftmost",{"_index":3984,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["legaci",{"_index":1596,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["legoux",{"_index":5887,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["len",{"_index":4736,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["len(",{"_index":3706,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(\"thi",{"_index":6112,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len('abc",{"_index":4726,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len('abcd",{"_index":4727,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(a",{"_index":4530,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(ar",{"_index":4826,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["len(arr",{"_index":3214,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["len(array",{"_index":3179,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(board",{"_index":4042,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["len(board[0",{"_index":4043,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["len(curr",{"_index":3353,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(decim",{"_index":3859,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["len(dict_count",{"_index":4430,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["len(digit",{"_index":4248,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["len(distinct_el",{"_index":4108,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["len(grid",{"_index":4143,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["len(height",{"_index":4170,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["len(interv",{"_index":3488,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["len(l",{"_index":4396,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["len(li",{"_index":6158,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(matrix",{"_index":3318,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["len(matrix[0",{"_index":3319,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["len(maz",{"_index":3298,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(maze[0",{"_index":3299,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(nam",{"_index":6118,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(num",{"_index":3206,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["len(nums1",{"_index":4219,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["len(path",{"_index":3337,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["len(pric",{"_index":4058,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["len(queu",{"_index":4064,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["len(r",{"_index":3648,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["len(self",{"_index":4550,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["len(self.cach",{"_index":3954,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["len(self.dictionari",{"_index":3973,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["len(set(a",{"_index":4743,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(set(b",{"_index":4744,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["len(str1",{"_index":4500,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(str2",{"_index":4501,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["len(t",{"_index":3557,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["len(tree)//2",{"_index":4674,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["len(tup",{"_index":6164,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["len(unique_char",{"_index":4200,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["len(unique_count",{"_index":4429,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["len_curr",{"_index":3695,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["len_max",{"_index":3549,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["length",{"_index":1441,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{}}}],["length_of_source_array",{"_index":4528,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["lengthoflongestsubstring(self",{"_index":3694,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["leq",{"_index":6511,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["less",{"_index":1392,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/atr":{}},"description":{}}],["let",{"_index":274,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-snippets/":{}},"description":{}}],["let'",{"_index":2076,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["letraset",{"_index":6729,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["letter",{"_index":1345,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["letter_idx",{"_index":4352,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["lettercombinations(self",{"_index":3827,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["letters[d",{"_index":3835,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["level",{"_index":1360,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/other-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["level_s",{"_index":4063,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["leverag",{"_index":553,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["lexicograph",{"_index":3424,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["li",{"_index":6133,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(1",{"_index":6136,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(2",{"_index":6137,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(3",{"_index":6139,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.append(4",{"_index":6138,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.extend(other_li",{"_index":6157,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(2",{"_index":6155,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.index(4",{"_index":6156,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.insert(1",{"_index":6154,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.pop",{"_index":6140,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li.remove(2",{"_index":6152,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li2",{"_index":6151,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[0",{"_index":6141,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[1:3",{"_index":6146,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[2",{"_index":6147,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[4",{"_index":6143,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[:3",{"_index":6148,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[::2",{"_index":6149,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["li[start:end:step",{"_index":6150,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lib",{"_index":7050,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["libmp3lam",{"_index":5142,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["librari",{"_index":981,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["libx264",{"_index":6616,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["licens",{"_index":1590,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/howto-publish-js-npm-project":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["life",{"_index":2464,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["lifecycl",{"_index":765,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["lift",{"_index":2378,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["light",{"_index":4847,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["lightweight",{"_index":4996,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["like",{"_index":4627,"title":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}}}],["likelihood",{"_index":5799,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["limit",{"_index":791,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["line",{"_index":115,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["linear",{"_index":846,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/_index":{}},"description":{}}],["linebreak",{"_index":5057,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["linelength",{"_index":5046,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["link",{"_index":1462,"title":{"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/p/links":{}},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["link.appendchild(linktext",{"_index":6840,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["link.href",{"_index":6841,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["linktext",{"_index":6838,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["lint",{"_index":5030,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["lint:fix",{"_index":5475,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["linter",{"_index":4998,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["linux",{"_index":2442,"title":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/posts/bash-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}}}],["list",{"_index":1,"title":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"content":{"/tracks/_index":{},"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["list(",{"_index":4456,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["list(char_count.key",{"_index":4199,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["list(filled_dict.valu",{"_index":6175,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(filter(lambda",{"_index":6249,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(inp",{"_index":4657,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["list(map(add_10",{"_index":6247,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(map(int",{"_index":4654,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["list(map(max",{"_index":6248,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(our_iter",{"_index":6205,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(set1",{"_index":4283,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["list(set2",{"_index":4285,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["list(string.ascii_uppercas",{"_index":4351,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["list(valu",{"_index":6393,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["list(zip(*matrix))[0",{"_index":3445,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["list1",{"_index":4286,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["list2",{"_index":4287,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["list[bool",{"_index":4378,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["list[int",{"_index":3351,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["list[list[int",{"_index":3352,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["list[list[str",{"_index":3590,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["list[str",{"_index":3589,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["listen",{"_index":1041,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["listnod",{"_index":3802,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["listnode(0",{"_index":3787,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["listnode(columnsum",{"_index":3794,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["listnode(i",{"_index":3768,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["listnode(values[0",{"_index":3766,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["liter",{"_index":5299,"title":{},"content":{"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["littl",{"_index":5310,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["live",{"_index":264,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["ll",{"_index":3905,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["ll_sum",{"_index":3780,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["load",{"_index":308,"title":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}}}],["loadbalanc",{"_index":2209,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["loadindexdata",{"_index":6802,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["loads(payload",{"_index":2036,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["local",{"_index":1005,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["locat",{"_index":1421,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/other-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["loch",{"_index":6218,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["loch=\"",{"_index":6216,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lock",{"_index":518,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["log",{"_index":227,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["logan",{"_index":2615,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["logarithm",{"_index":5610,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["logger",{"_index":2715,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["logic",{"_index":1660,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["login",{"_index":2063,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/docker-commands/":{}},"description":{}}],["login(email",{"_index":5240,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["login/password",{"_index":2074,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["logo",{"_index":364,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["logo.png",{"_index":1427,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["logs:createlogdeliveri",{"_index":5963,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:createloggroup",{"_index":5964,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:deleteloggroup",{"_index":5965,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:describeloggroup",{"_index":5966,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:describelogstream",{"_index":5967,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:filterlogev",{"_index":5968,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:getlogev",{"_index":5969,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logs:putsubscriptionfilt",{"_index":5970,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["logsarea",{"_index":1633,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["long",{"_index":263,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["longer",{"_index":144,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["longest",{"_index":2970,"title":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/easy/14":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/easy/14":{}}}],["longestcommonprefix(self",{"_index":4392,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["longestconsecutive(self",{"_index":4050,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["longestones(num",{"_index":4182,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["longestpalindrome(self",{"_index":3545,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["longestsubarray(num",{"_index":3914,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["look",{"_index":365,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["lookup",{"_index":2877,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["lookupev",{"_index":645,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["loop",{"_index":1981,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/other-snippets":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["loos",{"_index":7202,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["lorem",{"_index":6417,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["lose",{"_index":1496,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["loss",{"_index":2232,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{}},"description":{}}],["lost",{"_index":2343,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["lot",{"_index":856,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["low",{"_index":87,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["lower",{"_index":1657,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["lower_case_with_underscor",{"_index":6124,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["lowercas",{"_index":1344,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/markdown-syntax/":{}},"description":{}}],["lowest",{"_index":2436,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["lqvkgdt16bf1q6cx",{"_index":857,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["lru",{"_index":3937,"title":{"/tracks/algorithms-101/leetcode/medium/146":{}},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/146":{}}}],["lrucach",{"_index":3944,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["ls",{"_index":2568,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/docker-commands/":{}},"description":{}}],["lsi",{"_index":2507,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["lt",{"_index":6635,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["lt;unique_string>",{"_index":2543,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["lt;uniquenumber>(append",{"_index":2841,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["lt;your\\_project\\_repository_url>",{"_index":2565,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["lt;your\\bucket\\_name>",{"_index":1918,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["ltd",{"_index":2101,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["lunch",{"_index":4691,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["lunr",{"_index":6760,"title":{"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}},"content":{"/apps/_index":{}},"description":{"/apps/npm/hugo-lunr-ml/":{}}}],["lunr(funct",{"_index":6792,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["lunr.j",{"_index":6762,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["lwp",{"_index":2757,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["m",{"_index":1239,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/other-snippets":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["m.sqrt(16",{"_index":6261,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["m1",{"_index":6516,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/mac-setup-development/":{}}}],["maang",{"_index":3395,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["mac",{"_index":6513,"title":{"/posts/mac-setup-development/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["mac/linux",{"_index":1200,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["macbook",{"_index":6514,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/mac-setup-development/":{}}}],["macci",{"_index":6591,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["macd",{"_index":5713,"title":{"/posts/trading-indicators/macd":{}},"content":{"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/macd":{}}}],["macd'",{"_index":5753,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["machin",{"_index":797,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["maci",{"_index":1871,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["maco",{"_index":6521,"title":{},"content":{"/posts/mac-setup-development/":{},"/apps/brewmate/":{}},"description":{}}],["macos(cmd+shift+p",{"_index":5033,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["macx",{"_index":6537,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["made",{"_index":512,"title":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}}}],["magic",{"_index":2751,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["magicbel",{"_index":1275,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["magnet",{"_index":2433,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mail",{"_index":722,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["main",{"_index":746,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["main.t",{"_index":7042,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["mainfont=\"m",{"_index":5113,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["mainli",{"_index":661,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["maintain",{"_index":607,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}}}],["maintainaspectratio",{"_index":6753,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["mainten",{"_index":807,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/code-style":{}},"description":{}}],["major",{"_index":2263,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["make",{"_index":174,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{}}}],["make_respons",{"_index":6022,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["make_response(jsonify(error='not",{"_index":6046,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["maker",{"_index":7223,"title":{},"content":{"/p/links":{}},"description":{}}],["manacher'",{"_index":3555,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["manag",{"_index":280,"title":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/stories/004-trading-bot-refactor-orders":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}}}],["mandat",{"_index":620,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["mandatori",{"_index":1383,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{}},"description":{}}],["mani",{"_index":378,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["manipul",{"_index":277,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["manner",{"_index":3925,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["mantissa",{"_index":5278,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["manual",{"_index":600,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["map",{"_index":535,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{}}],["map(int",{"_index":4694,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"description":{}}],["map(text",{"_index":6908,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["map/reduc",{"_index":2503,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["mapreduc",{"_index":2504,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["mardown",{"_index":5102,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["margin",{"_index":6872,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["mariadb",{"_index":1571,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["mark",{"_index":826,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["markdown",{"_index":4978,"title":{"/posts/markdown-syntax/":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/markdown-syntax/":{}}}],["market",{"_index":4990,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/p/links":{}},"description":{}}],["market­plac",{"_index":2880,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["markup",{"_index":1463,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/markdown-syntax/":{}},"description":{}}],["markupsafe==2.0.1",{"_index":6077,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mass",{"_index":5875,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["master",{"_index":629,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/git-snippets":{},"/posts/docker-commands/":{}},"description":{"/posts/bash-snippets":{}}}],["match",{"_index":1642,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{}},"description":{}}],["matches1",{"_index":4835,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matches[1",{"_index":4834,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matches[match",{"_index":4833,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matchesi",{"_index":4838,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matchesmatch",{"_index":4837,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["matchesn",{"_index":4836,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["materi",{"_index":604,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["math",{"_index":2969,"title":{},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["math.floor(date.gettim",{"_index":5191,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.floor(math.random",{"_index":5271,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.floor(new",{"_index":2583,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["math.pi",{"_index":6264,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["math.pow(this.sidelength",{"_index":5350,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.sqrt(16",{"_index":6260,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["math.sqrt(d",{"_index":5346,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["math.sqrt(this.x",{"_index":5335,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["mathemat",{"_index":4435,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["mathi",{"_index":6145,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["matric",{"_index":4133,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["matrix",{"_index":3002,"title":{"/tracks/algorithms-101/leetcode/medium/73":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/73":{}}}],["matrix.revers",{"_index":3619,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["matrix0",{"_index":3448,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["matrix[0",{"_index":3443,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["matrixi",{"_index":3447,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["matrixj",{"_index":3621,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["matter",{"_index":3498,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-snippets/":{}},"description":{}}],["mau",{"_index":2534,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["maven",{"_index":2698,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["max",{"_index":1115,"title":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["max((extend",{"_index":3569,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["max(_max",{"_index":4054,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["max(a[i",{"_index":4883,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max(a_max",{"_index":4887,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max(an",{"_index":3493,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["max(b",{"_index":4888,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max(candi",{"_index":4380,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["max(len_max",{"_index":3696,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["max(m",{"_index":3512,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["max(max_",{"_index":3522,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["max(max_altitud",{"_index":4492,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max(max_area",{"_index":4174,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max(max_len",{"_index":4184,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max(max_result",{"_index":4742,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max(max_sum",{"_index":4257,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["max(max_vowel",{"_index":3992,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["max(maxlength",{"_index":3916,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["max(mp[s[j",{"_index":3709,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["max(num",{"_index":3885,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max(nums[i",{"_index":3521,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max(r",{"_index":3887,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max2",{"_index":3520,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["max_",{"_index":3519,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["max_abov",{"_index":3470,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["max_altitud",{"_index":4490,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["max_area",{"_index":4171,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["max_beauti",{"_index":4201,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["max_beauty_count",{"_index":4202,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["max_candi",{"_index":4379,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1431":{}},"description":{}}],["max_index",{"_index":4696,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["max_left",{"_index":3471,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["max_len",{"_index":4183,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["max_n",{"_index":4745,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max_prod",{"_index":3878,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["max_result",{"_index":4741,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max_search_result",{"_index":6789,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["max_substr_len",{"_index":4504,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["max_sum",{"_index":4255,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["max_sum(arr",{"_index":3213,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["max_teleporters(n",{"_index":4783,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["max_v",{"_index":4882,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["max_valu",{"_index":4695,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["max_vowel",{"_index":3985,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["maxarea(height",{"_index":4169,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["maxextend",{"_index":3562,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[cent",{"_index":3564,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[i",{"_index":3561,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[i]..i",{"_index":3559,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxextends[mirrorindex",{"_index":3567,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["maxim",{"_index":1415,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["maximum",{"_index":1091,"title":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/atr":{}},"description":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["maximumlinelength",{"_index":5047,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["maximumsum",{"_index":3211,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["maxlength",{"_index":3915,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["maxproduct(num",{"_index":3882,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["maxprofit(self",{"_index":4057,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["maxreceivecount",{"_index":1125,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["maxsubarray(self",{"_index":3518,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/53":{}},"description":{}}],["maxsum(num",{"_index":4104,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["maxvowels(",{"_index":3987,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["mayb",{"_index":2272,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/js-snippets":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["maze",{"_index":3122,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mb",{"_index":1766,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["mccabe",{"_index":5009,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["mcmxciv",{"_index":4408,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["md",{"_index":5103,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["md5",{"_index":688,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["md5ofbodi",{"_index":1227,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["mean",{"_index":1489,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["meaning",{"_index":1321,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["meant",{"_index":1334,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["measur",{"_index":304,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["media",{"_index":630,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/p/links":{}},"description":{}}],["mediapackag",{"_index":2854,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["mediatyp",{"_index":6785,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["medium",{"_index":2736,"title":{"/tracks/algorithms-101/leetcode/medium/_index":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["mediumzoom('#zoom",{"_index":6878,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["meet",{"_index":252,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/python-snippets/":{}},"description":{}}],["mem",{"_index":2766,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["member",{"_index":2080,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{}},"description":{}}],["memberslist",{"_index":2621,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["memcach",{"_index":2339,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["memoiz",{"_index":2978,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["memori",{"_index":316,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["memorydb",{"_index":905,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["memorys",{"_index":6010,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mention",{"_index":2673,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["menu",{"_index":1185,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["mercuri",{"_index":7117,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["mere",{"_index":4995,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["merg",{"_index":566,"title":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/posts/git-snippets":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}}}],["merge(left",{"_index":3931,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["merge(left.next",{"_index":3935,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["merge(left_ar",{"_index":3195,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["merge(self",{"_index":3484,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["merge_sort",{"_index":3194,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["merge_sort(left_half",{"_index":3202,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["merge_sort(right_half",{"_index":3203,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mergealtern",{"_index":4484,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["mergealternately(self",{"_index":4474,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["mergeconfig",{"_index":5513,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["merged_index",{"_index":3204,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mergetwolists(self",{"_index":4291,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["messag",{"_index":201,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["message.cook_sec",{"_index":1809,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["message=msg",{"_index":6279,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["messageid",{"_index":1215,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["message}\".format(name=self.nam",{"_index":6278,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["messeng",{"_index":6527,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["met",{"_index":4001,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["meta",{"_index":1451,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["metadata",{"_index":796,"title":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}}}],["metadata==4.12.0",{"_index":6073,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["meter",{"_index":559,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["method",{"_index":38,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/interactivebrokers-deposit/":{},"/apps/_index":{}},"description":{}}],["methods(or",{"_index":6269,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["methods=['get",{"_index":6031,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["methods=['put",{"_index":6038,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["meticul",{"_index":4968,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["metric",{"_index":315,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/diploma/":{}},"description":{}}],["metricsfrom",{"_index":2776,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["metricstab",{"_index":2728,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["mfa",{"_index":198,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["mfi",{"_index":5853,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["micro",{"_index":1047,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["microphon",{"_index":6282,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["microservic",{"_index":701,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["microservices/aw",{"_index":1016,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["microsoft",{"_index":540,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["micros­ervic",{"_index":2949,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["micros­erv­ic",{"_index":1097,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["microwav",{"_index":1801,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["mid",{"_index":3199,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["middl",{"_index":1174,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["midjourney",{"_index":7200,"title":{"/photos/midjourney/":{}},"content":{},"description":{"/photos/midjourney/":{}}}],["migrat",{"_index":634,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mihai",{"_index":4863,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["milk",{"_index":6477,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["million",{"_index":1787,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["millisecond",{"_index":2003,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["min",{"_index":1113,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["min(3",{"_index":4770,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["min(a[i",{"_index":4886,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["min(height[left",{"_index":4173,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["min(num",{"_index":3886,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["min(nums[i",{"_index":3880,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["min(rightboundari",{"_index":3566,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["min_height",{"_index":4172,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["min_larger_nod",{"_index":4581,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.left",{"_index":4582,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.parent.left",{"_index":4585,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.right",{"_index":4584,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_larger_node.valu",{"_index":4583,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["min_prod",{"_index":3879,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["min_v",{"_index":4885,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["min_val",{"_index":4755,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["min_valu",{"_index":3186,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["mind",{"_index":2515,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["mine",{"_index":2071,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["minim",{"_index":97,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/trading-indicators/macd":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["minimum",{"_index":311,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["minimumoperations(num",{"_index":4096,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["minor",{"_index":4623,"title":{},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["mint",{"_index":6453,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["minu",{"_index":3456,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}}}],["minut",{"_index":832,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["minutesrow",{"_index":2782,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["miranti",{"_index":2373,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["mirrorindex",{"_index":3565,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["mislead",{"_index":5675,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["miss",{"_index":2362,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["mission",{"_index":2432,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mistakenli",{"_index":2723,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["mit",{"_index":5469,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["mitig",{"_index":2364,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["mix",{"_index":4812,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/python-snippets/":{}},"description":{}}],["mkdir",{"_index":5592,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["mkdoc",{"_index":7224,"title":{},"content":{"/p/links":{}},"description":{}}],["ml",{"_index":2130,"title":{"/apps/npm/hugo-lunr-ml/":{}},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["mno",{"_index":3830,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["mobil",{"_index":26,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{}},"description":{}}],["mobile.mysite.com",{"_index":405,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["mock",{"_index":46,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["mod",{"_index":3714,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["modal",{"_index":2524,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["mode",{"_index":776,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["mode=\"lines+mark",{"_index":6947,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["model",{"_index":135,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/js-snippets":{}},"description":{}}],["modif",{"_index":2491,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/python-snippets/":{}},"description":{}}],["modifi",{"_index":185,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{},"/posts/python-snippets/":{}},"description":{}}],["modifyaccount",{"_index":2104,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["modifybil",{"_index":2105,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["modifypaymentmethod",{"_index":2106,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["modul",{"_index":1847,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["modular",{"_index":4842,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-snippets/":{}},"description":{}}],["moduleresolut",{"_index":7059,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["modulo",{"_index":4189,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["moment",{"_index":1937,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["momentarili",{"_index":1685,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["momentum",{"_index":5629,"title":{"/posts/trading-indicators/stochastic_oscillator":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["mon/mon",{"_index":2764,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["money",{"_index":5847,"title":{},"content":{"/posts/trading-indicators/_index":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["mongo.pi",{"_index":5894,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_collection_db_nam",{"_index":6015,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_collection_db_name=mydb",{"_index":6061,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_connection_str",{"_index":6013,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongo_connection_string=mongodb+srv://login:password@cluster0.xxxxx.mongodb.net/mydb?retrywrites=true&w=major",{"_index":6060,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongocli",{"_index":6052,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongoclient(mongo_connection_str",{"_index":6058,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mongodb",{"_index":5891,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["monitor",{"_index":312,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["monitoring.txt",{"_index":2767,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["monofont=\"m",{"_index":5116,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["monoton",{"_index":3171,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["monterey",{"_index":6522,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["month",{"_index":853,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/apps/brewmate/":{}},"description":{}}],["monthli",{"_index":1826,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["more",{"_index":278,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["morenumb",{"_index":5375,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["morenumbers.length",{"_index":5380,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["morenumbers.push(5",{"_index":5378,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["morenumbers[5",{"_index":5377,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["moreov",{"_index":4159,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["morri",{"_index":4216,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["mostli",{"_index":2279,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["mount",{"_index":2460,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["mountpath",{"_index":2780,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["mous",{"_index":2548,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["move",{"_index":154,"title":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/trading-indicators/macd":{}}}],["move_to_end",{"_index":3945,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["movement",{"_index":5676,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["movezeroes(self",{"_index":4469,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["movi",{"_index":1459,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/python-snippets/":{}},"description":{}}],["movie=fals",{"_index":6322,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["movie=tru",{"_index":6372,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mp",{"_index":3707,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["mp[s[j",{"_index":3710,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["mq",{"_index":1106,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["mro",{"_index":6368,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ms",{"_index":2958,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["msg",{"_index":6276,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["mu",{"_index":6503,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["much",{"_index":1726,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["multi",{"_index":195,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["multidimension",{"_index":3154,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["multilin",{"_index":2580,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["multilingu",{"_index":6574,"title":{"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/_index":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["multimast",{"_index":1577,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["multimedia",{"_index":2836,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["multipart",{"_index":1414,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["multipart/form",{"_index":5244,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["multipl",{"_index":56,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/other-snippets":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{"/posts/bash-snippets":{}}}],["multiple/trailing/lead",{"_index":5518,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["multipli",{"_index":2004,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/trading-indicators/ema":{}},"description":{}}],["multivalu",{"_index":1546,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["mushroom",{"_index":4689,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["mutabl",{"_index":3394,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/posts/python-snippets/":{}},"description":{}}],["mutat",{"_index":5379,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["mv",{"_index":2453,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/bash-snippets":{}},"description":{}}],["my_db",{"_index":6025,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["my_db.us",{"_index":6027,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["my_file.txt",{"_index":1347,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["my_folder/another_folder/my_file.txt",{"_index":1348,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["myatoi",{"_index":3406,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["myclientid",{"_index":5262,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["mycustomfunc",{"_index":1792,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["mydb",{"_index":6056,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["mydomain1.localhost",{"_index":5568,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mydomain2.localhost",{"_index":5570,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mydomain3.localhost",{"_index":5572,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mykey",{"_index":2448,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mykey.pem",{"_index":2454,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["mypackag",{"_index":5449,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["mypow(self",{"_index":3532,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["mypy_cach",{"_index":5016,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["mysearch",{"_index":5327,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["myself",{"_index":4962,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["myserv",{"_index":5604,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["mysql",{"_index":1566,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["mysqrt(self",{"_index":4235,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["myswitch",{"_index":7146,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["myvm1",{"_index":7142,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["myvm2",{"_index":7149,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["n",{"_index":3010,"title":{"/tracks/algorithms-101/leetcode/medium/50":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-bitwise-operators":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/50":{}}}],["n*(n+1)/2",{"_index":3877,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["n+1",{"_index":3997,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["n+2",{"_index":4866,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["n+m",{"_index":4870,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["n//2",{"_index":4820,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["n/2",{"_index":4817,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["n/a",{"_index":2162,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["n10",{"_index":4419,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["n5",{"_index":4418,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["n=1",{"_index":3811,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["n_interv",{"_index":6942,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["n_sum",{"_index":4414,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["nabla",{"_index":6508,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nacl",{"_index":1561,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["naiv",{"_index":3741,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["name",{"_index":533,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["name**:testgetev",{"_index":1690,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["name**:testputev",{"_index":1628,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["name/password",{"_index":2055,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["name:tag",{"_index":7155,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["name=symbol",{"_index":6948,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["nameandcpuutilizationund",{"_index":2789,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["nameend",{"_index":2603,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["nameerror",{"_index":6128,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nameof",{"_index":2254,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["namespac",{"_index":2721,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-snippets/":{}},"description":{}}],["nan",{"_index":6378,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["narrow",{"_index":2537,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/sma":{}},"description":{}}],["nat",{"_index":1559,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["nation",{"_index":3360,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["nativ",{"_index":2001,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["natur",{"_index":2740,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["navig",{"_index":1179,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["navigator.clipboard.writetext(codetocopi",{"_index":5421,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["nay",{"_index":6132,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nbconvert",{"_index":5432,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["neanderthalensi",{"_index":6303,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["near",{"_index":612,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["nearest",{"_index":3120,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["nearli",{"_index":2666,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["necessari",{"_index":1664,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/posts/python-docstring-templates":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["necessarili",{"_index":3656,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["ned",{"_index":5007,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["need",{"_index":62,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-deepclone-js/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["need_two",{"_index":4900,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["neg",{"_index":3599,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-snippets/":{}},"description":{}}],["negat",{"_index":6101,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["neighbor",{"_index":3274,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["neq",{"_index":6512,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nerd",{"_index":6651,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["ness",{"_index":6219,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["nest",{"_index":2871,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["net",{"_index":2274,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["netflix",{"_index":1931,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["network",{"_index":85,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["networkinterfac",{"_index":1771,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["neutral",{"_index":2396,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["never",{"_index":516,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["new",{"_index":146,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["new_col",{"_index":3324,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["new_cur",{"_index":4151,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["new_fil",{"_index":5545,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["new_file=${fil",{"_index":5544,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["new_head",{"_index":4149,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["new_max",{"_index":3884,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{}},"description":{}}],["new_nam",{"_index":6976,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["new_pric",{"_index":6965,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["new_row",{"_index":3323,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["new_sourc",{"_index":6991,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["new_str",{"_index":3649,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["newer",{"_index":2184,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cheat-sheet-command-tar/":{},"/apps/brewmate/":{}},"description":{}}],["newest",{"_index":7219,"title":{},"content":{"/p/links":{}},"description":{}}],["newfilenam",{"_index":6993,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["newli",{"_index":1165,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["newlin",{"_index":5274,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["newnod",{"_index":3793,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["next",{"_index":1151,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["next(our_iter",{"_index":6202,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["next.prev",{"_index":3980,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["next=non",{"_index":3803,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["next_cel",{"_index":3305,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["nextand",{"_index":2798,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["nextto",{"_index":1901,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["nexu",{"_index":2705,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["nginx",{"_index":2276,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["nginx.conf",{"_index":5561,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["nice",{"_index":6120,"title":{},"content":{"/posts/python-snippets/":{},"/p/links":{}},"description":{}}],["nicer",{"_index":6110,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["night",{"_index":2815,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["nine",{"_index":3655,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["nitro",{"_index":2458,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["nlb",{"_index":2158,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["nn",{"_index":3502,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[0",{"_index":3503,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[i+1",{"_index":3507,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[i+j+1",{"_index":3509,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nn[last_i",{"_index":3510,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["nobi",{"_index":6436,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["nocturn",{"_index":6489,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["node",{"_index":1665,"title":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/116":{}}}],["node'",{"_index":3918,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/docker-commands/":{}},"description":{}}],["node(0",{"_index":3962,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node(1",{"_index":5612,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node(2",{"_index":5613,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node(3",{"_index":5614,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node(cur.v",{"_index":4150,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["node(key",{"_index":3972,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node(s[idx",{"_index":4588,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["node(valu",{"_index":4566,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["node.children",{"_index":5620,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node.children[ch",{"_index":5621,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node.end_of_str",{"_index":5622,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["node.j",{"_index":1732,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["node.left",{"_index":3251,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["node.next",{"_index":3921,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["node.prev",{"_index":3978,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node.right",{"_index":3253,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["node.v",{"_index":3923,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["node.valu",{"_index":3970,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["node/npm",{"_index":6631,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["node_modul",{"_index":5556,"title":{},"content":{"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["nodeintegr",{"_index":7073,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nodej",{"_index":5590,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["nodemon",{"_index":3387,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["nodes.add(cur",{"_index":4366,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["nodes[cur",{"_index":4152,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["nodes[cur.next",{"_index":4154,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["nodes[cur.random",{"_index":4157,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["nodes[cur].next",{"_index":4153,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["nodes[cur].random",{"_index":4156,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["nodes[head",{"_index":4158,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["noemit",{"_index":7062,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nofallthroughcasesinswitch",{"_index":7058,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["nois",{"_index":5669,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["nologin",{"_index":6698,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["non",{"_index":1158,"title":{"/posts/linux-interactive-non-interactive-users/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/linux-interactive-non-interactive-users/":{}}}],["none",{"_index":1624,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["noninteractiveus",{"_index":6691,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["noninteractiveuser:x:1001:1001::/home/noninteractiveuser:/sbin/nologin",{"_index":6704,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["nopasswd",{"_index":7021,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["normal",{"_index":301,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["normalizer==2.1.1",{"_index":6065,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["nosql",{"_index":2480,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["nostion",{"_index":6456,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["notabl",{"_index":5468,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["notact",{"_index":2091,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["notat",{"_index":1480,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["note",{"_index":641,"title":{"/posts/code-style":{},"/posts/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/posts/code-style":{}}}],["notebook",{"_index":5426,"title":{"/posts/howto-render-notebook-in-hugo":{}},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{"/posts/howto-render-notebook-in-hugo":{}}}],["notebook.html",{"_index":5436,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["notethat",{"_index":6460,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["noth",{"_index":148,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["notic",{"_index":814,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["notif",{"_index":461,"title":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/interactivebrokers-deposit/":{}},"description":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}}}],["notifi",{"_index":2264,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["notifications.html",{"_index":718,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["notion",{"_index":6539,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["notsur",{"_index":5300,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["nov",{"_index":3374,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["novemb",{"_index":6466,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["now",{"_index":1178,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["nox",{"_index":5017,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["npm",{"_index":2574,"title":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/algorithms-101/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["npm@latest",{"_index":6636,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["npmrc",{"_index":5455,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["ns1",{"_index":1534,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["nset",{"_index":4051,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["nth",{"_index":2992,"title":{"/tracks/algorithms-101/leetcode/medium/19":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{"/tracks/algorithms-101/leetcode/medium/19":{}}}],["nuget",{"_index":2703,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["null",{"_index":1369,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["num",{"_index":3230,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["num1",{"_index":5085,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["num2",{"_index":5084,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["num2=5",{"_index":5087,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["num[i",{"_index":4099,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["num_divisor",{"_index":3734,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["number",{"_index":429,"title":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["number.isnan(new",{"_index":5178,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["number/charact",{"_index":1516,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["numer",{"_index":3839,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["numlivesforcat",{"_index":5303,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["nums.append(tmp_remov",{"_index":3635,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["nums.pop(0",{"_index":3632,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["nums.sort",{"_index":3904,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums1",{"_index":4217,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["nums1.sort",{"_index":4221,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["nums1[i",{"_index":4220,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{}},"description":{}}],["nums2",{"_index":4218,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["nums[0",{"_index":3504,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[0:target_index",{"_index":3684,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["nums[1",{"_index":3883,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[2",{"_index":3899,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[2,3,4",{"_index":4125,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["nums[3",{"_index":3901,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[4",{"_index":3900,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[i",{"_index":3348,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"description":{}}],["nums[i+1",{"_index":3342,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["nums[i+k",{"_index":4256,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["nums[j",{"_index":3894,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[k",{"_index":3895,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nums[l",{"_index":3432,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["nums[left",{"_index":3426,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["nums[m",{"_index":3431,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["nums[mid",{"_index":3425,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{}},"description":{}}],["nums[r",{"_index":3434,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["nums[right",{"_index":3427,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["nums[target_index",{"_index":3685,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["nums[z",{"_index":3906,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["nvm",{"_index":6554,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["nvm)/nvm.sh",{"_index":6632,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["nxt",{"_index":4267,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["n×n",{"_index":4128,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["o",{"_index":1131,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/other-snippets":{}},"description":{}}],["o'",{"_index":4039,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["o','o",{"_index":4459,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["o(1",{"_index":3543,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["o(\\log^2",{"_index":3735,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["o(log",{"_index":3678,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["o(logn",{"_index":4660,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["o(m",{"_index":4374,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["o(n",{"_index":3542,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["o(n*k",{"_index":3815,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["o(n*m",{"_index":4276,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["o(n^2",{"_index":3541,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["o(n^3",{"_index":4132,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["ob",{"_index":6540,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["obj",{"_index":5408,"title":{},"content":{"/posts/js-convert-array-to-dict":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj.length",{"_index":7104,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["obj[key",{"_index":7101,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object",{"_index":655,"title":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-create-deepclone-js/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-create-deepclone-js/":{}}}],["object.assign",{"_index":7093,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.fromentries('http://url.com/page?name=adam&surname=smith'.split('?')[1].split('&').map(x=>x.split",{"_index":5168,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["object.key",{"_index":7095,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["object.keys(clone).foreach",{"_index":7098,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["objectid",{"_index":6020,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["objectid(user_id",{"_index":6035,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["objects.foreach((obj",{"_index":5406,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["objectstab",{"_index":1920,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["objectwithkeynam",{"_index":5403,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["observ",{"_index":486,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{}}],["observedzoom",{"_index":6891,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["observedzooms.foreach(zoom",{"_index":6893,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["obstacl",{"_index":4984,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["obtain",{"_index":2720,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["obv",{"_index":5845,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["occasion",{"_index":2008,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["occur",{"_index":780,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["occurr",{"_index":2996,"title":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1207":{}}}],["odd",{"_index":3082,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["odd_s1",{"_index":4117,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["odd_s2",{"_index":4121,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["offer",{"_index":653,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/markdown-syntax/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/141":{}}}],["offic",{"_index":2097,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["offici",{"_index":941,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["offlin",{"_index":1247,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["offload",{"_index":1873,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["oh",{"_index":6644,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["oint",{"_index":6507,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["ok",{"_index":2045,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/js-snippets":{}},"description":{}}],["okay",{"_index":5301,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["okr",{"_index":3372,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["okstat",{"_index":2820,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["ok—th",{"_index":2795,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["old",{"_index":608,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/docker-commands/":{}},"description":{}}],["old_sourc",{"_index":6989,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["older",{"_index":616,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/docker-commands/":{}},"description":{}}],["oldest",{"_index":2806,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{}},"description":{}}],["omega",{"_index":6505,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["omit",{"_index":5298,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["omz",{"_index":6649,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["on",{"_index":60,"title":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["on_cancel_order_request",{"_index":4940,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["on_new_order_request",{"_index":4939,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["onc",{"_index":159,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["onelogin",{"_index":2530,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["onesign",{"_index":1276,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["onion",{"_index":6370,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["onlin",{"_index":1698,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["onto",{"_index":1435,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/git-snippets":{}},"description":{}}],["op",{"_index":2429,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["open",{"_index":924,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/brewmate/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["open(\"./input.txt",{"_index":4679,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["openai",{"_index":7221,"title":{},"content":{"/p/links":{}},"description":{}}],["openguid",{"_index":1934,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["openid",{"_index":2528,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["opensearch",{"_index":897,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["opensearchservic",{"_index":1680,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["openshift",{"_index":2125,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["opensourc",{"_index":7111,"title":{"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{},"description":{}}],["openssh",{"_index":1817,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["openvpn",{"_index":4945,"title":{"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{"/stories/002-openvpn-aws-ec2-setup":{}}}],["oper",{"_index":171,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/python-bitwise-operators":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-bitwise-operators":{},"/posts/bash-snippets":{}}}],["operation",{"_index":2198,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["opportun",{"_index":2947,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["oppos",{"_index":1138,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["opposit",{"_index":3215,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/python-snippets/":{}},"description":{}}],["opswork",{"_index":155,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["opt",{"_index":4950,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["opt/aws/bin/cfn",{"_index":2917,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["opt/homebrew/anaconda3/bin//python",{"_index":6672,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["opt/homebrew/bin/pip",{"_index":6671,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["opt/projects/1",{"_index":5593,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/1/app.j",{"_index":5577,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/2",{"_index":5596,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/2/app.j",{"_index":5578,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["opt/projects/start.sh",{"_index":5599,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["optim",{"_index":401,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/git-snippets":{},"/posts/code-style":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/stories/004-trading-bot-refactor-orders":{}}}],["optimist",{"_index":2497,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["optimized(c",{"_index":2420,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["optimized(d",{"_index":2424,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["optimized(r",{"_index":2423,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["optimum",{"_index":2472,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["option",{"_index":127,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["optional[listnod",{"_index":3763,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["optional[nod",{"_index":4062,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/138/":{}},"description":{}}],["optional[treenod",{"_index":4210,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["optionsand",{"_index":1883,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["opu",{"_index":6588,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["oracl",{"_index":1572,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["orang",{"_index":1499,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["orchestr",{"_index":735,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["orchestra",{"_index":1073,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["orches­tr",{"_index":1064,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"description":{}}],["ord",{"_index":4355,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["ord('a",{"_index":3607,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["ord('b",{"_index":4359,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["ord(lett",{"_index":4361,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["order",{"_index":414,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/stories/004-trading-bot-refactor-orders":{}}}],["order1",{"_index":5390,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["order2",{"_index":5391,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["order3",{"_index":5392,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["order_typ",{"_index":4929,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["ordereddict",{"_index":3942,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["orderitem",{"_index":5387,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["orders",{"_index":5385,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["orderstatus.new",{"_index":4937,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["ordinari",{"_index":6262,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["oregon",{"_index":1501,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["org",{"_index":5998,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["org.codenarc:codenarc:1.6",{"_index":5041,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["org/mi",{"_index":7152,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["org:mi",{"_index":7154,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["organ",{"_index":536,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["organis",{"_index":2535,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["organisation'",{"_index":2695,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["organiz",{"_index":1519,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{}},"description":{}}],["organization'",{"_index":1162,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["origin",{"_index":269,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["os",{"_index":2292,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-rename-files-in-python/":{},"/apps/_index":{}},"description":{}}],["os.environ.get",{"_index":6053,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["os.environ.get(\"code_debug",{"_index":4677,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["os.listdir",{"_index":6978,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.path.splitext",{"_index":6977,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.path.splitext(fil",{"_index":6980,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.renam",{"_index":6974,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(fil",{"_index":6982,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["os.rename(old_nam",{"_index":6975,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["oscar",{"_index":6350,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["oscil",{"_index":5628,"title":{"/posts/trading-indicators/stochastic_oscillator":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/stochastic_oscillator":{}}}],["osi",{"_index":2156,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["other",{"_index":2483,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["other_li",{"_index":6135,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["other_ord",{"_index":4931,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["other_order.statu",{"_index":4936,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["other_order.time_to_cancel",{"_index":4934,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["other_set",{"_index":6193,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["otherwis",{"_index":1353,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["our_iter",{"_index":6198,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["our_iterable[1",{"_index":6200,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["out",{"_index":182,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/git-snippets":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}}}],["out/in",{"_index":2174,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["outag",{"_index":485,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["outdat",{"_index":2336,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["outer",{"_index":3908,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["outermost",{"_index":1643,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["outgo",{"_index":1926,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["outofservic",{"_index":2239,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["outpost",{"_index":1595,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["output",{"_index":71,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-docstring-templates":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["output(\"l",{"_index":6940,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["output.append(curr",{"_index":3354,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["output.append({'recordid",{"_index":2043,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["output.avi",{"_index":6623,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["output.gif",{"_index":6630,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["output.mp4",{"_index":6622,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["outputformat",{"_index":6782,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["outsid",{"_index":322,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/posts/markdown-syntax/":{}},"description":{}}],["over",{"_index":327,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{}}],["overal",{"_index":1655,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["overbought",{"_index":5637,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["overbought/oversold",{"_index":5680,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["overbuy",{"_index":5781,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["overcom",{"_index":4981,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["overcount",{"_index":4805,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["overhead",{"_index":1126,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{}},"description":{}}],["overlap",{"_index":3169,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["overrid",{"_index":6318,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["overridden",{"_index":6328,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["oversel",{"_index":5782,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["oversold",{"_index":5638,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["overview",{"_index":940,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["overwhelm",{"_index":2962,"title":{},"content":{"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["overwrit",{"_index":1361,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/js-snippets":{}},"description":{}}],["own",{"_index":1820,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["owner",{"_index":1139,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["ownership",{"_index":2883,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["p",{"_index":4867,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["p.item2",{"_index":5359,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p.pi",{"_index":3389,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["p1",{"_index":3806,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{}}],["p1.age",{"_index":5366,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p1.next",{"_index":3808,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["p2",{"_index":3807,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{}}],["p2.age",{"_index":5369,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p2.next",{"_index":3812,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["p2.next.next",{"_index":3813,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["p3",{"_index":4871,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{}},"description":{}}],["p3.age",{"_index":5368,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["p4",{"_index":4872,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["p5",{"_index":4873,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["paa",{"_index":2386,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["packag",{"_index":356,"title":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["package'",{"_index":5474,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["package.json",{"_index":2571,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["packer",{"_index":2284,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["packrequir",{"_index":6004,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["page",{"_index":10,"title":{"/search/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}},"description":{}}],["page.istransl",{"_index":6860,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["page.relpermalink",{"_index":6776,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["page.titl",{"_index":6777,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["page.transl",{"_index":6861,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagemak",{"_index":6732,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["pages_cont",{"_index":6809,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagesstor",{"_index":6790,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagesstore[doc['uri",{"_index":6799,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pagesstore[url",{"_index":6834,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["pair",{"_index":1015,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/js-snippets":{},"/posts/trading-indicators/sma":{},"/posts/howto-create-deepclone-js/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["pairtotupl",{"_index":5357,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["pairwis",{"_index":4101,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["pak",{"_index":2139,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["pal_left",{"_index":3550,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["pal_len",{"_index":3552,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["pal_right",{"_index":3551,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["palett",{"_index":5031,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["palindrom",{"_index":2985,"title":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/9/":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["panda",{"_index":5740,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["pandoc",{"_index":5101,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["pane",{"_index":1874,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["panel",{"_index":1904,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["paper",{"_index":3785,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["par_dict",{"_index":4315,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["par_dict.get(last_valu",{"_index":4318,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["par_dict[stack",{"_index":4321,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["parabol",{"_index":5850,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["paragraph",{"_index":6416,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.innerhtml",{"_index":6904,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraph.textcont",{"_index":6905,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["paragraphs.foreach(paragraph",{"_index":6902,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["parallel",{"_index":1101,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["parallelqueri",{"_index":1576,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["param",{"_index":3405,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["param1",{"_index":5079,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["param2",{"_index":5075,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["param2_valu",{"_index":5082,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["paramet",{"_index":529,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["parent",{"_index":4516,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["parent'",{"_index":6317,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["parent.contains(child",{"_index":5170,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["parent.left",{"_index":4573,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["parent.right",{"_index":4574,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["parent=non",{"_index":4571,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["parenthes",{"_index":2971,"title":{"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/20":{}}}],["parenthesi",{"_index":6231,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["pariti",{"_index":4751,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["parity_count",{"_index":4829,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["pars",{"_index":6866,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["parseint(",{"_index":3408,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/8":{}},"description":{}}],["part",{"_index":1316,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["parti",{"_index":636,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["partial",{"_index":2427,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["particip",{"_index":158,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["particular",{"_index":2245,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["particularli",{"_index":4251,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/macd":{}},"description":{}}],["partiql",{"_index":2517,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["partit",{"_index":415,"title":{"/tracks/algorithms-101/leetcode/medium/131":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/131":{}}}],["partition(self",{"_index":4028,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["partner",{"_index":971,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["partnership",{"_index":959,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["pass",{"_index":772,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/cloud-exam-quizz/":{}},"description":{"/apps/cloud-exam-quizz/":{}}}],["passag",{"_index":6730,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["passed_two",{"_index":4899,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["passeng",{"_index":2277,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["passiv",{"_index":1536,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["password",{"_index":212,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["password:aw",{"_index":2405,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["past",{"_index":1907,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/posts/trading-indicators/sma":{},"/posts/mac-setup-development/":{}},"description":{}}],["patch",{"_index":2121,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{}},"description":{}}],["path",{"_index":186,"title":{"/tracks/algorithms-101/leetcode/medium/62":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/posts/howto-publish-js-npm-project":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/62":{}}}],["path(fil",{"_index":6984,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path.append(nums[i",{"_index":3340,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["path.pop",{"_index":3343,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["path.rename(new_nam",{"_index":6983,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["path/fil",{"_index":7190,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["pathlib",{"_index":6973,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["pattern",{"_index":965,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/bash-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/posts/bash-snippets":{}}}],["patternbutton",{"_index":1684,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["patternwizard",{"_index":1693,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["paus",{"_index":769,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["pay",{"_index":1070,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["payer",{"_index":2103,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["payload",{"_index":1322,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["payment",{"_index":703,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["pc",{"_index":6603,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pci",{"_index":2058,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["pd",{"_index":5741,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["pdf",{"_index":4841,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/apps/_index":{}},"description":{}}],["peak",{"_index":2469,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["peel",{"_index":6369,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["peer",{"_index":1562,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["pem",{"_index":1199,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["penalti",{"_index":1779,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["pencil",{"_index":2770,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["pend",{"_index":1897,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["penv='python",{"_index":6673,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["peopl",{"_index":1338,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/p/links":{}},"description":{}}],["pep",{"_index":5004,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{}},"description":{}}],["per",{"_index":1033,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["peregrin",{"_index":2136,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["perf",{"_index":5541,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["perfect",{"_index":2496,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{"/posts/bash-snippets":{}}}],["perfectli",{"_index":4081,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["perform",{"_index":175,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/bash-snippets":{}}}],["period",{"_index":605,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/markdown-syntax/":{}},"description":{}}],["perl",{"_index":2754,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["perm",{"_index":3626,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["perm.append(tmp_remov",{"_index":3634,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["perman",{"_index":1446,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["permiss",{"_index":1157,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["permit",{"_index":5373,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["permut",{"_index":3005,"title":{"/tracks/algorithms-101/leetcode/medium/46":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{"/tracks/algorithms-101/leetcode/medium/46":{}}}],["permute(self",{"_index":3629,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["persever",{"_index":4980,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["persist",{"_index":2352,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["person",{"_index":1263,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/p/links":{}},"description":{}}],["perspiciati",{"_index":6437,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pertain",{"_index":2737,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["phase",{"_index":2315,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["phone",{"_index":2990,"title":{"/tracks/algorithms-101/leetcode/medium/17":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/17":{}}}],["photos/video",{"_index":6602,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["php",{"_index":2275,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["phrase",{"_index":3584,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{},"/posts/markdown-syntax/":{}},"description":{}}],["physic",{"_index":1617,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["pi",{"_index":4869,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/markdown-syntax/":{}},"description":{}}],["pick",{"_index":1248,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/git-snippets":{}},"description":{}}],["picker",{"_index":1432,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["pictur",{"_index":6582,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/posts/mac-setup-development/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["pie",{"_index":6759,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["piec",{"_index":1756,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["pigeon",{"_index":4806,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["pigeonhol",{"_index":4802,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["pike",{"_index":6463,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pike’",{"_index":6464,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["pin",{"_index":7113,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["ping",{"_index":2223,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["pip",{"_index":2702,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["pipelin",{"_index":1063,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["pipeline.html",{"_index":193,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["pivot",{"_index":3062,"title":{"/tracks/algorithms-101/leetcode/easy/724":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/trading-indicators/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/724":{}}}],["pivotindex(num",{"_index":4224,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["pix_fmt",{"_index":6626,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pixel",{"_index":5442,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["pizza",{"_index":4808,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["place",{"_index":353,"title":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["placehold",{"_index":6900,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["placement",{"_index":2389,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["plain",{"_index":716,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["plaintext",{"_index":1208,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["plan",{"_index":538,"title":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/codeforces/plan":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["plant",{"_index":4444,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["plate",{"_index":5332,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["platform",{"_index":1283,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["play",{"_index":1713,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["player",{"_index":6613,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pleas",{"_index":1502,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["plesk",{"_index":2635,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{}},"description":{}}],["plot",{"_index":4443,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/macd":{}},"description":{}}],["plotli",{"_index":6915,"title":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["plotly'",{"_index":6918,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["plotly.graph_obj",{"_index":6920,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["plow",{"_index":6998,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["plu",{"_index":872,"title":{"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{}}}],["plugin",{"_index":2638,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["plugins=(zsh",{"_index":6659,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["plusone(self",{"_index":4247,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/66":{}},"description":{}}],["pm",{"_index":4868,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/markdown-syntax/":{}},"description":{}}],["png",{"_index":5549,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["pocket",{"_index":6570,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["pod",{"_index":2195,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["podcast",{"_index":985,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["point",{"_index":458,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["point(0",{"_index":5337,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["point(10",{"_index":5339,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["point(25",{"_index":5340,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["point3d",{"_index":5342,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["pointer",{"_index":1751,"title":{"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/138/":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["pointer(",{"_index":4454,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["pointera",{"_index":4367,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointera.next",{"_index":4369,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointerb",{"_index":4368,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointerb.next",{"_index":4370,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["pointers.jpg",{"_index":3217,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["pointperson",{"_index":5338,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["polici",{"_index":217,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["policies.html",{"_index":676,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["poll",{"_index":357,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["pom.xml",{"_index":5536,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["pool",{"_index":2353,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["poor",{"_index":5785,"title":{},"content":{"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["poorli",{"_index":1473,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["pop",{"_index":2558,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-snippets/":{}},"description":{}}],["pope",{"_index":3628,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["popitem",{"_index":3946,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["popul",{"_index":1292,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/116":{}}}],["popular",{"_index":1405,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/rsi":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{"/posts/docker-commands/":{}}}],["popularis",{"_index":6727,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["popup",{"_index":6763,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["popup.html",{"_index":6768,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["port",{"_index":1043,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/docker-commands/":{}},"description":{}}],["portal",{"_index":4789,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["portion",{"_index":4512,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["posit",{"_index":1798,"title":{"/tracks/algorithms-101/leetcode/medium/34":{}},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/34":{}}}],["possibl",{"_index":394,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1004/":{}}}],["post",{"_index":236,"title":{"/posts/archive/":{},"/homepage/pages":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/archive/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-publish-js-npm-project":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/archive/":{}},"description":{"/posts/hugo-shortcode-examples/img":{}}}],["post['ref",{"_index":6833,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["postgresql",{"_index":1569,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["postman",{"_index":6541,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["postpon",{"_index":1132,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["potenti",{"_index":994,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/1431":{}}}],["potion",{"_index":3137,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["pow",{"_index":3534,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["pow(x",{"_index":3009,"title":{"/tracks/algorithms-101/leetcode/medium/50":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{"/tracks/algorithms-101/leetcode/medium/50":{}}}],["power",{"_index":1648,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["powershel",{"_index":1731,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["poweruseraccess",{"_index":2083,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["pow}!\".format(pow=pow",{"_index":6333,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ppk",{"_index":1198,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["pqr",{"_index":3831,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["practic",{"_index":425,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["pre",{"_index":1291,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["prebuild",{"_index":7178,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["precaut",{"_index":1877,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["preced",{"_index":1996,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/python-snippets/":{}},"description":{}}],["precis",{"_index":5280,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["predecessor",{"_index":7005,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["predefin",{"_index":834,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["predict",{"_index":2475,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["predic­t",{"_index":2858,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["prefac",{"_index":1450,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["prefer",{"_index":1196,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}},"description":{}}],["prefil",{"_index":6134,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["prefix",{"_index":1521,"title":{"/tracks/algorithms-101/leetcode/easy/14":{}},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/14":{}}}],["prefix)/opt/powerlevel10k/powerlevel10k.zsh",{"_index":6653,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["prefix_sum(self",{"_index":4599,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["prematur",{"_index":5800,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["premis",{"_index":539,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["premium",{"_index":1394,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["prepar",{"_index":14,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/posts/other-snippets":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["prepare.com",{"_index":18,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["prepend",{"_index":4713,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["prepublishonli",{"_index":5450,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["prerequir",{"_index":3749,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/22":{}},"description":{}}],["prerequisit",{"_index":5430,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["presenc",{"_index":4095,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["present",{"_index":984,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["preserv",{"_index":1488,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["preset",{"_index":2300,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/mac-setup-development/":{}},"description":{}}],["presign",{"_index":1386,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["press",{"_index":1699,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/markdown-syntax/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["pretti",{"_index":1232,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/docker-commands/":{}},"description":{}}],["prettier",{"_index":5050,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["prettierrc",{"_index":5053,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["prev",{"_index":3977,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["prev.next",{"_index":3979,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["prev.val",{"_index":4269,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/234":{}},"description":{}}],["prev1",{"_index":4230,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["prev2",{"_index":4231,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["prev_str",{"_index":4088,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["prev_substr_end_index",{"_index":4002,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["prevent",{"_index":1130,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["preview",{"_index":1902,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["previou",{"_index":1230,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/code-style":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{}},"description":{}}],["previous",{"_index":1223,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{}},"description":{}}],["pre­mis",{"_index":2678,"title":{},"content":{"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["price",{"_index":1054,"title":{"/posts/trading-indicators/bollinger_bands":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["prices[i",{"_index":4059,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["primari",{"_index":1520,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["primarili",{"_index":1746,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["primit",{"_index":6091,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["princip",{"_index":1397,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["principl",{"_index":4405,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["print",{"_index":1233,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{}}],["print(",{"_index":4907,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["print(\"\\n",{"_index":4682,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["print(\"hello",{"_index":6121,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"i",{"_index":3314,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/python-snippets/":{}},"description":{}}],["print(\"i'm",{"_index":6119,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"messag",{"_index":1312,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["print(\"new",{"_index":6995,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["print(\"no",{"_index":4709,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(\"pair",{"_index":3235,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(\"scor",{"_index":3227,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(\"some_var",{"_index":6196,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"subject",{"_index":1310,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["print(\"x",{"_index":6207,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(\"y",{"_index":4708,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(\"{nam",{"_index":6277,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('am",{"_index":6349,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('can",{"_index":6383,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('i",{"_index":6337,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print('no",{"_index":4858,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print('successfulli",{"_index":2047,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["print('y",{"_index":4861,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(*tracked_data",{"_index":4878,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["print(0",{"_index":4831,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(1",{"_index":4819,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(a[x",{"_index":4761,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(arg",{"_index":6221,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(b.fli",{"_index":6362,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(b.say('hello",{"_index":6361,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(batman.mro",{"_index":6379,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(ceil(3.7",{"_index":6257,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(cur",{"_index":4774,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(draw",{"_index":4839,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(f\"{a}:{b",{"_index":4832,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(f\"{matchesi}:{matchesi",{"_index":4840,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["print(f'*{a",{"_index":4892,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(f'{a[0",{"_index":4891,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(f'{a[i:i+2",{"_index":4895,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["print(floor(3.7",{"_index":6258,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(gen_to_list",{"_index":6394,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(human.grunt",{"_index":6305,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(i",{"_index":6199,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(i.grunt",{"_index":6306,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(kwarg",{"_index":6222,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(len(",{"_index":4722,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(math.sqrt(16",{"_index":6254,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(max_index",{"_index":4699,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["print(nod",{"_index":3272,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(node.v",{"_index":3250,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["print(r",{"_index":3344,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["print(say",{"_index":6407,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(say(say_please=tru",{"_index":6408,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(solve(",{"_index":4853,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["print(solve(a",{"_index":4889,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["print(solve(ar",{"_index":4902,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["print(solve(n",{"_index":4716,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["print(sup.ag",{"_index":6348,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.get_speci",{"_index":6341,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.s",{"_index":6342,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(sup.sonar",{"_index":6382,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(superhero.mro",{"_index":6340,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print(x",{"_index":6234,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["print_funct",{"_index":2028,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["printer",{"_index":6719,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["printwidth",{"_index":5061,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["prior",{"_index":1368,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/algorithms-101/leetcode/medium/33":{}},"description":{}}],["priorit",{"_index":2395,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["prioriti",{"_index":3126,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["priorityqueu",{"_index":4641,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["privat",{"_index":397,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["privileg",{"_index":2062,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["pro",{"_index":1610,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{}},"description":{"/posts/mac-setup-development/":{}}}],["proactiv",{"_index":2656,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["probabl",{"_index":2270,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["problem",{"_index":990,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["problem'",{"_index":4138,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["problemset",{"_index":4811,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["proce",{"_index":2235,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["procedur",{"_index":2885,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["process",{"_index":455,"title":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/diploma/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["process.env.auth0_audi",{"_index":5264,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.env.auth0_client_id",{"_index":5260,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.env.auth0_domain",{"_index":5255,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.env.react_app_backend_url",{"_index":5252,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["process.platform",{"_index":7080,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["processor",{"_index":7014,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["prod",{"_index":4123,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/markdown-syntax/":{}},"description":{}}],["produc",{"_index":1714,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/macd":{}},"description":{}}],["product",{"_index":484,"title":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["productexceptself(self",{"_index":4124,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["profession",{"_index":969,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["profil",{"_index":810,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["profit",{"_index":4056,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/122":{}},"description":{}}],["program",{"_index":1727,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/bash-snippets":{}}}],["programat",{"_index":2533,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["programiz",{"_index":4606,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["programm",{"_index":5429,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["programmat",{"_index":2522,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["programmer'",{"_index":3401,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["progress",{"_index":855,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["prohibit",{"_index":6387,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["project",{"_index":168,"title":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/_index":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["project'",{"_index":2559,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["project/workspac",{"_index":5034,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["projects/1",{"_index":5594,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["projects/2",{"_index":5597,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["projects/3",{"_index":5598,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["promis",{"_index":5225,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["promot",{"_index":4993,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["prompt",{"_index":2566,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{}},"description":{}}],["prone",{"_index":331,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/posts/trading-indicators/ema":{}},"description":{}}],["pronunci",{"_index":6495,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["proper",{"_index":2752,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["properli",{"_index":2212,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["properti",{"_index":1448,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["proport",{"_index":1550,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["propos",{"_index":2861,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/posts/python-docstring-templates":{}},"description":{}}],["protea",{"_index":7214,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["protect",{"_index":1363,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["protocol",{"_index":595,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["prove",{"_index":4804,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["provid",{"_index":178,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/algorithms-101/leetcode/medium/148":{},"/apps/npm/cognito-token-observer/":{}}}],["provinc",{"_index":3110,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["provis",{"_index":423,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}}}],["provisionedthroughputexceededexcept",{"_index":2492,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["proxi",{"_index":45,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["proxy_pass",{"_index":5569,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["prune",{"_index":7132,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["prune=now",{"_index":5492,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["ps",{"_index":7123,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["pseudo",{"_index":7158,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["pt5m",{"_index":2923,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["pub/sub",{"_index":1103,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["public",{"_index":328,"title":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/js-snippets":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}}}],["public/index.html",{"_index":7041,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["public/js/set",{"_index":2593,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["public/priv",{"_index":5330,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["public/search.json",{"_index":6865,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["publicli",{"_index":1329,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["publish",{"_index":640,"title":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/hugo-shortcode-examples/img":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["pull",{"_index":2413,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["pump",{"_index":1992,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["purchas",{"_index":2426,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["pure",{"_index":5792,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["purpl",{"_index":6737,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["purpos",{"_index":339,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["push",{"_index":460,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{}}],["push/pul",{"_index":5552,"title":{},"content":{"/posts/bash-snippets":{}},"description":{}}],["put",{"_index":1318,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["put(key",{"_index":3939,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["put(self",{"_index":3953,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["puzzl",{"_index":3327,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["pvt",{"_index":2100,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["py38",{"_index":5011,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pyasn1==0.4.8",{"_index":6078,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pycach",{"_index":5555,"title":{},"content":{"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pycodestyl",{"_index":5006,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pyflak",{"_index":5005,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pyi",{"_index":5012,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["pymongo",{"_index":6051,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pymongo==4.2.0",{"_index":6079,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pyproject.toml",{"_index":5002,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python",{"_index":1238,"title":{"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{}}}],["python'",{"_index":1231,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["python.editor.formatonsav",{"_index":5035,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python.formatting.provid",{"_index":5036,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python.linting.flake8en",{"_index":5037,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python.linting.lintonsav",{"_index":5038,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["python3.9",{"_index":6007,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["pytre",{"_index":7232,"title":{},"content":{"/apps/_index":{}},"description":{}}],["q",{"_index":4758,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["q1",{"_index":19,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["q10",{"_index":20,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q11",{"_index":296,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q2",{"_index":55,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["q20",{"_index":297,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q21",{"_index":469,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q3",{"_index":79,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["q30",{"_index":470,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q31",{"_index":638,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q4",{"_index":109,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["q40",{"_index":639,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q41",{"_index":725,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q5",{"_index":138,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["q50",{"_index":726,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q51",{"_index":812,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q6",{"_index":152,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["q60",{"_index":813,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q7",{"_index":166,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q8",{"_index":194,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["q9",{"_index":220,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["qemu",{"_index":6605,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["quad",{"_index":6497,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["quae",{"_index":6459,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["qualiti",{"_index":2647,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["quay",{"_index":2403,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["queri",{"_index":527,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["query(self",{"_index":4552,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(0",{"_index":4532,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(1",{"_index":4534,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(4",{"_index":4536,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["query_tree(l",{"_index":4529,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["question",{"_index":9,"title":{"/tracks/aws-certified-developer-associate/questions":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/questions":{}}}],["queu",{"_index":1096,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["queue",{"_index":899,"title":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/_index":{}}}],["queue.append(neighbor",{"_index":3276,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["queue.append(node.left",{"_index":3252,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queue.append(node.right",{"_index":3254,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queue.popleft",{"_index":3249,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queue[0",{"_index":4066,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["queueurl",{"_index":1217,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["queueurls[0",{"_index":1219,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["queueurls[1",{"_index":1221,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["quick",{"_index":2416,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["quicker",{"_index":5755,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["quickli",{"_index":243,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/sma":{}},"description":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["quicksight",{"_index":1606,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["quidem",{"_index":6428,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["quiet",{"_index":7164,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["quit",{"_index":2742,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["quizz",{"_index":7233,"title":{"/apps/cloud-exam-quizz/":{}},"content":{"/apps/_index":{}},"description":{}}],["quot",{"_index":2186,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["quota",{"_index":1855,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["quotat",{"_index":825,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/markdown-syntax/":{}},"description":{}}],["quotient",{"_index":3719,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{}},"description":{}}],["qwerti",{"_index":6519,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["r",{"_index":3430,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/bash-snippets":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["r[i",{"_index":4398,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["r_i",{"_index":4130,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rabbitmq",{"_index":1104,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["radio",{"_index":1180,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["rainbow",{"_index":5882,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["rais",{"_index":2467,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-docstring-templates":{},"/posts/python-snippets/":{}},"description":{}}],["ram",{"_index":2167,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["ramp",{"_index":949,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["rancher",{"_index":2127,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{}},"description":{}}],["random",{"_index":13,"title":{"/tracks/algorithms-101/leetcode/medium/138/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/posts/trading-indicators/macd":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["random.randint(1",{"_index":6966,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["randomli",{"_index":1557,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["rang",{"_index":287,"title":{"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["range(0",{"_index":4395,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["range(1",{"_index":3178,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["range(32",{"_index":4336,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["range(5",{"_index":6253,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["range(9",{"_index":3671,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["range(el",{"_index":3508,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["range(end",{"_index":3998,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["range(first",{"_index":3355,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["range(i",{"_index":3188,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["range(inp_int",{"_index":4675,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["range(int(inp",{"_index":4710,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range(int(input",{"_index":4659,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{}},"description":{}}],["range(k",{"_index":3991,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["range(l",{"_index":4759,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range(last_i",{"_index":3505,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/55":{}},"description":{}}],["range(len(a",{"_index":4893,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}},"description":{}}],["range(len(array",{"_index":3185,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["range(len(ga",{"_index":4021,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["range(len(matrix",{"_index":3620,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{}},"description":{}}],["range(len(num",{"_index":3339,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["range(len(r",{"_index":3413,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["range(level_s",{"_index":4065,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/116":{}},"description":{}}],["range(m",{"_index":3469,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["range(n",{"_index":3358,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["range(ne",{"_index":4772,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range(self.n",{"_index":4540,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["range(start",{"_index":3418,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["range(t",{"_index":4763,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["range_sum(self",{"_index":4595,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["range_sum(tre",{"_index":4673,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["rank",{"_index":2359,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["ranking[scor",{"_index":3228,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["rapid",{"_index":5795,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["rare",{"_index":2244,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["rate",{"_index":1013,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["ratio",{"_index":5679,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{}},"description":{}}],["rational",{"_index":4162,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["raw",{"_index":5803,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["ray",{"_index":388,"title":{"/tracks/aws-certified-developer-associate/xray/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["rcu",{"_index":2489,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["rd",{"_index":261,"title":{"/tracks/aws-certified-developer-associate/rds/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["re",{"_index":601,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/posts/js-convert-array-to-dict":{}},"description":{}}],["reach",{"_index":1528,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/docker-commands/":{}},"description":{}}],["react",{"_index":2151,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["reactdom",{"_index":7064,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["reactdom.rend",{"_index":7065,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["read",{"_index":434,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["read/writ",{"_index":2506,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["readabl",{"_index":5542,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["reader",{"_index":6577,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["readi",{"_index":1194,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/cloud-exam-quizz/":{}},"description":{"/apps/cloud-exam-quizz/":{}}}],["readm",{"_index":2659,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/posts/code-style":{}},"description":{}}],["readme.md",{"_index":2572,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["readonli",{"_index":5365,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["readonlyaccess",{"_index":2099,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["readonlyarray",{"_index":5376,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["reaffirm",{"_index":4979,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["real",{"_index":249,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["realism",{"_index":7212,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["realist",{"_index":7204,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["realiz",{"_index":4970,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["realli",{"_index":2785,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["rearrang",{"_index":3585,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["reason",{"_index":321,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["reassign",{"_index":6903,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rebas",{"_index":5495,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["reboot",{"_index":2117,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rebuild",{"_index":760,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["recal",{"_index":2613,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["recalcul",{"_index":4250,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/trading-indicators/sma":{}},"description":{}}],["receipt",{"_index":1256,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receipt_handl",{"_index":1257,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receipt_handle=$(echo",{"_index":1251,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receipthandl",{"_index":1225,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["receiv",{"_index":204,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["recent",{"_index":2466,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}}}],["recent_post",{"_index":4875,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["recipi",{"_index":1277,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["recommend",{"_index":310,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["recomm­end­",{"_index":2649,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["record",{"_index":1004,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["record.get('user_id",{"_index":6041,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["record['messag",{"_index":1307,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["record['recordid",{"_index":2044,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["record['subject",{"_index":1309,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["records'.format(success",{"_index":2048,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["recov",{"_index":1895,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codebuild/":{}},"description":{}}],["recoveri",{"_index":663,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["recreat",{"_index":1916,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["rectangl",{"_index":6542,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["recur",{"_index":3838,"title":{"/tracks/algorithms-101/leetcode/medium/166":{}},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{}}}],["recurs",{"_index":1490,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/git-snippets":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["recycl",{"_index":2077,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["red",{"_index":2123,"title":{},"content":{"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["redi",{"_index":906,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["redirect",{"_index":1949,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["rediscov",{"_index":4958,"title":{"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/stories/001-rediscovering-backtracking-algo":{}}}],["redshift",{"_index":592,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["reduc",{"_index":1030,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/js-snippets":{},"/posts/trading-indicators/atr":{}},"description":{}}],["reduct",{"_index":2283,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["redund",{"_index":2216,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["ref",{"_index":2910,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["refactor",{"_index":386,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["refactor(typ",{"_index":5526,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["refer",{"_index":72,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["referenc",{"_index":2829,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/js-snippets":{}},"description":{}}],["referenti",{"_index":2499,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["refin",{"_index":4917,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["reflect",{"_index":2290,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/atr":{}},"description":{}}],["reflog",{"_index":5489,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["reformat",{"_index":5003,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["refresh",{"_index":1259,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/001-rediscovering-backtracking-algo":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["refreshr",{"_index":2587,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["refus",{"_index":6606,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["regard",{"_index":627,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/python-snippets/":{}},"description":{}}],["regardless",{"_index":1504,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["region",{"_index":611,"title":{"/tracks/algorithms-101/leetcode/medium/130":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/algorithms-101/leetcode/medium/130":{}}}],["regionality:singl",{"_index":1888,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["regionmap",{"_index":2862,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["regist",{"_index":1551,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["registr",{"_index":1525,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["registrar",{"_index":7181,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["registri",{"_index":901,"title":{"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/howto-publish-js-npm-project":{},"/posts/docker-commands/":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}}}],["regress",{"_index":5869,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["regul",{"_index":618,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["regular",{"_index":5386,"title":{},"content":{"/posts/js-snippets":{},"/posts/code-style":{}},"description":{}}],["regulatori",{"_index":1866,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["reiko",{"_index":6114,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["reinstal",{"_index":6641,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["rel",{"_index":2725,"title":{"/posts/trading-indicators/rsi":{}},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/rsi":{}}}],["relat",{"_index":649,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{}}}],["relationship",{"_index":2823,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{}},"description":{}}],["relaunch",{"_index":1598,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["relay",{"_index":2851,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["relearn",{"_index":4982,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["releas",{"_index":2553,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}},"description":{}}],["release.yml",{"_index":5457,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["relev",{"_index":3373,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["reli",{"_index":2896,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["reliabl",{"_index":707,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["reload",{"_index":2248,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["relpermalink",{"_index":6864,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["remain",{"_index":161,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["remaind",{"_index":3847,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["remainder_dict",{"_index":3854,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["remainder_dict[remaind",{"_index":3858,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["remedi",{"_index":2804,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["rememb",{"_index":2241,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-snippets/":{}},"description":{}}],["remind",{"_index":1523,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["remot",{"_index":2599,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/git-snippets":{}},"description":{}}],["remov",{"_index":565,"title":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/howto-rename-files-in-python/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/26":{}}}],["remove(self",{"_index":4570,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["removeduplicates(num",{"_index":4262,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["removenthfromend(self",{"_index":3805,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{}},"description":{}}],["removestars(",{"_index":3745,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["renam",{"_index":1653,"title":{"/posts/howto-rename-files-in-python/":{}},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/bash-snippets":{},"/posts/howto-rename-files-in-python/":{}},"description":{"/posts/bash-snippets":{},"/posts/howto-rename-files-in-python/":{}}}],["render",{"_index":5424,"title":{"/posts/howto-render-notebook-in-hugo":{}},"content":{"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/rsi":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/howto-render-notebook-in-hugo":{}}}],["rendersearchresult",{"_index":6821,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["rendersearchresults(search_results.slice(0",{"_index":6851,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["renew",{"_index":1552,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["reorder",{"_index":3113,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["repair",{"_index":5500,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["repeat",{"_index":888,"title":{"/tracks/algorithms-101/leetcode/medium/3":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{}}}],["repeatedli",{"_index":3181,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["repeat­edli",{"_index":2859,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["repetit",{"_index":3654,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["replac",{"_index":1297,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}}}],["replic",{"_index":761,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["repo",{"_index":4957,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/bash-snippets":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["report",{"_index":323,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["repositori",{"_index":134,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/_index":{}},"description":{"/posts/bash-snippets":{}}}],["repository'",{"_index":5444,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["repository:latest",{"_index":2414,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["repr",{"_index":6270,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["repr(self",{"_index":4561,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["repres",{"_index":1440,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/markdown-syntax/":{}},"description":{}}],["represent",{"_index":1000,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["req_sec",{"_index":1802,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["request",{"_index":293,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["request.args.get('id",{"_index":6033,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["request_id",{"_index":1683,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["requestrespons",{"_index":1739,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["requests==2.28.1",{"_index":6082,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["requir",{"_index":90,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/other-snippets":{},"/posts/trading-indicators/macd":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["requirements.txt",{"_index":5895,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["requirements_freeze.txt",{"_index":6675,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["requiressekm",{"_index":1908,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["res.append(cur",{"_index":3417,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["res.append(path",{"_index":3338,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["res.append(prod",{"_index":4127,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["res[1(1),2(12),6(23",{"_index":4126,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["res[i",{"_index":3650,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["res[i+1",{"_index":3651,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["res[obj[keynam",{"_index":5407,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["res_left",{"_index":4558,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["res_right",{"_index":4559,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["reselect",{"_index":2741,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["resembl",{"_index":5608,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["reserv",{"_index":317,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["reserved_binari",{"_index":4854,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["reserved_binaries.get(c",{"_index":4856,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["reserved_binaries[c",{"_index":4859,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{}},"description":{}}],["reservoir",{"_index":1035,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["reset",{"_index":4080,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/posts/git-snippets":{}},"description":{}}],["reshard",{"_index":571,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["resid",{"_index":2286,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["residu",{"_index":1879,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["resili",{"_index":1245,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["resiz",{"_index":6592,"title":{"/posts/hugo-add-image-zoomin/":{}},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/_index":{}},"description":{"/posts/hugo-shortcode-examples/img":{}}}],["resolut",{"_index":2709,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-snippets/":{}},"description":{}}],["resolv",{"_index":426,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["resolvejsonmodul",{"_index":7060,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["resourc",{"_index":57,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/_index":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["resource/sum",{"_index":1555,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["resource_not_found(",{"_index":6045,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["resourcesign",{"_index":2922,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["respect",{"_index":2262,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{}}],["respond",{"_index":292,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{}},"description":{}}],["respons",{"_index":690,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/code-style":{},"/posts/trading-indicators/ema":{}},"description":{}}],["response.data",{"_index":5228,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["response.data.access_token",{"_index":5246,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["rest",{"_index":291,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["restart",{"_index":177,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{}}],["restor",{"_index":1367,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["restrict",{"_index":670,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["result",{"_index":382,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["result.append(current_partit",{"_index":4031,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["result.append(head.v",{"_index":4213,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["result_numb",{"_index":4356,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["result_permut",{"_index":3630,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["result_permutation.extend(permut",{"_index":3636,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["resultsblock",{"_index":6831,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["resultsblock.appendchild(commentblock",{"_index":6843,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["resum",{"_index":787,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["ret",{"_index":4593,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["retain",{"_index":1497,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["retent",{"_index":1122,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["retrac",{"_index":5849,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["retri",{"_index":502,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["retriev",{"_index":643,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["return",{"_index":811,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["returntyp",{"_index":5077,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["reus",{"_index":1085,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["reusabl",{"_index":650,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["rev",{"_index":3462,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/posts/git-snippets":{}},"description":{}}],["reveal",{"_index":1718,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["revers",{"_index":2986,"title":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/rsi":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["reverse(num",{"_index":3823,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["reverse(self",{"_index":3457,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["reverse(start",{"_index":3822,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["reverse=tru",{"_index":3225,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["reversebits(self",{"_index":4335,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["reversed(",{"_index":4415,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["reversed(s[:idx",{"_index":3698,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["reversed(str(ll_sum",{"_index":3783,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["reversed(vals_l1",{"_index":3776,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["reversed(vals_l2",{"_index":3779,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["reversed_int",{"_index":3458,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["reversed_num",{"_index":4437,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["reverselist(self",{"_index":4470,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["reversewords(self",{"_index":3889,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["revert",{"_index":3332,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/git-snippets":{},"/posts/code-style":{}},"description":{}}],["review",{"_index":453,"title":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{}},"description":{"/tracks/aws-certified-developer-associate/codeguru/_index":{}}}],["revis",{"_index":2610,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["reward",{"_index":4844,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["rewrit",{"_index":4964,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["rgb24",{"_index":6627,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["rgba(153",{"_index":6747,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rgba(25",{"_index":6883,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["rgba(255",{"_index":6739,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rgba(54",{"_index":6742,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rgba(75",{"_index":6745,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["rhel",{"_index":6996,"title":{"/posts/howto-install-rhel-9-free/":{}},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/howto-install-rhel-9-free/":{}}}],["rhel'",{"_index":7004,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["ribbon",{"_index":5878,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["rich",{"_index":2380,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["rid",{"_index":5494,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["right",{"_index":445,"title":{"/tracks/algorithms-101/leetcode/medium/116":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/python-bitwise-operators":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/116":{}}}],["right.val",{"_index":3933,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["right=1cm",{"_index":5121,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["right=non",{"_index":3242,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["right_ar",{"_index":3196,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["right_half",{"_index":3193,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["right_index",{"_index":3198,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["right_num",{"_index":3683,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["rightboundari",{"_index":3563,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["rightmost",{"_index":5092,"title":{},"content":{"/posts/python-bitwise-operators":{}},"description":{}}],["risk",{"_index":5754,"title":{},"content":{"/posts/trading-indicators/macd":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["rm",{"_index":2763,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/bash-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["rmi",{"_index":7127,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["road",{"_index":4486,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["roadmap",{"_index":0,"title":{"/tracks/_index":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["rob",{"_index":6462,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["robber",{"_index":3151,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["robin",{"_index":2228,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["robot",{"_index":3293,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["robust",{"_index":2192,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/trading-indicators/rsi":{}},"description":{}}],["roc",{"_index":5856,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["role",{"_index":216,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["roll",{"_index":505,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["rollback",{"_index":2607,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["roman",{"_index":2967,"title":{"/tracks/algorithms-101/leetcode/easy/13":{},"/homepage/about":{},"/authors/roman-kurnovskii/_index":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/13":{}}}],["romankurnovskii",{"_index":5999,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["romankurnovskii/cask",{"_index":7239,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["romankurnovskii/cask/brewm",{"_index":7238,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["romantoint(self",{"_index":4412,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["romkatv/powerlevel10k/powerlevel10k",{"_index":6652,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["room",{"_index":3107,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["root",{"_index":513,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["root.left",{"_index":3256,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["root.left.left",{"_index":3260,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["root.left.right",{"_index":3262,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["root.mainloop",{"_index":6970,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["root.right",{"_index":3258,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["root.val",{"_index":3284,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["root:x:0:0:root:/root:/bin/bash",{"_index":6702,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["root@495500b9c069",{"_index":6700,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["rose",{"_index":7213,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["rot",{"_index":3124,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["rotat",{"_index":596,"title":{"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/189":{}}}],["rotate(self",{"_index":3618,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/189":{}},"description":{}}],["roughli",{"_index":2509,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["round",{"_index":2227,"title":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}}}],["rout",{"_index":100,"title":{"/tracks/aws-certified-developer-associate/route53/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/photos/22-07-02-israel-haifa-bahai-gardens/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["route53",{"_index":2834,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["row",{"_index":1449,"title":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2352/":{}}}],["row/col",{"_index":3446,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["row/column",{"_index":3440,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["row[0",{"_index":3450,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["rows.get(col",{"_index":4145,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows.get(row",{"_index":4142,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rows[row",{"_index":4141,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["rpm",{"_index":7027,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rs",{"_index":5678,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["rsa==4.9",{"_index":6083,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["rsi",{"_index":5646,"title":{"/posts/trading-indicators/rsi":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/rsi":{}}}],["rss",{"_index":6576,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["rtmp",{"_index":2837,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["ru",{"_index":2964,"title":{},"content":{"/tracks/archive/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/posts/bash-snippets":{},"/posts/archive/":{}},"description":{}}],["ru.md",{"_index":5129,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["rubi",{"_index":1733,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["rule",{"_index":234,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["ruleset",{"_index":5045,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["run",{"_index":125,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}}}],["run(self",{"_index":6953,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["runningfor",{"_index":2772,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["runtim",{"_index":800,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["russia",{"_index":6560,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["s",{"_index":1311,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/other-snippets":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["s*26",{"_index":4354,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["s.count(s[0",{"_index":4851,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["s.count(s[1",{"_index":4852,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["s.pop",{"_index":4721,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["s.popleft",{"_index":4720,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["s.split",{"_index":3890,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["s.twosum(num",{"_index":3393,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["s/mirrorlist/#mirrorlist/g",{"_index":5583,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["s1",{"_index":4112,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/js-snippets":{}},"description":{}}],["s2",{"_index":4113,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/js-snippets":{}},"description":{}}],["s3",{"_index":373,"title":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["s3.object(f\"sn",{"_index":1313,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["s3:createbucket",{"_index":5971,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deletebucket",{"_index":5972,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deletebucketpolici",{"_index":5973,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deleteobject",{"_index":5974,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:deleteobjectvers",{"_index":5975,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:getobject",{"_index":1483,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:getobjectvers",{"_index":5976,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:listallmybucket",{"_index":5977,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:listbucket",{"_index":5978,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbucketnotif",{"_index":5979,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbucketpolici",{"_index":5980,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbuckettag",{"_index":5981,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putbucketwebsit",{"_index":5982,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putencryptionconfigur",{"_index":5983,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:putobject",{"_index":1911,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["s3:x",{"_index":1914,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["s[(bestcent",{"_index":3571,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["s[0",{"_index":4714,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["s[1",{"_index":4715,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["s[:k",{"_index":3990,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["s[i",{"_index":3986,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["s[j",{"_index":3708,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["s[j:i",{"_index":4008,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["s[pal_left:pal_right+1",{"_index":3554,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["s[start:end",{"_index":3999,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{}},"description":{}}],["s_l1",{"_index":3775,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["s_l2",{"_index":3778,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["s_sort",{"_index":3592,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["saa",{"_index":2132,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["sad",{"_index":6376,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["safe",{"_index":1868,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["safeti",{"_index":1467,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["salad",{"_index":4799,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["salamand",{"_index":6488,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sale",{"_index":418,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["sam",{"_index":123,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["same",{"_index":754,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["saml",{"_index":2527,"title":{},"content":{"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["sampl",{"_index":943,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["sampling_r",{"_index":1014,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["sand",{"_index":1399,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["sansfont=\"m",{"_index":5115,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["sapien",{"_index":6267,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sar",{"_index":5851,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["satisfi",{"_index":230,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/algorithms":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["save",{"_index":133,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["savebutton",{"_index":1719,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["saw",{"_index":1229,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["say",{"_index":2332,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/38":{}},"description":{}}],["say(say_please=fals",{"_index":6405,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say(self",{"_index":6275,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["say_pleas",{"_index":6397,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sbin/nologin",{"_index":6690,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["scalabl",{"_index":284,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{}}}],["scale",{"_index":383,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}}}],["scan",{"_index":2409,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["scanonpush=tru",{"_index":2410,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["scatter",{"_index":2090,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["scenario",{"_index":628,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["scene",{"_index":1636,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["schaff",{"_index":5883,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["schedul",{"_index":350,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/posts/git-snippets":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["schema",{"_index":254,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["scheme",{"_index":1747,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["scientif",{"_index":6587,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["scientist",{"_index":5428,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["scm",{"_index":7116,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["scope",{"_index":2222,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/other-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["score",{"_index":875,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{}},"description":{}}],["scp",{"_index":7150,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["scrambl",{"_index":6721,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["scratch",{"_index":1288,"title":{"/posts/howto-create-react-electron-app-ts/":{}},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-create-react-electron-app-ts/":{}}}],["screen",{"_index":1175,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["screenshot",{"_index":1443,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/p/links":{}},"description":{}}],["scribe",{"_index":2134,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["script",{"_index":737,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["script/handl",{"_index":6869,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["scroll",{"_index":1163,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["scrolloffset",{"_index":6873,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["sd",{"_index":2430,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["sdk",{"_index":569,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["seamless",{"_index":4956,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["seamlessli",{"_index":4974,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["search",{"_index":1012,"title":{"/tracks/algorithms-101/leetcode/medium/33":{},"/search/_index":{},"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/other-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/apps/brewmate/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/33":{},"/posts/hugo-add-search-lunr-popup/":{}}}],["search(term",{"_index":6850,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["search.json",{"_index":6780,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["search/result",{"_index":6764,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["search_result",{"_index":6849,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchabl",{"_index":1620,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{}}}],["searchformobserv",{"_index":6845,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchfunc",{"_index":5326,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["searchindex",{"_index":6783,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchindex.search(text",{"_index":6814,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchrange(self",{"_index":3686,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["searchresultsdiv",{"_index":6827,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsdiv.appendchild(resultsblock",{"_index":6844,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsdiv.innerhtml",{"_index":6828,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsviewblock",{"_index":6822,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsviewblock.removeattribute('hidden",{"_index":6830,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["searchresultsviewblock.style.display",{"_index":6829,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["sec",{"_index":2049,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["secatur",{"_index":6457,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["second",{"_index":76,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/python-docstring-templates":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["second(",{"_index":1972,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["second_valu",{"_index":4317,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["secondari",{"_index":432,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["secondnumb",{"_index":5294,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["secret",{"_index":358,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["section",{"_index":804,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/posts/python-docstring-templates":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["secur",{"_index":276,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}}}],["securitygroupid",{"_index":2913,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["securitygroupingress",{"_index":2929,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["security’",{"_index":5716,"title":{},"content":{"/posts/trading-indicators/macd":{}},"description":{}}],["sed",{"_index":5582,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["see",{"_index":934,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["seem",{"_index":4371,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["seen",{"_index":2337,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["seen[diff",{"_index":4432,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["seen[num",{"_index":4433,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["segment",{"_index":998,"title":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["segmenttre",{"_index":4537,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["segmenttree({0})\".format(self.data",{"_index":4562,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["select",{"_index":231,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["selectapitarget",{"_index":5217,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["selection_sort(array",{"_index":3184,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self",{"_index":2256,"title":{"/tracks/algorithms-101/leetcode/medium/238/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/other-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/238/":{}}}],["self).init(arg",{"_index":6367,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self._add(nod",{"_index":3969,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self._ag",{"_index":6274,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self._default",{"_index":4557,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._exchange.on_new_order_request(order_request",{"_index":4942,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["self._func(res_left",{"_index":4560,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._func(self.data[2",{"_index":4548,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._len",{"_index":4551,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self._remove(nod",{"_index":3968,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self._remove(self.dictionary[key",{"_index":3971,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self._siz",{"_index":4555,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.app",{"_index":6930,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.app.callback",{"_index":6939,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.app.layout",{"_index":6932,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.app.run_server(debug=fals",{"_index":6954,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.bit",{"_index":4591,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.bit[idx",{"_index":4594,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.bit[z",{"_index":4600,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.cach",{"_index":3949,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.cache.move_to_end(key",{"_index":3951,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.cache.popitem(last=fals",{"_index":3955,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.cache[key",{"_index":3952,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.capac",{"_index":3948,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.children",{"_index":4586,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.children.get(s[idx]).insert(",{"_index":4589,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.children.setdefault(s[idx",{"_index":4587,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["self.data",{"_index":5611,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.data[2",{"_index":4549,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.data[idx",{"_index":4547,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.data_list",{"_index":6929,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.data_list.key",{"_index":6949,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.data_list[symbol].append(new_pric",{"_index":6967,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.dfs(board",{"_index":4046,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["self.dictionari",{"_index":3959,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.dictionary[key",{"_index":3967,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.dictionary[node.key",{"_index":3975,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.end_of_str",{"_index":5617,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.fict",{"_index":6325,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.fli",{"_index":6358,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.generate_pric",{"_index":6963,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.graph",{"_index":3265,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self.graph[nod",{"_index":3275,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self.graph[u].append(v",{"_index":3269,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["self.head",{"_index":3961,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.head.next",{"_index":3965,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.key",{"_index":3956,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.left",{"_index":3245,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.left.left",{"_index":4577,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.left.right",{"_index":4576,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.left.valu",{"_index":4575,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.mergetwolists(a.next",{"_index":4296,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["self.mergetwolists(l1.next",{"_index":4292,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["self.movi",{"_index":6326,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.mysqrt(x",{"_index":4238,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/69":{}},"description":{}}],["self.n",{"_index":4538,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.nam",{"_index":6273,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.next",{"_index":3804,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["self.permute(num",{"_index":3633,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["self.prefix_sum(l",{"_index":4598,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.prefix_sum(r",{"_index":4597,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["self.prev",{"_index":3958,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.reverselist(head.next",{"_index":4472,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["self.right",{"_index":3246,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["self.right.left",{"_index":4579,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.remove(valu",{"_index":4572,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.right",{"_index":4580,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.search(valu",{"_index":4569,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.right.valu",{"_index":4578,"title":{},"content":{"/tracks/algorithms-101/data-structures/binary-tree":{}},"description":{}}],["self.root",{"_index":5618,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.root.after(1000",{"_index":6962,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["self.sortlist(head",{"_index":3929,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["self.sortlist(mid",{"_index":3930,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["self.statu",{"_index":4938,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["self.superpow",{"_index":6327,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["self.tail",{"_index":3964,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.tail.prev",{"_index":3966,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{}},"description":{}}],["self.time_to_cancel",{"_index":4935,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["self.tre",{"_index":4539,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i",{"_index":4544,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[2i+1",{"_index":4545,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[i",{"_index":4543,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.tree[self.n",{"_index":4541,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["self.val",{"_index":3243,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["self.valu",{"_index":3957,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{}},"description":{}}],["sell",{"_index":3158,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["semi",{"_index":5058,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{}},"description":{}}],["semicolon",{"_index":5273,"title":{},"content":{"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["senat",{"_index":3077,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["send",{"_index":209,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/code-style":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["sendfil",{"_index":5566,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["senior",{"_index":3396,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["sensit",{"_index":693,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{}},"description":{}}],["sensor",{"_index":2345,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["sent",{"_index":526,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["sentenc",{"_index":6474,"title":{},"content":{"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["sentinel",{"_index":3556,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["separ",{"_index":694,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["seq",{"_index":1958,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["sequenc",{"_index":1065,"title":{"/tracks/algorithms-101/leetcode/medium/128":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/128":{}}}],["sequenti",{"_index":2643,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["sequi",{"_index":6429,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sequo",{"_index":6458,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["seri",{"_index":977,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/trading-indicators/atr":{}},"description":{"/stories/004-trading-bot-refactor-orders":{}}}],["serv",{"_index":366,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["server",{"_index":372,"title":{"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["server_nam",{"_index":5567,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["serverless",{"_index":113,"title":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{"/tracks/aws-certified-developer-associate/fargate/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}}}],["serverless.yml",{"_index":5896,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["serverlessdeployerpolici",{"_index":5898,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["serverlessdeployerpolicygroup",{"_index":5897,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["servic",{"_index":31,"title":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{}}}],["service(",{"_index":585,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/docker-commands/":{}},"description":{}}],["session",{"_index":368,"title":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}}}],["session_id",{"_index":2012,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_interv",{"_index":1970,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_interval=15",{"_index":1966,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_tim",{"_index":2014,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["session_timestamp",{"_index":1991,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["set",{"_index":51,"title":{"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/rsi":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}}}],["set(['a",{"_index":3988,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["set(a",{"_index":4739,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set(arr[start:end",{"_index":4107,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["set(b",{"_index":4740,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set(counter1.key",{"_index":3870,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["set(counter2.key",{"_index":3871,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["set(dict_counts.valu",{"_index":4428,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["set(i",{"_index":3697,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["set(num",{"_index":4052,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/128":{}},"description":{}}],["set(nums1",{"_index":4280,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set(nums2",{"_index":4281,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set(s[point",{"_index":4747,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set(s[point+1",{"_index":4749,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["set1",{"_index":4277,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set2",{"_index":4278,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["set_global_x(6",{"_index":6237,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_global_x(num",{"_index":6235,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(43",{"_index":6236,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["set_x(num",{"_index":6233,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["setdefault",{"_index":6180,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["setinterval(adjustidx",{"_index":2592,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["setqueueattribut",{"_index":1120,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["setter",{"_index":6290,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["settimeout",{"_index":5422,"title":{},"content":{"/posts/hugo-add-copy-button-on-highlight-block":{}},"description":{}}],["settings.json",{"_index":5063,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["setup",{"_index":537,"title":{"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/stories/002-openvpn-aws-ec2-setup":{},"/posts/bash-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}}}],["setup/dock",{"_index":7171,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["setup/iterm/ack.html",{"_index":6679,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["setzeroes(self",{"_index":3439,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["seven",{"_index":4399,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["sever",{"_index":25,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["sg",{"_index":2218,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["sh",{"_index":6647,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sha",{"_index":687,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/git-snippets":{}},"description":{}}],["sha.x86_64",{"_index":2758,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["shallow",{"_index":7094,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["shape",{"_index":5381,"title":{},"content":{"/posts/js-snippets":{},"/photos/midjourney/":{}},"description":{}}],["shard",{"_index":446,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["share",{"_index":520,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{}}}],["shareabl",{"_index":1337,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["sharp",{"_index":5796,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["sharpli",{"_index":5773,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["sheet",{"_index":3175,"title":{"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/cheat-sheet-command-tar/":{}},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/img":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}}}],["shell",{"_index":1189,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["shift",{"_index":1539,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-bitwise-operators":{}},"description":{}}],["ship",{"_index":7009,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["shld",{"_index":4662,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["shop",{"_index":523,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["short",{"_index":4,"title":{"/tracks/disser/utils/text_2_short":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/disser/utils/text_2_short":{}}}],["shortcod",{"_index":4972,"title":{"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/_index":{}},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-shortcode-examples/chart":{}}}],["shortcode'",{"_index":5443,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["shortcut",{"_index":6557,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["shorten",{"_index":6259,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["shorter",{"_index":2366,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["shortest",{"_index":3704,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["shorthand",{"_index":818,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["shortli",{"_index":1465,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["shortuct",{"_index":6558,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["show",{"_index":1177,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/git-snippets":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["shown",{"_index":377,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["showstopp",{"_index":4615,"title":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"content":{"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}}}],["shrink",{"_index":1542,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["shufflearray",{"_index":5269,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["shut",{"_index":7157,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["shutdown",{"_index":7129,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["shutil",{"_index":6988,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.mov",{"_index":6987,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["shutil.move(old_sourc",{"_index":6994,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["sid",{"_index":1909,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["side",{"_index":698,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/markdown-syntax/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/hugo-add-search-lunr-popup/":{}}}],["sidebar",{"_index":1696,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["sidelength",{"_index":5349,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["sideway",{"_index":5674,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["sift",{"_index":1646,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["sigma",{"_index":6504,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sign",{"_index":222,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/_index":{}}}],["signal",{"_index":2895,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["signalhelp",{"_index":2938,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["signatur",{"_index":5315,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["signific",{"_index":2145,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/python-snippets/":{}},"description":{}}],["significantli",{"_index":2147,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["similar",{"_index":91,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["similarli",{"_index":4275,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/2215":{}},"description":{}}],["simpl",{"_index":121,"title":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/posts/trading-indicators/sma":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{}}}],["simpler",{"_index":2379,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["simplest",{"_index":705,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["simpli",{"_index":474,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/atr":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["simplic",{"_index":4752,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["simplifi",{"_index":273,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["simul",{"_index":915,"title":{"/tracks/aws-certified-developer-associate/fis/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{"/tracks/aws-certified-developer-associate/fis/":{}}}],["simultan",{"_index":456,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["sinal",{"_index":2484,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["sing",{"_index":6313,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sing(self",{"_index":6280,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["singl",{"_index":385,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1493":{}}}],["singlequot",{"_index":5060,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["singli",{"_index":3801,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/160":{}}}],["sint",{"_index":6438,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sit",{"_index":6420,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["site",{"_index":1593,"title":{"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["site.languag",{"_index":6771,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["site.regularpages.bytitl",{"_index":6774,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["situat",{"_index":67,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/trading-indicators/macd":{}},"description":{}}],["six",{"_index":4407,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["six==1.16.0",{"_index":6084,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sixti",{"_index":1976,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["size",{"_index":817,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/trading-indicators/atr":{},"/posts/markdown-syntax/":{}},"description":{}}],["sketch",{"_index":2994,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["skill",{"_index":952,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["skip",{"_index":2073,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["skiplibcheck",{"_index":7054,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["sl",{"_index":5588,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["slash",{"_index":1355,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/js-snippets":{}},"description":{}}],["slave",{"_index":2502,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["sleep",{"_index":1969,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["slice",{"_index":3888,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{},"/posts/python-snippets/":{}},"description":{}}],["slice.call(document.queryselectorall('p.placehold",{"_index":6901,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["slide",{"_index":983,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["slides/video",{"_index":3029,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["slightli",{"_index":1172,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/trading-indicators/ema":{}},"description":{}}],["slot",{"_index":4259,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/26":{}},"description":{}}],["slow",{"_index":1585,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/trading-indicators/sma":{},"/posts/mac-setup-development/":{}},"description":{}}],["slow.next",{"_index":3927,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["slower",{"_index":1330,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["slowli",{"_index":1584,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["sm",{"_index":202,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["sma",{"_index":5649,"title":{"/posts/trading-indicators/sma":{}},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/sma":{}}}],["sma(5",{"_index":5765,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["small",{"_index":1849,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{}},"description":{}}],["smaller",{"_index":788,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-snippets/":{}},"description":{}}],["smallest",{"_index":3129,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["smart",{"_index":558,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["smith",{"_index":5167,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["smooth",{"_index":5667,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["smtp",{"_index":715,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["sn",{"_index":466,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}}}],["snap",{"_index":6594,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["snapshot",{"_index":623,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["snat",{"_index":2202,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["snippet",{"_index":2863,"title":{"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/bash-snippets":{}},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{}},"description":{"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/git-snippets":{},"/posts/bash-snippets":{}}}],["sns:createtop",{"_index":5984,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:deletetop",{"_index":5985,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:getsubscriptionattribut",{"_index":5986,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:gettopicattribut",{"_index":5987,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:listsubscript",{"_index":5988,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:listsubscriptionsbytop",{"_index":5989,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:listtop",{"_index":5990,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:setsubscriptionattribut",{"_index":5991,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:settopicattribut",{"_index":5992,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:subscrib",{"_index":5993,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["sns:unsubscrib",{"_index":5994,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["so",{"_index":1129,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["social",{"_index":1930,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["sock",{"_index":3362,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["socket",{"_index":266,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["soft/architectur",{"_index":7222,"title":{},"content":{"/p/links":{}},"description":{}}],["softwar",{"_index":656,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/posts/mac-setup-development/":{}}}],["softwareupd",{"_index":6663,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["solut",{"_index":226,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/56":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/116":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}}}],["solv",{"_index":207,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{}}}],["solvabl",{"_index":3657,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{}}],["solve(",{"_index":4849,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{}}],["solve(a,b,n",{"_index":4879,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}},"description":{}}],["solve(ar",{"_index":4897,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"description":{}}],["solve(lett",{"_index":4707,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["solve(n",{"_index":4711,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{}},"description":{}}],["solve(num",{"_index":4712,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["solve(self",{"_index":4047,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["some_set",{"_index":6188,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_set.copi",{"_index":6195,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_unknown_var",{"_index":6127,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["some_var",{"_index":6125,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["somehow",{"_index":4813,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["someon",{"_index":2088,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["someth",{"_index":1715,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["sometim",{"_index":1892,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/algorithms":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["someus",{"_index":5157,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["somewher",{"_index":6855,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["sonar(self",{"_index":6360,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sonatyp",{"_index":2704,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["soon",{"_index":1406,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["sophist",{"_index":2144,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["sorri",{"_index":6187,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sort",{"_index":2358,"title":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/posts/js-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/88":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{}}}],["sortcolors(self",{"_index":3428,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["sorted(counter1.valu",{"_index":3872,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["sorted(counter2.valu",{"_index":3873,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{}},"description":{}}],["sorted(interv",{"_index":3490,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["sorted(s1[1::2",{"_index":4118,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(s1[::2",{"_index":4116,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(s2[1::2",{"_index":4122,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(s2[::2",{"_index":4120,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{}},"description":{}}],["sorted(scor",{"_index":3224,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["sorted_scor",{"_index":3223,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["sortlist(self",{"_index":3919,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["soulut",{"_index":3583,"title":{},"content":{},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/138/":{}}}],["sound",{"_index":1460,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["soundcloud",{"_index":6600,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["sourc",{"_index":279,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-shortcode-examples/_index":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["source.fixall.eslint",{"_index":5068,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["source_sql_stream_001",{"_index":1997,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["sourceforg",{"_index":7112,"title":{"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["sourceforge.net",{"_index":7237,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["space",{"_index":820,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/docker-commands/":{}},"description":{}}],["span",{"_index":2510,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-docstring-templates":{}},"description":{}}],["spark",{"_index":589,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["speci",{"_index":6266,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["special",{"_index":958,"title":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2844/":{}}}],["specialist",{"_index":2465,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["specif",{"_index":441,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/posts/bash-snippets":{}}}],["specifi",{"_index":783,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/docker-commands/":{}},"description":{}}],["specimen",{"_index":6722,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["speed",{"_index":2140,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/trading-indicators/rsi":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}}}],["spell",{"_index":3136,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/mac-setup-development/":{}},"description":{}}],["spend",{"_index":2729,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["spent",{"_index":3399,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{},"/posts/diploma/":{}},"description":{}}],["spice",{"_index":6608,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["spike",{"_index":2602,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/trading-indicators/sma":{}},"description":{}}],["spin",{"_index":2250,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["splash",{"_index":7201,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["splice",{"_index":4288,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["split",{"_index":567,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["splite",{"_index":4724,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["splunk",{"_index":1060,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["spoon",{"_index":6345,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["spot",{"_index":493,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["spotifi",{"_index":6599,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["spread",{"_index":2391,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["sq",{"_index":389,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}}}],["sql",{"_index":584,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["sqrt(x",{"_index":2974,"title":{"/tracks/algorithms-101/leetcode/easy/69":{}},"content":{"/tracks/algorithms-101/plan":{}},"description":{"/tracks/algorithms-101/leetcode/easy/69":{}}}],["squar",{"_index":4078,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/js-snippets":{}},"description":{}}],["squish",{"_index":6584,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["src",{"_index":4975,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src.mongo",{"_index":6024,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src.search(sub",{"_index":5328,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["src/app.app",{"_index":6003,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src/app.pi",{"_index":6019,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src/app.tsx",{"_index":7038,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/bin.j",{"_index":5471,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/bin.t",{"_index":5447,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/index.j",{"_index":5472,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/index.t",{"_index":5446,"title":{},"content":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["src/index.tsx",{"_index":7039,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["src/mongo.pi",{"_index":6050,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["src/requirements.txt",{"_index":6062,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ss",{"_index":6624,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["ssd",{"_index":2428,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/mac-setup-development/":{}},"description":{}}],["sse",{"_index":763,"title":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}}}],["ssekm",{"_index":1903,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["ssh",{"_index":1197,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["ssl",{"_index":1380,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["ssl/tl",{"_index":697,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{}},"description":{}}],["ssm",{"_index":2115,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["st",{"_index":544,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{}},"description":{}}],["stabil",{"_index":7008,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["stabl",{"_index":5771,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["stack",{"_index":1612,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/docker-commands/":{}},"description":{}}],["stack.append((curr_str",{"_index":4086,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/394/":{}},"description":{}}],["stack.append(asteroid",{"_index":4070,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/735/":{}},"description":{}}],["stack.append(c",{"_index":3747,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["stack.append(char",{"_index":4320,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["stack.append(i",{"_index":4319,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["stack.pop",{"_index":3746,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"description":{}}],["stackdriv",{"_index":1057,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["stackset",{"_index":2860,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["stackto",{"_index":2942,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["stage",{"_index":192,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/codeforces/plan":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["stair",{"_index":2977,"title":{"/tracks/algorithms-101/leetcode/easy/70":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{}},"description":{"/tracks/algorithms-101/leetcode/easy/70":{}}}],["staircas",{"_index":4227,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/70":{}},"description":{}}],["stale",{"_index":2361,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["stalk",{"_index":2281,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["standalon",{"_index":5127,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["standard",{"_index":740,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/_index":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["standbi",{"_index":664,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["star",{"_index":3068,"title":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/posts/js-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2390":{}}}],["star_idx",{"_index":4019,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["start",{"_index":495,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["start.sh",{"_index":5562,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["start.telebank.co.il",{"_index":6713,"title":{},"content":{"/posts/interactivebrokers-deposit/":{}},"description":{}}],["start/stop",{"_index":4989,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["start==stop",{"_index":4556,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["start_tim",{"_index":4680,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["starti",{"_index":3473,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/56":{}},"description":{}}],["stash",{"_index":5505,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["state",{"_index":132,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["state.typ",{"_index":5382,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["statement",{"_index":625,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/js-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["states:createstatemachin",{"_index":5995,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["states:deletestatemachin",{"_index":5996,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["static",{"_index":360,"title":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-search-lunr-popup/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/_index":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-search-lunr-popup/":{},"/apps/npm/hugo-lunr-ml/":{}}}],["static/js/search.j",{"_index":6787,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["static/js/zoom",{"_index":6875,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["static_files/jupyt",{"_index":5431,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["static_files/jupyter/your_notebook.ipynb",{"_index":5435,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["staticmethod",{"_index":6286,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["station",{"_index":4012,"title":{"/tracks/algorithms-101/leetcode/medium/134":{}},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{"/tracks/algorithms-101/leetcode/medium/134":{}}}],["statist",{"_index":1723,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["statisticcolumn",{"_index":2783,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["statu",{"_index":1614,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["statuscolumn",{"_index":2605,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["statusof",{"_index":1616,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["stay",{"_index":2539,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["stc",{"_index":5884,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["stdin",{"_index":2406,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/posts/docker-commands/":{}},"description":{}}],["steadi",{"_index":497,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["steep",{"_index":2381,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["stem",{"_index":525,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["step",{"_index":65,"title":{"/tracks/aws-certified-developer-associate/step-functions/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["step(end",{"_index":4005,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["step_col",{"_index":3322,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["step_row",{"_index":3321,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["sticki",{"_index":2163,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["still",{"_index":1187,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/diploma/":{}},"description":{}}],["sting",{"_index":2873,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["stochast",{"_index":5627,"title":{"/posts/trading-indicators/stochastic_oscillator":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/_index":{}},"description":{"/posts/trading-indicators/stochastic_oscillator":{}}}],["stock",{"_index":2185,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/p/links":{}},"description":{"/tracks/algorithms-101/leetcode/medium/122":{}}}],["stop",{"_index":785,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/trading-indicators/atr":{},"/posts/docker-commands/":{}},"description":{}}],["stop/reboot/termin",{"_index":2114,"title":{},"content":{"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["stopiter",{"_index":6203,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["storag",{"_index":95,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/_index":{}}}],["storage.th",{"_index":1810,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["store",{"_index":256,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/docker-commands/":{}},"description":{}}],["stori",{"_index":4912,"title":{"/stories/_index":{}},"content":{"/p/links":{}},"description":{}}],["storyboard",{"_index":7225,"title":{},"content":{"/p/links":{}},"description":{}}],["stout",{"_index":1769,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["str",{"_index":3546,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{}},"description":{}}],["str(abs(numer",{"_index":3851,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["str(abs(x",{"_index":3461,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["str(count",{"_index":3652,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/443/":{}},"description":{}}],["str(i",{"_index":3777,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["str(numer",{"_index":3850,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["str(sup.fli",{"_index":6385,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str(sup.movi",{"_index":6352,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["str(x",{"_index":3460,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["str1",{"_index":4494,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str1[:max_substr_len",{"_index":4506,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str2",{"_index":4495,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["str_int",{"_index":3459,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{}},"description":{}}],["straight",{"_index":4175,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["straightforward",{"_index":3907,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["strartup",{"_index":6664,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["strategi",{"_index":437,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["strategies.html",{"_index":572,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["stream",{"_index":465,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["stream_pump1",{"_index":1993,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["stream_pump2",{"_index":2017,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["streamand",{"_index":1985,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["streamform",{"_index":1984,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["streamlin",{"_index":648,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["strength",{"_index":5645,"title":{"/posts/trading-indicators/rsi":{}},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{"/posts/trading-indicators/rsi":{}}}],["stress",{"_index":483,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["strict",{"_index":1153,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["strictli",{"_index":3721,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{}},"description":{}}],["strikethrough",{"_index":6447,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["string",{"_index":528,"title":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/8":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{}}}],["stringnotequ",{"_index":1913,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["strings/lists/dicts/tuples/set",{"_index":6102,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["strip",{"_index":4601,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/git-snippets":{}},"description":{}}],["strong",{"_index":564,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["strongli",{"_index":2220,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["strs.sort",{"_index":4393,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["strs[0",{"_index":4394,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/14":{}},"description":{}}],["structur",{"_index":576,"title":{"/tracks/algorithms-101/data-structures/_index":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/js-snippets":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/howto-publish-js-npm-project":{}}}],["structure.png",{"_index":4514,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["stuck",{"_index":2811,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["student",{"_index":1880,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["student@cloudacademy.com",{"_index":2619,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["studentappear",{"_index":2620,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["studi",{"_index":882,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["studio",{"_index":2327,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/python-groovy-lint-format-setup":{}}}],["studying/pract",{"_index":7173,"title":{},"content":{"/posts/diploma/":{}},"description":{}}],["stuff",{"_index":2521,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/python-snippets/":{}},"description":{}}],["style",{"_index":2,"title":{"/posts/code-style":{}},"content":{"/tracks/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/_index":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/photos/midjourney/":{}},"description":{"/posts/code-style":{}}}],["style=tango",{"_index":5122,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["su",{"_index":6693,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sub",{"_index":1002,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{}}],["subarray",{"_index":3012,"title":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/643":{}}}],["subclass",{"_index":4422,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["subdomain",{"_index":5558,"title":{"/posts/vps-docker-subdomains-setup/":{}},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["subfold",{"_index":1426,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{}},"description":{}}],["subject",{"_index":1308,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["subject).put(body=messag",{"_index":1314,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{}},"description":{}}],["sublim",{"_index":6543,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["sublist",{"_index":3924,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["submiss",{"_index":730,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["submit",{"_index":1687,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["submodul",{"_index":5476,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["subnet",{"_index":1558,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["subrang",{"_index":3703,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["subscrib",{"_index":1099,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["subscribe/unsubscrib",{"_index":6578,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["subscript",{"_index":1137,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["subseg",{"_index":1006,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["subsequ",{"_index":3046,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["subsequence'",{"_index":4190,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["subset",{"_index":1135,"title":{"/tracks/algorithms-101/leetcode/medium/78":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/78":{}}}],["subsets(self",{"_index":3350,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{}},"description":{}}],["substitut",{"_index":1982,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["substr",{"_index":2984,"title":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/js-snippets":{},"/posts/bash-snippets":{}},"description":{"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1456":{}}}],["substring'",{"_index":3995,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["subtract",{"_index":3729,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/macd":{}},"description":{}}],["subvers",{"_index":7118,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["succe",{"_index":1854,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["succeed",{"_index":1632,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["succeededor",{"_index":2606,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["success",{"_index":1315,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/posts/js-snippets":{},"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["successfulli",{"_index":1216,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["such",{"_index":289,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["sudden",{"_index":2205,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/trading-indicators/atr":{}},"description":{}}],["sudo",{"_index":6610,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["sudoku",{"_index":3001,"title":{"/tracks/algorithms-101/leetcode/medium/36":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/36":{}},"description":{"/tracks/algorithms-101/leetcode/medium/36":{}}}],["suffix",{"_index":430,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/posts/howto-rename-files-in-python/":{}},"description":{}}],["suggest",{"_index":2653,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/ema":{},"/posts/mac-setup-development/":{}},"description":{}}],["suit",{"_index":654,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/code-style":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["suitabl",{"_index":1885,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["sum",{"_index":2966,"title":{"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/53":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}}}],["sum(1",{"_index":3989,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1456":{}},"description":{}}],["sum([1",{"_index":4533,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum([3",{"_index":4535,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum(ar",{"_index":4908,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{}},"description":{}}],["sum(num",{"_index":4226,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{}},"description":{}}],["sum(nums[:k",{"_index":4254,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["sum(nums[i:i",{"_index":4110,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2841/":{}},"description":{}}],["sum.png",{"_index":4517,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["sum_of_digits(a[i",{"_index":4760,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["sum_of_digits(cur",{"_index":4773,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["sum_of_digits(n",{"_index":4757,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["summar",{"_index":2525,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["summari",{"_index":2600,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/p/links":{}},"description":{}}],["summuri",{"_index":4944,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["sup",{"_index":6334,"title":{},"content":{"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["sup.ag",{"_index":6347,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.boast",{"_index":6346,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('i",{"_index":6380,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["sup.say('spoon",{"_index":6343,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super",{"_index":5344,"title":{},"content":{"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["super().init(nam",{"_index":6329,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super(batman",{"_index":6366,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["super(x",{"_index":5343,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["super.dist",{"_index":5345,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["superhero",{"_index":6312,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(human",{"_index":6316,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero(name=\"tick",{"_index":6335,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.init(self",{"_index":6371,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhero.pi",{"_index":6363,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superhuman",{"_index":6319,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superior",{"_index":7137,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["superpow",{"_index":6321,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=[\"sup",{"_index":6323,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superpowers=['wealthi",{"_index":6373,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["superset",{"_index":6194,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["suppli",{"_index":1226,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["support",{"_index":53,"title":{"/p/supportme":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-rename-files-in-python/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/apps/brewmate/":{}},"description":{}}],["support/resist",{"_index":5712,"title":{},"content":{"/posts/trading-indicators/rsi":{}},"description":{}}],["sure",{"_index":1160,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["surnam",{"_index":5166,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["surround",{"_index":4037,"title":{"/tracks/algorithms-101/leetcode/medium/130":{}},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{"/tracks/algorithms-101/leetcode/medium/130":{}}}],["surviv",{"_index":6723,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["suscipit",{"_index":6430,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["sustain",{"_index":2726,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["swap",{"_index":756,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/posts/python-snippets/":{}},"description":{}}],["swap(x",{"_index":6230,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swap(x,i",{"_index":6232,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["swarm",{"_index":7148,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["swing",{"_index":5772,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["switch",{"_index":2293,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["sy",{"_index":2755,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["symbol",{"_index":2249,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/bash-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["symmetr",{"_index":1886,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/python-snippets/":{}},"description":{}}],["symmetric(symmetr",{"_index":1884,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{}},"description":{}}],["sync",{"_index":665,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{}},"description":{}}],["synchron",{"_index":610,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["syncth",{"_index":6544,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["syntax",{"_index":819,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["sys.maxs",{"_index":4646,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["sys.stdin",{"_index":4678,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["sys.stdin.readline().rstrip(\"\\r\\n",{"_index":4650,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["syslog",{"_index":2756,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["system",{"_index":172,"title":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/posts/python-groovy-lint-format-setup":{},"/posts/code-style":{},"/posts/trading-indicators/atr":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}}}],["system/linux",{"_index":2778,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["system/linuxundercustom",{"_index":2777,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["systemadministr",{"_index":2085,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["systemctl",{"_index":2446,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["sysvinit",{"_index":2925,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["s|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g",{"_index":5585,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["t",{"_index":2419,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["t03:24:00",{"_index":5185,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["t1",{"_index":5354,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["t2",{"_index":5356,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["t2.micro",{"_index":2169,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["t2.micro(default",{"_index":2544,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["t2.microi",{"_index":2747,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["t3.2xlarg",{"_index":2170,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["t3.micro",{"_index":2912,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["t3.small.search",{"_index":1666,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["t3a.nano",{"_index":4952,"title":{},"content":{"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["t[i",{"_index":3558,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["t[j",{"_index":4452,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["tab",{"_index":1167,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["tab(cmd+t)/restart",{"_index":6660,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["taband",{"_index":2577,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["tabl",{"_index":118,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}}}],["table'",{"_index":2505,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["table_nam",{"_index":2032,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["tabular",{"_index":2519,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["tabwidth",{"_index":5062,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["tackl",{"_index":4177,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["tactic",{"_index":3014,"title":{},"content":{"/tracks/algorithms-101/plan":{}},"description":{}}],["tag",{"_index":1358,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["tag/key/id",{"_index":6867,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["tail",{"_index":7130,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tailor",{"_index":2790,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["tailwind",{"_index":6854,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["take",{"_index":66,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/_index":{}}}],["taken",{"_index":752,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["talk",{"_index":1870,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["tall",{"_index":6715,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["taller",{"_index":4163,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{}}],["tank",{"_index":4014,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["tap",{"_index":5109,"title":{},"content":{"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/apps/brewmate/":{}},"description":{}}],["tar",{"_index":7182,"title":{"/posts/cheat-sheet-command-tar/":{}},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{"/posts/cheat-sheet-command-tar/":{}}}],["target",{"_index":395,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["target'",{"_index":2155,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["target_function(arg",{"_index":6402,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["target_index",{"_index":3680,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/34":{}},"description":{}}],["task",{"_index":396,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{},"/p/links":{}},"description":{"/posts/bash-snippets":{}}}],["taskid",{"_index":5234,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["tax",{"_index":2803,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["taxonomi",{"_index":1442,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["tcp",{"_index":2160,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["tcp/ip",{"_index":265,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["td",{"_index":2094,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["tde",{"_index":1586,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{}},"description":{}}],["teach",{"_index":987,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["team",{"_index":488,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["teamciti",{"_index":2641,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{}},"description":{}}],["teammat",{"_index":744,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["tear",{"_index":7139,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["technic",{"_index":974,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["techniqu",{"_index":989,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["technolog",{"_index":7035,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["telegram",{"_index":6545,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["telephon",{"_index":3825,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["teleport",{"_index":4778,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["teleporter'",{"_index":4784,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tell",{"_index":733,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["tema",{"_index":5864,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["temp",{"_index":4438,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/9/":{}},"description":{}}],["temperatur",{"_index":3173,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["templat",{"_index":59,"title":{"/tracks/algorithms-101/codeforces/cp-template":{},"/posts/python-docstring-templates":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/python-docstring-templates":{}}}],["template'",{"_index":805,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["temporari",{"_index":554,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["temporarili",{"_index":806,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["ten",{"_index":1979,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["tenant",{"_index":1865,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["tend",{"_index":5670,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["term",{"_index":1456,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["termin",{"_index":149,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["terminolog",{"_index":997,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["ternari",{"_index":6130,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["terraform",{"_index":2882,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["territori",{"_index":5640,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{}},"description":{}}],["test",{"_index":39,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/howto-publish-js-npm-project":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/aws-certified-developer-associate/codebuild/":{}}}],["test@cloudacademy.com",{"_index":2616,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["tests/index.test.j",{"_index":5473,"title":{},"content":{"/posts/howto-publish-js-npm-project":{}},"description":{}}],["text",{"_index":459,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text.length",{"_index":6907,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["text/plain",{"_index":1445,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{}},"description":{}}],["textbox",{"_index":1150,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["th",{"_index":3147,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/238/":{}},"description":{}}],["thank",{"_index":6089,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["that'",{"_index":3328,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{}},"description":{}}],["that’",{"_index":2089,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["thealarm",{"_index":2809,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["theinstanc",{"_index":2771,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["theme",{"_index":6646,"title":{},"content":{"/posts/mac-setup-development/":{},"/p/links":{}},"description":{}}],["theme'",{"_index":5437,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["themselv",{"_index":1378,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["then((respons",{"_index":5245,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["thencreat",{"_index":2549,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["theori",{"_index":886,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/algorithms-101/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["there'",{"_index":1249,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["therebi",{"_index":3702,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["therefor",{"_index":2253,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{}},"description":{}}],["therein",{"_index":2661,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["there’",{"_index":1349,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["theset",{"_index":2850,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["theta",{"_index":6502,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["they'll",{"_index":4373,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/160":{}},"description":{}}],["they'r",{"_index":4137,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["thing",{"_index":1317,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/posts/trading-indicators/_index":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["think",{"_index":479,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["thio",{"_index":6852,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["third",{"_index":635,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/markdown-syntax/":{}},"description":{}}],["this._client",{"_index":5214,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.delete('/user/me').then((respons",{"_index":5230,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.delete(boards/${listid}/tasks/${taskid}).then((respons",{"_index":5235,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.get('/user/me').then((respons",{"_index":5227,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.get(boards/${listid}/tasks).then((respons",{"_index":5232,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.post(boards/${listid}/task",{"_index":5237,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.post(login",{"_index":5243,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this._client.put(boards/${listid}/tasks/${taskid",{"_index":5239,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.add(doc",{"_index":6801,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"cont",{"_index":6794,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"descript",{"_index":6795,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"titl",{"_index":6793,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.field(\"uri",{"_index":6796,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.i",{"_index":5336,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.mak",{"_index":5372,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.model",{"_index":5374,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.readyst",{"_index":6807,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.ref('uri",{"_index":6797,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.selectapitarget",{"_index":5210,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.statu",{"_index":6808,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["this.x",{"_index":5334,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["this.z",{"_index":5347,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["those",{"_index":285,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["though",{"_index":2265,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/posts/python-snippets/":{}},"description":{}}],["thought",{"_index":3381,"title":{},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["thousand",{"_index":1975,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["thread",{"_index":2350,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["threading.thread",{"_index":6925,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["threading.thread.init(self",{"_index":6928,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["three",{"_index":631,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{}},"description":{}}],["threesum(self",{"_index":3903,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/15":{}},"description":{}}],["threshold",{"_index":879,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["thrice",{"_index":4764,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["throttl",{"_index":421,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["throttlingexcept",{"_index":1858,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["throuahput",{"_index":2494,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["through",{"_index":341,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["throughput",{"_index":422,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["thrown",{"_index":2335,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["thu",{"_index":1639,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/66":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["ti",{"_index":1831,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["tiam",{"_index":6452,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["tibco",{"_index":1107,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["tick",{"_index":6344,"title":{},"content":{"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["tier",{"_index":1071,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["tighten",{"_index":2189,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["tile",{"_index":2213,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["till",{"_index":3742,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2390":{}},"description":{}}],["time",{"_index":210,"title":{"/tracks/algorithms-101/leetcode/medium/122":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/diploma/":{},"/apps/cloud-exam-quizz/":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/medium/122":{}}}],["time.tim",{"_index":4681,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["timeex",{"_index":1413,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["timelin",{"_index":2732,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["timeout",{"_index":815,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["timeout=10800",{"_index":2563,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["timer",{"_index":1121,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{}},"description":{}}],["timestamp",{"_index":1682,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/js-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["timestamp_to_char('hh:mm:ss",{"_index":2021,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["timezon",{"_index":5175,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["tip",{"_index":1514,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/docker-commands/":{}},"description":{}}],["titl",{"_index":1720,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["title\":\"title01",{"_index":6856,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["titlebar",{"_index":7019,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["titletonumber(self",{"_index":4350,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["tk",{"_index":4992,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["tk.tk",{"_index":6968,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["tkinter",{"_index":4987,"title":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["tl",{"_index":1384,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["tl;dr",{"_index":852,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["tld",{"_index":1554,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["tldr",{"_index":5451,"title":{},"content":{"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tmp",{"_index":3731,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["tmp.append(word",{"_index":3836,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["tmp/dockerfil",{"_index":7153,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmp/exec_work",{"_index":7161,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["tmp/interactiveenv",{"_index":6705,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["tmp/noninteractiveenv",{"_index":6706,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["tmp_remov",{"_index":3631,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/46":{}},"description":{}}],["to_timestamp(\"event_timestamp",{"_index":1994,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["toc",{"_index":5123,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["today",{"_index":2658,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["today'",{"_index":4918,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["today/now",{"_index":5756,"title":{},"content":{"/posts/trading-indicators/ema":{}},"description":{}}],["todo",{"_index":4703,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["togeth",{"_index":2131,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/python-docstring-templates":{},"/posts/trading-indicators/macd":{}},"description":{}}],["toggl",{"_index":2822,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["token",{"_index":773,"title":{"/apps/npm/cognito-token-observer/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/js-snippets":{},"/posts/docker-commands/":{},"/apps/_index":{}},"description":{"/apps/npm/cognito-token-observer/":{}}}],["toler",{"_index":2193,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["took",{"_index":2801,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["tool",{"_index":637,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/links":{}},"description":{}}],["tool.black",{"_index":5010,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["toolbar",{"_index":1717,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["toolkit",{"_index":2326,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["top",{"_index":1146,"title":{"/tracks/algorithms-101/leetcode75":{},"/posts/docker-commands/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{},"/posts/other-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/macd":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/apps/brewmate/":{}},"description":{}}],["topic",{"_index":883,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["topic:**cr",{"_index":2799,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["topic_arn",{"_index":1205,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topic_arn=$(aw",{"_index":1206,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topicarn",{"_index":1201,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topics[0].topicarn",{"_index":1207,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["topmost",{"_index":4515,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["toport",{"_index":2933,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["tor",{"_index":6546,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["torrent",{"_index":6604,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["tortois",{"_index":4305,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["total",{"_index":1034,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/posts/python-snippets/":{}},"description":{}}],["total_cost",{"_index":4018,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["total_ga",{"_index":4017,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["total_sum",{"_index":4225,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["touch",{"_index":2786,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["tour",{"_index":2550,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["toward",{"_index":700,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["tox",{"_index":5018,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["tr",{"_index":5790,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["trace",{"_index":793,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{}},"description":{}}],["track",{"_index":413,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["tracked_data",{"_index":4874,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["tracked_data[last",{"_index":4876,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["trade",{"_index":4913,"title":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/_index":{}},"content":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}}}],["trader",{"_index":5642,"title":{},"content":{"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["tradit",{"_index":1592,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/posts/js-snippets":{}},"description":{}}],["traffic",{"_index":338,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}}}],["trail",{"_index":1375,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-snippets/":{}},"description":{}}],["trailingcomma",{"_index":5059,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["train",{"_index":923,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{}},"description":{}}],["transact",{"_index":1579,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["transcod",{"_index":681,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["transfer",{"_index":766,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/_index":{}}}],["transform",{"_index":802,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/js-convert-array-to-dict":{}},"description":{}}],["transformarraytodict",{"_index":5405,"title":{},"content":{"/posts/js-convert-array-to-dict":{}},"description":{}}],["transit",{"_index":621,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["translat",{"_index":1527,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["translatedcount",{"_index":6863,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["transmiss",{"_index":6547,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["transpar",{"_index":1587,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["transport",{"_index":4782,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["travel",{"_index":4015,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/134":{}},"description":{}}],["travers",{"_index":2982,"title":{"/tracks/algorithms-101/leetcode/easy/94":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{}}}],["travi",{"_index":2640,"title":{},"content":{"/tracks/aws-certified-developer-associate/codepipeline/":{},"/posts/code-style":{}},"description":{}}],["treat",{"_index":2864,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["tree",{"_index":2664,"title":{"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/tree-vs-trie-data-structures/":{},"/photos/midjourney/":{},"/apps/_index":{}},"description":{"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/posts/tree-vs-trie-data-structures/":{}}}],["tree'",{"_index":4509,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["tree.add(l",{"_index":4768,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tree.add(r",{"_index":4769,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tree.query(x",{"_index":4771,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["tree[i",{"_index":4667,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["tree[n+i",{"_index":4665,"title":{},"content":{"/tracks/algorithms-101/codeforces/cp-template":{}},"description":{}}],["treenod",{"_index":3238,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/94":{}},"description":{}}],["treenode(1",{"_index":3255,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(2",{"_index":3257,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(3",{"_index":3259,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(4",{"_index":3261,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["treenode(5",{"_index":3263,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["trend",{"_index":996,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{}},"description":{}}],["tri",{"_index":1193,"title":{"/posts/tree-vs-trie-data-structures/":{}},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-publish-js-npm-project":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{"/posts/tree-vs-trie-data-structures/":{}}}],["triangl",{"_index":1155,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["tribonacci",{"_index":3148,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["trick",{"_index":1352,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/posts/docker-commands/":{}},"description":{}}],["tricki",{"_index":3841,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{}},"description":{}}],["trie",{"_index":3164,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["trienod",{"_index":5616,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["trigger",{"_index":235,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/macd":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["trigger_branch",{"_index":2669,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["trip",{"_index":4487,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1732/":{}},"description":{}}],["tripl",{"_index":4810,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["triplet",{"_index":3045,"title":{"/tracks/algorithms-101/leetcode/medium/334/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/334/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/334/":{}}}],["trivial",{"_index":6289,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["trix",{"_index":5879,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["tromino",{"_index":3153,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["troubleshoot",{"_index":869,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["true",{"_index":626,"title":{"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/55":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/git-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/trading-indicators/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{}},"description":{}}],["truncat",{"_index":3715,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/29":{},"/posts/git-snippets":{}},"description":{}}],["trust",{"_index":2068,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["try_fil",{"_index":5574,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["tsc",{"_index":7089,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tsconfig.json",{"_index":7047,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["tsi",{"_index":5868,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["tti",{"_index":7159,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["ttl",{"_index":2365,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["tubetub",{"_index":4687,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["tune",{"_index":1600,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["tup",{"_index":6159,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[0",{"_index":6160,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tup[:2",{"_index":6165,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["tupl",{"_index":2481,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["tuple(gridr",{"_index":4144,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["tuple(p.item1",{"_index":5358,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["tuple(row",{"_index":4140,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2352/":{}},"description":{}}],["turbul",{"_index":5793,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["turn",{"_index":1477,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/posts/python-bitwise-operators":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{}},"description":{}}],["tutori",{"_index":925,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/bash-snippets":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["tutorialsdojo",{"_index":2110,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["tuv",{"_index":3832,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["tvf",{"_index":7199,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["tweak",{"_index":7018,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["twice",{"_index":3218,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/markdown-syntax/":{}},"description":{}}],["twin",{"_index":3084,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{}},"description":{}}],["twine",{"_index":2701,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{}},"description":{}}],["twist",{"_index":3910,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["two",{"_index":232,"title":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2840/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{}}}],["twosum(num",{"_index":4431,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1":{}},"description":{}}],["twosum(self",{"_index":3390,"title":{},"content":{"/tracks/algorithms-101/_index":{}},"description":{}}],["type",{"_index":534,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/hugo-shortcode-examples/chart":{},"/posts/docker-commands/":{}},"description":{}}],["type((1",{"_index":6163,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type(sup",{"_index":6338,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["type1",{"_index":5074,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["type2",{"_index":5076,"title":{},"content":{"/posts/python-docstring-templates":{}},"description":{}}],["type_:_select",{"_index":2511,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["typecolumn",{"_index":1618,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["typeerror",{"_index":6161,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["typeof",{"_index":7100,"title":{},"content":{"/posts/howto-create-deepclone-js/":{}},"description":{}}],["typescript",{"_index":5070,"title":{"/posts/howto-publish-ts-npm-project":{}},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{"/posts/howto-publish-ts-npm-project":{},"/posts/howto-create-react-electron-app-ts/":{}}}],["typescriptreact",{"_index":5071,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["typeset",{"_index":6717,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["type—numb",{"_index":5624,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["typic",{"_index":1553,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["typo",{"_index":2567,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/code-style":{}},"description":{}}],["tyron",{"_index":5362,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["u",{"_index":3268,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["u','u",{"_index":4460,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["ubuntu",{"_index":4946,"title":{"/stories/002-openvpn-aws-ec2-setup":{}},"content":{"/stories/002-openvpn-aws-ec2-setup":{},"/posts/git-snippets":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/docker-commands/":{}},"description":{}}],["ubuntu:20.04",{"_index":6687,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["ubuntu:latest",{"_index":7156,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["udp",{"_index":1042,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ui",{"_index":1351,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/mac-setup-development/":{}},"description":{}}],["uid=1000(interactiveus",{"_index":6695,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["uint",{"_index":4334,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["ulcer",{"_index":5876,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["ultim",{"_index":692,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/trading-indicators/_index":{}},"description":{}}],["ultra",{"_index":1867,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["ultradn",{"_index":1533,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{}},"description":{}}],["un",{"_index":2843,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["unaccept",{"_index":2302,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{}},"description":{}}],["unassign",{"_index":6126,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unauthor",{"_index":1387,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["unavail",{"_index":2418,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["unchang",{"_index":162,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["uncheck",{"_index":1471,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["uncov",{"_index":490,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["und",{"_index":6439,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["undefin",{"_index":5212,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["under",{"_index":306,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/python-docstring-templates":{},"/posts/git-snippets":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["underli",{"_index":1075,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/posts/python-bitwise-operators":{}},"description":{}}],["underscor",{"_index":1341,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/posts/python-snippets/":{}},"description":{}}],["understand",{"_index":583,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/sma":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/9/":{}}}],["understood",{"_index":4965,"title":{},"content":{"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["undersystem/linux",{"_index":2827,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["undo",{"_index":5511,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["undon",{"_index":164,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["unencrypt",{"_index":1830,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["uneven",{"_index":5286,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["unexpect",{"_index":5275,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["unfamiliar",{"_index":2259,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["unfeas",{"_index":4092,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{}},"description":{}}],["unhash",{"_index":6170,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unhealthi",{"_index":1556,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["unhealthyhostcountwil",{"_index":2261,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{}},"description":{}}],["unicod",{"_index":1359,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["unifi",{"_index":2628,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["uniform",{"_index":6473,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["uninstal",{"_index":7235,"title":{},"content":{"/apps/brewmate/":{}},"description":{}}],["unintend",{"_index":1365,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["union",{"_index":4510,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["uniq",{"_index":3673,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["uniqs.add(i",{"_index":3700,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["uniqs.add(j",{"_index":3699,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/3":{}},"description":{}}],["uniqu",{"_index":1024,"title":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1207":{}},"content":{"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/26":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/js-convert-array-to-dict":{},"/posts/python-snippets/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/1207":{}}}],["unique_char",{"_index":4198,"title":{},"content":{"/tracks/algorithms-101/leetcode/hard/2842/":{}},"description":{}}],["unique_count",{"_index":4425,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["uniqueid",{"_index":2944,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["uniqueoccurrences(arr",{"_index":4426,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1207":{}},"description":{}}],["uniquepaths(self",{"_index":3468,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/62":{}},"description":{}}],["unit",{"_index":436,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/markdown-syntax/":{}},"description":{}}],["unix",{"_index":2002,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{}},"description":{}}],["unknown",{"_index":3691,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/33":{},"/posts/js-snippets":{},"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["unless",{"_index":881,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["unlik",{"_index":290,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["unlimit",{"_index":4846,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["unload",{"_index":1638,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["unnecessari",{"_index":4496,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/git-snippets":{}},"description":{}}],["unnecessarili",{"_index":5802,"title":{},"content":{"/posts/trading-indicators/atr":{}},"description":{}}],["unord",{"_index":6475,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["unpack",{"_index":6166,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["unreach",{"_index":5508,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["unreachable=now",{"_index":5506,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["unreferenc",{"_index":7134,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["unreserv",{"_index":1743,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["unsign",{"_index":3452,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["unsort",{"_index":3182,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["unspecifi",{"_index":877,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["unsuccess",{"_index":2940,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["unsur",{"_index":7114,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["untag",{"_index":7165,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["until",{"_index":777,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/posts/python-snippets/":{}},"description":{}}],["untrack",{"_index":5510,"title":{},"content":{"/posts/git-snippets":{},"/posts/bash-snippets":{}},"description":{"/posts/bash-snippets":{}}}],["unus",{"_index":141,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/posts/git-snippets":{},"/posts/docker-commands/":{}},"description":{}}],["unusu",{"_index":7016,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["unwind",{"_index":4471,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/206/":{}},"description":{}}],["unzip",{"_index":2760,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["up",{"_index":223,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/002-openvpn-aws-ec2-setup":{},"/posts/python-groovy-lint-format-setup":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/mac-setup-development/":{}}}],["up/down",{"_index":2172,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["upcom",{"_index":606,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["upd",{"_index":6666,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["upd='brew",{"_index":6668,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["updat",{"_index":286,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/334/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/codepipeline/":{}}}],["update(self",{"_index":4930,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["update_graph(n",{"_index":6943,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["updatetask(listid",{"_index":5238,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["upfront",{"_index":1267,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["upgrad",{"_index":5533,"title":{},"content":{"/posts/code-style":{},"/posts/mac-setup-development/":{}},"description":{}}],["upload",{"_index":699,"title":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/posts/how-to-upload-app-to-sourceforge/":{}}}],["upon",{"_index":729,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["upper",{"_index":1701,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["uppercas",{"_index":1340,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/algorithms-101/leetcode/easy/171":{}},"description":{}}],["upstream",{"_index":2377,"title":{},"content":{"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["uptim",{"_index":1932,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{"/tracks/aws-certified-developer-associate/codedeploy/":{}}}],["upto",{"_index":1580,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["uptrend",{"_index":5672,"title":{},"content":{"/posts/trading-indicators/sma":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{}},"description":{}}],["upward",{"_index":5673,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["uri",{"_index":5575,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["url",{"_index":1222,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["url(\"https://example.com/login?user=someguy&page=new",{"_index":5149,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.host",{"_index":5152,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.match(/(+)(=(*))/g",{"_index":5159,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.origin",{"_index":5150,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.pathnam",{"_index":5155,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.protocol",{"_index":5154,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.replac",{"_index":5146,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["url.searchparams.get('us",{"_index":5156,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["urli",{"_index":2897,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["urllib3==1.26.12",{"_index":6085,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["us",{"_index":16,"title":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/78":{},"/tracks/algorithms-101/leetcode/medium/75":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/189":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/tracks/algorithms-101/leetcode/medium/134":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/1431":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1768/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/python-docstring-templates":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/code-style":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/interactivebrokers-deposit/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-rename-files-in-python/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/howto-create-deepclone-js/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/apps/brewmate/":{}},"description":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}}}],["usabl",{"_index":5499,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["usag",{"_index":1422,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["usd",{"_index":1214,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["usd\\n2",{"_index":1211,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{}},"description":{}}],["usecas",{"_index":2150,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["used_posts.add(post",{"_index":4877,"title":{},"content":{"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["usedotenv",{"_index":6001,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["user",{"_index":82,"title":{"/posts/linux-interactive-non-interactive-users/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codestar/_index":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{},"/posts/hugo-add-copy-button-on-highlight-block":{},"/posts/linux-interactive-non-interactive-users/":{}}}],["user.email",{"_index":5479,"title":{},"content":{"/posts/git-snippets":{}},"description":{}}],["user.nam",{"_index":2564,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/git-snippets":{}},"description":{}}],["user1",{"_index":2022,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user2",{"_index":1955,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user3",{"_index":1956,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user@52.24.109.78",{"_index":2455,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["user_id",{"_index":1941,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["user_id\"||''||\"device_type\"||''||timestamp_to_char('hh:mm:ss",{"_index":2018,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user_id=\"${user_ids[random%${#user_id",{"_index":1961,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["user_ids=(user1",{"_index":1954,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["useradd",{"_index":6688,"title":{},"content":{"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["userdata",{"_index":2886,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["userdrop",{"_index":2614,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["usernam",{"_index":1597,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["username/repo",{"_index":7120,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["username/repository:tag",{"_index":7131,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["users/r/desktop/new_source.txt",{"_index":6992,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/r/desktop/old_source.txt",{"_index":6990,"title":{},"content":{"/posts/howto-rename-files-in-python/":{}},"description":{}}],["users/zsh",{"_index":6655,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["users_collect",{"_index":6026,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["users_collection.find_one({\"_id",{"_index":6034,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["users_collection.update_one({\"_id",{"_index":6042,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["user’",{"_index":2081,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["usr/bin/apt",{"_index":7024,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/dnf",{"_index":7025,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/bin/softwar",{"_index":7023,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usr/sbin/synapt",{"_index":7022,"title":{},"content":{"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["usual",{"_index":1293,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/rsi":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["util",{"_index":318,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/2352/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["utm",{"_index":6548,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["v",{"_index":2918,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/docker-commands/":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["v.indexof",{"_index":5161,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["v.slice(v.indexof",{"_index":5162,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["v1.0",{"_index":7121,"title":{},"content":{"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["val",{"_index":3244,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":{},"/posts/js-snippets":{}},"description":{}}],["val=0",{"_index":3240,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["valid",{"_index":532,"title":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/20":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/easy/20":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/docker-commands/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/easy/20":{}}}],["valid_dict",{"_index":6171,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["valid_set",{"_index":6190,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["validperson",{"_index":5324,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["vals_l1",{"_index":3770,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["vals_l1.append(cur.v",{"_index":3771,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["vals_l2",{"_index":3773,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["vals_l2.append(cur.v",{"_index":3774,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["valu",{"_index":64,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/46":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/33":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/94":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/leetcode/easy/21":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1207":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-docstring-templates":{},"/posts/python-bitwise-operators":{},"/posts/js-snippets":{},"/posts/js-convert-array-to-dict":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/stochastic_oscillator":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/atr":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-deepclone-js/":{}},"description":{}}],["valueerror",{"_index":6153,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["valueerror(\"th",{"_index":4933,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{}},"description":{}}],["values.append(",{"_index":3595,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["values.append(int(v",{"_index":3784,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["values.append(node.v",{"_index":3920,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["values.sort",{"_index":3922,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/148":{}},"description":{}}],["values[1",{"_index":3767,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2":{}},"description":{}}],["values[i",{"_index":4698,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["value—instead",{"_index":5625,"title":{},"content":{"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["var",{"_index":2581,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/algorithms-101/leetcode/medium/8":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["var/www/domains/mydomain_with_static_fil",{"_index":5573,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["var/www/html",{"_index":2889,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["var/www/html/index.html",{"_index":2447,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["varargs(*arg",{"_index":6212,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["varargs(1",{"_index":6213,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["varchar(10",{"_index":1990,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["varchar(20",{"_index":2015,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["varchar(50",{"_index":2013,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["varchar(7",{"_index":1989,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{}},"description":{}}],["vari",{"_index":1171,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{}},"description":{}}],["variabl",{"_index":187,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/724":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/other-snippets":{},"/posts/js-snippets":{},"/posts/python-snippets/":{}},"description":{}}],["variable=toc",{"_index":5125,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["varieti",{"_index":951,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{}},"description":{}}],["variou",{"_index":305,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/stories/002-openvpn-aws-ec2-setup":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/macd":{}},"description":{}}],["vault",{"_index":1816,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["vaultc",{"_index":1815,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["vcpu",{"_index":2168,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["vdagent",{"_index":6612,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["veloc",{"_index":581,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["ventur",{"_index":4986,"title":{},"content":{"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["venv",{"_index":5013,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["venv/bin/activ",{"_index":6018,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{}},"description":{}}],["verbos",{"_index":7185,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["veri",{"_index":1354,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/2839/":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/rsi":{},"/posts/mac-setup-development/":{}},"description":{}}],["verif",{"_index":200,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["verifi",{"_index":1260,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["veronika",{"_index":522,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["versatil",{"_index":4923,"title":{},"content":{"/stories/004-trading-bot-refactor-orders":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{}},"description":{}}],["version",{"_index":480,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/19":{},"/tracks/algorithms-101/leetcode/easy/234":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/hugo-shortcode-examples/img":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/brewmate/":{}},"description":{}}],["versionex",{"_index":1412,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["versionfunct",{"_index":6009,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["vertex",{"_index":4513,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["vertic",{"_index":2165,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["vet",{"_index":963,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["vi",{"_index":5881,"title":{},"content":{"/posts/trading-indicators/_index":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["via",{"_index":957,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["viber",{"_index":6549,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["video",{"_index":976,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/other-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}}}],["video_fil",{"_index":5137,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["video_files=(*.{mp4,mkv,flv,avi",{"_index":5136,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["view",{"_index":3,"title":{},"content":{"/tracks/_index":{},"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/posts/python-groovy-lint-format-setup":{},"/posts/_index":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["viewaccount",{"_index":2107,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["viewbil",{"_index":2098,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["viewer",{"_index":2618,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["viewer1",{"_index":2624,"title":{},"content":{"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["viewpaymentmethod",{"_index":2108,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["viewusag",{"_index":2109,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["vim",{"_index":5587,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["violat",{"_index":2793,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["virtru",{"_index":1819,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{}},"description":{}}],["virtual",{"_index":1184,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/create-folder-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["virtualbox",{"_index":7141,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["visibl",{"_index":1111,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/posts/docker-commands/":{}},"description":{"/posts/how-to-upload-app-to-sourceforge/":{}}}],["visit",{"_index":2217,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["visited.add(cur",{"_index":4387,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/141":{}},"description":{}}],["visited.add(curr",{"_index":3302,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visited.add(neighbor",{"_index":3288,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visited.add(nod",{"_index":3273,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visited.add(slow",{"_index":4313,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/202":{}},"description":{}}],["visitedrow",{"_index":3320,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["visual",{"_index":129,"title":{"/stories/001-rediscovering-backtracking-algo":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/data-structures/binary-tree":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{},"/p/links":{}},"description":{"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{}}}],["visualize/debug",{"_index":4684,"title":{},"content":{"/tracks/algorithms-101/codeforces/_index":{}},"description":{}}],["visually:alt",{"_index":1703,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["vita",{"_index":6440,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["vital",{"_index":4451,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/392/":{}},"description":{}}],["vivid",{"_index":7211,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["vlc",{"_index":6550,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["vm",{"_index":7143,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["vn",{"_index":5140,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["void",{"_index":5307,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["volatil",{"_index":2206,"title":{"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/trading-indicators/sma":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/trading-indicators/atr":{}},"description":{}}],["volum",{"_index":371,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/trading-indicators/_index":{},"/posts/docker-commands/":{}},"description":{}}],["vortex",{"_index":5880,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["vowel",{"_index":3040,"title":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/easy/345/":{}}}],["vowels_ord",{"_index":4461,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["vowels_order.append(x",{"_index":4463,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["vowels_order.pop",{"_index":4464,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/345/":{}},"description":{}}],["vp",{"_index":5559,"title":{"/posts/vps-docker-subdomains-setup/":{}},"content":{},"description":{"/posts/vps-docker-subdomains-setup/":{}}}],["vp'",{"_index":2869,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["vpc",{"_index":334,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["vpc'",{"_index":1674,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["vpn",{"_index":342,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/stories/002-openvpn-aws-ec2-setup":{}},"description":{}}],["vs",{"_index":865,"title":{"/posts/linux-interactive-non-interactive-users/":{}},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{}},"description":{}}],["vscode",{"_index":3386,"title":{"/posts/python-groovy-lint-format-setup":{}},"content":{"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/codeforces/_index":{},"/posts/python-groovy-lint-format-setup":{},"/posts/bash-snippets":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["vulner",{"_index":2404,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{}},"description":{}}],["vv",{"_index":6561,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["vwap",{"_index":5862,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["w",{"_index":7090,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["w503",{"_index":5025,"title":{},"content":{"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["waf",{"_index":921,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["wait",{"_index":770,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["waitfortasktoken",{"_index":771,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["walk",{"_index":1900,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/codeforces/plan":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["walkccc",{"_index":3400,"title":{},"content":{"/tracks/algorithms-101/leetcode/_index":{}},"description":{}}],["wall",{"_index":3291,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["want",{"_index":114,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eventbridge/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/git-snippets":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["war",{"_index":2881,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["warn",{"_index":1875,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/posts/python-snippets/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{}}],["warning_",{"_index":1493,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{}},"description":{}}],["wast",{"_index":2370,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticache/":{}},"description":{}}],["watch",{"_index":1758,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{}},"description":{}}],["water",{"_index":2987,"title":{"/tracks/algorithms-101/leetcode/medium/11/":{}},"content":{"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/11/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/11/":{}}}],["wave",{"_index":5861,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["way",{"_index":120,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/38":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/easy/70":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1732/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-groovy-lint-format-setup":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/bollinger_bands":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-rename-files-in-python/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{},"/p/links":{}},"description":{"/tracks/aws-certified-developer-associate/route53/":{}}}],["wcu",{"_index":2490,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/_index":{}},"description":{}}],["we'll",{"_index":4324,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/js-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["we'r",{"_index":3875,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/152":{},"/tracks/algorithms-101/leetcode/medium/148":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{}},"description":{}}],["we'v",{"_index":3303,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["weak",{"_index":506,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/fis/":{}},"description":{}}],["wealth",{"_index":2735,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["web",{"_index":242,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/posts/js-snippets":{},"/posts/code-style":{},"/posts/mac-setup-development/":{},"/posts/interactivebrokers-deposit/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/docker-commands/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{},"/apps/_index":{}},"description":{}}],["web/tablet/mobil",{"_index":7234,"title":{},"content":{"/apps/cloud-exam-quizz/":{}},"description":{}}],["webbrows",{"_index":6919,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["webbrowser.open(\"http://localhost:8050",{"_index":6961,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["webcast",{"_index":1936,"title":{},"content":{"/tracks/aws-certified-developer-associate/kinesis/_index":{}},"description":{}}],["webdavd",{"_index":6609,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["webhook",{"_index":768,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{}},"description":{}}],["webmethod",{"_index":2138,"title":{},"content":{"/tracks/aws-certified-developer-associate/eventbridge/":{}},"description":{}}],["webprefer",{"_index":7072,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["webserv",{"_index":2907,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["webserver.publicdnsnam",{"_index":2936,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["webserverpublicdn",{"_index":2934,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["webserversecuritygroup",{"_index":2914,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["websit",{"_index":728,"title":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}}}],["website..amazonaws.com",{"_index":1401,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["website..amzonaws.com",{"_index":1400,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["website’",{"_index":2191,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{}},"description":{}}],["websocket",{"_index":257,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{}},"description":{}}],["week",{"_index":1881,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/_index":{}},"description":{}}],["weekend",{"_index":2816,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["weigh",{"_index":5671,"title":{},"content":{"/posts/trading-indicators/sma":{}},"description":{}}],["weight",{"_index":1549,"title":{},"content":{"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/posts/trading-indicators/ema":{},"/posts/trading-indicators/_index":{}},"description":{}}],["welcom",{"_index":1658,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["well",{"_index":384,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/stories/003-trading-bot-gui-init-tkinter/":{},"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/macd":{},"/posts/trading-indicators/atr":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/docker-commands/":{}},"description":{}}],["went",{"_index":1246,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["weren't",{"_index":2671,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{}},"description":{}}],["werkzeug",{"_index":6090,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["werkzeug==1.0.1",{"_index":6086,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["west",{"_index":1500,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/posts/serverless-flask-lambda-api-gateway-mongodb/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["wget",{"_index":2759,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/git-snippets":{}},"description":{}}],["whatev",{"_index":2441,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["whenev",{"_index":778,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/medium/122":{},"/tracks/algorithms-101/leetcode/medium/735/":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["wherea",{"_index":2066,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/posts/tree-vs-trie-data-structures/":{}},"description":{}}],["wherev",{"_index":2067,"title":{},"content":{"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/codeguru/_index":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/posts/js-snippets":{}},"description":{}}],["whether",{"_index":1832,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/easy/2215":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{}},"description":{"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{}}}],["whichev",{"_index":4293,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/21":{}},"description":{}}],["while(left",{"_index":3548,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["whilst",{"_index":1242,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}},"description":{}}],["white",{"_index":3363,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/75":{}},"description":{}}],["whitepap",{"_index":972,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["whitespac",{"_index":5519,"title":{},"content":{"/posts/code-style":{}},"description":{}}],["whole",{"_index":3183,"title":{},"content":{"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/1071/":{}},"description":{}}],["whose",{"_index":2247,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/algorithms-101/leetcode/hard/2842/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/python-snippets/":{}},"description":{}}],["wide",{"_index":1388,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/posts/python-docstring-templates":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/trading-indicators/atr":{}},"description":{}}],["widget",{"_index":1209,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/stories/003-trading-bot-gui-init-tkinter/":{}},"description":{}}],["width",{"_index":4160,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/11/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["width=\"250px",{"_index":6733,"title":{},"content":{"/posts/hugo-shortcode-examples/img":{}},"description":{}}],["wield",{"_index":6332,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wikipedia",{"_index":4803,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{}},"description":{}}],["wilder",{"_index":5677,"title":{},"content":{"/posts/trading-indicators/rsi":{},"/posts/trading-indicators/atr":{}},"description":{}}],["william",{"_index":5877,"title":{},"content":{"/posts/trading-indicators/_index":{}},"description":{}}],["win",{"_index":7070,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.loadurl",{"_index":7074,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win.webcontents.opendevtool",{"_index":7077,"title":{},"content":{"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["win10",{"_index":7147,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["win7",{"_index":7144,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["window",{"_index":170,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1456":{},"/tracks/algorithms-101/leetcode/medium/2841/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/643":{},"/posts/js-snippets":{},"/posts/mac-setup-development/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["window'",{"_index":3911,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["window.document.currentscript.getattribute('languagemod",{"_index":6788,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["window.location.host.includes(\"node.sharedtodos.com",{"_index":5220,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.auth0_audi",{"_index":5265,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.auth0_client_id",{"_index":5261,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.auth0_domain",{"_index":5256,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.authz_embed_url",{"_index":5267,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window?.env?.backend_url",{"_index":5253,"title":{},"content":{"/posts/js-snippets":{}},"description":{}}],["window_sum",{"_index":4253,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/643":{}},"description":{}}],["wire",{"_index":594,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/posts/interactivebrokers-deposit/":{}},"description":{}}],["wish",{"_index":2513,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{}},"description":{}}],["within",{"_index":720,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sqs/_index":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/5":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/contests/867-div-3-1822":{},"/posts/trading-indicators/sma":{},"/posts/python-snippets/":{}},"description":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{}}}],["without",{"_index":1078,"title":{"/tracks/algorithms-101/leetcode/medium/3":{}},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/_index":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/138/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/605/":{},"/tracks/algorithms-101/leetcode/easy/392/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-docstring-templates":{},"/posts/other-snippets":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/code-style":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/linux-interactive-non-interactive-users/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/3":{},"/tracks/algorithms-101/leetcode/easy/605/":{}}}],["wizard",{"_index":1436,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["wm1",{"_index":7168,"title":{},"content":{"/posts/docker-commands/":{}},"description":{}}],["won't",{"_index":1491,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{},"/tracks/aws-certified-developer-associate/s3/delete-from-s3/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":{}},"description":{}}],["wonder",{"_index":7207,"title":{},"content":{"/photos/midjourney/":{}},"description":{}}],["word",{"_index":3042,"title":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/139":{}},"content":{"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/49":{},"/tracks/algorithms-101/leetcode/medium/17":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/139":{},"/posts/js-snippets":{},"/posts/tree-vs-trie-data-structures/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/151":{},"/tracks/algorithms-101/leetcode/medium/139":{}}}],["word1",{"_index":4475,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word1[len(r",{"_index":4482,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word2",{"_index":3865,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1657":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["word2[len(r",{"_index":4483,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["wordbreak(self",{"_index":3996,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["worddict",{"_index":3994,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/139":{}},"description":{}}],["words.revers",{"_index":3891,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/151":{}},"description":{}}],["work",{"_index":43,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/iam/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/131":{},"/tracks/algorithms-101/leetcode/medium/394/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/easy/202":{},"/tracks/algorithms-101/leetcode/easy/191":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/206/":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/004-trading-bot-refactor-orders":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/js-snippets":{},"/posts/howto-publish-ts-npm-project":{},"/posts/howto-publish-js-npm-project":{},"/posts/git-snippets":{},"/posts/trading-indicators/macd":{},"/posts/python-snippets/":{},"/posts/hugo-add-search-lunr-popup/":{},"/posts/hugo-add-image-zoomin/":{},"/apps/cloud-exam-quizz/":{}},"description":{}}],["workdir",{"_index":5595,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["worker",{"_index":1241,"title":{},"content":{"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/algorithms-101/leetcode75":{},"/posts/code-style":{},"/posts/docker-commands/":{}},"description":{}}],["worker_connect",{"_index":5564,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["worker_process",{"_index":5563,"title":{},"content":{"/posts/vps-docker-subdomains-setup/":{}},"description":{}}],["workflow",{"_index":130,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/eks/":{},"/tracks/aws-certified-developer-associate/cognito/":{},"/tracks/aws-certified-developer-associate/codepipeline/":{},"/tracks/aws-certified-developer-associate/codebuild/":{},"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/howto-publish-js-npm-project":{}},"description":{}}],["workload",{"_index":448,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fargate/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ecr/":{},"/tracks/aws-certified-developer-associate/ec2/":{}},"description":{}}],["workshop",{"_index":933,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/iam/":{}},"description":{}}],["workspac",{"_index":1768,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/posts/python-groovy-lint-format-setup":{}},"description":{}}],["world",{"_index":489,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudfront/_index":{},"/posts/js-snippets":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["world!\"[0",{"_index":6111,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["world:latest",{"_index":2411,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecr/":{}},"description":{}}],["worm",{"_index":6492,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["worri",{"_index":1627,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["worst",{"_index":4520,"title":{},"content":{"/tracks/algorithms-101/data-structures/segment-tree":{}},"description":{}}],["wouldn't",{"_index":3845,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/166":{},"/stories/001-rediscovering-backtracking-algo":{}},"description":{}}],["wrap",{"_index":1644,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{}},"description":{}}],["wrapper",{"_index":6404,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wrapper(arg",{"_index":6401,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["wraps(target_funct",{"_index":6400,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["write",{"_index":420,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/kinesis/_index":{},"/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/_index":{},"/tracks/algorithms-101/leetcode/medium/34":{},"/tracks/algorithms-101/leetcode/medium/22":{},"/tracks/algorithms-101/leetcode/medium/443/":{},"/tracks/algorithms-101/leetcode/easy/14":{},"/tracks/algorithms-101/data-structures/segment-tree":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":{},"/stories/001-rediscovering-backtracking-algo":{},"/posts/python-docstring-templates":{},"/posts/howto-render-notebook-in-hugo":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{},"/posts/cloud-exam-quizz/amplify-custom-domain":{}},"description":{}}],["write/connect",{"_index":6868,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["written",{"_index":34,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/elasticache/":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/posts/python-snippets/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["wrong",{"_index":2333,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/posts/markdown-syntax/":{}},"description":{}}],["ws",{"_index":1061,"title":{},"content":{"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["wsgi",{"_index":6002,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["wsgi_handler.handl",{"_index":6011,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["ww",{"_index":3212,"title":{},"content":{"/tracks/algorithms-101/algorithms":{}},"description":{}}],["www",{"_index":1393,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["wxyz",{"_index":3833,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/17":{}},"description":{}}],["x",{"_index":387,"title":{"/tracks/aws-certified-developer-associate/xray/":{}},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/_index":{},"/tracks/aws-certified-developer-associate/xray/":{},"/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":{},"/tracks/aws-certified-developer-associate/s3/_index":{},"/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/fis/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/_index":{},"/tracks/aws-certified-developer-associate/api-gateway/":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/7":{},"/tracks/algorithms-101/leetcode/medium/62":{},"/tracks/algorithms-101/leetcode/medium/50":{},"/tracks/algorithms-101/leetcode/medium/48":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/medium/130":{},"/tracks/algorithms-101/leetcode/medium/128":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/11/":{},"/tracks/algorithms-101/leetcode/easy/69":{},"/tracks/algorithms-101/leetcode/easy/160":{},"/tracks/algorithms-101/leetcode/easy/141":{},"/tracks/algorithms-101/leetcode/easy/13":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/tracks/algorithms-101/leetcode/easy/345/":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/leetcode/easy/1071/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/markdown-syntax/":{},"/posts/mac-setup-development/":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["x'",{"_index":4038,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/130":{}},"description":{}}],["x**2",{"_index":6252,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["x**i",{"_index":6097,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["x86",{"_index":1783,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{}},"description":{}}],["x86_64",{"_index":2906,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["x=5",{"_index":6211,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["x=list(range(len(self.data_list[symbol",{"_index":6945,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["x^n",{"_index":3523,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/50":{}},"description":{}}],["x_12",{"_index":6498,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["x_{12345",{"_index":6496,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["xc",{"_index":4411,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xe",{"_index":2916,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{}},"description":{}}],["xelatex",{"_index":5112,"title":{},"content":{"/posts/other-snippets":{}},"description":{}}],["xf",{"_index":7191,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xii",{"_index":4400,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xjf",{"_index":7198,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["xml",{"_index":1323,"title":{},"content":{"/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":{},"/tracks/aws-certified-developer-associate/s3/grant-access-s3/":{}},"description":{}}],["xmlhttp",{"_index":6804,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttp.onreadystatechang",{"_index":6806,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttp.open(\"get",{"_index":6812,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttp.send",{"_index":6813,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xmlhttprequest",{"_index":6805,"title":{},"content":{"/posts/hugo-add-search-lunr-popup/":{}},"description":{}}],["xn",{"_index":6484,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["xrang",{"_index":6388,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["xray",{"_index":841,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/xray/":{}},"description":{}}],["xrayen",{"_index":2712,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/_index":{}},"description":{}}],["xx",{"_index":4402,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xxvii",{"_index":4401,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/13":{}},"description":{}}],["xxxxxxxxxx",{"_index":2750,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{}},"description":{}}],["xzf",{"_index":7194,"title":{},"content":{"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["y",{"_index":2444,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/js-snippets":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/python-snippets/":{},"/posts/mac-setup-development/":{},"/posts/howto-install-rhel-9-free/":{},"/posts/howto-create-react-electron-app-ts/":{}},"description":{}}],["y=self.data_list[symbol",{"_index":6946,"title":{},"content":{"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["y^1",{"_index":4815,"title":{},"content":{"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{}},"description":{}}],["yam",{"_index":2865,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["yaml",{"_index":821,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/codedeploy/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["yandex",{"_index":6551,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["yarn",{"_index":2700,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeartifact/":{},"/posts/mac-setup-development/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["yax",{"_index":6754,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["yay",{"_index":6131,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["ye",{"_index":1825,"title":{},"content":{"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/algorithms-101/leetcode/medium/146":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":{},"/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":{},"/apps/brewmate/":{}},"description":{}}],["yeah",{"_index":6186,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["year",{"_index":614,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/kms/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/posts/js-snippets":{}},"description":{"/posts/diploma/":{}}}],["yellow",{"_index":6736,"title":{},"content":{"/posts/hugo-shortcode-examples/chart":{}},"description":{}}],["yield",{"_index":4091,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/2844/":{},"/posts/python-snippets/":{}},"description":{}}],["yml",{"_index":7180,"title":{},"content":{"/posts/cloud-exam-quizz/amplify-setup-project":{}},"description":{}}],["yn",{"_index":6485,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["yo",{"_index":6281,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["you'd",{"_index":2514,"title":{},"content":{"/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":{},"/posts/js-snippets":{}},"description":{}}],["you'll",{"_index":2660,"title":{},"content":{"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/algorithms-101/algorithms":{},"/tracks/algorithms-101/leetcode/medium/2390":{},"/tracks/algorithms-101/leetcode/easy/9/":{},"/posts/python-groovy-lint-format-setup":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/how-to-upload-app-to-sourceforge/":{}},"description":{}}],["you'r",{"_index":1583,"title":{},"content":{"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/easy/1":{},"/posts/linux-interactive-non-interactive-users/":{},"/posts/howto-create-react-electron-app-ts/":{},"/posts/how-to-upload-app-to-sourceforge/":{},"/posts/docker-commands/":{}},"description":{}}],["you'v",{"_index":1721,"title":{},"content":{"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":{},"/tracks/algorithms-101/leetcode/medium/1657":{},"/posts/python-groovy-lint-format-setup":{},"/posts/howto-publish-js-npm-project":{},"/posts/howto-tkinter-interactive-plotly-chart/":{}},"description":{}}],["you@example.com",{"_index":6638,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["your_bucket_nam",{"_index":2847,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{}},"description":{}}],["your_notebook",{"_index":5439,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["your_notebook.ipynb",{"_index":5434,"title":{},"content":{"/posts/howto-render-notebook-in-hugo":{}},"description":{}}],["yourself",{"_index":1079,"title":{},"content":{"/tracks/aws-certified-developer-associate/step-functions/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["youtub",{"_index":947,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{},"/posts/mac-setup-development/":{}},"description":{}}],["youtube/netflix",{"_index":6569,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["youtube/video",{"_index":6583,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["you’ll",{"_index":866,"title":{},"content":{"/tracks/aws-certified-developer-associate/_index":{}},"description":{}}],["you’r",{"_index":1381,"title":{},"content":{"/tracks/aws-certified-developer-associate/s3/_index":{}},"description":{}}],["you’v",{"_index":710,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/sns/_index":{}},"description":{}}],["yth",{"_index":6098,"title":{},"content":{"/posts/python-snippets/":{}},"description":{}}],["yum",{"_index":2443,"title":{},"content":{"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":{},"/posts/vps-docker-subdomains-setup/":{},"/posts/howto-install-rhel-9-free/":{}},"description":{}}],["yy",{"_index":6564,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["z",{"_index":2214,"title":{},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/ec2/":{},"/tracks/algorithms-101/leetcode/medium/36":{},"/tracks/algorithms-101/leetcode/medium/15":{},"/tracks/algorithms-101/leetcode/easy/171":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/posts/js-snippets":{},"/posts/cheat-sheet-command-tar/":{}},"description":{}}],["z'",{"_index":3602,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/49":{}},"description":{}}],["zero",{"_index":2269,"title":{"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/easy/283/":{}},"content":{"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/dynamodb/_index":{},"/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":{},"/tracks/algorithms-101/plan":{},"/tracks/algorithms-101/leetcode75":{},"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/29":{},"/tracks/algorithms-101/leetcode/medium/2":{},"/tracks/algorithms-101/leetcode/medium/166":{},"/tracks/algorithms-101/leetcode/medium/1493":{},"/tracks/algorithms-101/leetcode/medium/2844/":{},"/tracks/algorithms-101/leetcode/medium/238/":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/190":{},"/tracks/algorithms-101/leetcode/easy/283/":{},"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/cp-template":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{},"/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":{},"/posts/trading-indicators/_index":{},"/posts/python-snippets/":{}},"description":{"/tracks/algorithms-101/leetcode/medium/73":{},"/tracks/algorithms-101/leetcode/medium/1004/":{},"/tracks/algorithms-101/leetcode/easy/283/":{}}}],["zero'",{"_index":3441,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/73":{}},"description":{}}],["zero_count",{"_index":4179,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1004/":{}},"description":{}}],["zerocount",{"_index":3912,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/1493":{}},"description":{}}],["zigzag",{"_index":3092,"title":{},"content":{"/tracks/algorithms-101/leetcode75":{},"/posts/trading-indicators/_index":{}},"description":{}}],["zip",{"_index":1755,"title":{},"content":{"/tracks/aws-certified-developer-associate/lambda/":{},"/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":{},"/tracks/aws-certified-developer-associate/cloudformation/_index":{},"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["zip(word1",{"_index":4480,"title":{},"content":{"/tracks/algorithms-101/leetcode/easy/1768/":{}},"description":{}}],["zipfil",{"_index":2875,"title":{},"content":{"/tracks/aws-certified-developer-associate/cloudformation/_index":{}},"description":{}}],["zipp==3.8.1",{"_index":6087,"title":{},"content":{"/posts/serverless-flask-lambda-api-gateway-mongodb/":{}},"description":{}}],["zn",{"_index":6486,"title":{},"content":{"/posts/markdown-syntax/":{}},"description":{}}],["zone",{"_index":659,"title":{},"content":{"/tracks/aws-certified-developer-associate/questions":{},"/tracks/aws-certified-developer-associate/route53/":{},"/tracks/aws-certified-developer-associate/rds/":{},"/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":{},"/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":{},"/tracks/aws-certified-developer-associate/elasticbeanstalk/":{},"/tracks/aws-certified-developer-associate/ecs/":{},"/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":{}},"description":{}}],["zone(attribute:ecs.avail",{"_index":2393,"title":{},"content":{"/tracks/aws-certified-developer-associate/ecs/":{}},"description":{}}],["zoom",{"_index":6552,"title":{},"content":{"/posts/mac-setup-development/":{},"/posts/hugo-add-image-zoomin/":{}},"description":{"/posts/hugo-add-image-zoomin/":{}}}],["zoom.on('detach",{"_index":6898,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoom.on('open",{"_index":6894,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoombackground",{"_index":6880,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomdefault",{"_index":6877,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomin",{"_index":6870,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoommargin",{"_index":6879,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomscrolloffset",{"_index":6882,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach",{"_index":6888,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.detach",{"_index":6890,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtodetach.on('clos",{"_index":6889,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigg",{"_index":6884,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zoomtotrigger.open",{"_index":6887,"title":{},"content":{"/posts/hugo-add-image-zoomin/":{}},"description":{}}],["zotero",{"_index":6585,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zprofil",{"_index":6662,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zsh",{"_index":6645,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zsh/custom}/plugins/zsh",{"_index":6658,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zsh_custom",{"_index":6657,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zshrc",{"_index":6633,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["zshsourc",{"_index":6634,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["а",{"_index":6670,"title":{},"content":{"/posts/mac-setup-development/":{}},"description":{}}],["алгоритм",{"_index":3579,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["алгоритмик",{"_index":3578,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["википедия:алгоритм",{"_index":3581,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["дерев",{"_index":4602,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["задач",{"_index":3575,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["интерв",{"_index":3576,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["интернет",{"_index":7229,"title":{},"content":{"/p/links":{}},"description":{}}],["литкод",{"_index":3577,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["магазин",{"_index":7230,"title":{},"content":{"/p/links":{}},"description":{}}],["манакер",{"_index":3580,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["манакера,%d1%80%d0%b5%d1%88%d0%b0%d1%82%d1%8c%20%d0%b8%20%d0%b1%d0%be%d0%bb%d0%b5%d0%b5%20%d0%be%d0%b1%d1%89%d0%b8%d0%b5%20%d0%b7%d0%b0%d0%b4%d0%b0%d1%87%d0%b8",{"_index":3582,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["отрезк",{"_index":4776,"title":{},"content":{"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}],["разбор",{"_index":3574,"title":{},"content":{"/tracks/algorithms-101/leetcode/medium/5":{}},"description":{}}],["фенвик",{"_index":4603,"title":{},"content":{"/tracks/algorithms-101/data-structures/_index":{},"/tracks/algorithms-101/codeforces/contests/849-div-4-1791":{}},"description":{}}]],"pipeline":["stemmer-ru","stemmer"]},"contentMap":{"ru":{"/tracks/_index":"Roadmaps","/tracks/webrtc/unified-plan-transition-guide":"Формат SDP унифицированного плана – план перехода","/tracks/webrtc/turn-server":"TURN сервер","/tracks/webrtc/testing":"Тестирование приложений WebRTC","/tracks/webrtc/remote-streams":"Удаленные потоки","/tracks/webrtc/peer-connections":"Одноранговые соединения","/tracks/webrtc/media-devices":"Мультимедиа-устройства","/tracks/webrtc/media-capture-and-constraints":"Захват мультимедиа и ограничения","/tracks/webrtc/data-channels":"Каналы данных","/tracks/webrtc/_index":"Карманная книга по WebRTC","/tracks/webrtc/practice/practice-take-photo":"Сделайте фото и отправьте его через канал данных","/tracks/webrtc/practice/practice-stream-with-RTCPeerConnection":"Потоковое видео с помощью RTCPeerConnection","/tracks/webrtc/practice/practice-stream-to-cam":"Потоковое видео с веб-камеры","/tracks/webrtc/practice/practice-setup-signaling-service":"Настройка службы сигналинга для обмена сообщениями","/tracks/webrtc/practice/practice-results":"Выводы","/tracks/webrtc/practice/practice-peer-signaling-combine":"Соединение однорангового соединения и сигналинга","/tracks/webrtc/practice/practice-overview":"Обзор","/tracks/webrtc/practice/practice-get-code":"Загрузка кода","/tracks/webrtc/practice/practice-RTCDataChannel-exchange-data":"Использование RTCDataChannel для обмена данными","/tracks/webrtc/practice/_index":"Практика","/tracks/python-101/_index":"Карманная книга по Python","/tracks/python-101/top-questions/":"Топ 55 вопросов по Python","/tracks/python-101/standard_library/threading":"Модуль потоков threading","/tracks/python-101/standard_library/sys":"Модуль sys","/tracks/python-101/standard_library/subprocess":"Модуль subprocess","/tracks/python-101/standard_library/smtplib":"Модуль email / smtplib","/tracks/python-101/standard_library/os":"Модуль os","/tracks/python-101/standard_library/logging":"Модуль logging","/tracks/python-101/standard_library/datetime_time":"Модуль datetime/time","/tracks/python-101/standard_library/configparser":"Модуль configparser","/tracks/python-101/standard_library/asyncio":"Модуль asyncio","/tracks/python-101/standard_library/argparse":"Модуль argparse","/tracks/python-101/standard_library/_index":"II - Стандартные модули","/tracks/python-101/frameworks/tornado":"Tornado","/tracks/python-101/frameworks/flask":"Flask","/tracks/python-101/frameworks/fastapi":"FastAPI","/tracks/python-101/frameworks/django":"Django","/tracks/python-101/frameworks/_index":"V - Фреймворки","/tracks/python-101/external_packages/requests":"Пакет requests","/tracks/python-101/external_packages/install_packages":"Установка пакетов","/tracks/python-101/external_packages/_index":"IV - Внешние модули","/tracks/python-101/enhance_python/testing":"Тестирование","/tracks/python-101/enhance_python/lambda":"Лямбда","/tracks/python-101/enhance_python/decorators":"Декораторы","/tracks/python-101/enhance_python/debugging":"Отладка Python","/tracks/python-101/enhance_python/closure":"Замыкания","/tracks/python-101/enhance_python/_index":"III - Расширенные возможности","/tracks/python-101/basis/types":"Типы данных","/tracks/python-101/basis/tuples":"Кортежи","/tracks/python-101/basis/strings":"Строки","/tracks/python-101/basis/sets":"Множества","/tracks/python-101/basis/scope":"Область видимости","/tracks/python-101/basis/operators":"Операторы","/tracks/python-101/basis/numbers":"Числа","/tracks/python-101/basis/loops":"Циклы","/tracks/python-101/basis/lists":"Списки","/tracks/python-101/basis/install":"Установка Python","/tracks/python-101/basis/inputs":"Ввод данных пользователем","/tracks/python-101/basis/imports":"Импорт модулей","/tracks/python-101/basis/ide":"Среда разработки","/tracks/python-101/basis/functions":"Функции","/tracks/python-101/basis/file_io":"Работа с файлами","/tracks/python-101/basis/exception_handling":"Обработка исключений","/tracks/python-101/basis/dict":"Словари","/tracks/python-101/basis/conditionals":"Условия","/tracks/python-101/basis/comprehensions":"Генераторы","/tracks/python-101/basis/classes":"Классы","/tracks/python-101/basis/_index":"I - Основы","/tracks/disser/israel-notes":"Заметки по Израилю","/tracks/disser/articles-notes":"Написание статей","/tracks/disser/_index":"Диссертация","/tracks/disser/utils/text_2_short":"Генерация аннотации","/tracks/disser/canditate-minimum/languages-requirements":"Требования по иностранным языкам","/tracks/disser/canditate-minimum/_index":"Кандидатский минимум Мировая экономика 08.00.14","/tracks/disser/canditate-minimum/05-international-foreign-exchange-market":"Раздел 5. Международный валютный рынок","/tracks/disser/canditate-minimum/04-international-capital-movement":"Раздел 4. Международное движение капитала","/tracks/disser/canditate-minimum/03-international-policy":"Раздел 3. Международная торговая политика","/tracks/disser/canditate-minimum/02-international-trade":"Раздел 2. Международная торговля","/tracks/disser/canditate-minimum/01-economic-theory":"Раздел 1. Экономическая теория","/tracks/aws-certified-developer-associate/_index":"AWS Certified Developer (DVA-C01 -> DVA-C02)","/tracks/aws-certified-developer-associate/lambda/":"Lambda","/tracks/aws-certified-developer-associate/iam/":"IAM","/tracks/aws-certified-developer-associate/elasticbeanstalk/":"Elastic Beanstalk","/tracks/aws-certified-developer-associate/ec2/":"EC2","/tracks/archive/":"Docs","/tracks/algorithms-101/leetcode/_index":"LeetCode","/tracks/algorithms-101/leetcode/medium/_index":"Средние","/tracks/algorithms-101/leetcode/medium/28.en":"28. Find the Index of the First Occurrence in a String","/tracks/algorithms-101/leetcode/medium/151":"151. Reverse Words in a String","/tracks/algorithms-101/leetcode/medium/735/":"735. Asteroid Collision","/tracks/algorithms-101/leetcode/medium/649/":"649. Dota2 Senate","/tracks/algorithms-101/leetcode/medium/454/":"454. 4Sum II","/tracks/algorithms-101/leetcode/medium/443/":"443. String Compression","/tracks/algorithms-101/leetcode/medium/437/":"437. Path Sum III","/tracks/algorithms-101/leetcode/medium/394/":"394. Decode String","/tracks/algorithms-101/leetcode/medium/387/":"387. First Unique Character in a String","/tracks/algorithms-101/leetcode/medium/384/":"384. Shuffle an Array","/tracks/algorithms-101/leetcode/medium/341/":"341. Flatten Nested List Iterator","/tracks/algorithms-101/leetcode/medium/334/":"334. Increasing Triplet Subsequence","/tracks/algorithms-101/leetcode/medium/328/":"328. Odd Even Linked List","/tracks/algorithms-101/leetcode/medium/300/":"300. Longest Increasing Subsequence","/tracks/algorithms-101/leetcode/medium/287/":"287. Find the Duplicate Number","/tracks/algorithms-101/leetcode/medium/2844/":"2844. Minimum Operations to Make a Special Number","/tracks/algorithms-101/leetcode/medium/277/":"277. Find the Celebrity","/tracks/algorithms-101/leetcode/medium/251/":"251. Flatten 2D Vector","/tracks/algorithms-101/leetcode/medium/240/":"240. Search a 2D Matrix II","/tracks/algorithms-101/leetcode/medium/238/":"238. Product of Array Except Self","/tracks/algorithms-101/leetcode/medium/237/":"237. Delete Node in a Linked List","/tracks/algorithms-101/leetcode/medium/236/":"236. Lowest Common Ancestor of a Binary Tree","/tracks/algorithms-101/leetcode/medium/2352/":"2352. Equal Row and Column Pairs","/tracks/algorithms-101/leetcode/medium/215/":"215. Kth Largest Element in an Array","/tracks/algorithms-101/leetcode/medium/2130/":"2130. Maximum Twin Sum of a Linked List","/tracks/algorithms-101/leetcode/medium/210/":"210. Course Schedule II","/tracks/algorithms-101/leetcode/medium/2095/":"2095. Delete the Middle Node of a Linked List","/tracks/algorithms-101/leetcode/medium/1679/":"1679. Max Number of K-Sum Pairs","/tracks/algorithms-101/leetcode/medium/1448/":"1448. Count Good Nodes in Binary Tree","/tracks/algorithms-101/leetcode/medium/138/":"138. Copy List with Random Pointer","/tracks/algorithms-101/leetcode/medium/1372/":"1372. Longest ZigZag Path in a Binary Tree","/tracks/algorithms-101/leetcode/medium/11/":"11. Container With Most Water","/tracks/algorithms-101/leetcode/medium/1004/":"1004. Max Consecutive Ones III","/tracks/algorithms-101/leetcode/hard/_index":"Тяжелые","/tracks/algorithms-101/leetcode/hard/42/":"42. Trapping Rain Water","/tracks/algorithms-101/leetcode/hard/4/":"4. Median of Two Sorted Arrays","/tracks/algorithms-101/leetcode/easy/_index":"Легкие","/tracks/algorithms-101/leetcode/easy/933/":"933. Number of Recent Calls","/tracks/algorithms-101/leetcode/easy/9/":"9. Palindrome Number","/tracks/algorithms-101/leetcode/easy/872/":"872. Leaf-Similar Trees","/tracks/algorithms-101/leetcode/easy/605/":"605. Can Place Flowers","/tracks/algorithms-101/leetcode/easy/392/":"392. Is Subsequence","/tracks/algorithms-101/leetcode/easy/345/":"345. Reverse Vowels of a String","/tracks/algorithms-101/leetcode/easy/283/":"283. Move Zeroes","/tracks/algorithms-101/leetcode/easy/206/":"206. Reverse Linked List","/tracks/algorithms-101/leetcode/easy/1768/":"1768. Merge Strings Alternately","/tracks/algorithms-101/leetcode/easy/1732/":"1732. Find the Highest Altitude","/tracks/algorithms-101/leetcode/easy/1071/":"1071. Greatest Common Divisor of Strings","/tracks/algorithms-101/leetcode/easy/104/":"104. Maximum Depth of Binary Tree","/tracks/algorithms-101/data-structures/segment-tree":"Дерево отрезков","/tracks/algorithms-101/data-structures/prefix-sum":"Префиксные суммы","/tracks/algorithms-101/data-structures/fenwick-tree":"Дерево Фенвика","/tracks/algorithms-101/data-structures/_index":"Data Structures","/tracks/algorithms-101/codeforces/_index":"Codeforces","/tracks/90daysofdevops/day90":"90. Мобильность данных и приложений","/tracks/90daysofdevops/day89":"89. Аварийное восстановление","/tracks/90daysofdevops/day88":"88. Резервное копирование, ориентированное на приложения","/tracks/90daysofdevops/day87":"87. Резервное копирование и восстановление","/tracks/90daysofdevops/day86":"86. Резервное копирование всех платформ","/tracks/90daysofdevops/day85":"85. Службы данных","/tracks/90daysofdevops/day84":"84. Управление данными","/tracks/90daysofdevops/day83":"83. Визуализация данных - Grafana","/tracks/90daysofdevops/day82":"82. EFK Stack","/tracks/90daysofdevops/day81":"81. Fluentd и FluentBit","/tracks/90daysofdevops/day80":"80. ELK Stack","/tracks/90daysofdevops/day79":"79. Log Management","/tracks/90daysofdevops/day78":"78. Hands-On Monitoring Tools","/tracks/90daysofdevops/day77":"77. Мониторинг","/tracks/90daysofdevops/day76":"76. Обзор ArgoCD","/tracks/90daysofdevops/day75":"75. Обзор GitHub Actions","/tracks/90daysofdevops/day74":"74. Hello World - Jenkinsfile App Pipeline","/tracks/90daysofdevops/day73":"73. Построение конвейера Jenkins","/tracks/90daysofdevops/day72":"72. Работа с Jenkins","/tracks/90daysofdevops/day71":"71. Введение в Jenkins","/tracks/90daysofdevops/day70":"70. Конвейеры CI/CD","/tracks/90daysofdevops/day69":"69. Ansible - контроллер автоматизации (Tower), AWX, Vault","/tracks/90daysofdevops/day68":"68. Теги, переменные, инвентаризация и конфигурация сервера базы данных","/tracks/90daysofdevops/day67":"67. Роли и развертывание балансировщика нагрузки","/tracks/90daysofdevops/day66":"66. Ansible Playbooks - Часть 2","/tracks/90daysofdevops/day65":"65. Ansible Playbooks - Часть 1","/tracks/90daysofdevops/day64":"64. Ansible Введение","/tracks/90daysofdevops/day63":"63. Инструменты управления конфигурацией - Ansible/Terraform","/tracks/90daysofdevops/day62":"62. Terraform - Тестирование, инструменты и альтернативы","/tracks/90daysofdevops/day61":"61. Kubernetes и множественные среды","/tracks/90daysofdevops/day60":"60. Контейнеры, провайдеры и модули Docker","/tracks/90daysofdevops/day59":"59. Создание виртуальной машины с помощью Terraform","/tracks/90daysofdevops/day58":"58. Язык конфигурации HashiCorp (HCL)","/tracks/90daysofdevops/day57":"57. Введение в Terraform","/tracks/90daysofdevops/day56":"56. Обзор IaC","/tracks/90daysofdevops/day55":"55. State и Ingress в Kubernetes","/tracks/90daysofdevops/day54":"54. Развертывание приложений Kubernetes","/tracks/90daysofdevops/day53":"53. Обзор Rancher","/tracks/90daysofdevops/day52":"52. Настройка многоузлового кластера Kubernetes","/tracks/90daysofdevops/day51":"51. Установка minikube","/tracks/90daysofdevops/day50":"50. Выбор платформы Kubernetes для проекта","/tracks/90daysofdevops/day49":"49. Основы Kubernetes","/tracks/90daysofdevops/day48":"48. Альтернативы Docker","/tracks/90daysofdevops/day47":"47. Сетевое взаимодействие Docker и безопасность","/tracks/90daysofdevops/day46":"46. Docker Compose","/tracks/90daysofdevops/day45":"45. Что из себя представляет оьбраз Docker","/tracks/90daysofdevops/day44":"44. Установка образов Docker в Docker Desktop","/tracks/90daysofdevops/day43":"43. Установка Docker","/tracks/90daysofdevops/day42":"42. Контейнеры","/tracks/90daysofdevops/day41":"41. Рабочий процесс с открытым исходным кодом","/tracks/90daysofdevops/day40":"40. GitHub | GitLab | BitBucket","/tracks/90daysofdevops/day39":"39. Просмотр, удаление, отмена и восстановление","/tracks/90daysofdevops/day38":"38. Staging и Изменения","/tracks/90daysofdevops/day37":"37. Шпаргалка по Git","/tracks/90daysofdevops/day36":"36. Установка и настройка Git","/tracks/90daysofdevops/day35":"35. Git — контроль версий","/tracks/90daysofdevops/day34":"34. Практические скрипты Microsoft Azure","/tracks/90daysofdevops/day33":"33. Сетевые модели Microsoft Azure + Управление Azure","/tracks/90daysofdevops/day32":"32. Модели хранилища Microsoft Azure","/tracks/90daysofdevops/day31":"31. Microsoft Azure Среда выполнения приложений","/tracks/90daysofdevops/day30":"30. Модули безопасности Microsoft Azure","/tracks/90daysofdevops/day29":"29. Знакомство с Microsoft Azure","/tracks/90daysofdevops/day28":"28. DevOps в облаке","/tracks/90daysofdevops/day27":"27. Работа с сетью в Python","/tracks/90daysofdevops/day26":"26. Развертывание виртуальной лаборатории EVE-NG в домашних условиях","/tracks/90daysofdevops/day25":"25. Автоматизация сети с помощью Python","/tracks/90daysofdevops/day24":"24. Автоматизация сети","/tracks/90daysofdevops/day23":"23. Протоколы сети","/tracks/90daysofdevops/day22":"22. Открытая сетевая модель OSI","/tracks/90daysofdevops/day21":"21. DevOps настройка сети","/tracks/90daysofdevops/day20":"20. Настройка рабочей среды DevOps","/tracks/90daysofdevops/day18":"18. Web Сервер и SSH","/tracks/90daysofdevops/day17":"17. Текстовые редакторы Nano/Vim","/tracks/90daysofdevops/day16":"16. Управление системой, файловой системой и хранилищем в Linux","/tracks/90daysofdevops/day15":"15. Команды Linux в DevOps","/tracks/90daysofdevops/day14":"14. DevOps и Linux","/tracks/90daysofdevops/day13":"13. Go - подключение Twitter API","/tracks/90daysofdevops/day12":"12. Golang - чтение данных и указатели","/tracks/90daysofdevops/day11":"11. Переменные и константы в Go","/tracks/90daysofdevops/day10":"10. Окружение Go","/tracks/90daysofdevops/day09":"9. Как работает hello-world на Golang","/tracks/90daysofdevops/day07":"7. DevOps - изучение языка программирования","/tracks/90daysofdevops/day06":"6. DevOps - Истории","/tracks/90daysofdevops/day04":"4. DevOps и Agile","/tracks/90daysofdevops/day03":"3. Ориентированность на приложения","/tracks/90daysofdevops/day02":"2. Задачи DevOps-инженера","/tracks/90daysofdevops/day01":"1. DevOps - общее представление","/tracks/90daysofdevops/_index":"90 дней DevOps","/tracks/90daysofdevops/day19/":"19. Автоматизация задачи с помощью bash-скриптов","/tracks/90daysofdevops/day08/":"8. Настройка DevOps окружения для запуска Hello World на Go","/tracks/90daysofdevops/day05/":"5. Plan > Code > Build > Testing > Release > Deploy > Operate > Monitor","/search/_index":"Search page","/posts/ruGPT-3-notes":"ChatGPT/ruGPT-3","/posts/math-support":"Math Support","/posts/featured-image":"Featured Image","/posts/emoji-support":"Emoji Support","/posts/diagram-support":"Diagram Support","/posts/_index":"Заметки","/posts/trading-indicators/sma":"SMA - Простая скользящая средняя","/posts/python-snippets/":"Сниппеты Python","/posts/pyscript-python-embedded-in-html/":"PyScript - Python, встроенный в HTML","/posts/nextjs-to-github-pages-ations/":"Публикация next.js приложения на github pages","/posts/markdown-syntax/":"Руководство по оформлению Markdown файлов","/posts/interactivebrokers-deposit/":"Пополнение Interactive Brokers с Израильского счета","/posts/integrate-hugo-react/":"Как подключить React .jsx в проект на Hugo","/posts/hugo-add-image-zoomin/":"Увеличение картинки по нажатию в Hugo","/posts/howto-rename-files-in-python/":"Как переименовать файлы в Python","/posts/howto-redirect-to-url/":"Как сделать редирект на другой URL в JavaScript","/posts/howto-install-ubuntu-desktop-on-arm/":"Установка Ubuntu Desktop 22.10 (Kinetic Kudu) на ARM CPU","/posts/howto-install-rhel-9-free/":"Установка Linux RHEL 9","/posts/howto-create-react-electron-app-ts/":"Как создать приложение React-Electron с нуля","/posts/howto-create-deepclone-js/":"Как сделать глубокое клонирование объекта в JavaScript","/posts/google-sheets-2-json/":"Отображение таблицы Google Sheets в JSON","/posts/gallery-example/":"Gallery example","/posts/economics/raznica-mezhdu-marzhinalizmom-i-nerkantilizmom":"Разница между Маржинализмом и Меркантилизмом","/posts/economics/diff-forward-contracts-futures":"Разница Валютные форварды и Фьючерсы","/posts/docker-commands/":"Популярные команды Docker","/posts/diploma/":"IT курсы 2020","/posts/cheat-sheet-command-tar/":"Шпаргалка tar архиватор","/posts/archive/":"Posts Archive","/photos/_index":"Фото","/photos/midjourney/":"AI Midjourney generated","/photos/icons/":"Awesome app icons","/photos/ai/":"AI generated","/photos/22-07-02-israel-haifa-bahai-gardens/":"Израиль - Хайфа - Бахайские сады","/p/репатриация":"Чеклист репатриация в Израиль","/p/publications":"Печатные публикации","/p/privacy_ru":"Политика конфиденциальности","/homepage/pages":"Заметки","/homepage/experience":"Path","/homepage/education":"Образование","/homepage/about":"Роман Курновский","/authors/roman-kurnovskii/_index":"Роман Курновский","/authors/michael-cade/_index":"Michael Cade","/apps/_index":"Приложения","/apps/npm/hugo-lunr-ml/":"hugo-lunr-ml","/apps/npm/cognito-token-observer/":"cognito-token-observer","/apps/cloud-exam-quizz/":"Cloud exam Quizz","/apps/brewmate/":"BrewMate","/_home/vintage":"Vintage","/_home/blank":"Blank"},"en":{"/tracks/_index":"Roadmaps","/tracks/disser/utils/text_2_short":"Short description from article","/tracks/aws-certified-developer-associate/questions":"Questions","/tracks/aws-certified-developer-associate/_index":"AWS Certified Developer (DVA-C01 -> DVA-C02)","/tracks/aws-certified-developer-associate/xray/":"X-Ray","/tracks/aws-certified-developer-associate/step-functions/":"Step Functions","/tracks/aws-certified-developer-associate/sqs/_index":"Simple Queue Service","/tracks/aws-certified-developer-associate/sqs/fan-out-orders-with-sns-sqs/":"Fan-Out Orders using Amazon SNS and SQS","/tracks/aws-certified-developer-associate/sns/_index":"Simple Notification Service","/tracks/aws-certified-developer-associate/sns/aws-lambda-sns-notifications/":"Process Amazon SNS Notifications with AWS Lambda","/tracks/aws-certified-developer-associate/s3/_index":"S3","/tracks/aws-certified-developer-associate/s3/upload-file-to-s3/":"Upload a file to S3","/tracks/aws-certified-developer-associate/s3/how-to-change-metadata-s3/":"Change metadata of S3 Object","/tracks/aws-certified-developer-associate/s3/grant-access-s3/":"Grant public access to S3 Object","/tracks/aws-certified-developer-associate/s3/delete-from-s3/":"Delete S3 Bucket","/tracks/aws-certified-developer-associate/s3/create-s3-bucket/":"Create S3 Bucket","/tracks/aws-certified-developer-associate/s3/create-folder-s3/":"Create a folder inside S3 Bucket","/tracks/aws-certified-developer-associate/route53/":"Route 53","/tracks/aws-certified-developer-associate/rds/":"RDS","/tracks/aws-certified-developer-associate/opensearch-service/_index":"OpenSearch Service","/tracks/aws-certified-developer-associate/opensearch-service/build-log-aggregation-system/":"Build A Log Aggregation System in AWS","/tracks/aws-certified-developer-associate/lambda/":"Lambda","/tracks/aws-certified-developer-associate/kms/_index":"Key Management Service","/tracks/aws-certified-developer-associate/kms/encrypting-s3-objects-using-sse-kms/":"Encrypting S3 Objects Using SSE-KMS","/tracks/aws-certified-developer-associate/kinesis/_index":"Kinesis","/tracks/aws-certified-developer-associate/kinesis/sessionizing-clickstream-data-kinesis-data-analytics/":"Sessionizing Clickstream Data with Amazon Kinesis Data Analytics","/tracks/aws-certified-developer-associate/iam/":"IAM","/tracks/aws-certified-developer-associate/fis/":"Fault Injection Simulator","/tracks/aws-certified-developer-associate/fargate/":"Fargate","/tracks/aws-certified-developer-associate/eventbridge/":"EventBridge","/tracks/aws-certified-developer-associate/elasticloadbalancing/_index":"Elastic Load Balancing","/tracks/aws-certified-developer-associate/elasticloadbalancing/create-amazon-load-balancing/":"Create Classic Load Balancer","/tracks/aws-certified-developer-associate/elasticbeanstalk/":"Elastic Beanstalk","/tracks/aws-certified-developer-associate/elasticache/":"ElastiCache","/tracks/aws-certified-developer-associate/eks/":"Elastic Kubernetes Service","/tracks/aws-certified-developer-associate/ecs/":"Elastic Container Service","/tracks/aws-certified-developer-associate/ecr/":"Elastic Container Registry","/tracks/aws-certified-developer-associate/ec2/":"EC2","/tracks/aws-certified-developer-associate/dynamodb/_index":"DynamoDB","/tracks/aws-certified-developer-associate/dynamodb/introduction-dynamodb/":"Introduction to DynamoDB","/tracks/aws-certified-developer-associate/cognito/":"Cognito","/tracks/aws-certified-developer-associate/codestar/develop-and-deploy-app-with-codestar":"Develop and Deploy an Application with AWS CodeStar","/tracks/aws-certified-developer-associate/codestar/_index":"CodeStar","/tracks/aws-certified-developer-associate/codepipeline/":"CodePipeline","/tracks/aws-certified-developer-associate/codeguru/_index":"CodeGuru","/tracks/aws-certified-developer-associate/codeguru/automating-code-reviews-amazon-codeguru/":"Automating Code Reviews with Amazon CodeGuru","/tracks/aws-certified-developer-associate/codedeploy/":"CodeDeploy","/tracks/aws-certified-developer-associate/codecommit/_index":"CodeCommit","/tracks/aws-certified-developer-associate/codecommit/introduction-codecommit/":"Introduction to CodeCommit","/tracks/aws-certified-developer-associate/codebuild/":"CodeBuild","/tracks/aws-certified-developer-associate/codeartifact/":"CodeArtifact","/tracks/aws-certified-developer-associate/cloudwatch/_index":"CloudWatch","/tracks/aws-certified-developer-associate/cloudwatch/introduction-to-cloudwatch/":"Introduction to CloudWatch","/tracks/aws-certified-developer-associate/cloudfront/_index":"CloudFront","/tracks/aws-certified-developer-associate/cloudfront/configuring-static-website-s3-and-cloudfront/":"Configuring a Static Website With S3 And CloudFront","/tracks/aws-certified-developer-associate/cloudformation/_index":"CloudFormation","/tracks/aws-certified-developer-associate/cloudformation/initializing-ec2-with-cloudformation/":"Initializing Amazon EC2 Instances with AWS CloudFormation Init","/tracks/aws-certified-developer-associate/api-gateway/":"API Gateway","/tracks/archive/":"Docs","/tracks/algorithms-101/plan":"Plan","/tracks/algorithms-101/leetcode75":"LeetCode Top 75","/tracks/algorithms-101/algorithms":"Algorithms","/tracks/algorithms-101/_index":"Algorithms 101","/tracks/algorithms-101/leetcode/_index":"LeetCode","/tracks/algorithms-101/leetcode/medium/_index":"Medium","/tracks/algorithms-101/leetcode/medium/8":"8. String to Integer (atoi)","/tracks/algorithms-101/leetcode/medium/78":"78. Subsets","/tracks/algorithms-101/leetcode/medium/75":"75. Sort Colors","/tracks/algorithms-101/leetcode/medium/73":"73. Set Matrix Zeroes","/tracks/algorithms-101/leetcode/medium/7":"7. Reverse Integer","/tracks/algorithms-101/leetcode/medium/62":"62. Unique Paths","/tracks/algorithms-101/leetcode/medium/56":"56. Merge Intervals","/tracks/algorithms-101/leetcode/medium/55":"55. Jump Game","/tracks/algorithms-101/leetcode/medium/53":"53. Maximum Subarray","/tracks/algorithms-101/leetcode/medium/50":"50. Pow(x, n)","/tracks/algorithms-101/leetcode/medium/5":"5. Longest Palindromic Substring","/tracks/algorithms-101/leetcode/medium/49":"49. Group Anagrams","/tracks/algorithms-101/leetcode/medium/48":"48. Rotate Image","/tracks/algorithms-101/leetcode/medium/46":"46. Permutations","/tracks/algorithms-101/leetcode/medium/38":"38. Count and Say","/tracks/algorithms-101/leetcode/medium/36":"36. Valid Sudoku","/tracks/algorithms-101/leetcode/medium/34":"34. Find First and Last Position of Element in Sorted Array","/tracks/algorithms-101/leetcode/medium/33":"33. Search in Rotated Sorted Array","/tracks/algorithms-101/leetcode/medium/3":"3. Longest Substring Without Repeating Characters","/tracks/algorithms-101/leetcode/medium/29":"29. Divide Two Integers","/tracks/algorithms-101/leetcode/medium/2390":"2390. Removing Stars From a String","/tracks/algorithms-101/leetcode/medium/22":"22. Generate Parentheses","/tracks/algorithms-101/leetcode/medium/2":"2. Add Two Numbers","/tracks/algorithms-101/leetcode/medium/19":"19. Remove Nth Node From End of List","/tracks/algorithms-101/leetcode/medium/189":"189. Rotate Array","/tracks/algorithms-101/leetcode/medium/17":"17. Letter Combinations of a Phone Number","/tracks/algorithms-101/leetcode/medium/166":"166. Fraction to Recurring Decimal","/tracks/algorithms-101/leetcode/medium/1657":"1657. Determine if Two Strings Are Close","/tracks/algorithms-101/leetcode/medium/152":"152. Maximum Product Subarray","/tracks/algorithms-101/leetcode/medium/151":"151. Reverse Words in a String","/tracks/algorithms-101/leetcode/medium/15":"15. 3Sum","/tracks/algorithms-101/leetcode/medium/1493":"1493. Longest Subarray of 1's After Deleting One Element","/tracks/algorithms-101/leetcode/medium/148":"148. Sort List","/tracks/algorithms-101/leetcode/medium/146":"146. LRU Cache","/tracks/algorithms-101/leetcode/medium/1456":"1456. Maximum Number of Vowels in a Substring of Given Length","/tracks/algorithms-101/leetcode/medium/139":"139. Word Break","/tracks/algorithms-101/leetcode/medium/134":"134. Gas Station","/tracks/algorithms-101/leetcode/medium/131":"131. Palindrome Partitioning","/tracks/algorithms-101/leetcode/medium/130":"130. Surrounded Regions","/tracks/algorithms-101/leetcode/medium/128":"128. Longest Consecutive Sequence","/tracks/algorithms-101/leetcode/medium/122":"122. Best Time to Buy and Sell Stock II","/tracks/algorithms-101/leetcode/medium/116":"116. Populating Next Right Pointers in Each Node","/tracks/algorithms-101/leetcode/medium/735/":"735. Asteroid Collision","/tracks/algorithms-101/leetcode/medium/443/":"443. String Compression","/tracks/algorithms-101/leetcode/medium/394/":"394. Decode String","/tracks/algorithms-101/leetcode/medium/334/":"334. Increasing Triplet Subsequence","/tracks/algorithms-101/leetcode/medium/2844/":"2844. Minimum Operations to Make a Special Number","/tracks/algorithms-101/leetcode/medium/2841/":"2841. Maximum Sum of Almost Unique Subarray","/tracks/algorithms-101/leetcode/medium/2840/":"2840. Check if Strings Can be Made Equal With Operations II","/tracks/algorithms-101/leetcode/medium/238/":"238. Product of Array Except Self","/tracks/algorithms-101/leetcode/medium/2352/":"2352. Equal Row and Column Pairs","/tracks/algorithms-101/leetcode/medium/138/":"138. Copy List with Random Pointer","/tracks/algorithms-101/leetcode/medium/11/":"11. Container With Most Water","/tracks/algorithms-101/leetcode/medium/1004/":"1004. Max Consecutive Ones III","/tracks/algorithms-101/leetcode/hard/_index":"Hard","/tracks/algorithms-101/leetcode/hard/2842/":"2842. Count K-Subsequences of a String with Maximum Beauty","/tracks/algorithms-101/leetcode/easy/_index":"Easy","/tracks/algorithms-101/leetcode/easy/94":"94. Binary Tree Inorder Traversal","/tracks/algorithms-101/leetcode/easy/88":"88. Merge Sorted Array","/tracks/algorithms-101/leetcode/easy/724":"724. Find Pivot Index","/tracks/algorithms-101/leetcode/easy/70":"70. Climbing Stairs","/tracks/algorithms-101/leetcode/easy/69":"69. Sqrt(x)","/tracks/algorithms-101/leetcode/easy/66":"66. Plus One","/tracks/algorithms-101/leetcode/easy/643":"643. Maximum Average Subarray I","/tracks/algorithms-101/leetcode/easy/26":"26. Remove Duplicates from Sorted Array","/tracks/algorithms-101/leetcode/easy/234":"234. Palindrome Linked List","/tracks/algorithms-101/leetcode/easy/2215":"2215. Find the Difference of Two Arrays","/tracks/algorithms-101/leetcode/easy/21":"21. Merge Two Sorted Lists","/tracks/algorithms-101/leetcode/easy/202":"202. Happy Number","/tracks/algorithms-101/leetcode/easy/20":"20. Valid Parentheses","/tracks/algorithms-101/leetcode/easy/191":"191. Number of 1 Bits","/tracks/algorithms-101/leetcode/easy/190":"190. Reverse Bits","/tracks/algorithms-101/leetcode/easy/171":"171. Excel Sheet Column Number","/tracks/algorithms-101/leetcode/easy/160":"160. Intersection of Two Linked Lists","/tracks/algorithms-101/leetcode/easy/1431":"1431. Kids With the Greatest Number of Candies","/tracks/algorithms-101/leetcode/easy/141":"141. Linked List Cycle","/tracks/algorithms-101/leetcode/easy/14":"14. Longest Common Prefix","/tracks/algorithms-101/leetcode/easy/13":"13. Roman to Integer","/tracks/algorithms-101/leetcode/easy/1207":"1207. Unique Number of Occurrences","/tracks/algorithms-101/leetcode/easy/1":"1. Two Sum","/tracks/algorithms-101/leetcode/easy/9/":"9. Palindrome Number","/tracks/algorithms-101/leetcode/easy/605/":"605. Can Place Flowers","/tracks/algorithms-101/leetcode/easy/392/":"392. Is Subsequence","/tracks/algorithms-101/leetcode/easy/345/":"345. Reverse Vowels of a String","/tracks/algorithms-101/leetcode/easy/2839/":"2839. Check if Strings Can be Made Equal With Operations I","/tracks/algorithms-101/leetcode/easy/283/":"283. Move Zeroes","/tracks/algorithms-101/leetcode/easy/206/":"206. Reverse Linked List","/tracks/algorithms-101/leetcode/easy/1768/":"1768. Merge Strings Alternately","/tracks/algorithms-101/leetcode/easy/1732/":"1732. Find the Highest Altitude","/tracks/algorithms-101/leetcode/easy/1071/":"1071. Greatest Common Divisor of Strings","/tracks/algorithms-101/data-structures/segment-tree":"Segment Tree","/tracks/algorithms-101/data-structures/binary-tree":"Binary Tree","/tracks/algorithms-101/data-structures/_index":"Data Structures","/tracks/algorithms-101/codeforces/plan":"Plan","/tracks/algorithms-101/codeforces/cp-template":"Python template for contests","/tracks/algorithms-101/codeforces/_index":"Codeforces","/tracks/algorithms-101/codeforces/contests/_index":"Contests","/tracks/algorithms-101/codeforces/contests/867-div-3-1822":"Round #867/1822 (Div. 3)","/tracks/algorithms-101/codeforces/contests/849-div-4-1791":"Round #849/1791 (Div. 4)","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/_index":"02: Combinatorics & Geometry","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1787A":"1787A - Exponential Equation - 800","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777B":"1777B - Emordnilap - 900","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1777A":"1777A - Everybody Likes Good Arrays! - 800","/tracks/algorithms-101/codeforces/02-combinatorics-and-geometry/1773F":"1773F - Football - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/_index":"01: Implementation & Greedy","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1809A":"1809A - Garland - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807C":"1807C - Find and Replace - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807B":"1807B - Grab the Candies - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1807A":"1807A - Plus or Minus - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1799A":"1799A - Recent Actions - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1798A":"1798A - Showstopper - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1796B":"1796B - One and Two - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1788A":"1788A - One and Two - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1778A":"1778A - Flip Flop Sum - 800","/tracks/algorithms-101/codeforces/01-implementation-and-greedy/1772A":"1772A - A+B? - 800","/stories/_index":"Stories","/stories/004-trading-bot-refactor-orders":"Enhancing Trading Bot with Abstraction and Async Management","/stories/002-openvpn-aws-ec2-setup":"Setup OpenVPN Server on AWS EC2 Ubuntu","/stories/001-rediscovering-backtracking-algo":"Visualize Algorithms - Rediscovering Backtracking","/stories/003-trading-bot-gui-init-tkinter/":"Creating a GUI for a Trading Bot","/search/_index":"Search page","/posts/python-groovy-lint-format-setup":"Linters & Formatters Setup for Python, Groovy, JavaScript in VSCode","/posts/python-docstring-templates":"Python docstring templates","/posts/python-bitwise-operators":"Python bitwise operators","/posts/other-snippets":"Some code snippets","/posts/js-snippets":"JavaScript code snippets","/posts/js-convert-array-to-dict":"JavaScript: convert array of objects to dictionary","/posts/hugo-add-copy-button-on-highlight-block":"How to add copy code button on HUGO highligh code block","/posts/howto-render-notebook-in-hugo":"How to Render Jupyter Notebooks in Hugo with a Custom Shortcode","/posts/howto-publish-ts-npm-project":"How to publish typescript package to npm registry","/posts/howto-publish-js-npm-project":"How to publish JavaScript package to npm registry","/posts/git-snippets":"Git snippets","/posts/code-style":"Code style notes","/posts/bash-snippets":"Bash code snippets","/posts/_index":"Notes","/posts/vps-docker-subdomains-setup/":"Setup subdomains on VPS CentOS","/posts/tree-vs-trie-data-structures/":"Difference between Tries and Trees?","/posts/trading-indicators/stochastic_oscillator":"Stochastic Oscillator - Momentum Indicator","/posts/trading-indicators/sma":"SMA - Simple Moving Average","/posts/trading-indicators/rsi":"RSI - Relative Strength Index","/posts/trading-indicators/macd":"MACD - Moving Average Convergence Divergence","/posts/trading-indicators/ema":"EMA - Exponential Moving Average","/posts/trading-indicators/bollinger_bands":"Bollinger Bands - Volatility and Price Level Indicator","/posts/trading-indicators/atr":"Average True Range (ATR) - Volatility Indicator","/posts/trading-indicators/_index":"Trading indicators","/posts/serverless-flask-lambda-api-gateway-mongodb/":"Serverless: Flask+API Gateway+Lambda+MongoDB","/posts/python-snippets/":"Python Cheat Sheet","/posts/markdown-syntax/":"Markdown Cheat Sheet","/posts/mac-setup-development/":"Mac Setup 2022","/posts/linux-interactive-non-interactive-users/":"Interactive vs. Non-Interactive Users in Linux","/posts/interactivebrokers-deposit/":"Deposit Interactive Brokers from Israel Discount bank","/posts/hugo-shortcode-examples/img":"img","/posts/hugo-shortcode-examples/chart":"chart","/posts/hugo-shortcode-examples/_index":"Hugo shortcode examples","/posts/hugo-add-search-lunr-popup/":"Add search to Hugo multilingual static site with Lunr","/posts/hugo-add-image-zoomin/":"Hugo resize a picture on click","/posts/howto-tkinter-interactive-plotly-chart/":"How to Create Interactive Financial Charts using Tkinter and Plotly","/posts/howto-rename-files-in-python/":"How to rename files in Python","/posts/howto-install-rhel-9-free/":"How to Download and Install Linux RHEL 9 for Free","/posts/howto-create-react-electron-app-ts/":"How to Create a React-Electron Application From Scratch","/posts/howto-create-deepclone-js/":"How to create a deep clone of an object in JavaScript","/posts/how-to-upload-app-to-sourceforge/":"How to upload an opensource application to SourceForge","/posts/docker-commands/":"Top Docker Commands","/posts/diploma/":"IT courses 2020","/posts/cloud-exam-quizz/amplify-setup-project":"AWS Amplify - project setup with Github","/posts/cloud-exam-quizz/amplify-custom-domain":"AWS Amplify - Set custom domain","/posts/cheat-sheet-command-tar/":"Tar command Cheat Sheet","/posts/archive/":"Posts Archive","/photos/_index":"Images","/photos/midjourney/":"AI Midjourney generated","/photos/ai/":"AI generated","/photos/22-07-02-israel-haifa-bahai-gardens/":"Israel - Haifa - Bahai Gardens","/p/supportme":"Support me","/p/links":"Links","/homepage/pages":"Posts","/homepage/experience":"Experience","/homepage/education":"Education","/homepage/about":"Roman Kurnovskii","/authors/roman-kurnovskii/_index":"Roman Kurnovskii","/apps/_index":"Apps","/apps/npm/hugo-lunr-ml/":"hugo-lunr-ml","/apps/npm/cognito-token-observer/":"cognito-token-observer","/apps/cloud-exam-quizz/":"Cloud exam Quizz","/apps/brewmate/":"BrewMate"}}} \ No newline at end of file